ETH Price: $3,278.48 (-3.87%)
Gas: 17 Gwei

Token

Saudis Owl (SO)
 

Overview

Max Total Supply

3,420 SO

Holders

1,402

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
duday.eth
Balance
1 SO
0x5E6f7603BAbed10f0aE29666CeC2aea445cA752f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SaudisOwl

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 6 of 7: SaudisOwl.sol
/** 
*                                                                                                                                                    
*          ,]]]]`                                   ,@@`    /@@                                                   `/@^                        
*      ]@@@@/[@@@`                                 ,@@`    ,[[                      ]@@@@@@@@`                   ,@@^                         
*    `@@^            ,]]]            `]`       ,]]`@@`             ,]`           `/@@[    `@@@                  ,@@`                          
*    ,@@@]`       ,@@[\@@     /@/   /@/     ,@@/=@@@`   `@@^     =@@/           /@@`      =@@` =@^  `/@^  ,@@\`,@@^                           
*      ,\@@@@\  ,@@` =@/   ,@@@@  ,@@@`  ,@@@/ `/@@^  `/@@/    ,/@@    /@/    ,@@/       /@@` ,@@` =@@@  /@/[[[@@^    ,]                      
*          /@@ /@^ ]@@@\/@@//@/ ,@@\@@/@@@@/ ]@@`@@,/@@@@@  ,/@/,@@\/@@`     `@@/     `/@@`   =@@`@@\@@`@@`   @@/   /@/                       
* `]] ,]/@@@` =@@@@[ `[[[  =@@@@/`  [[` =@@@@/` `@@/`  @@@@@@`  ,@@@`        ,@@@`,]/@@/`     =@@@/ =@@@/     @@@@@@[                         
* ,@@@@[[                                                   `/@@@`            ,@@@@/[         =@/`   [[` 
*                                    
**/

// SPDX-License-Identifier: MIT

