ETH Price: $3,311.76 (-2.93%)
Gas: 18 Gwei

Token

Guilty Bunnies (GB)
 

Overview

Max Total Supply

6,969 GB

Holders

1,640

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GB
0x15af0a3685f3fa49aaaabd7524a2bda7610453c8
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:
GuiltyBunnies

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 3 of 6: GuiltyBunnies.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

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

contract GuiltyBunnies is ERC721A, Ownable {
  
  uint256 public mintPrice = 0.169   ether;
  uint256 public presalePrice = 0.069 ether;

  bytes32 public merkleRoot;
  string _baseTokenURI;

  bool public isActive = false;
  bool public isPresaleActive = false;

  uint256 public MAX_SUPPLY = 6969;
  uint256 public maximumAllowedTokensPerPurchase = 3;
  uint256 public maximumAllowedTokensPerWallet = 3;
  uint256 public presaleWalletLimitation = 3;

  constructor(string memory baseURI) ERC721A("Guilty Bunnies", "GB") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(totalSupply() <= MAX_SUPPLY, "Sale has ended.");
    _;
  }

  modifier isValidMerkleProof(bytes32[] calldata merkleProof) {
        require(
            MerkleProof.verify(
                merkleProof,
                merkleRoot,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address does not exist in list"
        );
      _;
  }

  function setMerkleRootHash(bytes32 _rootHash) public onlyOwner {
    merkleRoot = _rootHash;
  }
  
  function setPresaleWalletLimitation(uint256 maxMint) external  onlyOwner {
    presaleWalletLimitation = maxMint;
  }

  function setMaximumAllowedTokens(uint256 _count) public onlyOwner {
    maximumAllowedTokensPerPurchase = _count;
  }

  function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyOwner {
    maximumAllowedTokensPerWallet = _count;
  }

  function setMaxMintSupply(uint256 maxMintSupply) external  onlyOwner {
    MAX_SUPPLY = maxMintSupply;
  }

  function setPrice(uint256 _price) public onlyOwner {
    mintPrice = _price;
  }

  function setPresalePrice(uint256 _preslaePrice) public onlyOwner {
    presalePrice = _preslaePrice;
  }

  function toggleSaleStatus() public onlyOwner {
    isActive = !isActive;
  }

  function togglePresaleStatus() external onlyOwner {
    isPresaleActive = !isPresaleActive;
  }

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


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

  function airdrop(uint256 _count, address _address) external onlyOwner {
    uint256 supply = totalSupply();

    require(supply + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(supply <= MAX_SUPPLY, "Total supply spent.");

    _safeMint(_address, _count);
  }

  function batchAirdrop(uint256 _count, address[] calldata addresses) external onlyOwner {
    uint256 supply = totalSupply();

    require(supply + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(supply <= MAX_SUPPLY, "Total supply spent.");

    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _safeMint(addresses[i], _count);
    }
  }

  function mint(uint256 _count) public payable saleIsOpen {
    uint256 mintIndex = totalSupply();

     if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
      require(balanceOf(msg.sender) + _count <= maximumAllowedTokensPerWallet, "Max holding cap reached.");
    }

    require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require( _count <= maximumAllowedTokensPerPurchase, "Exceeds maximum allowed tokens");
    
    require(msg.value >= (mintPrice * _count), "Insufficient ETH amount sent.");

    _safeMint(msg.sender, _count);
    
  }

  function preSaleMint(bytes32[] calldata _merkleProof, uint256 _count) public payable isValidMerkleProof(_merkleProof) saleIsOpen {
    uint256 mintIndex = totalSupply();
    uint256 discountPrice = _count;

    require(isPresaleActive, "Presale is not active");
    require(mintIndex < MAX_SUPPLY, "All tokens have been minted");
    require(balanceOf(msg.sender) + _count <= presaleWalletLimitation, "Cannot purchase this many tokens");

    if(balanceOf(msg.sender) < 1){
      discountPrice = _count - 1;
    }

    require(msg.value >= presalePrice * discountPrice, "Insufficient ETH amount sent.");
    
    _safeMint(msg.sender, _count);

  }

  function withdraw() external onlyOwner {
    uint balance = address(this).balance;
    payable(owner()).transfer(balance);
  }
}

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // 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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

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

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
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();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 5 of 6: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 6 of 6: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleWalletLimitation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"setMerkleRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preslaePrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setPresaleWalletLimitation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052670258689ac70a800060095566f5232269808000600a556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff021916908315150217905550611b39600e556003600f55600360105560036011553480156200007357600080fd5b50604051620040433803806200404383398181016040528101906200009991906200058e565b6040518060400160405280600e81526020017f4775696c74792042756e6e6965730000000000000000000000000000000000008152506040518060400160405280600281526020017f474200000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011d92919062000341565b5080600390805190602001906200013692919062000341565b50620001476200018760201b60201c565b60008190555050506200016f620001636200018c60201b60201c565b6200019460201b60201c565b62000180816200025a60201b60201c565b50620006c7565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200026a6200028660201b60201c565b80600c90805190602001906200028292919062000341565b5050565b620002966200018c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002bc6200031760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000315576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030c9062000640565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200034f9062000691565b90600052602060002090601f016020900481019282620003735760008555620003bf565b82601f106200038e57805160ff1916838001178555620003bf565b82800160010185558215620003bf579182015b82811115620003be578251825591602001919060010190620003a1565b5b509050620003ce9190620003d2565b5090565b5b80821115620003ed576000816000905550600101620003d3565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200045a826200040f565b810181811067ffffffffffffffff821117156200047c576200047b62000420565b5b80604052505050565b600062000491620003f1565b90506200049f82826200044f565b919050565b600067ffffffffffffffff821115620004c257620004c162000420565b5b620004cd826200040f565b9050602081019050919050565b60005b83811015620004fa578082015181840152602081019050620004dd565b838111156200050a576000848401525b50505050565b6000620005276200052184620004a4565b62000485565b9050828152602081018484840111156200054657620005456200040a565b5b62000553848285620004da565b509392505050565b600082601f83011262000573576200057262000405565b5b81516200058584826020860162000510565b91505092915050565b600060208284031215620005a757620005a6620003fb565b5b600082015167ffffffffffffffff811115620005c857620005c762000400565b5b620005d6848285016200055b565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000628602083620005df565b91506200063582620005f0565b602082019050919050565b600060208201905081810360008301526200065b8162000619565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006aa57607f821691505b60208210811415620006c157620006c062000662565b5b50919050565b61396c80620006d76000396000f3fe6080604052600436106102455760003560e01c806370a0823111610139578063a0712d68116100b6578063c87b56dd1161007a578063c87b56dd146107eb578063cadf881814610828578063e985e9c514610853578063ea6eb83614610890578063f2fde38b146108b9578063fb7e6ccb146108e257610245565b8063a0712d681461072b578063a22cb46514610747578063ae70a18e14610770578063b88d4fde14610799578063bc63f02e146107c257610245565b80638da5cb5b116100fd5780638da5cb5b1461065857806391b7f5ed1461068357806395d89b41146106ac5780639a3bf728146106d75780639ba411b11461070257610245565b806370a08231146105a8578063715018a6146105e55780637389fbb7146105fc57806378179976146106255780637bffb4ce1461064157610245565b80632eb4a7ab116101c75780634dfea6271161018b5780634dfea627146104c357806355f804b3146104ec57806360d938dc146105155780636352211e146105405780636817c76c1461057d57610245565b80632eb4a7ab1461040457806332cb6b0c1461042f5780633549345e1461045a5780633ccfd60b1461048357806342842e0e1461049a57610245565b8063095ea7b31161020e578063095ea7b3146103315780630cf726001461035a57806318160ddd1461038557806322f3e2d4146103b057806323b872dd146103db57610245565b80620e7fa81461024a57806301ffc9a714610275578063049c5c49146102b257806306fdde03146102c9578063081812fc146102f4575b600080fd5b34801561025657600080fd5b5061025f61090b565b60405161026c91906126bf565b60405180910390f35b34801561028157600080fd5b5061029c60048036038101906102979190612746565b610911565b6040516102a9919061278e565b60405180910390f35b3480156102be57600080fd5b506102c76109a3565b005b3480156102d557600080fd5b506102de6109d7565b6040516102eb9190612842565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612890565b610a69565b60405161032891906128fe565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190612945565b610ae8565b005b34801561036657600080fd5b5061036f610c2c565b60405161037c91906126bf565b60405180910390f35b34801561039157600080fd5b5061039a610c32565b6040516103a791906126bf565b60405180910390f35b3480156103bc57600080fd5b506103c5610c49565b6040516103d2919061278e565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190612985565b610c5c565b005b34801561041057600080fd5b50610419610f81565b60405161042691906129f1565b60405180910390f35b34801561043b57600080fd5b50610444610f87565b60405161045191906126bf565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190612890565b610f8d565b005b34801561048f57600080fd5b50610498610f9f565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190612985565b610ffd565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190612890565b61101d565b005b3480156104f857600080fd5b50610513600480360381019061050e9190612b41565b61102f565b005b34801561052157600080fd5b5061052a611051565b604051610537919061278e565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190612890565b611064565b60405161057491906128fe565b60405180910390f35b34801561058957600080fd5b50610592611076565b60405161059f91906126bf565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca9190612b8a565b61107c565b6040516105dc91906126bf565b60405180910390f35b3480156105f157600080fd5b506105fa611135565b005b34801561060857600080fd5b50610623600480360381019061061e9190612890565b611149565b005b61063f600480360381019061063a9190612c17565b61115b565b005b34801561064d57600080fd5b506106566113dc565b005b34801561066457600080fd5b5061066d611410565b60405161067a91906128fe565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612890565b61143a565b005b3480156106b857600080fd5b506106c161144c565b6040516106ce9190612842565b60405180910390f35b3480156106e357600080fd5b506106ec6114de565b6040516106f991906126bf565b60405180910390f35b34801561070e57600080fd5b5061072960048036038101906107249190612ca3565b6114e4565b005b61074560048036038101906107409190612890565b6114f6565b005b34801561075357600080fd5b5061076e60048036038101906107699190612cfc565b611723565b005b34801561077c57600080fd5b5061079760048036038101906107929190612890565b61189b565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190612ddd565b6118ad565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190612e60565b611920565b005b3480156107f757600080fd5b50610812600480360381019061080d9190612890565b6119d8565b60405161081f9190612842565b60405180910390f35b34801561083457600080fd5b5061083d611a77565b60405161084a91906126bf565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190612ea0565b611a7d565b604051610887919061278e565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b29190612890565b611b11565b005b3480156108c557600080fd5b506108e060048036038101906108db9190612b8a565b611b23565b005b3480156108ee57600080fd5b5061090960048036038101906109049190612f36565b611ba7565b005b600a5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6109ab611d40565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6060600280546109e690612fc5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1290612fc5565b8015610a5f5780601f10610a3457610100808354040283529160200191610a5f565b820191906000526020600020905b815481529060010190602001808311610a4257829003601f168201915b5050505050905090565b6000610a7482611dbe565b610aaa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af382611064565b90508073ffffffffffffffffffffffffffffffffffffffff16610b14611e1d565b73ffffffffffffffffffffffffffffffffffffffff1614610b7757610b4081610b3b611e1d565b611a7d565b610b76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60115481565b6000610c3c611e25565b6001546000540303905090565b600d60009054906101000a900460ff1681565b6000610c6782611e2a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cda84611ef8565b91509150610cf08187610ceb611e1d565b611f1f565b610d3c57610d0586610d00611e1d565b611a7d565b610d3b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610da3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610db08686866001611f63565b8015610dbb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e8985610e65888887611f69565b7c020000000000000000000000000000000000000000000000000000000017611f91565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f11576000600185019050600060046000838152602001908152602001600020541415610f0f576000548114610f0e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f798686866001611fbc565b505050505050565b600b5481565b600e5481565b610f95611d40565b80600a8190555050565b610fa7611d40565b6000479050610fb4611410565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ff9573d6000803e3d6000fd5b5050565b611018838383604051806020016040528060008152506118ad565b505050565b611025611d40565b80600f8190555050565b611037611d40565b80600c908051906020019061104d929190612603565b5050565b600d60019054906101000a900460ff1681565b600061106f82611e2a565b9050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61113d611d40565b6111476000611fc2565b565b611151611d40565b80600e8190555050565b82826111d1828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b54336040516020016111b6919061303f565b60405160208183030381529060405280519060200120612088565b611210576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611207906130a6565b60405180910390fd5b600e5461121b610c32565b111561125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390613112565b60405180910390fd5b6000611266610c32565b90506000849050600d60019054906101000a900460ff166112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b39061317e565b60405180910390fd5b600e548210611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f7906131ea565b60405180910390fd5b6011548561130d3361107c565b6113179190613239565b1115611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f906132db565b60405180910390fd5b60016113633361107c565b10156113795760018561137691906132fb565b90505b80600a54611387919061332f565b3410156113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906133d5565b60405180910390fd5b6113d3338661209f565b50505050505050565b6113e4611d40565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611442611d40565b8060098190555050565b60606003805461145b90612fc5565b80601f016020809104026020016040519081016040528092919081815260200182805461148790612fc5565b80156114d45780601f106114a9576101008083540402835291602001916114d4565b820191906000526020600020905b8154815290600101906020018083116114b757829003601f168201915b5050505050905090565b600f5481565b6114ec611d40565b80600b8190555050565b600e54611501610c32565b1115611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990613112565b60405180910390fd5b600061154c610c32565b9050611556611410565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461163057600d60009054906101000a900460ff166115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90613441565b60405180910390fd5b601054826115e43361107c565b6115ee9190613239565b111561162f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611626906134ad565b60405180910390fd5b5b600e54828261163f9190613239565b1115611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613519565b60405180910390fd5b600f548211156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90613585565b60405180910390fd5b816009546116d3919061332f565b341015611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c906133d5565b60405180910390fd5b61171f338361209f565b5050565b61172b611e1d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611790576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061179d611e1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661184a611e1d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188f919061278e565b60405180910390a35050565b6118a3611d40565b8060118190555050565b6118b8848484610c5c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461191a576118e3848484846120bd565b611919576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611928611d40565b6000611932610c32565b9050600e5483826119439190613239565b1115611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b90613519565b60405180910390fd5b600e548111156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c0906135f1565b60405180910390fd5b6119d3828461209f565b505050565b60606119e382611dbe565b611a19576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a2361220e565b9050600081511415611a445760405180602001604052806000815250611a6f565b80611a4e846122a0565b604051602001611a5f92919061364d565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b19611d40565b8060108190555050565b611b2b611d40565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b92906136e3565b60405180910390fd5b611ba481611fc2565b50565b611baf611d40565b6000611bb9610c32565b9050600e548482611bca9190613239565b1115611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0290613519565b60405180910390fd5b600e54811115611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c47906135f1565b60405180910390fd5b60005b83839050811015611d3957600073ffffffffffffffffffffffffffffffffffffffff16848483818110611c8957611c88613703565b5b9050602002016020810190611c9e9190612b8a565b73ffffffffffffffffffffffffffffffffffffffff161415611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec9061377e565b60405180910390fd5b611d26848483818110611d0b57611d0a613703565b5b9050602002016020810190611d209190612b8a565b8661209f565b8080611d319061379e565b915050611c53565b5050505050565b611d486122f0565b73ffffffffffffffffffffffffffffffffffffffff16611d66611410565b73ffffffffffffffffffffffffffffffffffffffff1614611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db390613833565b60405180910390fd5b565b600081611dc9611e25565b11158015611dd8575060005482105b8015611e16575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611e39611e25565b11611ec157600054811015611ec05760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ebe575b6000811415611eb4576004600083600190039350838152602001908152602001600020549050611e89565b8092505050611ef3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f808686846122f8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826120958584612301565b1490509392505050565b6120b9828260405180602001604052806000815250612357565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120e3611e1d565b8786866040518563ffffffff1660e01b815260040161210594939291906138a8565b6020604051808303816000875af192505050801561214157506040513d601f19601f8201168201806040525081019061213e9190613909565b60015b6121bb573d8060008114612171576040519150601f19603f3d011682016040523d82523d6000602084013e612176565b606091505b506000815114156121b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461221d90612fc5565b80601f016020809104026020016040519081016040528092919081815260200182805461224990612fc5565b80156122965780601f1061226b57610100808354040283529160200191612296565b820191906000526020600020905b81548152906001019060200180831161227957829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156122dc57600183039250600a81066030018353600a81049050806122d7576122dc565b6122b1565b508181036020830392508083525050919050565b600033905090565b60009392505050565b60008082905060005b845181101561234c576123378286838151811061232a57612329613703565b5b60200260200101516123f4565b915080806123449061379e565b91505061230a565b508091505092915050565b612361838361241f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123ef57600080549050600083820390505b6123a160008683806001019450866120bd565b6123d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061238e5781600054146123ec57600080fd5b50505b505050565b600081831061240c5761240782846125dc565b612417565b61241683836125dc565b5b905092915050565b6000805490506000821415612460576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61246d6000848385611f63565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124e4836124d56000866000611f69565b6124de856125f3565b17611f91565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461258557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061254a565b5060008214156125c1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125d76000848385611fbc565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461260f90612fc5565b90600052602060002090601f0160209004810192826126315760008555612678565b82601f1061264a57805160ff1916838001178555612678565b82800160010185558215612678579182015b8281111561267757825182559160200191906001019061265c565b5b5090506126859190612689565b5090565b5b808211156126a257600081600090555060010161268a565b5090565b6000819050919050565b6126b9816126a6565b82525050565b60006020820190506126d460008301846126b0565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612723816126ee565b811461272e57600080fd5b50565b6000813590506127408161271a565b92915050565b60006020828403121561275c5761275b6126e4565b5b600061276a84828501612731565b91505092915050565b60008115159050919050565b61278881612773565b82525050565b60006020820190506127a3600083018461277f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127e35780820151818401526020810190506127c8565b838111156127f2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612814826127a9565b61281e81856127b4565b935061282e8185602086016127c5565b612837816127f8565b840191505092915050565b6000602082019050818103600083015261285c8184612809565b905092915050565b61286d816126a6565b811461287857600080fd5b50565b60008135905061288a81612864565b92915050565b6000602082840312156128a6576128a56126e4565b5b60006128b48482850161287b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128e8826128bd565b9050919050565b6128f8816128dd565b82525050565b600060208201905061291360008301846128ef565b92915050565b612922816128dd565b811461292d57600080fd5b50565b60008135905061293f81612919565b92915050565b6000806040838503121561295c5761295b6126e4565b5b600061296a85828601612930565b925050602061297b8582860161287b565b9150509250929050565b60008060006060848603121561299e5761299d6126e4565b5b60006129ac86828701612930565b93505060206129bd86828701612930565b92505060406129ce8682870161287b565b9150509250925092565b6000819050919050565b6129eb816129d8565b82525050565b6000602082019050612a0660008301846129e2565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a4e826127f8565b810181811067ffffffffffffffff82111715612a6d57612a6c612a16565b5b80604052505050565b6000612a806126da565b9050612a8c8282612a45565b919050565b600067ffffffffffffffff821115612aac57612aab612a16565b5b612ab5826127f8565b9050602081019050919050565b82818337600083830152505050565b6000612ae4612adf84612a91565b612a76565b905082815260208101848484011115612b0057612aff612a11565b5b612b0b848285612ac2565b509392505050565b600082601f830112612b2857612b27612a0c565b5b8135612b38848260208601612ad1565b91505092915050565b600060208284031215612b5757612b566126e4565b5b600082013567ffffffffffffffff811115612b7557612b746126e9565b5b612b8184828501612b13565b91505092915050565b600060208284031215612ba057612b9f6126e4565b5b6000612bae84828501612930565b91505092915050565b600080fd5b600080fd5b60008083601f840112612bd757612bd6612a0c565b5b8235905067ffffffffffffffff811115612bf457612bf3612bb7565b5b602083019150836020820283011115612c1057612c0f612bbc565b5b9250929050565b600080600060408486031215612c3057612c2f6126e4565b5b600084013567ffffffffffffffff811115612c4e57612c4d6126e9565b5b612c5a86828701612bc1565b93509350506020612c6d8682870161287b565b9150509250925092565b612c80816129d8565b8114612c8b57600080fd5b50565b600081359050612c9d81612c77565b92915050565b600060208284031215612cb957612cb86126e4565b5b6000612cc784828501612c8e565b91505092915050565b612cd981612773565b8114612ce457600080fd5b50565b600081359050612cf681612cd0565b92915050565b60008060408385031215612d1357612d126126e4565b5b6000612d2185828601612930565b9250506020612d3285828601612ce7565b9150509250929050565b600067ffffffffffffffff821115612d5757612d56612a16565b5b612d60826127f8565b9050602081019050919050565b6000612d80612d7b84612d3c565b612a76565b905082815260208101848484011115612d9c57612d9b612a11565b5b612da7848285612ac2565b509392505050565b600082601f830112612dc457612dc3612a0c565b5b8135612dd4848260208601612d6d565b91505092915050565b60008060008060808587031215612df757612df66126e4565b5b6000612e0587828801612930565b9450506020612e1687828801612930565b9350506040612e278782880161287b565b925050606085013567ffffffffffffffff811115612e4857612e476126e9565b5b612e5487828801612daf565b91505092959194509250565b60008060408385031215612e7757612e766126e4565b5b6000612e858582860161287b565b9250506020612e9685828601612930565b9150509250929050565b60008060408385031215612eb757612eb66126e4565b5b6000612ec585828601612930565b9250506020612ed685828601612930565b9150509250929050565b60008083601f840112612ef657612ef5612a0c565b5b8235905067ffffffffffffffff811115612f1357612f12612bb7565b5b602083019150836020820283011115612f2f57612f2e612bbc565b5b9250929050565b600080600060408486031215612f4f57612f4e6126e4565b5b6000612f5d8682870161287b565b935050602084013567ffffffffffffffff811115612f7e57612f7d6126e9565b5b612f8a86828701612ee0565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fdd57607f821691505b60208210811415612ff157612ff0612f96565b5b50919050565b60008160601b9050919050565b600061300f82612ff7565b9050919050565b600061302182613004565b9050919050565b613039613034826128dd565b613016565b82525050565b600061304b8284613028565b60148201915081905092915050565b7f4164647265737320646f6573206e6f7420657869737420696e206c6973740000600082015250565b6000613090601e836127b4565b915061309b8261305a565b602082019050919050565b600060208201905081810360008301526130bf81613083565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b60006130fc600f836127b4565b9150613107826130c6565b602082019050919050565b6000602082019050818103600083015261312b816130ef565b9050919050565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b60006131686015836127b4565b915061317382613132565b602082019050919050565b600060208201905081810360008301526131978161315b565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b60006131d4601b836127b4565b91506131df8261319e565b602082019050919050565b60006020820190508181036000830152613203816131c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613244826126a6565b915061324f836126a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132845761328361320a565b5b828201905092915050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b60006132c56020836127b4565b91506132d08261328f565b602082019050919050565b600060208201905081810360008301526132f4816132b8565b9050919050565b6000613306826126a6565b9150613311836126a6565b9250828210156133245761332361320a565b5b828203905092915050565b600061333a826126a6565b9150613345836126a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561337e5761337d61320a565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b60006133bf601d836127b4565b91506133ca82613389565b602082019050919050565b600060208201905081810360008301526133ee816133b2565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b600061342b601d836127b4565b9150613436826133f5565b602082019050919050565b6000602082019050818103600083015261345a8161341e565b9050919050565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b60006134976018836127b4565b91506134a282613461565b602082019050919050565b600060208201905081810360008301526134c68161348a565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006135036016836127b4565b915061350e826134cd565b602082019050919050565b60006020820190508181036000830152613532816134f6565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b600061356f601e836127b4565b915061357a82613539565b602082019050919050565b6000602082019050818103600083015261359e81613562565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b60006135db6013836127b4565b91506135e6826135a5565b602082019050919050565b6000602082019050818103600083015261360a816135ce565b9050919050565b600081905092915050565b6000613627826127a9565b6136318185613611565b93506136418185602086016127c5565b80840191505092915050565b6000613659828561361c565b9150613665828461361c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136cd6026836127b4565b91506136d882613671565b604082019050919050565b600060208201905081810360008301526136fc816136c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006137686018836127b4565b915061377382613732565b602082019050919050565b600060208201905081810360008301526137978161375b565b9050919050565b60006137a9826126a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137dc576137db61320a565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061381d6020836127b4565b9150613828826137e7565b602082019050919050565b6000602082019050818103600083015261384c81613810565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061387a82613853565b613884818561385e565b93506138948185602086016127c5565b61389d816127f8565b840191505092915050565b60006080820190506138bd60008301876128ef565b6138ca60208301866128ef565b6138d760408301856126b0565b81810360608301526138e9818461386f565b905095945050505050565b6000815190506139038161271a565b92915050565b60006020828403121561391f5761391e6126e4565b5b600061392d848285016138f4565b9150509291505056fea2646970667358221220d853ab6c969d0699f0b372e5ea1f09de2c4ddc2a9ed4a67b93f1b90b54daa7d364736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102455760003560e01c806370a0823111610139578063a0712d68116100b6578063c87b56dd1161007a578063c87b56dd146107eb578063cadf881814610828578063e985e9c514610853578063ea6eb83614610890578063f2fde38b146108b9578063fb7e6ccb146108e257610245565b8063a0712d681461072b578063a22cb46514610747578063ae70a18e14610770578063b88d4fde14610799578063bc63f02e146107c257610245565b80638da5cb5b116100fd5780638da5cb5b1461065857806391b7f5ed1461068357806395d89b41146106ac5780639a3bf728146106d75780639ba411b11461070257610245565b806370a08231146105a8578063715018a6146105e55780637389fbb7146105fc57806378179976146106255780637bffb4ce1461064157610245565b80632eb4a7ab116101c75780634dfea6271161018b5780634dfea627146104c357806355f804b3146104ec57806360d938dc146105155780636352211e146105405780636817c76c1461057d57610245565b80632eb4a7ab1461040457806332cb6b0c1461042f5780633549345e1461045a5780633ccfd60b1461048357806342842e0e1461049a57610245565b8063095ea7b31161020e578063095ea7b3146103315780630cf726001461035a57806318160ddd1461038557806322f3e2d4146103b057806323b872dd146103db57610245565b80620e7fa81461024a57806301ffc9a714610275578063049c5c49146102b257806306fdde03146102c9578063081812fc146102f4575b600080fd5b34801561025657600080fd5b5061025f61090b565b60405161026c91906126bf565b60405180910390f35b34801561028157600080fd5b5061029c60048036038101906102979190612746565b610911565b6040516102a9919061278e565b60405180910390f35b3480156102be57600080fd5b506102c76109a3565b005b3480156102d557600080fd5b506102de6109d7565b6040516102eb9190612842565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612890565b610a69565b60405161032891906128fe565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190612945565b610ae8565b005b34801561036657600080fd5b5061036f610c2c565b60405161037c91906126bf565b60405180910390f35b34801561039157600080fd5b5061039a610c32565b6040516103a791906126bf565b60405180910390f35b3480156103bc57600080fd5b506103c5610c49565b6040516103d2919061278e565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190612985565b610c5c565b005b34801561041057600080fd5b50610419610f81565b60405161042691906129f1565b60405180910390f35b34801561043b57600080fd5b50610444610f87565b60405161045191906126bf565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190612890565b610f8d565b005b34801561048f57600080fd5b50610498610f9f565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190612985565b610ffd565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190612890565b61101d565b005b3480156104f857600080fd5b50610513600480360381019061050e9190612b41565b61102f565b005b34801561052157600080fd5b5061052a611051565b604051610537919061278e565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190612890565b611064565b60405161057491906128fe565b60405180910390f35b34801561058957600080fd5b50610592611076565b60405161059f91906126bf565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca9190612b8a565b61107c565b6040516105dc91906126bf565b60405180910390f35b3480156105f157600080fd5b506105fa611135565b005b34801561060857600080fd5b50610623600480360381019061061e9190612890565b611149565b005b61063f600480360381019061063a9190612c17565b61115b565b005b34801561064d57600080fd5b506106566113dc565b005b34801561066457600080fd5b5061066d611410565b60405161067a91906128fe565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612890565b61143a565b005b3480156106b857600080fd5b506106c161144c565b6040516106ce9190612842565b60405180910390f35b3480156106e357600080fd5b506106ec6114de565b6040516106f991906126bf565b60405180910390f35b34801561070e57600080fd5b5061072960048036038101906107249190612ca3565b6114e4565b005b61074560048036038101906107409190612890565b6114f6565b005b34801561075357600080fd5b5061076e60048036038101906107699190612cfc565b611723565b005b34801561077c57600080fd5b5061079760048036038101906107929190612890565b61189b565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190612ddd565b6118ad565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190612e60565b611920565b005b3480156107f757600080fd5b50610812600480360381019061080d9190612890565b6119d8565b60405161081f9190612842565b60405180910390f35b34801561083457600080fd5b5061083d611a77565b60405161084a91906126bf565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190612ea0565b611a7d565b604051610887919061278e565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b29190612890565b611b11565b005b3480156108c557600080fd5b506108e060048036038101906108db9190612b8a565b611b23565b005b3480156108ee57600080fd5b5061090960048036038101906109049190612f36565b611ba7565b005b600a5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6109ab611d40565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6060600280546109e690612fc5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1290612fc5565b8015610a5f5780601f10610a3457610100808354040283529160200191610a5f565b820191906000526020600020905b815481529060010190602001808311610a4257829003601f168201915b5050505050905090565b6000610a7482611dbe565b610aaa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af382611064565b90508073ffffffffffffffffffffffffffffffffffffffff16610b14611e1d565b73ffffffffffffffffffffffffffffffffffffffff1614610b7757610b4081610b3b611e1d565b611a7d565b610b76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60115481565b6000610c3c611e25565b6001546000540303905090565b600d60009054906101000a900460ff1681565b6000610c6782611e2a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cda84611ef8565b91509150610cf08187610ceb611e1d565b611f1f565b610d3c57610d0586610d00611e1d565b611a7d565b610d3b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610da3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610db08686866001611f63565b8015610dbb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e8985610e65888887611f69565b7c020000000000000000000000000000000000000000000000000000000017611f91565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f11576000600185019050600060046000838152602001908152602001600020541415610f0f576000548114610f0e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f798686866001611fbc565b505050505050565b600b5481565b600e5481565b610f95611d40565b80600a8190555050565b610fa7611d40565b6000479050610fb4611410565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ff9573d6000803e3d6000fd5b5050565b611018838383604051806020016040528060008152506118ad565b505050565b611025611d40565b80600f8190555050565b611037611d40565b80600c908051906020019061104d929190612603565b5050565b600d60019054906101000a900460ff1681565b600061106f82611e2a565b9050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61113d611d40565b6111476000611fc2565b565b611151611d40565b80600e8190555050565b82826111d1828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b54336040516020016111b6919061303f565b60405160208183030381529060405280519060200120612088565b611210576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611207906130a6565b60405180910390fd5b600e5461121b610c32565b111561125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390613112565b60405180910390fd5b6000611266610c32565b90506000849050600d60019054906101000a900460ff166112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b39061317e565b60405180910390fd5b600e548210611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f7906131ea565b60405180910390fd5b6011548561130d3361107c565b6113179190613239565b1115611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f906132db565b60405180910390fd5b60016113633361107c565b10156113795760018561137691906132fb565b90505b80600a54611387919061332f565b3410156113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906133d5565b60405180910390fd5b6113d3338661209f565b50505050505050565b6113e4611d40565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611442611d40565b8060098190555050565b60606003805461145b90612fc5565b80601f016020809104026020016040519081016040528092919081815260200182805461148790612fc5565b80156114d45780601f106114a9576101008083540402835291602001916114d4565b820191906000526020600020905b8154815290600101906020018083116114b757829003601f168201915b5050505050905090565b600f5481565b6114ec611d40565b80600b8190555050565b600e54611501610c32565b1115611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990613112565b60405180910390fd5b600061154c610c32565b9050611556611410565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461163057600d60009054906101000a900460ff166115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90613441565b60405180910390fd5b601054826115e43361107c565b6115ee9190613239565b111561162f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611626906134ad565b60405180910390fd5b5b600e54828261163f9190613239565b1115611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613519565b60405180910390fd5b600f548211156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90613585565b60405180910390fd5b816009546116d3919061332f565b341015611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c906133d5565b60405180910390fd5b61171f338361209f565b5050565b61172b611e1d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611790576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061179d611e1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661184a611e1d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188f919061278e565b60405180910390a35050565b6118a3611d40565b8060118190555050565b6118b8848484610c5c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461191a576118e3848484846120bd565b611919576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611928611d40565b6000611932610c32565b9050600e5483826119439190613239565b1115611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b90613519565b60405180910390fd5b600e548111156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c0906135f1565b60405180910390fd5b6119d3828461209f565b505050565b60606119e382611dbe565b611a19576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a2361220e565b9050600081511415611a445760405180602001604052806000815250611a6f565b80611a4e846122a0565b604051602001611a5f92919061364d565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b19611d40565b8060108190555050565b611b2b611d40565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b92906136e3565b60405180910390fd5b611ba481611fc2565b50565b611baf611d40565b6000611bb9610c32565b9050600e548482611bca9190613239565b1115611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0290613519565b60405180910390fd5b600e54811115611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c47906135f1565b60405180910390fd5b60005b83839050811015611d3957600073ffffffffffffffffffffffffffffffffffffffff16848483818110611c8957611c88613703565b5b9050602002016020810190611c9e9190612b8a565b73ffffffffffffffffffffffffffffffffffffffff161415611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec9061377e565b60405180910390fd5b611d26848483818110611d0b57611d0a613703565b5b9050602002016020810190611d209190612b8a565b8661209f565b8080611d319061379e565b915050611c53565b5050505050565b611d486122f0565b73ffffffffffffffffffffffffffffffffffffffff16611d66611410565b73ffffffffffffffffffffffffffffffffffffffff1614611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db390613833565b60405180910390fd5b565b600081611dc9611e25565b11158015611dd8575060005482105b8015611e16575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611e39611e25565b11611ec157600054811015611ec05760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ebe575b6000811415611eb4576004600083600190039350838152602001908152602001600020549050611e89565b8092505050611ef3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f808686846122f8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826120958584612301565b1490509392505050565b6120b9828260405180602001604052806000815250612357565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120e3611e1d565b8786866040518563ffffffff1660e01b815260040161210594939291906138a8565b6020604051808303816000875af192505050801561214157506040513d601f19601f8201168201806040525081019061213e9190613909565b60015b6121bb573d8060008114612171576040519150601f19603f3d011682016040523d82523d6000602084013e612176565b606091505b506000815114156121b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461221d90612fc5565b80601f016020809104026020016040519081016040528092919081815260200182805461224990612fc5565b80156122965780601f1061226b57610100808354040283529160200191612296565b820191906000526020600020905b81548152906001019060200180831161227957829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156122dc57600183039250600a81066030018353600a81049050806122d7576122dc565b6122b1565b508181036020830392508083525050919050565b600033905090565b60009392505050565b60008082905060005b845181101561234c576123378286838151811061232a57612329613703565b5b60200260200101516123f4565b915080806123449061379e565b91505061230a565b508091505092915050565b612361838361241f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123ef57600080549050600083820390505b6123a160008683806001019450866120bd565b6123d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061238e5781600054146123ec57600080fd5b50505b505050565b600081831061240c5761240782846125dc565b612417565b61241683836125dc565b5b905092915050565b6000805490506000821415612460576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61246d6000848385611f63565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124e4836124d56000866000611f69565b6124de856125f3565b17611f91565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461258557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061254a565b5060008214156125c1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125d76000848385611fbc565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461260f90612fc5565b90600052602060002090601f0160209004810192826126315760008555612678565b82601f1061264a57805160ff1916838001178555612678565b82800160010185558215612678579182015b8281111561267757825182559160200191906001019061265c565b5b5090506126859190612689565b5090565b5b808211156126a257600081600090555060010161268a565b5090565b6000819050919050565b6126b9816126a6565b82525050565b60006020820190506126d460008301846126b0565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612723816126ee565b811461272e57600080fd5b50565b6000813590506127408161271a565b92915050565b60006020828403121561275c5761275b6126e4565b5b600061276a84828501612731565b91505092915050565b60008115159050919050565b61278881612773565b82525050565b60006020820190506127a3600083018461277f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127e35780820151818401526020810190506127c8565b838111156127f2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612814826127a9565b61281e81856127b4565b935061282e8185602086016127c5565b612837816127f8565b840191505092915050565b6000602082019050818103600083015261285c8184612809565b905092915050565b61286d816126a6565b811461287857600080fd5b50565b60008135905061288a81612864565b92915050565b6000602082840312156128a6576128a56126e4565b5b60006128b48482850161287b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128e8826128bd565b9050919050565b6128f8816128dd565b82525050565b600060208201905061291360008301846128ef565b92915050565b612922816128dd565b811461292d57600080fd5b50565b60008135905061293f81612919565b92915050565b6000806040838503121561295c5761295b6126e4565b5b600061296a85828601612930565b925050602061297b8582860161287b565b9150509250929050565b60008060006060848603121561299e5761299d6126e4565b5b60006129ac86828701612930565b93505060206129bd86828701612930565b92505060406129ce8682870161287b565b9150509250925092565b6000819050919050565b6129eb816129d8565b82525050565b6000602082019050612a0660008301846129e2565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a4e826127f8565b810181811067ffffffffffffffff82111715612a6d57612a6c612a16565b5b80604052505050565b6000612a806126da565b9050612a8c8282612a45565b919050565b600067ffffffffffffffff821115612aac57612aab612a16565b5b612ab5826127f8565b9050602081019050919050565b82818337600083830152505050565b6000612ae4612adf84612a91565b612a76565b905082815260208101848484011115612b0057612aff612a11565b5b612b0b848285612ac2565b509392505050565b600082601f830112612b2857612b27612a0c565b5b8135612b38848260208601612ad1565b91505092915050565b600060208284031215612b5757612b566126e4565b5b600082013567ffffffffffffffff811115612b7557612b746126e9565b5b612b8184828501612b13565b91505092915050565b600060208284031215612ba057612b9f6126e4565b5b6000612bae84828501612930565b91505092915050565b600080fd5b600080fd5b60008083601f840112612bd757612bd6612a0c565b5b8235905067ffffffffffffffff811115612bf457612bf3612bb7565b5b602083019150836020820283011115612c1057612c0f612bbc565b5b9250929050565b600080600060408486031215612c3057612c2f6126e4565b5b600084013567ffffffffffffffff811115612c4e57612c4d6126e9565b5b612c5a86828701612bc1565b93509350506020612c6d8682870161287b565b9150509250925092565b612c80816129d8565b8114612c8b57600080fd5b50565b600081359050612c9d81612c77565b92915050565b600060208284031215612cb957612cb86126e4565b5b6000612cc784828501612c8e565b91505092915050565b612cd981612773565b8114612ce457600080fd5b50565b600081359050612cf681612cd0565b92915050565b60008060408385031215612d1357612d126126e4565b5b6000612d2185828601612930565b9250506020612d3285828601612ce7565b9150509250929050565b600067ffffffffffffffff821115612d5757612d56612a16565b5b612d60826127f8565b9050602081019050919050565b6000612d80612d7b84612d3c565b612a76565b905082815260208101848484011115612d9c57612d9b612a11565b5b612da7848285612ac2565b509392505050565b600082601f830112612dc457612dc3612a0c565b5b8135612dd4848260208601612d6d565b91505092915050565b60008060008060808587031215612df757612df66126e4565b5b6000612e0587828801612930565b9450506020612e1687828801612930565b9350506040612e278782880161287b565b925050606085013567ffffffffffffffff811115612e4857612e476126e9565b5b612e5487828801612daf565b91505092959194509250565b60008060408385031215612e7757612e766126e4565b5b6000612e858582860161287b565b9250506020612e9685828601612930565b9150509250929050565b60008060408385031215612eb757612eb66126e4565b5b6000612ec585828601612930565b9250506020612ed685828601612930565b9150509250929050565b60008083601f840112612ef657612ef5612a0c565b5b8235905067ffffffffffffffff811115612f1357612f12612bb7565b5b602083019150836020820283011115612f2f57612f2e612bbc565b5b9250929050565b600080600060408486031215612f4f57612f4e6126e4565b5b6000612f5d8682870161287b565b935050602084013567ffffffffffffffff811115612f7e57612f7d6126e9565b5b612f8a86828701612ee0565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fdd57607f821691505b60208210811415612ff157612ff0612f96565b5b50919050565b60008160601b9050919050565b600061300f82612ff7565b9050919050565b600061302182613004565b9050919050565b613039613034826128dd565b613016565b82525050565b600061304b8284613028565b60148201915081905092915050565b7f4164647265737320646f6573206e6f7420657869737420696e206c6973740000600082015250565b6000613090601e836127b4565b915061309b8261305a565b602082019050919050565b600060208201905081810360008301526130bf81613083565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b60006130fc600f836127b4565b9150613107826130c6565b602082019050919050565b6000602082019050818103600083015261312b816130ef565b9050919050565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b60006131686015836127b4565b915061317382613132565b602082019050919050565b600060208201905081810360008301526131978161315b565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b60006131d4601b836127b4565b91506131df8261319e565b602082019050919050565b60006020820190508181036000830152613203816131c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613244826126a6565b915061324f836126a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132845761328361320a565b5b828201905092915050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b60006132c56020836127b4565b91506132d08261328f565b602082019050919050565b600060208201905081810360008301526132f4816132b8565b9050919050565b6000613306826126a6565b9150613311836126a6565b9250828210156133245761332361320a565b5b828203905092915050565b600061333a826126a6565b9150613345836126a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561337e5761337d61320a565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b60006133bf601d836127b4565b91506133ca82613389565b602082019050919050565b600060208201905081810360008301526133ee816133b2565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b600061342b601d836127b4565b9150613436826133f5565b602082019050919050565b6000602082019050818103600083015261345a8161341e565b9050919050565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b60006134976018836127b4565b91506134a282613461565b602082019050919050565b600060208201905081810360008301526134c68161348a565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006135036016836127b4565b915061350e826134cd565b602082019050919050565b60006020820190508181036000830152613532816134f6565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b600061356f601e836127b4565b915061357a82613539565b602082019050919050565b6000602082019050818103600083015261359e81613562565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b60006135db6013836127b4565b91506135e6826135a5565b602082019050919050565b6000602082019050818103600083015261360a816135ce565b9050919050565b600081905092915050565b6000613627826127a9565b6136318185613611565b93506136418185602086016127c5565b80840191505092915050565b6000613659828561361c565b9150613665828461361c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136cd6026836127b4565b91506136d882613671565b604082019050919050565b600060208201905081810360008301526136fc816136c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006137686018836127b4565b915061377382613732565b602082019050919050565b600060208201905081810360008301526137978161375b565b9050919050565b60006137a9826126a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137dc576137db61320a565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061381d6020836127b4565b9150613828826137e7565b602082019050919050565b6000602082019050818103600083015261384c81613810565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061387a82613853565b613884818561385e565b93506138948185602086016127c5565b61389d816127f8565b840191505092915050565b60006080820190506138bd60008301876128ef565b6138ca60208301866128ef565b6138d760408301856126b0565b81810360608301526138e9818461386f565b905095945050505050565b6000815190506139038161271a565b92915050565b60006020828403121561391f5761391e6126e4565b5b600061392d848285016138f4565b9150509291505056fea2646970667358221220d853ab6c969d0699f0b372e5ea1f09de2c4ddc2a9ed4a67b93f1b90b54daa7d364736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

135:4218:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9112:630:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1873:76:2;;;;;;;;;;;;;:::i;:::-;;9996:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16309:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15769:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;543:42:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5851:317:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;329:28:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19918:2756:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;275:25:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;401:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1765:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4225:126;;;;;;;;;;;;;:::i;:::-;;22765:179:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1322:117:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2052:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;361:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11348:150:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;185:40:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7002:230:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:5;;;;;;;;;;;;;:::i;:::-;;1571:106:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3573:648;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1953:95;;;;;;;;;;;;;:::i;:::-;;1194:85:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1681:80:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10165:102:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;437:50:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1099:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2970:599;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16850:303:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:117:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23525:388:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2261:274:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10368:313:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;491:48:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17303:162:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1443:124:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2074:198:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2539:427:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;229:41;;;;:::o;9112:630:1:-;9197:4;9530:10;9515:25;;:11;:25;;;;:101;;;;9606:10;9591:25;;:11;:25;;;;9515:101;:177;;;;9682:10;9667:25;;:11;:25;;;;9515:177;9496:196;;9112:630;;;:::o;1873:76:2:-;1087:13:5;:11;:13::i;:::-;1936:8:2::1;;;;;;;;;;;1935:9;1924:8;;:20;;;;;;;;;;;;;;;;;;1873:76::o:0;9996:98:1:-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;16309:214::-;16385:7;16409:16;16417:7;16409;:16::i;:::-;16404:64;;16434:34;;;;;;;;;;;;;;16404:64;16486:15;:24;16502:7;16486:24;;;;;;;;;;;:30;;;;;;;;;;;;16479:37;;16309:214;;;:::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;;15919:5;15896:28;;:19;:17;:19::i;:::-;:28;;;15892:172;;15943:44;15960:5;15967:19;:17;:19::i;:::-;15943:16;:44::i;:::-;15938:126;;16014:35;;;;;;;;;;;;;;15938:126;15892:172;16107:2;16074:15;:24;16090:7;16074:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16144:7;16140:2;16124:28;;16133:5;16124:28;;;;;;;;;;;;15839:320;15769:390;;:::o;543:42:2:-;;;;:::o;5851:317:1:-;5912:7;6136:15;:13;:15::i;:::-;6121:12;;6105:13;;:28;:46;6098:53;;5851:317;:::o;329:28:2:-;;;;;;;;;;;;;:::o;19918:2756:1:-;20047:27;20077;20096:7;20077:18;:27::i;:::-;20047:57;;20160:4;20119:45;;20135:19;20119:45;;;20115:86;;20173:28;;;;;;;;;;;;;;20115:86;20213:27;20242:23;20269:35;20296:7;20269:26;:35::i;:::-;20212:92;;;;20401:68;20426:15;20443:4;20449:19;:17;:19::i;:::-;20401:24;:68::i;:::-;20396:179;;20488:43;20505:4;20511:19;:17;:19::i;:::-;20488:16;:43::i;:::-;20483:92;;20540:35;;;;;;;;;;;;;;20483:92;20396:179;20604:1;20590:16;;:2;:16;;;20586:52;;;20615:23;;;;;;;;;;;;;;20586:52;20649:43;20671:4;20677:2;20681:7;20690:1;20649:21;:43::i;:::-;20781:15;20778:157;;;20919:1;20898:19;20891:30;20778:157;21307:18;:24;21326:4;21307:24;;;;;;;;;;;;;;;;21305:26;;;;;;;;;;;;21375:18;:22;21394:2;21375:22;;;;;;;;;;;;;;;;21373:24;;;;;;;;;;;21690:143;21726:2;21774:45;21789:4;21795:2;21799:19;21774:14;:45::i;:::-;2349:8;21746:73;21690:18;:143::i;:::-;21661:17;:26;21679:7;21661:26;;;;;;;;;;;:172;;;;22001:1;2349:8;21950:19;:47;:52;21946:617;;;22022:19;22054:1;22044:7;:11;22022:33;;22209:1;22175:17;:30;22193:11;22175:30;;;;;;;;;;;;:35;22171:378;;;22311:13;;22296:11;:28;22292:239;;22489:19;22456:17;:30;22474:11;22456:30;;;;;;;;;;;:52;;;;22292:239;22171:378;22004:559;21946:617;22607:7;22603:2;22588:27;;22597:4;22588:27;;;;;;;;;;;;22625:42;22646:4;22652:2;22656:7;22665:1;22625:20;:42::i;:::-;20037:2637;;;19918:2756;;;:::o;275:25:2:-;;;;:::o;401:32::-;;;;:::o;1765:104::-;1087:13:5;:11;:13::i;:::-;1851::2::1;1836:12;:28;;;;1765:104:::0;:::o;4225:126::-;1087:13:5;:11;:13::i;:::-;4270:12:2::1;4285:21;4270:36;;4320:7;:5;:7::i;:::-;4312:25;;:34;4338:7;4312:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4264:87;4225:126::o:0;22765:179:1:-;22898:39;22915:4;22921:2;22925:7;22898:39;;;;;;;;;;;;:16;:39::i;:::-;22765:179;;;:::o;1322:117:2:-;1087:13:5;:11;:13::i;:::-;1428:6:2::1;1394:31;:40;;;;1322:117:::0;:::o;2052:94::-;1087:13:5;:11;:13::i;:::-;2134:7:2::1;2118:13;:23;;;;;;;;;;;;:::i;:::-;;2052:94:::0;:::o;361:35::-;;;;;;;;;;;;;:::o;11348:150:1:-;11420:7;11462:27;11481:7;11462:18;:27::i;:::-;11439:52;;11348:150;;;:::o;185:40:2:-;;;;:::o;7002:230:1:-;7074:7;7114:1;7097:19;;:5;:19;;;7093:60;;;7125:28;;;;;;;;;;;;;;7093:60;1317:13;7170:18;:25;7189:5;7170:25;;;;;;;;;;;;;;;;:55;7163:62;;7002:230;;;:::o;1824:101:5:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1571:106:2:-;1087:13:5;:11;:13::i;:::-;1659::2::1;1646:10;:26;;;;1571:106:::0;:::o;3573:648::-;3677:12;;879:146;915:11;;879:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;944:10;;999;982:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;972:39;;;;;;879:18;:146::i;:::-;858:223;;;;;;;;;;;;:::i;:::-;;;;;;;;;742:10:::1;;725:13;:11;:13::i;:::-;:27;;717:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;3708:17:::2;3728:13;:11;:13::i;:::-;3708:33;;3747:21;3771:6;3747:30;;3792:15;;;;;;;;;;;3784:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;3859:10;;3847:9;:22;3839:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;3949:23;;3939:6;3915:21;3925:10;3915:9;:21::i;:::-;:30;;;;:::i;:::-;:57;;3907:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;4043:1;4019:21;4029:10;4019:9;:21::i;:::-;:25;4016:70;;;4078:1;4069:6;:10;;;;:::i;:::-;4053:26;;4016:70;4128:13;4113:12;;:28;;;;:::i;:::-;4100:9;:41;;4092:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;4186:29;4196:10;4208:6;4186:9;:29::i;:::-;3702:519;;3573:648:::0;;;;;:::o;1953:95::-;1087:13:5;:11;:13::i;:::-;2028:15:2::1;;;;;;;;;;;2027:16;2009:15;;:34;;;;;;;;;;;;;;;;;;1953:95::o:0;1194:85:5:-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;1681:80:2:-;1087:13:5;:11;:13::i;:::-;1750:6:2::1;1738:9;:18;;;;1681:80:::0;:::o;10165:102:1:-;10221:13;10253:7;10246:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10165:102;:::o;437:50:2:-;;;;:::o;1099:96::-;1087:13:5;:11;:13::i;:::-;1181:9:2::1;1168:10;:22;;;;1099:96:::0;:::o;2970:599::-;742:10;;725:13;:11;:13::i;:::-;:27;;717:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;3032:17:::1;3052:13;:11;:13::i;:::-;3032:33;;3091:7;:5;:7::i;:::-;3077:21;;:10;:21;;;3073:200;;3116:8;;;;;;;;;;;3108:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;3208:29;;3198:6;3174:21;3184:10;3174:9;:21::i;:::-;:30;;;;:::i;:::-;:63;;3166:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;3073:200;3309:10;;3299:6;3287:9;:18;;;;:::i;:::-;:32;;3279:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;3371:31;;3361:6;:41;;3352:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;3482:6;3470:9;;:18;;;;:::i;:::-;3456:9;:33;;3448:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;3530:29;3540:10;3552:6;3530:9;:29::i;:::-;3026:543;2970:599:::0;:::o;16850:303:1:-;16960:19;:17;:19::i;:::-;16948:31;;:8;:31;;;16944:61;;;16988:17;;;;;;;;;;;;;;16944:61;17068:8;17016:18;:39;17035:19;:17;:19::i;:::-;17016:39;;;;;;;;;;;;;;;:49;17056:8;17016:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17127:8;17091:55;;17106:19;:17;:19::i;:::-;17091:55;;;17137:8;17091:55;;;;;;:::i;:::-;;;;;;;;16850:303;;:::o;1201:117:2:-;1087:13:5;:11;:13::i;:::-;1306:7:2::1;1280:23;:33;;;;1201:117:::0;:::o;23525:388:1:-;23686:31;23699:4;23705:2;23709:7;23686:12;:31::i;:::-;23749:1;23731:2;:14;;;:19;23727:180;;23769:56;23800:4;23806:2;23810:7;23819:5;23769:30;:56::i;:::-;23764:143;;23852:40;;;;;;;;;;;;;;23764:143;23727:180;23525:388;;;;:::o;2261:274:2:-;1087:13:5;:11;:13::i;:::-;2337:14:2::1;2354:13;:11;:13::i;:::-;2337:30;;2401:10;;2391:6;2382;:15;;;;:::i;:::-;:29;;2374:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2462:10;;2452:6;:20;;2444:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;2503:27;2513:8;2523:6;2503:9;:27::i;:::-;2331:204;2261:274:::0;;:::o;10368:313:1:-;10441:13;10471:16;10479:7;10471;:16::i;:::-;10466:59;;10496:29;;;;;;;;;;;;;;10466:59;10536:21;10560:10;:8;:10::i;:::-;10536:34;;10612:1;10593:7;10587:21;:26;;:87;;;;;;;;;;;;;;;;;10640:7;10649:18;10659:7;10649:9;:18::i;:::-;10623:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10587:87;10580:94;;;10368:313;;;:::o;491:48:2:-;;;;:::o;17303:162:1:-;17400:4;17423:18;:25;17442:5;17423:25;;;;;;;;;;;;;;;:35;17449:8;17423:35;;;;;;;;;;;;;;;;;;;;;;;;;17416:42;;17303:162;;;;:::o;1443:124:2:-;1087:13:5;:11;:13::i;:::-;1556:6:2::1;1524:29;:38;;;;1443:124:::0;:::o;2074:198:5:-;1087:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;;;2154:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;2539:427:2:-;1087:13:5;:11;:13::i;:::-;2632:14:2::1;2649:13;:11;:13::i;:::-;2632:30;;2696:10;;2686:6;2677;:15;;;;:::i;:::-;:29;;2669:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2757:10;;2747:6;:20;;2739:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;2803:9;2798:164;2822:9;;:16;;2818:1;:20;2798:164;;;2885:1;2861:26;;:9;;2871:1;2861:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;2853:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2924:31;2934:9;;2944:1;2934:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2948:6;2924:9;:31::i;:::-;2840:3;;;;;:::i;:::-;;;;2798:164;;;;2626:340;2539:427:::0;;;:::o;1352:130:5:-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;17714:277:1:-;17779:4;17833:7;17814:15;:13;:15::i;:::-;:26;;:65;;;;;17866:13;;17856:7;:23;17814:65;:151;;;;;17964:1;2075:8;17916:17;:26;17934:7;17916:26;;;;;;;;;;;;:44;:49;17814:151;17795:170;;17714:277;;;:::o;38922:103::-;38982:7;39008:10;39001:17;;38922:103;:::o;5383:90::-;5439:7;5383:90;:::o;12472:1249::-;12539:7;12558:12;12573:7;12558:22;;12638:4;12619:15;:13;:15::i;:::-;:23;12615:1042;;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:17;:23;12743:4;12725:23;;;;;;;;;;;;12708:40;;12840:1;2075:8;12812:6;:24;:29;12808:831;;;13467:111;13484:1;13474:6;:11;13467:111;;;13526:17;:25;13544:6;;;;;;;13526:25;;;;;;;;;;;;13517:34;;13467:111;;;13610:6;13603:13;;;;;;12808:831;12686:971;12660:997;12615:1042;13683:31;;;;;;;;;;;;;;12472:1249;;;;:::o;18849:468::-;18948:27;18977:23;19016:38;19057:15;:24;19073:7;19057:24;;;;;;;;;;;19016:65;;19225:18;19202:41;;19281:19;19275:26;19256:45;;19188:123;18849:468;;;:::o;18095:646::-;18240:11;18402:16;18395:5;18391:28;18382:37;;18560:16;18549:9;18545:32;18532:45;;18708:15;18697:9;18694:30;18686:5;18675:9;18672:20;18669:56;18659:66;;18095:646;;;;;:::o;24557:154::-;;;;;:::o;38249:304::-;38380:7;38399:16;2470:3;38425:19;:41;;38399:68;;2470:3;38492:31;38503:4;38509:2;38513:9;38492:10;:31::i;:::-;38484:40;;:62;;38477:69;;;38249:304;;;;;:::o;14254:443::-;14334:14;14499:16;14492:5;14488:28;14479:37;;14674:5;14660:11;14635:23;14631:41;14628:52;14621:5;14618:63;14608:73;;14254:443;;;;:::o;25358:153::-;;;;;:::o;2426:187:5:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;1153:184:4:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;32908:110:1:-;32984:27;32994:2;32998:8;32984:27;;;;;;;;;;;;:9;:27::i;:::-;32908:110;;:::o;25939:697::-;26097:4;26142:2;26117:45;;;26163:19;:17;:19::i;:::-;26184:4;26190:7;26199:5;26117:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26113:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26412:1;26395:6;:13;:18;26391:229;;;26440:40;;;;;;;;;;;;;;26391:229;26580:6;26574:13;26565:6;26561:2;26557:15;26550:38;26113:517;26283:54;;;26273:64;;;:6;:64;;;;26266:71;;;25939:697;;;;;;:::o;2151:106:2:-;2211:13;2239;2232:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2151:106;:::o;39122:1548:1:-;39187:17;39606:4;39599;39593:11;39589:22;39582:29;;39696:3;39690:4;39683:17;39799:3;40033:5;40015:419;40041:1;40015:419;;;40080:1;40075:3;40071:11;40064:18;;40248:2;40242:4;40238:13;40234:2;40230:22;40225:3;40217:36;40340:2;40334:4;40330:13;40322:21;;40405:4;40395:25;;40413:5;;40395:25;40015:419;;;40019:21;40471:3;40466;40462:13;40584:4;40579:3;40575:14;40568:21;;40647:6;40642:3;40635:19;39225:1439;;39122:1548;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;37960:143:1:-;38093:6;37960:143;;;;;:::o;1991:290:4:-;2074:7;2093:20;2116:4;2093:27;;2135:9;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;;2202:9;:33::i;:::-;2187:48;;2168:3;;;;;:::i;:::-;;;;2130:116;;;;2262:12;2255:19;;;1991:290;;;;:::o;32160:669:1:-;32286:19;32292:2;32296:8;32286:5;:19::i;:::-;32362:1;32344:2;:14;;;:19;32340:473;;32383:11;32397:13;;32383:27;;32428:13;32450:8;32444:3;:14;32428:30;;32476:229;32506:62;32545:1;32549:2;32553:7;;;;;;32562:5;32506:30;:62::i;:::-;32501:165;;32603:40;;;;;;;;;;;;;;32501:165;32700:3;32692:5;:11;32476:229;;32785:3;32768:13;;:20;32764:34;;32790:8;;;32764:34;32365:448;;32340:473;32160:669;;;:::o;8054:147:4:-;8117:7;8147:1;8143;:5;:51;;8174:20;8189:1;8192;8174:14;:20::i;:::-;8143:51;;;8151:20;8166:1;8169;8151:14;:20::i;:::-;8143:51;8136:58;;8054:147;;;;:::o;27082:2396:1:-;27154:20;27177:13;;27154:36;;27216:1;27204:8;:13;27200:44;;;27226:18;;;;;;;;;;;;;;27200:44;27255:61;27285:1;27289:2;27293:12;27307:8;27255:21;:61::i;:::-;27788:1;1452:2;27758:1;:26;;27757:32;27745:8;:45;27719:18;:22;27738:2;27719:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28060:136;28096:2;28149:33;28172:1;28176:2;28180:1;28149:14;:33::i;:::-;28116:30;28137:8;28116:20;:30::i;:::-;:66;28060:18;:136::i;:::-;28026:17;:31;28044:12;28026:31;;;;;;;;;;;:170;;;;28211:16;28241:11;28270:8;28255:12;:23;28241:37;;28520:16;28516:2;28512:25;28500:37;;28884:12;28845:8;28805:1;28744:25;28686:1;28626;28600:328;29005:1;28991:12;28987:20;28946:339;29045:3;29036:7;29033:16;28946:339;;29259:7;29249:8;29246:1;29219:25;29216:1;29213;29208:59;29097:1;29088:7;29084:15;29073:26;;28946:339;;;28950:75;29328:1;29316:8;:13;29312:45;;;29338:19;;;;;;;;;;;;;;29312:45;29388:3;29372:13;:19;;;;27499:1903;;29411:60;29440:1;29444:2;29448:12;29462:8;29411:20;:60::i;:::-;27144:2334;27082:2396;;:::o;8207:261:4:-;8275:13;8379:1;8373:4;8366:15;8407:1;8401:4;8394:15;8447:4;8441;8431:21;8422:30;;8207:261;;;;:::o;14794:318:1:-;14864:14;15093:1;15083:8;15080:15;15054:24;15050:46;15040:56;;14794:318;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:77:6:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:149;805:7;845:66;838:5;834:78;823:89;;769:149;;;:::o;924:120::-;996:23;1013:5;996:23;:::i;:::-;989:5;986:34;976:62;;1034:1;1031;1024:12;976:62;924:120;:::o;1050:137::-;1095:5;1133:6;1120:20;1111:29;;1149:32;1175:5;1149:32;:::i;:::-;1050:137;;;;:::o;1193:327::-;1251:6;1300:2;1288:9;1279:7;1275:23;1271:32;1268:119;;;1306:79;;:::i;:::-;1268:119;1426:1;1451:52;1495:7;1486:6;1475:9;1471:22;1451:52;:::i;:::-;1441:62;;1397:116;1193:327;;;;:::o;1526:90::-;1560:7;1603:5;1596:13;1589:21;1578:32;;1526:90;;;:::o;1622:109::-;1703:21;1718:5;1703:21;:::i;:::-;1698:3;1691:34;1622:109;;:::o;1737:210::-;1824:4;1862:2;1851:9;1847:18;1839:26;;1875:65;1937:1;1926:9;1922:17;1913:6;1875:65;:::i;:::-;1737:210;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:77::-;5952:7;5981:5;5970:16;;5915:77;;;:::o;5998:118::-;6085:24;6103:5;6085:24;:::i;:::-;6080:3;6073:37;5998:118;;:::o;6122:222::-;6215:4;6253:2;6242:9;6238:18;6230:26;;6266:71;6334:1;6323:9;6319:17;6310:6;6266:71;:::i;:::-;6122:222;;;;:::o;6350:117::-;6459:1;6456;6449:12;6473:117;6582:1;6579;6572:12;6596:180;6644:77;6641:1;6634:88;6741:4;6738:1;6731:15;6765:4;6762:1;6755:15;6782:281;6865:27;6887:4;6865:27;:::i;:::-;6857:6;6853:40;6995:6;6983:10;6980:22;6959:18;6947:10;6944:34;6941:62;6938:88;;;7006:18;;:::i;:::-;6938:88;7046:10;7042:2;7035:22;6825:238;6782:281;;:::o;7069:129::-;7103:6;7130:20;;:::i;:::-;7120:30;;7159:33;7187:4;7179:6;7159:33;:::i;:::-;7069:129;;;:::o;7204:308::-;7266:4;7356:18;7348:6;7345:30;7342:56;;;7378:18;;:::i;:::-;7342:56;7416:29;7438:6;7416:29;:::i;:::-;7408:37;;7500:4;7494;7490:15;7482:23;;7204:308;;;:::o;7518:154::-;7602:6;7597:3;7592;7579:30;7664:1;7655:6;7650:3;7646:16;7639:27;7518:154;;;:::o;7678:412::-;7756:5;7781:66;7797:49;7839:6;7797:49;:::i;:::-;7781:66;:::i;:::-;7772:75;;7870:6;7863:5;7856:21;7908:4;7901:5;7897:16;7946:3;7937:6;7932:3;7928:16;7925:25;7922:112;;;7953:79;;:::i;:::-;7922:112;8043:41;8077:6;8072:3;8067;8043:41;:::i;:::-;7762:328;7678:412;;;;;:::o;8110:340::-;8166:5;8215:3;8208:4;8200:6;8196:17;8192:27;8182:122;;8223:79;;:::i;:::-;8182:122;8340:6;8327:20;8365:79;8440:3;8432:6;8425:4;8417:6;8413:17;8365:79;:::i;:::-;8356:88;;8172:278;8110:340;;;;:::o;8456:509::-;8525:6;8574:2;8562:9;8553:7;8549:23;8545:32;8542:119;;;8580:79;;:::i;:::-;8542:119;8728:1;8717:9;8713:17;8700:31;8758:18;8750:6;8747:30;8744:117;;;8780:79;;:::i;:::-;8744:117;8885:63;8940:7;8931:6;8920:9;8916:22;8885:63;:::i;:::-;8875:73;;8671:287;8456:509;;;;:::o;8971:329::-;9030:6;9079:2;9067:9;9058:7;9054:23;9050:32;9047:119;;;9085:79;;:::i;:::-;9047:119;9205:1;9230:53;9275:7;9266:6;9255:9;9251:22;9230:53;:::i;:::-;9220:63;;9176:117;8971:329;;;;:::o;9306:117::-;9415:1;9412;9405:12;9429:117;9538:1;9535;9528:12;9569:568;9642:8;9652:6;9702:3;9695:4;9687:6;9683:17;9679:27;9669:122;;9710:79;;:::i;:::-;9669:122;9823:6;9810:20;9800:30;;9853:18;9845:6;9842:30;9839:117;;;9875:79;;:::i;:::-;9839:117;9989:4;9981:6;9977:17;9965:29;;10043:3;10035:4;10027:6;10023:17;10013:8;10009:32;10006:41;10003:128;;;10050:79;;:::i;:::-;10003:128;9569:568;;;;;:::o;10143:704::-;10238:6;10246;10254;10303:2;10291:9;10282:7;10278:23;10274:32;10271:119;;;10309:79;;:::i;:::-;10271:119;10457:1;10446:9;10442:17;10429:31;10487:18;10479:6;10476:30;10473:117;;;10509:79;;:::i;:::-;10473:117;10622:80;10694:7;10685:6;10674:9;10670:22;10622:80;:::i;:::-;10604:98;;;;10400:312;10751:2;10777:53;10822:7;10813:6;10802:9;10798:22;10777:53;:::i;:::-;10767:63;;10722:118;10143:704;;;;;:::o;10853:122::-;10926:24;10944:5;10926:24;:::i;:::-;10919:5;10916:35;10906:63;;10965:1;10962;10955:12;10906:63;10853:122;:::o;10981:139::-;11027:5;11065:6;11052:20;11043:29;;11081:33;11108:5;11081:33;:::i;:::-;10981:139;;;;:::o;11126:329::-;11185:6;11234:2;11222:9;11213:7;11209:23;11205:32;11202:119;;;11240:79;;:::i;:::-;11202:119;11360:1;11385:53;11430:7;11421:6;11410:9;11406:22;11385:53;:::i;:::-;11375:63;;11331:117;11126:329;;;;:::o;11461:116::-;11531:21;11546:5;11531:21;:::i;:::-;11524:5;11521:32;11511:60;;11567:1;11564;11557:12;11511:60;11461:116;:::o;11583:133::-;11626:5;11664:6;11651:20;11642:29;;11680:30;11704:5;11680:30;:::i;:::-;11583:133;;;;:::o;11722:468::-;11787:6;11795;11844:2;11832:9;11823:7;11819:23;11815:32;11812:119;;;11850:79;;:::i;:::-;11812:119;11970:1;11995:53;12040:7;12031:6;12020:9;12016:22;11995:53;:::i;:::-;11985:63;;11941:117;12097:2;12123:50;12165:7;12156:6;12145:9;12141:22;12123:50;:::i;:::-;12113:60;;12068:115;11722:468;;;;;:::o;12196:307::-;12257:4;12347:18;12339:6;12336:30;12333:56;;;12369:18;;:::i;:::-;12333:56;12407:29;12429:6;12407:29;:::i;:::-;12399:37;;12491:4;12485;12481:15;12473:23;;12196:307;;;:::o;12509:410::-;12586:5;12611:65;12627:48;12668:6;12627:48;:::i;:::-;12611:65;:::i;:::-;12602:74;;12699:6;12692:5;12685:21;12737:4;12730:5;12726:16;12775:3;12766:6;12761:3;12757:16;12754:25;12751:112;;;12782:79;;:::i;:::-;12751:112;12872:41;12906:6;12901:3;12896;12872:41;:::i;:::-;12592:327;12509:410;;;;;:::o;12938:338::-;12993:5;13042:3;13035:4;13027:6;13023:17;13019:27;13009:122;;13050:79;;:::i;:::-;13009:122;13167:6;13154:20;13192:78;13266:3;13258:6;13251:4;13243:6;13239:17;13192:78;:::i;:::-;13183:87;;12999:277;12938:338;;;;:::o;13282:943::-;13377:6;13385;13393;13401;13450:3;13438:9;13429:7;13425:23;13421:33;13418:120;;;13457:79;;:::i;:::-;13418:120;13577:1;13602:53;13647:7;13638:6;13627:9;13623:22;13602:53;:::i;:::-;13592:63;;13548:117;13704:2;13730:53;13775:7;13766:6;13755:9;13751:22;13730:53;:::i;:::-;13720:63;;13675:118;13832:2;13858:53;13903:7;13894:6;13883:9;13879:22;13858:53;:::i;:::-;13848:63;;13803:118;13988:2;13977:9;13973:18;13960:32;14019:18;14011:6;14008:30;14005:117;;;14041:79;;:::i;:::-;14005:117;14146:62;14200:7;14191:6;14180:9;14176:22;14146:62;:::i;:::-;14136:72;;13931:287;13282:943;;;;;;;:::o;14231:474::-;14299:6;14307;14356:2;14344:9;14335:7;14331:23;14327:32;14324:119;;;14362:79;;:::i;:::-;14324:119;14482:1;14507:53;14552:7;14543:6;14532:9;14528:22;14507:53;:::i;:::-;14497:63;;14453:117;14609:2;14635:53;14680:7;14671:6;14660:9;14656:22;14635:53;:::i;:::-;14625:63;;14580:118;14231:474;;;;;:::o;14711:::-;14779:6;14787;14836:2;14824:9;14815:7;14811:23;14807:32;14804:119;;;14842:79;;:::i;:::-;14804:119;14962:1;14987:53;15032:7;15023:6;15012:9;15008:22;14987:53;:::i;:::-;14977:63;;14933:117;15089:2;15115:53;15160:7;15151:6;15140:9;15136:22;15115:53;:::i;:::-;15105:63;;15060:118;14711:474;;;;;:::o;15208:568::-;15281:8;15291:6;15341:3;15334:4;15326:6;15322:17;15318:27;15308:122;;15349:79;;:::i;:::-;15308:122;15462:6;15449:20;15439:30;;15492:18;15484:6;15481:30;15478:117;;;15514:79;;:::i;:::-;15478:117;15628:4;15620:6;15616:17;15604:29;;15682:3;15674:4;15666:6;15662:17;15652:8;15648:32;15645:41;15642:128;;;15689:79;;:::i;:::-;15642:128;15208:568;;;;;:::o;15782:704::-;15877:6;15885;15893;15942:2;15930:9;15921:7;15917:23;15913:32;15910:119;;;15948:79;;:::i;:::-;15910:119;16068:1;16093:53;16138:7;16129:6;16118:9;16114:22;16093:53;:::i;:::-;16083:63;;16039:117;16223:2;16212:9;16208:18;16195:32;16254:18;16246:6;16243:30;16240:117;;;16276:79;;:::i;:::-;16240:117;16389:80;16461:7;16452:6;16441:9;16437:22;16389:80;:::i;:::-;16371:98;;;;16166:313;15782:704;;;;;:::o;16492:180::-;16540:77;16537:1;16530:88;16637:4;16634:1;16627:15;16661:4;16658:1;16651:15;16678:320;16722:6;16759:1;16753:4;16749:12;16739:22;;16806:1;16800:4;16796:12;16827:18;16817:81;;16883:4;16875:6;16871:17;16861:27;;16817:81;16945:2;16937:6;16934:14;16914:18;16911:38;16908:84;;;16964:18;;:::i;:::-;16908:84;16729:269;16678:320;;;:::o;17004:94::-;17037:8;17085:5;17081:2;17077:14;17056:35;;17004:94;;;:::o;17104:::-;17143:7;17172:20;17186:5;17172:20;:::i;:::-;17161:31;;17104:94;;;:::o;17204:100::-;17243:7;17272:26;17292:5;17272:26;:::i;:::-;17261:37;;17204:100;;;:::o;17310:157::-;17415:45;17435:24;17453:5;17435:24;:::i;:::-;17415:45;:::i;:::-;17410:3;17403:58;17310:157;;:::o;17473:256::-;17585:3;17600:75;17671:3;17662:6;17600:75;:::i;:::-;17700:2;17695:3;17691:12;17684:19;;17720:3;17713:10;;17473:256;;;;:::o;17735:180::-;17875:32;17871:1;17863:6;17859:14;17852:56;17735:180;:::o;17921:366::-;18063:3;18084:67;18148:2;18143:3;18084:67;:::i;:::-;18077:74;;18160:93;18249:3;18160:93;:::i;:::-;18278:2;18273:3;18269:12;18262:19;;17921:366;;;:::o;18293:419::-;18459:4;18497:2;18486:9;18482:18;18474:26;;18546:9;18540:4;18536:20;18532:1;18521:9;18517:17;18510:47;18574:131;18700:4;18574:131;:::i;:::-;18566:139;;18293:419;;;:::o;18718:165::-;18858:17;18854:1;18846:6;18842:14;18835:41;18718:165;:::o;18889:366::-;19031:3;19052:67;19116:2;19111:3;19052:67;:::i;:::-;19045:74;;19128:93;19217:3;19128:93;:::i;:::-;19246:2;19241:3;19237:12;19230:19;;18889:366;;;:::o;19261:419::-;19427:4;19465:2;19454:9;19450:18;19442:26;;19514:9;19508:4;19504:20;19500:1;19489:9;19485:17;19478:47;19542:131;19668:4;19542:131;:::i;:::-;19534:139;;19261:419;;;:::o;19686:171::-;19826:23;19822:1;19814:6;19810:14;19803:47;19686:171;:::o;19863:366::-;20005:3;20026:67;20090:2;20085:3;20026:67;:::i;:::-;20019:74;;20102:93;20191:3;20102:93;:::i;:::-;20220:2;20215:3;20211:12;20204:19;;19863:366;;;:::o;20235:419::-;20401:4;20439:2;20428:9;20424:18;20416:26;;20488:9;20482:4;20478:20;20474:1;20463:9;20459:17;20452:47;20516:131;20642:4;20516:131;:::i;:::-;20508:139;;20235:419;;;:::o;20660:177::-;20800:29;20796:1;20788:6;20784:14;20777:53;20660:177;:::o;20843:366::-;20985:3;21006:67;21070:2;21065:3;21006:67;:::i;:::-;20999:74;;21082:93;21171:3;21082:93;:::i;:::-;21200:2;21195:3;21191:12;21184:19;;20843:366;;;:::o;21215:419::-;21381:4;21419:2;21408:9;21404:18;21396:26;;21468:9;21462:4;21458:20;21454:1;21443:9;21439:17;21432:47;21496:131;21622:4;21496:131;:::i;:::-;21488:139;;21215:419;;;:::o;21640:180::-;21688:77;21685:1;21678:88;21785:4;21782:1;21775:15;21809:4;21806:1;21799:15;21826:305;21866:3;21885:20;21903:1;21885:20;:::i;:::-;21880:25;;21919:20;21937:1;21919:20;:::i;:::-;21914:25;;22073:1;22005:66;22001:74;21998:1;21995:81;21992:107;;;22079:18;;:::i;:::-;21992:107;22123:1;22120;22116:9;22109:16;;21826:305;;;;:::o;22137:182::-;22277:34;22273:1;22265:6;22261:14;22254:58;22137:182;:::o;22325:366::-;22467:3;22488:67;22552:2;22547:3;22488:67;:::i;:::-;22481:74;;22564:93;22653:3;22564:93;:::i;:::-;22682:2;22677:3;22673:12;22666:19;;22325:366;;;:::o;22697:419::-;22863:4;22901:2;22890:9;22886:18;22878:26;;22950:9;22944:4;22940:20;22936:1;22925:9;22921:17;22914:47;22978:131;23104:4;22978:131;:::i;:::-;22970:139;;22697:419;;;:::o;23122:191::-;23162:4;23182:20;23200:1;23182:20;:::i;:::-;23177:25;;23216:20;23234:1;23216:20;:::i;:::-;23211:25;;23255:1;23252;23249:8;23246:34;;;23260:18;;:::i;:::-;23246:34;23305:1;23302;23298:9;23290:17;;23122:191;;;;:::o;23319:348::-;23359:7;23382:20;23400:1;23382:20;:::i;:::-;23377:25;;23416:20;23434:1;23416:20;:::i;:::-;23411:25;;23604:1;23536:66;23532:74;23529:1;23526:81;23521:1;23514:9;23507:17;23503:105;23500:131;;;23611:18;;:::i;:::-;23500:131;23659:1;23656;23652:9;23641:20;;23319:348;;;;:::o;23673:179::-;23813:31;23809:1;23801:6;23797:14;23790:55;23673:179;:::o;23858:366::-;24000:3;24021:67;24085:2;24080:3;24021:67;:::i;:::-;24014:74;;24097:93;24186:3;24097:93;:::i;:::-;24215:2;24210:3;24206:12;24199:19;;23858:366;;;:::o;24230:419::-;24396:4;24434:2;24423:9;24419:18;24411:26;;24483:9;24477:4;24473:20;24469:1;24458:9;24454:17;24447:47;24511:131;24637:4;24511:131;:::i;:::-;24503:139;;24230:419;;;:::o;24655:179::-;24795:31;24791:1;24783:6;24779:14;24772:55;24655:179;:::o;24840:366::-;24982:3;25003:67;25067:2;25062:3;25003:67;:::i;:::-;24996:74;;25079:93;25168:3;25079:93;:::i;:::-;25197:2;25192:3;25188:12;25181:19;;24840:366;;;:::o;25212:419::-;25378:4;25416:2;25405:9;25401:18;25393:26;;25465:9;25459:4;25455:20;25451:1;25440:9;25436:17;25429:47;25493:131;25619:4;25493:131;:::i;:::-;25485:139;;25212:419;;;:::o;25637:174::-;25777:26;25773:1;25765:6;25761:14;25754:50;25637:174;:::o;25817:366::-;25959:3;25980:67;26044:2;26039:3;25980:67;:::i;:::-;25973:74;;26056:93;26145:3;26056:93;:::i;:::-;26174:2;26169:3;26165:12;26158:19;;25817:366;;;:::o;26189:419::-;26355:4;26393:2;26382:9;26378:18;26370:26;;26442:9;26436:4;26432:20;26428:1;26417:9;26413:17;26406:47;26470:131;26596:4;26470:131;:::i;:::-;26462:139;;26189:419;;;:::o;26614:172::-;26754:24;26750:1;26742:6;26738:14;26731:48;26614:172;:::o;26792:366::-;26934:3;26955:67;27019:2;27014:3;26955:67;:::i;:::-;26948:74;;27031:93;27120:3;27031:93;:::i;:::-;27149:2;27144:3;27140:12;27133:19;;26792:366;;;:::o;27164:419::-;27330:4;27368:2;27357:9;27353:18;27345:26;;27417:9;27411:4;27407:20;27403:1;27392:9;27388:17;27381:47;27445:131;27571:4;27445:131;:::i;:::-;27437:139;;27164:419;;;:::o;27589:180::-;27729:32;27725:1;27717:6;27713:14;27706:56;27589:180;:::o;27775:366::-;27917:3;27938:67;28002:2;27997:3;27938:67;:::i;:::-;27931:74;;28014:93;28103:3;28014:93;:::i;:::-;28132:2;28127:3;28123:12;28116:19;;27775:366;;;:::o;28147:419::-;28313:4;28351:2;28340:9;28336:18;28328:26;;28400:9;28394:4;28390:20;28386:1;28375:9;28371:17;28364:47;28428:131;28554:4;28428:131;:::i;:::-;28420:139;;28147:419;;;:::o;28572:169::-;28712:21;28708:1;28700:6;28696:14;28689:45;28572:169;:::o;28747:366::-;28889:3;28910:67;28974:2;28969:3;28910:67;:::i;:::-;28903:74;;28986:93;29075:3;28986:93;:::i;:::-;29104:2;29099:3;29095:12;29088:19;;28747:366;;;:::o;29119:419::-;29285:4;29323:2;29312:9;29308:18;29300:26;;29372:9;29366:4;29362:20;29358:1;29347:9;29343:17;29336:47;29400:131;29526:4;29400:131;:::i;:::-;29392:139;;29119:419;;;:::o;29544:148::-;29646:11;29683:3;29668:18;;29544:148;;;;:::o;29698:377::-;29804:3;29832:39;29865:5;29832:39;:::i;:::-;29887:89;29969:6;29964:3;29887:89;:::i;:::-;29880:96;;29985:52;30030:6;30025:3;30018:4;30011:5;30007:16;29985:52;:::i;:::-;30062:6;30057:3;30053:16;30046:23;;29808:267;29698:377;;;;:::o;30081:435::-;30261:3;30283:95;30374:3;30365:6;30283:95;:::i;:::-;30276:102;;30395:95;30486:3;30477:6;30395:95;:::i;:::-;30388:102;;30507:3;30500:10;;30081:435;;;;;:::o;30522:225::-;30662:34;30658:1;30650:6;30646:14;30639:58;30731:8;30726:2;30718:6;30714:15;30707:33;30522:225;:::o;30753:366::-;30895:3;30916:67;30980:2;30975:3;30916:67;:::i;:::-;30909:74;;30992:93;31081:3;30992:93;:::i;:::-;31110:2;31105:3;31101:12;31094:19;;30753:366;;;:::o;31125:419::-;31291:4;31329:2;31318:9;31314:18;31306:26;;31378:9;31372:4;31368:20;31364:1;31353:9;31349:17;31342:47;31406:131;31532:4;31406:131;:::i;:::-;31398:139;;31125:419;;;:::o;31550:180::-;31598:77;31595:1;31588:88;31695:4;31692:1;31685:15;31719:4;31716:1;31709:15;31736:174;31876:26;31872:1;31864:6;31860:14;31853:50;31736:174;:::o;31916:366::-;32058:3;32079:67;32143:2;32138:3;32079:67;:::i;:::-;32072:74;;32155:93;32244:3;32155:93;:::i;:::-;32273:2;32268:3;32264:12;32257:19;;31916:366;;;:::o;32288:419::-;32454:4;32492:2;32481:9;32477:18;32469:26;;32541:9;32535:4;32531:20;32527:1;32516:9;32512:17;32505:47;32569:131;32695:4;32569:131;:::i;:::-;32561:139;;32288:419;;;:::o;32713:233::-;32752:3;32775:24;32793:5;32775:24;:::i;:::-;32766:33;;32821:66;32814:5;32811:77;32808:103;;;32891:18;;:::i;:::-;32808:103;32938:1;32931:5;32927:13;32920:20;;32713:233;;;:::o;32952:182::-;33092:34;33088:1;33080:6;33076:14;33069:58;32952:182;:::o;33140:366::-;33282:3;33303:67;33367:2;33362:3;33303:67;:::i;:::-;33296:74;;33379:93;33468:3;33379:93;:::i;:::-;33497:2;33492:3;33488:12;33481:19;;33140:366;;;:::o;33512:419::-;33678:4;33716:2;33705:9;33701:18;33693:26;;33765:9;33759:4;33755:20;33751:1;33740:9;33736:17;33729:47;33793:131;33919:4;33793:131;:::i;:::-;33785:139;;33512:419;;;:::o;33937:98::-;33988:6;34022:5;34016:12;34006:22;;33937:98;;;:::o;34041:168::-;34124:11;34158:6;34153:3;34146:19;34198:4;34193:3;34189:14;34174:29;;34041:168;;;;:::o;34215:360::-;34301:3;34329:38;34361:5;34329:38;:::i;:::-;34383:70;34446:6;34441:3;34383:70;:::i;:::-;34376:77;;34462:52;34507:6;34502:3;34495:4;34488:5;34484:16;34462:52;:::i;:::-;34539:29;34561:6;34539:29;:::i;:::-;34534:3;34530:39;34523:46;;34305:270;34215:360;;;;:::o;34581:640::-;34776:4;34814:3;34803:9;34799:19;34791:27;;34828:71;34896:1;34885:9;34881:17;34872:6;34828:71;:::i;:::-;34909:72;34977:2;34966:9;34962:18;34953:6;34909:72;:::i;:::-;34991;35059:2;35048:9;35044:18;35035:6;34991:72;:::i;:::-;35110:9;35104:4;35100:20;35095:2;35084:9;35080:18;35073:48;35138:76;35209:4;35200:6;35138:76;:::i;:::-;35130:84;;34581:640;;;;;;;:::o;35227:141::-;35283:5;35314:6;35308:13;35299:22;;35330:32;35356:5;35330:32;:::i;:::-;35227:141;;;;:::o;35374:349::-;35443:6;35492:2;35480:9;35471:7;35467:23;35463:32;35460:119;;;35498:79;;:::i;:::-;35460:119;35618:1;35643:63;35698:7;35689:6;35678:9;35674:22;35643:63;:::i;:::-;35633:73;;35589:127;35374:349;;;;:::o

Swarm Source

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