pragma solidity >=0.8.9 <0.9.0;

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

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

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

  uint256 public cost = 0.002 ether;
  uint256 public maxSupply = 5555;
  uint256 public maxMintAmount = 10;
  uint256 public maxFreeMintPerWalletAmount = 1;

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



     constructor(
    ) ERC721A("Saudis Owl", "SO") {
    }


 
  modifier mintCompliance(uint256 _mintAmount) {
    require(!paused, "The contract is paused!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(tx.origin == msg.sender, "The caller is another contract");
    require(
      _mintAmount > 0 && numberMinted(msg.sender) + _mintAmount <= maxMintAmount,
       "Invalid mint amount!"
    );
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    uint256 costToSubtract = 0;
    
    if (numberMinted(msg.sender) < maxFreeMintPerWalletAmount) {
      uint256 freeMintsLeft = maxFreeMintPerWalletAmount - numberMinted(msg.sender);
      costToSubtract = cost * freeMintsLeft;
    }
   
    require(msg.value >= cost * _mintAmount - costToSubtract, "Insufficient funds!");
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _safeMint(_receiver, _mintAmount);
  }

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

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

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

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


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

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

  function setmaxFreeMintPerWalletAmount(uint256 _maxFreeMintPerWalletAmount) public onlyOwner {
    maxFreeMintPerWalletAmount = _maxFreeMintPerWalletAmount;
  }

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

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

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

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

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



  function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 7: 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 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMintPerWalletAmount","type":"uint256"}],"name":"setmaxFreeMintPerWalletAmount","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000290565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200007992919062000290565b5066071afd498d0000600d556115b3600e55600a600f5560016010556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff021916908315150217905550348015620000d857600080fd5b506040518060400160405280600a81526020017f536175646973204f776c000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f534f00000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200015d92919062000290565b5080600390805190602001906200017692919062000290565b5062000187620001bd60201b60201c565b6000819055505050620001af620001a3620001c260201b60201c565b620001ca60201b60201c565b6001600981905550620003a5565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029e906200036f565b90600052602060002090601f016020900481019282620002c257600085556200030e565b82601f10620002dd57805160ff19168380011785556200030e565b828001600101855582156200030e579182015b828111156200030d578251825591602001919060010190620002f0565b5b5090506200031d919062000321565b5090565b5b808211156200033c57600081600090555060010162000322565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200038857607f821691505b602082108114156200039f576200039e62000340565b5b50919050565b6139ca80620003b56000396000f3fe6080604052600436106102255760003560e01c806362b99ad411610123578063a22cb465116100ab578063dc33e6811161006f578063dc33e681146107c0578063e0a80853146107fd578063e985e9c514610826578063efbd73f414610863578063f2fde38b1461088c57610225565b8063a22cb465146106db578063a45ba8e714610704578063b88d4fde1461072f578063c87b56dd14610758578063d5abeb011461079557610225565b80637ec4a659116100f25780637ec4a659146106175780638da5cb5b1461064057806391ae45341461066b57806395d89b4114610694578063a0712d68146106bf57610225565b806362b99ad41461055b5780636352211e1461058657806370a08231146105c3578063715018a61461060057610225565b806318160ddd116101b157806344a0d68a1161017557806344a0d68a146104885780634fdd43cb146104b157806351830227146104da5780635503a0e8146105055780635c975abb1461053057610225565b806318160ddd146103c9578063239c70ae146103f457806323b872dd1461041f5780633ccfd60b1461044857806342842e0e1461045f57610225565b8063095ea7b3116101f8578063095ea7b3146102f8578063126fa6a91461032157806313faede61461034c57806316ba10e01461037757806316c38b3c146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063088a4ed0146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612ad9565b6108b5565b60405161025e9190612b21565b60405180910390f35b34801561027357600080fd5b5061027c610947565b6040516102899190612bd5565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612c2d565b6109d9565b6040516102c69190612c9b565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612c2d565b610a55565b005b34801561030457600080fd5b5061031f600480360381019061031a9190612ce2565b610adb565b005b34801561032d57600080fd5b50610336610c82565b6040516103439190612d31565b60405180910390f35b34801561035857600080fd5b50610361610c88565b60405161036e9190612d31565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612e81565b610c8e565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190612ef6565b610d24565b005b3480156103d557600080fd5b506103de610dbd565b6040516103eb9190612d31565b60405180910390f35b34801561040057600080fd5b50610409610dd4565b6040516104169190612d31565b60405180910390f35b34801561042b57600080fd5b5061044660048036038101906104419190612f23565b610dda565b005b34801561045457600080fd5b5061045d610dea565b005b34801561046b57600080fd5b5061048660048036038101906104819190612f23565b610eb5565b005b34801561049457600080fd5b506104af60048036038101906104aa9190612c2d565b610ed5565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190612e81565b610f5b565b005b3480156104e657600080fd5b506104ef610ff1565b6040516104fc9190612b21565b60405180910390f35b34801561051157600080fd5b5061051a611004565b6040516105279190612bd5565b60405180910390f35b34801561053c57600080fd5b50610545611092565b6040516105529190612b21565b60405180910390f35b34801561056757600080fd5b506105706110a5565b60405161057d9190612bd5565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190612c2d565b611133565b6040516105ba9190612c9b565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190612f76565b611145565b6040516105f79190612d31565b60405180910390f35b34801561060c57600080fd5b506106156111fe565b005b34801561062357600080fd5b5061063e60048036038101906106399190612e81565b611286565b005b34801561064c57600080fd5b5061065561131c565b6040516106629190612c9b565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190612c2d565b611346565b005b3480156106a057600080fd5b506106a96113cc565b6040516106b69190612bd5565b60405180910390f35b6106d960048036038101906106d49190612c2d565b61145e565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190612fa3565b61168b565b005b34801561071057600080fd5b50610719611803565b6040516107269190612bd5565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613084565b611891565b005b34801561076457600080fd5b5061077f600480360381019061077a9190612c2d565b611904565b60405161078c9190612bd5565b60405180910390f35b3480156107a157600080fd5b506107aa611a5d565b6040516107b79190612d31565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e29190612f76565b611a63565b6040516107f49190612d31565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f9190612ef6565b611a75565b005b34801561083257600080fd5b5061084d60048036038101906108489190613107565b611b0e565b60405161085a9190612b21565b60405180910390f35b34801561086f57600080fd5b5061088a60048036038101906108859190613147565b611ba2565b005b34801561089857600080fd5b506108b360048036038101906108ae9190612f76565b611c83565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610956906131b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610982906131b6565b80156109cf5780601f106109a4576101008083540402835291602001916109cf565b820191906000526020600020905b8154815290600101906020018083116109b257829003601f168201915b5050505050905090565b60006109e482611d7b565b610a1a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a5d611dda565b73ffffffffffffffffffffffffffffffffffffffff16610a7b61131c565b73ffffffffffffffffffffffffffffffffffffffff1614610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890613234565b60405180910390fd5b80600f8190555050565b6000610ae682611de2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6d611eb0565b73ffffffffffffffffffffffffffffffffffffffff1614610bd057610b9981610b94611eb0565b611b0e565b610bcf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60105481565b600d5481565b610c96611dda565b73ffffffffffffffffffffffffffffffffffffffff16610cb461131c565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190613234565b60405180910390fd5b80600b9080519060200190610d209291906129ca565b5050565b610d2c611dda565b73ffffffffffffffffffffffffffffffffffffffff16610d4a61131c565b73ffffffffffffffffffffffffffffffffffffffff1614610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790613234565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6000610dc7611eb8565b6001546000540303905090565b600f5481565b610de5838383611ebd565b505050565b610df2611dda565b73ffffffffffffffffffffffffffffffffffffffff16610e1061131c565b73ffffffffffffffffffffffffffffffffffffffff1614610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613234565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb1573d6000803e3d6000fd5b5050565b610ed083838360405180602001604052806000815250611891565b505050565b610edd611dda565b73ffffffffffffffffffffffffffffffffffffffff16610efb61131c565b73ffffffffffffffffffffffffffffffffffffffff1614610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890613234565b60405180910390fd5b80600d8190555050565b610f63611dda565b73ffffffffffffffffffffffffffffffffffffffff16610f8161131c565b73ffffffffffffffffffffffffffffffffffffffff1614610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613234565b60405180910390fd5b80600c9080519060200190610fed9291906129ca565b5050565b601160009054906101000a900460ff1681565b600b8054611011906131b6565b80601f016020809104026020016040519081016040528092919081815260200182805461103d906131b6565b801561108a5780601f1061105f5761010080835404028352916020019161108a565b820191906000526020600020905b81548152906001019060200180831161106d57829003601f168201915b505050505081565b601160019054906101000a900460ff1681565b600a80546110b2906131b6565b80601f01602080910402602001604051908101604052809291908181526020018280546110de906131b6565b801561112b5780601f106111005761010080835404028352916020019161112b565b820191906000526020600020905b81548152906001019060200180831161110e57829003601f168201915b505050505081565b600061113e82611de2565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ad576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611206611dda565b73ffffffffffffffffffffffffffffffffffffffff1661122461131c565b73ffffffffffffffffffffffffffffffffffffffff161461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190613234565b60405180910390fd5b6112846000612267565b565b61128e611dda565b73ffffffffffffffffffffffffffffffffffffffff166112ac61131c565b73ffffffffffffffffffffffffffffffffffffffff1614611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613234565b60405180910390fd5b80600a90805190602001906113189291906129ca565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61134e611dda565b73ffffffffffffffffffffffffffffffffffffffff1661136c61131c565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990613234565b60405180910390fd5b8060108190555050565b6060600380546113db906131b6565b80601f0160208091040260200160405190810160405280929190818152602001828054611407906131b6565b80156114545780601f1061142957610100808354040283529160200191611454565b820191906000526020600020905b81548152906001019060200180831161143757829003601f168201915b5050505050905090565b80601160019054906101000a900460ff16156114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a6906132a0565b60405180910390fd5b600e54816114bb610dbd565b6114c591906132ef565b1115611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90613391565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b906133fd565b60405180910390fd5b6000811180156115995750600f548161158c33611a63565b61159691906132ef565b11155b6115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90613469565b60405180910390fd5b8160006010546115e733611a63565b10156116195760006115f833611a63565b6010546116059190613489565b905080600d5461161591906134bd565b9150505b8082600d5461162891906134bd565b6116329190613489565b341015611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90613563565b60405180910390fd5b61168561167f611dda565b8561232d565b50505050565b611693611eb0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116f8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611705611eb0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117b2611eb0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612b21565b60405180910390a35050565b600c8054611810906131b6565b80601f016020809104026020016040519081016040528092919081815260200182805461183c906131b6565b80156118895780601f1061185e57610100808354040283529160200191611889565b820191906000526020600020905b81548152906001019060200180831161186c57829003601f168201915b505050505081565b61189c848484611ebd565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118fe576118c78484848461234b565b6118fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061190f82611d7b565b61194e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611945906135f5565b60405180910390fd5b60001515601160009054906101000a900460ff16151514156119fc57600c8054611977906131b6565b80601f01602080910402602001604051908101604052809291908181526020018280546119a3906131b6565b80156119f05780601f106119c5576101008083540402835291602001916119f0565b820191906000526020600020905b8154815290600101906020018083116119d357829003601f168201915b50505050509050611a58565b6000611a066124ab565b90506000815111611a265760405180602001604052806000815250611a54565b80611a308461253d565b600b604051602001611a44939291906136e5565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000611a6e8261269e565b9050919050565b611a7d611dda565b73ffffffffffffffffffffffffffffffffffffffff16611a9b61131c565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890613234565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611baa611dda565b73ffffffffffffffffffffffffffffffffffffffff16611bc861131c565b73ffffffffffffffffffffffffffffffffffffffff1614611c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1590613234565b60405180910390fd5b600e5482611c2a610dbd565b611c3491906132ef565b1115611c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c90613391565b60405180910390fd5b611c7f818361232d565b5050565b611c8b611dda565b73ffffffffffffffffffffffffffffffffffffffff16611ca961131c565b73ffffffffffffffffffffffffffffffffffffffff1614611cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf690613234565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690613788565b60405180910390fd5b611d7881612267565b50565b600081611d86611eb8565b11158015611d95575060005482105b8015611dd3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60008082905080611df1611eb8565b11611e7957600054811015611e785760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e76575b6000811415611e6c576004600083600190039350838152602001908152602001600020549050611e41565b8092505050611eab565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611ec882611de2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611f50611eb0565b73ffffffffffffffffffffffffffffffffffffffff161480611f7f5750611f7e85611f79611eb0565b611b0e565b5b80611fc45750611f8d611eb0565b73ffffffffffffffffffffffffffffffffffffffff16611fac846109d9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ffd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612064576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61207185858560016126f5565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61216e866126fb565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156121f85760006001840190506000600460008381526020019081526020016000205414156121f65760005481146121f5578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122608585856001612705565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61234782826040518060200160405280600081525061270b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612371611eb0565b8786866040518563ffffffff1660e01b815260040161239394939291906137fd565b602060405180830381600087803b1580156123ad57600080fd5b505af19250505080156123de57506040513d601f19601f820116820180604052508101906123db919061385e565b60015b612458573d806000811461240e576040519150601f19603f3d011682016040523d82523d6000602084013e612413565b606091505b50600081511415612450576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546124ba906131b6565b80601f01602080910402602001604051908101604052809291908181526020018280546124e6906131b6565b80156125335780601f1061250857610100808354040283529160200191612533565b820191906000526020600020905b81548152906001019060200180831161251657829003601f168201915b5050505050905090565b60606000821415612585576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612699565b600082905060005b600082146125b75780806125a09061388b565b915050600a826125b09190613903565b915061258d565b60008167ffffffffffffffff8111156125d3576125d2612d56565b5b6040519080825280601f01601f1916602001820160405280156126055781602001600182028036833780820191505090505b5090505b600085146126925760018261261e9190613489565b9150600a8561262d9190613934565b603061263991906132ef565b60f81b81838151811061264f5761264e613965565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561268b9190613903565b9450612609565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612778576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127b3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c060008583866126f5565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612825600185146129c0565b901b60a042901b612835866126fb565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612939575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128e9600087848060010195508761234b565b61291f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061287a57826000541461293457600080fd5b6129a4565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061293a575b8160008190555050506129ba6000858386612705565b50505050565b6000819050919050565b8280546129d6906131b6565b90600052602060002090601f0160209004810192826129f85760008555612a3f565b82601f10612a1157805160ff1916838001178555612a3f565b82800160010185558215612a3f579182015b82811115612a3e578251825591602001919060010190612a23565b5b509050612a4c9190612a50565b5090565b5b80821115612a69576000816000905550600101612a51565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ab681612a81565b8114612ac157600080fd5b50565b600081359050612ad381612aad565b92915050565b600060208284031215612aef57612aee612a77565b5b6000612afd84828501612ac4565b91505092915050565b60008115159050919050565b612b1b81612b06565b82525050565b6000602082019050612b366000830184612b12565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b76578082015181840152602081019050612b5b565b83811115612b85576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ba782612b3c565b612bb18185612b47565b9350612bc1818560208601612b58565b612bca81612b8b565b840191505092915050565b60006020820190508181036000830152612bef8184612b9c565b905092915050565b6000819050919050565b612c0a81612bf7565b8114612c1557600080fd5b50565b600081359050612c2781612c01565b92915050565b600060208284031215612c4357612c42612a77565b5b6000612c5184828501612c18565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c8582612c5a565b9050919050565b612c9581612c7a565b82525050565b6000602082019050612cb06000830184612c8c565b92915050565b612cbf81612c7a565b8114612cca57600080fd5b50565b600081359050612cdc81612cb6565b92915050565b60008060408385031215612cf957612cf8612a77565b5b6000612d0785828601612ccd565b9250506020612d1885828601612c18565b9150509250929050565b612d2b81612bf7565b82525050565b6000602082019050612d466000830184612d22565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d8e82612b8b565b810181811067ffffffffffffffff82111715612dad57612dac612d56565b5b80604052505050565b6000612dc0612a6d565b9050612dcc8282612d85565b919050565b600067ffffffffffffffff821115612dec57612deb612d56565b5b612df582612b8b565b9050602081019050919050565b82818337600083830152505050565b6000612e24612e1f84612dd1565b612db6565b905082815260208101848484011115612e4057612e3f612d51565b5b612e4b848285612e02565b509392505050565b600082601f830112612e6857612e67612d4c565b5b8135612e78848260208601612e11565b91505092915050565b600060208284031215612e9757612e96612a77565b5b600082013567ffffffffffffffff811115612eb557612eb4612a7c565b5b612ec184828501612e53565b91505092915050565b612ed381612b06565b8114612ede57600080fd5b50565b600081359050612ef081612eca565b92915050565b600060208284031215612f0c57612f0b612a77565b5b6000612f1a84828501612ee1565b91505092915050565b600080600060608486031215612f3c57612f3b612a77565b5b6000612f4a86828701612ccd565b9350506020612f5b86828701612ccd565b9250506040612f6c86828701612c18565b9150509250925092565b600060208284031215612f8c57612f8b612a77565b5b6000612f9a84828501612ccd565b91505092915050565b60008060408385031215612fba57612fb9612a77565b5b6000612fc885828601612ccd565b9250506020612fd985828601612ee1565b9150509250929050565b600067ffffffffffffffff821115612ffe57612ffd612d56565b5b61300782612b8b565b9050602081019050919050565b600061302761302284612fe3565b612db6565b90508281526020810184848401111561304357613042612d51565b5b61304e848285612e02565b509392505050565b600082601f83011261306b5761306a612d4c565b5b813561307b848260208601613014565b91505092915050565b6000806000806080858703121561309e5761309d612a77565b5b60006130ac87828801612ccd565b94505060206130bd87828801612ccd565b93505060406130ce87828801612c18565b925050606085013567ffffffffffffffff8111156130ef576130ee612a7c565b5b6130fb87828801613056565b91505092959194509250565b6000806040838503121561311e5761311d612a77565b5b600061312c85828601612ccd565b925050602061313d85828601612ccd565b9150509250929050565b6000806040838503121561315e5761315d612a77565b5b600061316c85828601612c18565b925050602061317d85828601612ccd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ce57607f821691505b602082108114156131e2576131e1613187565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061321e602083612b47565b9150613229826131e8565b602082019050919050565b6000602082019050818103600083015261324d81613211565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061328a601783612b47565b915061329582613254565b602082019050919050565b600060208201905081810360008301526132b98161327d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132fa82612bf7565b915061330583612bf7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561333a576133396132c0565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061337b601483612b47565b915061338682613345565b602082019050919050565b600060208201905081810360008301526133aa8161336e565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006133e7601e83612b47565b91506133f2826133b1565b602082019050919050565b60006020820190508181036000830152613416816133da565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613453601483612b47565b915061345e8261341d565b602082019050919050565b6000602082019050818103600083015261348281613446565b9050919050565b600061349482612bf7565b915061349f83612bf7565b9250828210156134b2576134b16132c0565b5b828203905092915050565b60006134c882612bf7565b91506134d383612bf7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561350c5761350b6132c0565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061354d601383612b47565b915061355882613517565b602082019050919050565b6000602082019050818103600083015261357c81613540565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135df602f83612b47565b91506135ea82613583565b604082019050919050565b6000602082019050818103600083015261360e816135d2565b9050919050565b600081905092915050565b600061362b82612b3c565b6136358185613615565b9350613645818560208601612b58565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613673816131b6565b61367d8186613615565b9450600182166000811461369857600181146136a9576136dc565b60ff198316865281860193506136dc565b6136b285613651565b60005b838110156136d4578154818901526001820191506020810190506136b5565b838801955050505b50505092915050565b60006136f18286613620565b91506136fd8285613620565b91506137098284613666565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613772602683612b47565b915061377d82613716565b604082019050919050565b600060208201905081810360008301526137a181613765565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137cf826137a8565b6137d981856137b3565b93506137e9818560208601612b58565b6137f281612b8b565b840191505092915050565b60006080820190506138126000830187612c8c565b61381f6020830186612c8c565b61382c6040830185612d22565b818103606083015261383e81846137c4565b905095945050505050565b60008151905061385881612aad565b92915050565b60006020828403121561387457613873612a77565b5b600061388284828501613849565b91505092915050565b600061389682612bf7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138c9576138c86132c0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061390e82612bf7565b915061391983612bf7565b925082613929576139286138d4565b5b828204905092915050565b600061393f82612bf7565b915061394a83612bf7565b92508261395a576139596138d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212204094b33c34344bca37dce230589d13f3f2135cbb9d0343d45550be335a4af8a064736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102255760003560e01c806362b99ad411610123578063a22cb465116100ab578063dc33e6811161006f578063dc33e681146107c0578063e0a80853146107fd578063e985e9c514610826578063efbd73f414610863578063f2fde38b1461088c57610225565b8063a22cb465146106db578063a45ba8e714610704578063b88d4fde1461072f578063c87b56dd14610758578063d5abeb011461079557610225565b80637ec4a659116100f25780637ec4a659146106175780638da5cb5b1461064057806391ae45341461066b57806395d89b4114610694578063a0712d68146106bf57610225565b806362b99ad41461055b5780636352211e1461058657806370a08231146105c3578063715018a61461060057610225565b806318160ddd116101b157806344a0d68a1161017557806344a0d68a146104885780634fdd43cb146104b157806351830227146104da5780635503a0e8146105055780635c975abb1461053057610225565b806318160ddd146103c9578063239c70ae146103f457806323b872dd1461041f5780633ccfd60b1461044857806342842e0e1461045f57610225565b8063095ea7b3116101f8578063095ea7b3146102f8578063126fa6a91461032157806313faede61461034c57806316ba10e01461037757806316c38b3c146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063088a4ed0146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612ad9565b6108b5565b60405161025e9190612b21565b60405180910390f35b34801561027357600080fd5b5061027c610947565b6040516102899190612bd5565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612c2d565b6109d9565b6040516102c69190612c9b565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612c2d565b610a55565b005b34801561030457600080fd5b5061031f600480360381019061031a9190612ce2565b610adb565b005b34801561032d57600080fd5b50610336610c82565b6040516103439190612d31565b60405180910390f35b34801561035857600080fd5b50610361610c88565b60405161036e9190612d31565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612e81565b610c8e565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190612ef6565b610d24565b005b3480156103d557600080fd5b506103de610dbd565b6040516103eb9190612d31565b60405180910390f35b34801561040057600080fd5b50610409610dd4565b6040516104169190612d31565b60405180910390f35b34801561042b57600080fd5b5061044660048036038101906104419190612f23565b610dda565b005b34801561045457600080fd5b5061045d610dea565b005b34801561046b57600080fd5b5061048660048036038101906104819190612f23565b610eb5565b005b34801561049457600080fd5b506104af60048036038101906104aa9190612c2d565b610ed5565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190612e81565b610f5b565b005b3480156104e657600080fd5b506104ef610ff1565b6040516104fc9190612b21565b60405180910390f35b34801561051157600080fd5b5061051a611004565b6040516105279190612bd5565b60405180910390f35b34801561053c57600080fd5b50610545611092565b6040516105529190612b21565b60405180910390f35b34801561056757600080fd5b506105706110a5565b60405161057d9190612bd5565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190612c2d565b611133565b6040516105ba9190612c9b565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190612f76565b611145565b6040516105f79190612d31565b60405180910390f35b34801561060c57600080fd5b506106156111fe565b005b34801561062357600080fd5b5061063e60048036038101906106399190612e81565b611286565b005b34801561064c57600080fd5b5061065561131c565b6040516106629190612c9b565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190612c2d565b611346565b005b3480156106a057600080fd5b506106a96113cc565b6040516106b69190612bd5565b60405180910390f35b6106d960048036038101906106d49190612c2d565b61145e565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190612fa3565b61168b565b005b34801561071057600080fd5b50610719611803565b6040516107269190612bd5565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613084565b611891565b005b34801561076457600080fd5b5061077f600480360381019061077a9190612c2d565b611904565b60405161078c9190612bd5565b60405180910390f35b3480156107a157600080fd5b506107aa611a5d565b6040516107b79190612d31565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e29190612f76565b611a63565b6040516107f49190612d31565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f9190612ef6565b611a75565b005b34801561083257600080fd5b5061084d60048036038101906108489190613107565b611b0e565b60405161085a9190612b21565b60405180910390f35b34801561086f57600080fd5b5061088a60048036038101906108859190613147565b611ba2565b005b34801561089857600080fd5b506108b360048036038101906108ae9190612f76565b611c83565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610956906131b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610982906131b6565b80156109cf5780601f106109a4576101008083540402835291602001916109cf565b820191906000526020600020905b8154815290600101906020018083116109b257829003601f168201915b5050505050905090565b60006109e482611d7b565b610a1a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a5d611dda565b73ffffffffffffffffffffffffffffffffffffffff16610a7b61131c565b73ffffffffffffffffffffffffffffffffffffffff1614610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890613234565b60405180910390fd5b80600f8190555050565b6000610ae682611de2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6d611eb0565b73ffffffffffffffffffffffffffffffffffffffff1614610bd057610b9981610b94611eb0565b611b0e565b610bcf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60105481565b600d5481565b610c96611dda565b73ffffffffffffffffffffffffffffffffffffffff16610cb461131c565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190613234565b60405180910390fd5b80600b9080519060200190610d209291906129ca565b5050565b610d2c611dda565b73ffffffffffffffffffffffffffffffffffffffff16610d4a61131c565b73ffffffffffffffffffffffffffffffffffffffff1614610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790613234565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6000610dc7611eb8565b6001546000540303905090565b600f5481565b610de5838383611ebd565b505050565b610df2611dda565b73ffffffffffffffffffffffffffffffffffffffff16610e1061131c565b73ffffffffffffffffffffffffffffffffffffffff1614610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613234565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb1573d6000803e3d6000fd5b5050565b610ed083838360405180602001604052806000815250611891565b505050565b610edd611dda565b73ffffffffffffffffffffffffffffffffffffffff16610efb61131c565b73ffffffffffffffffffffffffffffffffffffffff1614610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890613234565b60405180910390fd5b80600d8190555050565b610f63611dda565b73ffffffffffffffffffffffffffffffffffffffff16610f8161131c565b73ffffffffffffffffffffffffffffffffffffffff1614610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613234565b60405180910390fd5b80600c9080519060200190610fed9291906129ca565b5050565b601160009054906101000a900460ff1681565b600b8054611011906131b6565b80601f016020809104026020016040519081016040528092919081815260200182805461103d906131b6565b801561108a5780601f1061105f5761010080835404028352916020019161108a565b820191906000526020600020905b81548152906001019060200180831161106d57829003601f168201915b505050505081565b601160019054906101000a900460ff1681565b600a80546110b2906131b6565b80601f01602080910402602001604051908101604052809291908181526020018280546110de906131b6565b801561112b5780601f106111005761010080835404028352916020019161112b565b820191906000526020600020905b81548152906001019060200180831161110e57829003601f168201915b505050505081565b600061113e82611de2565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ad576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611206611dda565b73ffffffffffffffffffffffffffffffffffffffff1661122461131c565b73ffffffffffffffffffffffffffffffffffffffff161461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190613234565b60405180910390fd5b6112846000612267565b565b61128e611dda565b73ffffffffffffffffffffffffffffffffffffffff166112ac61131c565b73ffffffffffffffffffffffffffffffffffffffff1614611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613234565b60405180910390fd5b80600a90805190602001906113189291906129ca565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61134e611dda565b73ffffffffffffffffffffffffffffffffffffffff1661136c61131c565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990613234565b60405180910390fd5b8060108190555050565b6060600380546113db906131b6565b80601f0160208091040260200160405190810160405280929190818152602001828054611407906131b6565b80156114545780601f1061142957610100808354040283529160200191611454565b820191906000526020600020905b81548152906001019060200180831161143757829003601f168201915b5050505050905090565b80601160019054906101000a900460ff16156114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a6906132a0565b60405180910390fd5b600e54816114bb610dbd565b6114c591906132ef565b1115611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90613391565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b906133fd565b60405180910390fd5b6000811180156115995750600f548161158c33611a63565b61159691906132ef565b11155b6115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90613469565b60405180910390fd5b8160006010546115e733611a63565b10156116195760006115f833611a63565b6010546116059190613489565b905080600d5461161591906134bd565b9150505b8082600d5461162891906134bd565b6116329190613489565b341015611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90613563565b60405180910390fd5b61168561167f611dda565b8561232d565b50505050565b611693611eb0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116f8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611705611eb0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117b2611eb0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612b21565b60405180910390a35050565b600c8054611810906131b6565b80601f016020809104026020016040519081016040528092919081815260200182805461183c906131b6565b80156118895780601f1061185e57610100808354040283529160200191611889565b820191906000526020600020905b81548152906001019060200180831161186c57829003601f168201915b505050505081565b61189c848484611ebd565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118fe576118c78484848461234b565b6118fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061190f82611d7b565b61194e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611945906135f5565b60405180910390fd5b60001515601160009054906101000a900460ff16151514156119fc57600c8054611977906131b6565b80601f01602080910402602001604051908101604052809291908181526020018280546119a3906131b6565b80156119f05780601f106119c5576101008083540402835291602001916119f0565b820191906000526020600020905b8154815290600101906020018083116119d357829003601f168201915b50505050509050611a58565b6000611a066124ab565b90506000815111611a265760405180602001604052806000815250611a54565b80611a308461253d565b600b604051602001611a44939291906136e5565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000611a6e8261269e565b9050919050565b611a7d611dda565b73ffffffffffffffffffffffffffffffffffffffff16611a9b61131c565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890613234565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611baa611dda565b73ffffffffffffffffffffffffffffffffffffffff16611bc861131c565b73ffffffffffffffffffffffffffffffffffffffff1614611c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1590613234565b60405180910390fd5b600e5482611c2a610dbd565b611c3491906132ef565b1115611c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c90613391565b60405180910390fd5b611c7f818361232d565b5050565b611c8b611dda565b73ffffffffffffffffffffffffffffffffffffffff16611ca961131c565b73ffffffffffffffffffffffffffffffffffffffff1614611cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf690613234565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690613788565b60405180910390fd5b611d7881612267565b50565b600081611d86611eb8565b11158015611d95575060005482105b8015611dd3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60008082905080611df1611eb8565b11611e7957600054811015611e785760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e76575b6000811415611e6c576004600083600190039350838152602001908152602001600020549050611e41565b8092505050611eab565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611ec882611de2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611f50611eb0565b73ffffffffffffffffffffffffffffffffffffffff161480611f7f5750611f7e85611f79611eb0565b611b0e565b5b80611fc45750611f8d611eb0565b73ffffffffffffffffffffffffffffffffffffffff16611fac846109d9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ffd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612064576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61207185858560016126f5565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61216e866126fb565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156121f85760006001840190506000600460008381526020019081526020016000205414156121f65760005481146121f5578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122608585856001612705565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61234782826040518060200160405280600081525061270b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612371611eb0565b8786866040518563ffffffff1660e01b815260040161239394939291906137fd565b602060405180830381600087803b1580156123ad57600080fd5b505af19250505080156123de57506040513d601f19601f820116820180604052508101906123db919061385e565b60015b612458573d806000811461240e576040519150601f19603f3d011682016040523d82523d6000602084013e612413565b606091505b50600081511415612450576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546124ba906131b6565b80601f01602080910402602001604051908101604052809291908181526020018280546124e6906131b6565b80156125335780601f1061250857610100808354040283529160200191612533565b820191906000526020600020905b81548152906001019060200180831161251657829003601f168201915b5050505050905090565b60606000821415612585576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612699565b600082905060005b600082146125b75780806125a09061388b565b915050600a826125b09190613903565b915061258d565b60008167ffffffffffffffff8111156125d3576125d2612d56565b5b6040519080825280601f01601f1916602001820160405280156126055781602001600182028036833780820191505090505b5090505b600085146126925760018261261e9190613489565b9150600a8561262d9190613934565b603061263991906132ef565b60f81b81838151811061264f5761264e613965565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561268b9190613903565b9450612609565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612778576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127b3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c060008583866126f5565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612825600185146129c0565b901b60a042901b612835866126fb565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612939575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128e9600087848060010195508761234b565b61291f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061287a57826000541461293457600080fd5b6129a4565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061293a575b8160008190555050506129ba6000858386612705565b50505050565b6000819050919050565b8280546129d6906131b6565b90600052602060002090601f0160209004810192826129f85760008555612a3f565b82601f10612a1157805160ff1916838001178555612a3f565b82800160010185558215612a3f579182015b82811115612a3e578251825591602001919060010190612a23565b5b509050612a4c9190612a50565b5090565b5b80821115612a69576000816000905550600101612a51565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ab681612a81565b8114612ac157600080fd5b50565b600081359050612ad381612aad565b92915050565b600060208284031215612aef57612aee612a77565b5b6000612afd84828501612ac4565b91505092915050565b60008115159050919050565b612b1b81612b06565b82525050565b6000602082019050612b366000830184612b12565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b76578082015181840152602081019050612b5b565b83811115612b85576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ba782612b3c565b612bb18185612b47565b9350612bc1818560208601612b58565b612bca81612b8b565b840191505092915050565b60006020820190508181036000830152612bef8184612b9c565b905092915050565b6000819050919050565b612c0a81612bf7565b8114612c1557600080fd5b50565b600081359050612c2781612c01565b92915050565b600060208284031215612c4357612c42612a77565b5b6000612c5184828501612c18565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c8582612c5a565b9050919050565b612c9581612c7a565b82525050565b6000602082019050612cb06000830184612c8c565b92915050565b612cbf81612c7a565b8114612cca57600080fd5b50565b600081359050612cdc81612cb6565b92915050565b60008060408385031215612cf957612cf8612a77565b5b6000612d0785828601612ccd565b9250506020612d1885828601612c18565b9150509250929050565b612d2b81612bf7565b82525050565b6000602082019050612d466000830184612d22565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d8e82612b8b565b810181811067ffffffffffffffff82111715612dad57612dac612d56565b5b80604052505050565b6000612dc0612a6d565b9050612dcc8282612d85565b919050565b600067ffffffffffffffff821115612dec57612deb612d56565b5b612df582612b8b565b9050602081019050919050565b82818337600083830152505050565b6000612e24612e1f84612dd1565b612db6565b905082815260208101848484011115612e4057612e3f612d51565b5b612e4b848285612e02565b509392505050565b600082601f830112612e6857612e67612d4c565b5b8135612e78848260208601612e11565b91505092915050565b600060208284031215612e9757612e96612a77565b5b600082013567ffffffffffffffff811115612eb557612eb4612a7c565b5b612ec184828501612e53565b91505092915050565b612ed381612b06565b8114612ede57600080fd5b50565b600081359050612ef081612eca565b92915050565b600060208284031215612f0c57612f0b612a77565b5b6000612f1a84828501612ee1565b91505092915050565b600080600060608486031215612f3c57612f3b612a77565b5b6000612f4a86828701612ccd565b9350506020612f5b86828701612ccd565b9250506040612f6c86828701612c18565b9150509250925092565b600060208284031215612f8c57612f8b612a77565b5b6000612f9a84828501612ccd565b91505092915050565b60008060408385031215612fba57612fb9612a77565b5b6000612fc885828601612ccd565b9250506020612fd985828601612ee1565b9150509250929050565b600067ffffffffffffffff821115612ffe57612ffd612d56565b5b61300782612b8b565b9050602081019050919050565b600061302761302284612fe3565b612db6565b90508281526020810184848401111561304357613042612d51565b5b61304e848285612e02565b509392505050565b600082601f83011261306b5761306a612d4c565b5b813561307b848260208601613014565b91505092915050565b6000806000806080858703121561309e5761309d612a77565b5b60006130ac87828801612ccd565b94505060206130bd87828801612ccd565b93505060406130ce87828801612c18565b925050606085013567ffffffffffffffff8111156130ef576130ee612a7c565b5b6130fb87828801613056565b91505092959194509250565b6000806040838503121561311e5761311d612a77565b5b600061312c85828601612ccd565b925050602061313d85828601612ccd565b9150509250929050565b6000806040838503121561315e5761315d612a77565b5b600061316c85828601612c18565b925050602061317d85828601612ccd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ce57607f821691505b602082108114156131e2576131e1613187565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061321e602083612b47565b9150613229826131e8565b602082019050919050565b6000602082019050818103600083015261324d81613211565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061328a601783612b47565b915061329582613254565b602082019050919050565b600060208201905081810360008301526132b98161327d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132fa82612bf7565b915061330583612bf7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561333a576133396132c0565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061337b601483612b47565b915061338682613345565b602082019050919050565b600060208201905081810360008301526133aa8161336e565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006133e7601e83612b47565b91506133f2826133b1565b602082019050919050565b60006020820190508181036000830152613416816133da565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613453601483612b47565b915061345e8261341d565b602082019050919050565b6000602082019050818103600083015261348281613446565b9050919050565b600061349482612bf7565b915061349f83612bf7565b9250828210156134b2576134b16132c0565b5b828203905092915050565b60006134c882612bf7565b91506134d383612bf7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561350c5761350b6132c0565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061354d601383612b47565b915061355882613517565b602082019050919050565b6000602082019050818103600083015261357c81613540565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135df602f83612b47565b91506135ea82613583565b604082019050919050565b6000602082019050818103600083015261360e816135d2565b9050919050565b600081905092915050565b600061362b82612b3c565b6136358185613615565b9350613645818560208601612b58565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613673816131b6565b61367d8186613615565b9450600182166000811461369857600181146136a9576136dc565b60ff198316865281860193506136dc565b6136b285613651565b60005b838110156136d4578154818901526001820191506020810190506136b5565b838801955050505b50505092915050565b60006136f18286613620565b91506136fd8285613620565b91506137098284613666565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613772602683612b47565b915061377d82613716565b604082019050919050565b600060208201905081810360008301526137a181613765565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137cf826137a8565b6137d981856137b3565b93506137e9818560208601612b58565b6137f281612b8b565b840191505092915050565b60006080820190506138126000830187612c8c565b61381f6020830186612c8c565b61382c6040830185612d22565b818103606083015261383e81846137c4565b905095945050505050565b60008151905061385881612aad565b92915050565b60006020828403121561387457613873612a77565b5b600061388284828501613849565b91505092915050565b600061389682612bf7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138c9576138c86132c0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061390e82612bf7565b915061391983612bf7565b925082613929576139286138d4565b5b828204905092915050565b600061393f82612bf7565b915061394a83612bf7565b92508261395a576139596138d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212204094b33c34344bca37dce230589d13f3f2135cbb9d0343d45550be335a4af8a064736f6c63430008090033

Deployed Bytecode Sourcemap

1509:3507:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5031:615:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10044:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12112:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3838:110:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11572:474:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1823:45:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1711:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4454:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4560:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4085:315:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1785:33:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12998:170:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4647:143:5;;;;;;;;;;;;;:::i;:::-;;13239:185:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3758:74:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4210:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1875:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1635:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1907:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1602:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9833:144:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5710:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:3;;;;;;;;;;;;;:::i;:::-;;4348:100:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1063:87:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3954:162:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10213:104:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2823:160:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12388:308:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1673:31:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13495:396:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3305:445:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1749:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4796:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4122:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12767:164:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2991:207:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1972:201:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5031:615:1;5116:4;5431:10;5416:25;;:11;:25;;;;:102;;;;5508:10;5493:25;;:11;:25;;;;5416:102;:179;;;;5585:10;5570:25;;:11;:25;;;;5416:179;5396:199;;5031:615;;;:::o;10044:100::-;10098:13;10131:5;10124:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10044:100;:::o;12112:204::-;12180:7;12205:16;12213:7;12205;:16::i;:::-;12200:64;;12230:34;;;;;;;;;;;;;;12200:64;12284:15;:24;12300:7;12284:24;;;;;;;;;;;;;;;;;;;;;12277:31;;12112:204;;;:::o;3838:110:5:-;1294:12:3;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3928:14:5::1;3912:13;:30;;;;3838:110:::0;:::o;11572:474:1:-;11645:13;11677:27;11696:7;11677:18;:27::i;:::-;11645:61;;11727:5;11721:11;;:2;:11;;;11717:48;;;11741:24;;;;;;;;;;;;;;11717:48;11805:5;11782:28;;:19;:17;:19::i;:::-;:28;;;11778:175;;11830:44;11847:5;11854:19;:17;:19::i;:::-;11830:16;:44::i;:::-;11825:128;;11902:35;;;;;;;;;;;;;;11825:128;11778:175;11992:2;11965:15;:24;11981:7;11965:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12030:7;12026:2;12010:28;;12019:5;12010:28;;;;;;;;;;;;11634:412;11572:474;;:::o;1823:45:5:-;;;;:::o;1711:33::-;;;;:::o;4454:100::-;1294:12:3;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4538:10:5::1;4526:9;:22;;;;;;;;;;;;:::i;:::-;;4454:100:::0;:::o;4560:77::-;1294:12:3;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4625:6:5::1;4616;;:15;;;;;;;;;;;;;;;;;;4560:77:::0;:::o;4085:315:1:-;4138:7;4366:15;:13;:15::i;:::-;4351:12;;4335:13;;:28;:46;4328:53;;4085:315;:::o;1785:33:5:-;;;;:::o;12998:170:1:-;13132:28;13142:4;13148:2;13152:7;13132:9;:28::i;:::-;12998:170;;;:::o;4647:143:5:-;1294:12:3;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4695:15:5::1;4713:21;4695:39;;4753:10;4745:28;;:37;4774:7;4745:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4684:106;4647:143::o:0;13239:185:1:-;13377:39;13394:4;13400:2;13404:7;13377:39;;;;;;;;;;;;:16;:39::i;:::-;13239:185;;;:::o;3758:74:5:-;1294:12:3;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3821:5:5::1;3814:4;:12;;;;3758:74:::0;:::o;4210:132::-;1294:12:3;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4318:18:5::1;4298:17;:38;;;;;;;;;;;;:::i;:::-;;4210:132:::0;:::o;1875:27::-;;;;;;;;;;;;;:::o;1635:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1907:25::-;;;;;;;;;;;;;:::o;1602:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9833:144:1:-;9897:7;9940:27;9959:7;9940:18;:27::i;:::-;9917:52;;9833:144;;;:::o;5710:224::-;5774:7;5815:1;5798:19;;:5;:19;;;5794:60;;;5826:28;;;;;;;;;;;;;;5794:60;1049:13;5872:18;:25;5891:5;5872:25;;;;;;;;;;;;;;;;:54;5865:61;;5710:224;;;:::o;1714:103:3:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;4348:100:5:-;1294:12:3;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4432:10:5::1;4420:9;:22;;;;;;;;;;;;:::i;:::-;;4348:100:::0;:::o;1063:87:3:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;3954:162:5:-;1294:12:3;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4083:27:5::1;4054:26;:56;;;;3954:162:::0;:::o;10213:104:1:-;10269:13;10302:7;10295:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10213:104;:::o;2823:160:5:-;2888:11;2074:6;;;;;;;;;;;2073:7;2065:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;2154:9;;2139:11;2123:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;2115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2216:10;2203:23;;:9;:23;;;2195:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2298:1;2284:11;:15;:74;;;;;2345:13;;2330:11;2303:24;2316:10;2303:12;:24::i;:::-;:38;;;;:::i;:::-;:55;;2284:74;2268:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;2921:11:::1;2474:22;2544:26;;2517:24;2530:10;2517:12;:24::i;:::-;:53;2513:199;;;2581:21;2634:24;2647:10;2634:12;:24::i;:::-;2605:26;;:53;;;;:::i;:::-;2581:77;;2691:13;2684:4;;:20;;;;:::i;:::-;2667:37;;2572:140;2513:199;2765:14;2751:11;2744:4;;:18;;;;:::i;:::-;:35;;;;:::i;:::-;2731:9;:48;;2723:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;2941:36:::2;2951:12;:10;:12::i;:::-;2965:11;2941:9;:36::i;:::-;2467:350:::1;2404:1;2823:160:::0;;:::o;12388:308:1:-;12499:19;:17;:19::i;:::-;12487:31;;:8;:31;;;12483:61;;;12527:17;;;;;;;;;;;;;;12483:61;12609:8;12557:18;:39;12576:19;:17;:19::i;:::-;12557:39;;;;;;;;;;;;;;;:49;12597:8;12557:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;12669:8;12633:55;;12648:19;:17;:19::i;:::-;12633:55;;;12679:8;12633:55;;;;;;:::i;:::-;;;;;;;;12388:308;;:::o;1673:31:5:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13495:396:1:-;13662:28;13672:4;13678:2;13682:7;13662:9;:28::i;:::-;13723:1;13705:2;:14;;;:19;13701:183;;13744:56;13775:4;13781:2;13785:7;13794:5;13744:30;:56::i;:::-;13739:145;;13828:40;;;;;;;;;;;;;;13739:145;13701:183;13495:396;;;;:::o;3305:445:5:-;3379:13;3409:17;3417:8;3409:7;:17::i;:::-;3401:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;3503:5;3491:17;;:8;;;;;;;;;;;:17;;;3487:64;;;3526:17;3519:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3487:64;3559:28;3590:10;:8;:10::i;:::-;3559:41;;3645:1;3620:14;3614:28;:32;:130;;;;;;;;;;;;;;;;;3682:14;3698:19;:8;:17;:19::i;:::-;3719:9;3665:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3614:130;3607:137;;;3305:445;;;;:::o;1749:31::-;;;;:::o;4796:107::-;4854:7;4877:20;4891:5;4877:13;:20::i;:::-;4870:27;;4796:107;;;:::o;4122:81::-;1294:12:3;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4191:6:5::1;4180:8;;:17;;;;;;;;;;;;;;;;;;4122:81:::0;:::o;12767:164:1:-;12864:4;12888:18;:25;12907:5;12888:25;;;;;;;;;;;;;;;:35;12914:8;12888:35;;;;;;;;;;;;;;;;;;;;;;;;;12881:42;;12767:164;;;;:::o;2991:207:5:-;1294:12:3;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3118:9:5::1;;3103:11;3087:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;3079:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3159:33;3169:9;3180:11;3159:9;:33::i;:::-;2991:207:::0;;:::o;1972:201:3:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;14146:273:1:-;14203:4;14259:7;14240:15;:13;:15::i;:::-;:26;;:66;;;;;14293:13;;14283:7;:23;14240:66;:152;;;;;14391:1;1819:8;14344:17;:26;14362:7;14344:26;;;;;;;;;;;;:43;:48;14240:152;14220:172;;14146:273;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;7348:1129:1:-;7415:7;7435:12;7450:7;7435:22;;7518:4;7499:15;:13;:15::i;:::-;:23;7495:915;;7552:13;;7545:4;:20;7541:869;;;7590:14;7607:17;:23;7625:4;7607:23;;;;;;;;;;;;7590:40;;7723:1;1819:8;7696:6;:23;:28;7692:699;;;8215:113;8232:1;8222:6;:11;8215:113;;;8275:17;:25;8293:6;;;;;;;8275:25;;;;;;;;;;;;8266:34;;8215:113;;;8361:6;8354:13;;;;;;7692:699;7567:843;7541:869;7495:915;8438:31;;;;;;;;;;;;;;7348:1129;;;;:::o;28128:105::-;28188:7;28215:10;28208:17;;28128:105;:::o;3204:95:5:-;3269:7;3204:95;:::o;19385:2515:1:-;19500:27;19530;19549:7;19530:18;:27::i;:::-;19500:57;;19615:4;19574:45;;19590:19;19574:45;;;19570:86;;19628:28;;;;;;;;;;;;;;19570:86;19669:22;19718:4;19695:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;19739:43;19756:4;19762:19;:17;:19::i;:::-;19739:16;:43::i;:::-;19695:87;:147;;;;19823:19;:17;:19::i;:::-;19799:43;;:20;19811:7;19799:11;:20::i;:::-;:43;;;19695:147;19669:174;;19861:17;19856:66;;19887:35;;;;;;;;;;;;;;19856:66;19951:1;19937:16;;:2;:16;;;19933:52;;;19962:23;;;;;;;;;;;;;;19933:52;19998:43;20020:4;20026:2;20030:7;20039:1;19998:21;:43::i;:::-;20114:15;:24;20130:7;20114:24;;;;;;;;;;;;20107:31;;;;;;;;;;;20506:18;:24;20525:4;20506:24;;;;;;;;;;;;;;;;20504:26;;;;;;;;;;;;20575:18;:22;20594:2;20575:22;;;;;;;;;;;;;;;;20573:24;;;;;;;;;;;2101:8;1703:3;20956:15;:41;;20914:21;20932:2;20914:17;:21::i;:::-;:84;:128;20868:17;:26;20886:7;20868:26;;;;;;;;;;;:174;;;;21212:1;2101:8;21162:19;:46;:51;21158:626;;;21234:19;21266:1;21256:7;:11;21234:33;;21423:1;21389:17;:30;21407:11;21389:30;;;;;;;;;;;;:35;21385:384;;;21527:13;;21512:11;:28;21508:242;;21707:19;21674:17;:30;21692:11;21674:30;;;;;;;;;;;:52;;;;21508:242;21385:384;21215:569;21158:626;21831:7;21827:2;21812:27;;21821:4;21812:27;;;;;;;;;;;;21850:42;21871:4;21877:2;21881:7;21890:1;21850:20;:42::i;:::-;19489:2411;;19385:2515;;;:::o;2333:191:3:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;14503:104:1:-;14572:27;14582:2;14586:8;14572:27;;;;;;;;;;;;:9;:27::i;:::-;14503:104;;:::o;25597:716::-;25760:4;25806:2;25781:45;;;25827:19;:17;:19::i;:::-;25848:4;25854:7;25863:5;25781:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;25777:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26081:1;26064:6;:13;:18;26060:235;;;26110:40;;;;;;;;;;;;;;26060:235;26253:6;26247:13;26238:6;26234:2;26230:15;26223:38;25777:529;25950:54;;;25940:64;;;:6;:64;;;;25933:71;;;25597:716;;;;;;:::o;4909:104:5:-;4969:13;4998:9;4991:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4909:104;:::o;342:723:6:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;6016:176:1:-;6077:7;1049:13;1186:2;6105:18;:25;6124:5;6105:25;;;;;;;;;;;;;;;;:49;;6104:80;6097:87;;6016:176;;;:::o;26961:159::-;;;;;:::o;11133:148::-;11197:14;11258:5;11248:15;;11133:148;;;:::o;27779:158::-;;;;;:::o;14980:2236::-;15103:20;15126:13;;15103:36;;15168:1;15154:16;;:2;:16;;;15150:48;;;15179:19;;;;;;;;;;;;;;15150:48;15225:1;15213:8;:13;15209:44;;;15235:18;;;;;;;;;;;;;;15209:44;15266:61;15296:1;15300:2;15304:12;15318:8;15266:21;:61::i;:::-;15870:1;1186:2;15841:1;:25;;15840:31;15828:8;:44;15802:18;:22;15821:2;15802:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;1966:3;16271:29;16298:1;16286:8;:13;16271:14;:29::i;:::-;:56;;1703:3;16208:15;:41;;16166:21;16184:2;16166:17;:21::i;:::-;:84;:162;16115:17;:31;16133:12;16115:31;;;;;;;;;;;:213;;;;16345:20;16368:12;16345:35;;16395:11;16424:8;16409:12;:23;16395:37;;16471:1;16453:2;:14;;;:19;16449:635;;16493:313;16549:12;16545:2;16524:38;;16541:1;16524:38;;;;;;;;;;;;16590:69;16629:1;16633:2;16637:14;;;;;;16653:5;16590:30;:69::i;:::-;16585:174;;16695:40;;;;;;;;;;;;;;16585:174;16801:3;16786:12;:18;16493:313;;16887:12;16870:13;;:29;16866:43;;16901:8;;;16866:43;16449:635;;;16950:119;17006:14;;;;;;17002:2;16981:40;;16998:1;16981:40;;;;;;;;;;;;17064:3;17049:12;:18;16950:119;;16449:635;17114:12;17098:13;:28;;;;15579:1559;;17148:60;17177:1;17181:2;17185:12;17199:8;17148:20;:60::i;:::-;15092:2124;14980:2236;;;:::o;11368:142::-;11426:14;11487:5;11477:15;;11368:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:7:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:182::-;13582:34;13578:1;13570:6;13566:14;13559:58;13442:182;:::o;13630:366::-;13772:3;13793:67;13857:2;13852:3;13793:67;:::i;:::-;13786:74;;13869:93;13958:3;13869:93;:::i;:::-;13987:2;13982:3;13978:12;13971:19;;13630:366;;;:::o;14002:419::-;14168:4;14206:2;14195:9;14191:18;14183:26;;14255:9;14249:4;14245:20;14241:1;14230:9;14226:17;14219:47;14283:131;14409:4;14283:131;:::i;:::-;14275:139;;14002:419;;;:::o;14427:173::-;14567:25;14563:1;14555:6;14551:14;14544:49;14427:173;:::o;14606:366::-;14748:3;14769:67;14833:2;14828:3;14769:67;:::i;:::-;14762:74;;14845:93;14934:3;14845:93;:::i;:::-;14963:2;14958:3;14954:12;14947:19;;14606:366;;;:::o;14978:419::-;15144:4;15182:2;15171:9;15167:18;15159:26;;15231:9;15225:4;15221:20;15217:1;15206:9;15202:17;15195:47;15259:131;15385:4;15259:131;:::i;:::-;15251:139;;14978:419;;;:::o;15403:180::-;15451:77;15448:1;15441:88;15548:4;15545:1;15538:15;15572:4;15569:1;15562:15;15589:305;15629:3;15648:20;15666:1;15648:20;:::i;:::-;15643:25;;15682:20;15700:1;15682:20;:::i;:::-;15677:25;;15836:1;15768:66;15764:74;15761:1;15758:81;15755:107;;;15842:18;;:::i;:::-;15755:107;15886:1;15883;15879:9;15872:16;;15589:305;;;;:::o;15900:170::-;16040:22;16036:1;16028:6;16024:14;16017:46;15900:170;:::o;16076:366::-;16218:3;16239:67;16303:2;16298:3;16239:67;:::i;:::-;16232:74;;16315:93;16404:3;16315:93;:::i;:::-;16433:2;16428:3;16424:12;16417:19;;16076:366;;;:::o;16448:419::-;16614:4;16652:2;16641:9;16637:18;16629:26;;16701:9;16695:4;16691:20;16687:1;16676:9;16672:17;16665:47;16729:131;16855:4;16729:131;:::i;:::-;16721:139;;16448:419;;;:::o;16873:180::-;17013:32;17009:1;17001:6;16997:14;16990:56;16873:180;:::o;17059:366::-;17201:3;17222:67;17286:2;17281:3;17222:67;:::i;:::-;17215:74;;17298:93;17387:3;17298:93;:::i;:::-;17416:2;17411:3;17407:12;17400:19;;17059:366;;;:::o;17431:419::-;17597:4;17635:2;17624:9;17620:18;17612:26;;17684:9;17678:4;17674:20;17670:1;17659:9;17655:17;17648:47;17712:131;17838:4;17712:131;:::i;:::-;17704:139;;17431:419;;;:::o;17856:170::-;17996:22;17992:1;17984:6;17980:14;17973:46;17856:170;:::o;18032:366::-;18174:3;18195:67;18259:2;18254:3;18195:67;:::i;:::-;18188:74;;18271:93;18360:3;18271:93;:::i;:::-;18389:2;18384:3;18380:12;18373:19;;18032:366;;;:::o;18404:419::-;18570:4;18608:2;18597:9;18593:18;18585:26;;18657:9;18651:4;18647:20;18643:1;18632:9;18628:17;18621:47;18685:131;18811:4;18685:131;:::i;:::-;18677:139;;18404:419;;;:::o;18829:191::-;18869:4;18889:20;18907:1;18889:20;:::i;:::-;18884:25;;18923:20;18941:1;18923:20;:::i;:::-;18918:25;;18962:1;18959;18956:8;18953:34;;;18967:18;;:::i;:::-;18953:34;19012:1;19009;19005:9;18997:17;;18829:191;;;;:::o;19026:348::-;19066:7;19089:20;19107:1;19089:20;:::i;:::-;19084:25;;19123:20;19141:1;19123:20;:::i;:::-;19118:25;;19311:1;19243:66;19239:74;19236:1;19233:81;19228:1;19221:9;19214:17;19210:105;19207:131;;;19318:18;;:::i;:::-;19207:131;19366:1;19363;19359:9;19348:20;;19026:348;;;;:::o;19380:169::-;19520:21;19516:1;19508:6;19504:14;19497:45;19380:169;:::o;19555:366::-;19697:3;19718:67;19782:2;19777:3;19718:67;:::i;:::-;19711:74;;19794:93;19883:3;19794:93;:::i;:::-;19912:2;19907:3;19903:12;19896:19;;19555:366;;;:::o;19927:419::-;20093:4;20131:2;20120:9;20116:18;20108:26;;20180:9;20174:4;20170:20;20166:1;20155:9;20151:17;20144:47;20208:131;20334:4;20208:131;:::i;:::-;20200:139;;19927:419;;;:::o;20352:234::-;20492:34;20488:1;20480:6;20476:14;20469:58;20561:17;20556:2;20548:6;20544:15;20537:42;20352:234;:::o;20592:366::-;20734:3;20755:67;20819:2;20814:3;20755:67;:::i;:::-;20748:74;;20831:93;20920:3;20831:93;:::i;:::-;20949:2;20944:3;20940:12;20933:19;;20592:366;;;:::o;20964:419::-;21130:4;21168:2;21157:9;21153:18;21145:26;;21217:9;21211:4;21207:20;21203:1;21192:9;21188:17;21181:47;21245:131;21371:4;21245:131;:::i;:::-;21237:139;;20964:419;;;:::o;21389:148::-;21491:11;21528:3;21513:18;;21389:148;;;;:::o;21543:377::-;21649:3;21677:39;21710:5;21677:39;:::i;:::-;21732:89;21814:6;21809:3;21732:89;:::i;:::-;21725:96;;21830:52;21875:6;21870:3;21863:4;21856:5;21852:16;21830:52;:::i;:::-;21907:6;21902:3;21898:16;21891:23;;21653:267;21543:377;;;;:::o;21926:141::-;21975:4;21998:3;21990:11;;22021:3;22018:1;22011:14;22055:4;22052:1;22042:18;22034:26;;21926:141;;;:::o;22097:845::-;22200:3;22237:5;22231:12;22266:36;22292:9;22266:36;:::i;:::-;22318:89;22400:6;22395:3;22318:89;:::i;:::-;22311:96;;22438:1;22427:9;22423:17;22454:1;22449:137;;;;22600:1;22595:341;;;;22416:520;;22449:137;22533:4;22529:9;22518;22514:25;22509:3;22502:38;22569:6;22564:3;22560:16;22553:23;;22449:137;;22595:341;22662:38;22694:5;22662:38;:::i;:::-;22722:1;22736:154;22750:6;22747:1;22744:13;22736:154;;;22824:7;22818:14;22814:1;22809:3;22805:11;22798:35;22874:1;22865:7;22861:15;22850:26;;22772:4;22769:1;22765:12;22760:17;;22736:154;;;22919:6;22914:3;22910:16;22903:23;;22602:334;;22416:520;;22204:738;;22097:845;;;;:::o;22948:589::-;23173:3;23195:95;23286:3;23277:6;23195:95;:::i;:::-;23188:102;;23307:95;23398:3;23389:6;23307:95;:::i;:::-;23300:102;;23419:92;23507:3;23498:6;23419:92;:::i;:::-;23412:99;;23528:3;23521:10;;22948:589;;;;;;:::o;23543:225::-;23683:34;23679:1;23671:6;23667:14;23660:58;23752:8;23747:2;23739:6;23735:15;23728:33;23543:225;:::o;23774:366::-;23916:3;23937:67;24001:2;23996:3;23937:67;:::i;:::-;23930:74;;24013:93;24102:3;24013:93;:::i;:::-;24131:2;24126:3;24122:12;24115:19;;23774:366;;;:::o;24146:419::-;24312:4;24350:2;24339:9;24335:18;24327:26;;24399:9;24393:4;24389:20;24385:1;24374:9;24370:17;24363:47;24427:131;24553:4;24427:131;:::i;:::-;24419:139;;24146:419;;;:::o;24571:98::-;24622:6;24656:5;24650:12;24640:22;;24571:98;;;:::o;24675:168::-;24758:11;24792:6;24787:3;24780:19;24832:4;24827:3;24823:14;24808:29;;24675:168;;;;:::o;24849:360::-;24935:3;24963:38;24995:5;24963:38;:::i;:::-;25017:70;25080:6;25075:3;25017:70;:::i;:::-;25010:77;;25096:52;25141:6;25136:3;25129:4;25122:5;25118:16;25096:52;:::i;:::-;25173:29;25195:6;25173:29;:::i;:::-;25168:3;25164:39;25157:46;;24939:270;24849:360;;;;:::o;25215:640::-;25410:4;25448:3;25437:9;25433:19;25425:27;;25462:71;25530:1;25519:9;25515:17;25506:6;25462:71;:::i;:::-;25543:72;25611:2;25600:9;25596:18;25587:6;25543:72;:::i;:::-;25625;25693:2;25682:9;25678:18;25669:6;25625:72;:::i;:::-;25744:9;25738:4;25734:20;25729:2;25718:9;25714:18;25707:48;25772:76;25843:4;25834:6;25772:76;:::i;:::-;25764:84;;25215:640;;;;;;;:::o;25861:141::-;25917:5;25948:6;25942:13;25933:22;;25964:32;25990:5;25964:32;:::i;:::-;25861:141;;;;:::o;26008:349::-;26077:6;26126:2;26114:9;26105:7;26101:23;26097:32;26094:119;;;26132:79;;:::i;:::-;26094:119;26252:1;26277:63;26332:7;26323:6;26312:9;26308:22;26277:63;:::i;:::-;26267:73;;26223:127;26008:349;;;;:::o;26363:233::-;26402:3;26425:24;26443:5;26425:24;:::i;:::-;26416:33;;26471:66;26464:5;26461:77;26458:103;;;26541:18;;:::i;:::-;26458:103;26588:1;26581:5;26577:13;26570:20;;26363:233;;;:::o;26602:180::-;26650:77;26647:1;26640:88;26747:4;26744:1;26737:15;26771:4;26768:1;26761:15;26788:185;26828:1;26845:20;26863:1;26845:20;:::i;:::-;26840:25;;26879:20;26897:1;26879:20;:::i;:::-;26874:25;;26918:1;26908:35;;26923:18;;:::i;:::-;26908:35;26965:1;26962;26958:9;26953:14;;26788:185;;;;:::o;26979:176::-;27011:1;27028:20;27046:1;27028:20;:::i;:::-;27023:25;;27062:20;27080:1;27062:20;:::i;:::-;27057:25;;27101:1;27091:35;;27106:18;;:::i;:::-;27091:35;27147:1;27144;27140:9;27135:14;;26979:176;;;;:::o;27161:180::-;27209:77;27206:1;27199:88;27306:4;27303:1;27296:15;27330:4;27327:1;27320:15

Swarm Source

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