ETH Price: $3,065.68 (+2.04%)
Gas: 3 Gwei

Token

SkellywagsNFT (SW)
 

Overview

Max Total Supply

5,000 SW

Holders

687

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
eatthedips.eth
Balance
5 SW
0xaa2d0029f54ee1a193f957757e77c3101cfd57bf
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:
Skellywags

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-16
*/

// SPDX-License-Identifier: GPL-3.0

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

pragma solidity ^0.8.0;

abstract contract ReentrancyGuard {
    
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

        _status = _NOT_ENTERED;
    }
}


// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    function toString(uint256 value) internal pure returns (string memory) {

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.8.0;

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

interface IERC721Receiver {
  
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

  
    function ownerOf(uint256 tokenId) external view returns (address owner);


    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

  
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

 
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;


    function approve(address to, uint256 tokenId) external;


    function setApprovalForAll(address operator, bool _approved) external;


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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



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

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

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

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

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

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

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

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

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

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

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

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

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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


// File: erc721a/contracts/ERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

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

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

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

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

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

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }


    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

 
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}


    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


// File: contracts/skellywags.sol
// Created by EVANZ

pragma solidity >= 0.8.0 < 0.9.0;

contract Skellywags is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  string public uriPrefix;
  string public uriSuffix = ".json";
  
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 5000;

  uint256 public MaxperTx = 5;
  uint256 public nftPerAddressLimit = 50;

  bool public paused = true;

  mapping(address => uint256) public addressMintedBalance;

  constructor() ERC721A ( "SkellywagsNFT", "SW" ) {
    setUriPrefix( "https://arweave.net/t3SShYotzo8w0wKzeqAG7PCm6GFPU_I4itv300eJVL4/" );
  }

// ~~~~~~~~~~~~~~~~~~~~ baseURI ~~~~~~~~~~~~~~~~~~~~

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

// ~~~~~~~~~~~~~~~~~~~~ Modifiers ~~~~~~~~~~~~~~~~~~~~

  modifier mintCompliance(uint256 _mintAmount) {
    require(!paused, "The contract is paused!");
    require(_mintAmount > 0, "Mint amount can't be zero.");
    require(tx.origin == msg.sender, "The caller is another contract");
    require(_mintAmount <= MaxperTx, "Max mint per transaction exceeded!");
    require(addressMintedBalance[msg.sender] + _mintAmount <= nftPerAddressLimit, "Max mint amount per address exceeded!");
    require(totalSupply() + _mintAmount <= maxSupply, "Mint amount exceeds max supply!");
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    _;
  }

// ~~~~~~~~~~~~~~~~~~~~ Mint Functions ~~~~~~~~~~~~~~~~~~~~

  // PUBLIC and WHITELIST MINT
  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    addressMintedBalance[msg.sender] += _mintAmount;
    _safeMint(_msgSender(), _mintAmount);
  }

  // MINT for address
  function mintToAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, "Mint amount exceeds max supply!");
    _safeMint(_receiver, _mintAmount);
  }

// ~~~~~~~~~~~~~~~~~~~~ Checks ~~~~~~~~~~~~~~~~~~~~

  // Check Wallet assets
  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned) {
        if (ownership.addr != address(0)) {
          latestOwnerAddress = ownership.addr;
        }

        if (latestOwnerAddress == _owner) {
          ownedTokenIds[ownedTokenIndex] = currentTokenId;
          ownedTokenIndex++;
        }
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }

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

  // TOKEN URI <= If you are reading this you are awesome!!
  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token.");

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

// ~~~~~~~~~~~~~~~~~~~~ onlyOwner Functions ~~~~~~~~~~~~~~~~~~~~

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

  function setMaxperTx(uint256 _maxMintperTx) public onlyOwner {
    MaxperTx = _maxMintperTx;
  }

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

  function pause() public onlyOwner {
    if (paused == true) { paused = false; }
    else { paused = true; }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxperTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintperTx","type":"uint256"}],"name":"setMaxperTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200034a565b506000600c55611388600d556005600e556032600f556001601060006101000a81548160ff0219169083151502179055503480156200008f57600080fd5b506040518060400160405280600d81526020017f536b656c6c79776167734e4654000000000000000000000000000000000000008152506040518060400160405280600281526020017f53570000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001149291906200034a565b5080600390805190602001906200012d9291906200034a565b506200013e6200019e60201b60201c565b6000819055505050620001666200015a620001a760201b60201c565b620001af60201b60201c565b600160098190555062000198604051806060016040528060408152602001620044e5604091396200027560201b60201c565b620004e2565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000285620001a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ab6200032060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000304576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fb9062000421565b60405180910390fd5b80600a90805190602001906200031c9291906200034a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003589062000454565b90600052602060002090601f0160209004810192826200037c5760008555620003c8565b82601f106200039757805160ff1916838001178555620003c8565b82800160010185558215620003c8579182015b82811115620003c7578251825591602001919060010190620003aa565b5b509050620003d79190620003db565b5090565b5b80821115620003f6576000816000905550600101620003dc565b5090565b60006200040960208362000443565b91506200041682620004b9565b602082019050919050565b600060208201905081810360008301526200043c81620003fa565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200046d57607f821691505b602082108114156200048457620004836200048a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613ff380620004f26000396000f3fe6080604052600436106101ee5760003560e01c806362b99ad41161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106b6578063d5abeb01146106f3578063e985e9c51461071e578063f2fde38b1461075b578063ff64569114610784576101ee565b8063a0712d681461061d578063a22cb46514610639578063b88d4fde14610662578063ba7d2c761461068b576101ee565b80637ec4a659116100dc5780637ec4a659146105875780638456cb59146105b05780638da5cb5b146105c757806395d89b41146105f2576101ee565b806362b99ad4146104cb5780636352211e146104f657806370a0823114610533578063715018a614610570576101ee565b80633ccfd60b11610185578063512b658d11610154578063512b658d146104235780635503a0e81461044c5780635c975abb146104775780635ef9ff37146104a2576101ee565b80633ccfd60b1461037d57806342842e0e14610394578063438b6300146103bd57806344a0d68a146103fa576101ee565b806313faede6116101c157806313faede6146102c157806318160ddd146102ec57806318cae2691461031757806323b872dd14610354576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613119565b6107af565b6040516102279190613670565b60405180910390f35b34801561023c57600080fd5b50610245610891565b604051610252919061368b565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906131bc565b610923565b60405161028f91906135e7565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906130d9565b61099f565b005b3480156102cd57600080fd5b506102d6610aa4565b6040516102e3919061380d565b60405180910390f35b3480156102f857600080fd5b50610301610aaa565b60405161030e919061380d565b60405180910390f35b34801561032357600080fd5b5061033e60048036038101906103399190612f56565b610ac1565b60405161034b919061380d565b60405180910390f35b34801561036057600080fd5b5061037b60048036038101906103769190612fc3565b610ad9565b005b34801561038957600080fd5b50610392610ae9565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612fc3565b610c3b565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612f56565b610c5b565b6040516103f1919061364e565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906131bc565b610e6f565b005b34801561042f57600080fd5b5061044a600480360381019061044591906131e9565b610ef5565b005b34801561045857600080fd5b50610461610fd6565b60405161046e919061368b565b60405180910390f35b34801561048357600080fd5b5061048c611064565b6040516104999190613670565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906131bc565b611077565b005b3480156104d757600080fd5b506104e06110fd565b6040516104ed919061368b565b60405180910390f35b34801561050257600080fd5b5061051d600480360381019061051891906131bc565b61118b565b60405161052a91906135e7565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612f56565b6111a1565b604051610567919061380d565b60405180910390f35b34801561057c57600080fd5b50610585611271565b005b34801561059357600080fd5b506105ae60048036038101906105a99190613173565b6112f9565b005b3480156105bc57600080fd5b506105c561138f565b005b3480156105d357600080fd5b506105dc611465565b6040516105e991906135e7565b60405180910390f35b3480156105fe57600080fd5b5061060761148f565b604051610614919061368b565b60405180910390f35b610637600480360381019061063291906131bc565b611521565b005b34801561064557600080fd5b50610660600480360381019061065b9190613099565b61180b565b005b34801561066e57600080fd5b5061068960048036038101906106849190613016565b611983565b005b34801561069757600080fd5b506106a06119fb565b6040516106ad919061380d565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d891906131bc565b611a01565b6040516106ea919061368b565b60405180910390f35b3480156106ff57600080fd5b50610708611aab565b604051610715919061380d565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190612f83565b611ab1565b6040516107529190613670565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d9190612f56565b611b45565b005b34801561079057600080fd5b50610799611c3d565b6040516107a6919061380d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a575061088982611c43565b5b9050919050565b6060600280546108a090613b16565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90613b16565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611cad565b610964576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109aa8261118b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a12576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a31611cfb565b73ffffffffffffffffffffffffffffffffffffffff1614610a9457610a5d81610a58611cfb565b611ab1565b610a93576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610a9f838383611d03565b505050565b600c5481565b6000610ab4611db5565b6001546000540303905090565b60116020528060005260406000206000915090505481565b610ae4838383611dbe565b505050565b610af1611cfb565b73ffffffffffffffffffffffffffffffffffffffff16610b0f611465565b73ffffffffffffffffffffffffffffffffffffffff1614610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c9061372d565b60405180910390fd5b60026009541415610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba2906137ad565b60405180910390fd5b60026009819055506000610bbd611465565b73ffffffffffffffffffffffffffffffffffffffff1647604051610be0906135d2565b60006040518083038185875af1925050503d8060008114610c1d576040519150601f19603f3d011682016040523d82523d6000602084013e610c22565b606091505b5050905080610c3057600080fd5b506001600981905550565b610c5683838360405180602001604052806000815250611983565b505050565b60606000610c68836111a1565b905060008167ffffffffffffffff811115610c8657610c85613caf565b5b604051908082528060200260200182016040528015610cb45781602001602082028036833780820191505090505b5090506000610cc1611db5565b90506000805b8482108015610cd7575060005483105b15610e62576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610e4e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dea57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4d5783858481518110610e3257610e31613c80565b5b6020026020010181815250508280610e4990613b79565b9350505b5b8380610e5990613b79565b94505050610cc7565b8395505050505050919050565b610e77611cfb565b73ffffffffffffffffffffffffffffffffffffffff16610e95611465565b73ffffffffffffffffffffffffffffffffffffffff1614610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee29061372d565b60405180910390fd5b80600c8190555050565b610efd611cfb565b73ffffffffffffffffffffffffffffffffffffffff16610f1b611465565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f689061372d565b60405180910390fd5b600d5482610f7d610aaa565b610f87919061394b565b1115610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf906136cd565b60405180910390fd5b610fd28183612274565b5050565b600b8054610fe390613b16565b80601f016020809104026020016040519081016040528092919081815260200182805461100f90613b16565b801561105c5780601f106110315761010080835404028352916020019161105c565b820191906000526020600020905b81548152906001019060200180831161103f57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b61107f611cfb565b73ffffffffffffffffffffffffffffffffffffffff1661109d611465565b73ffffffffffffffffffffffffffffffffffffffff16146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea9061372d565b60405180910390fd5b80600e8190555050565b600a805461110a90613b16565b80601f016020809104026020016040519081016040528092919081815260200182805461113690613b16565b80156111835780601f1061115857610100808354040283529160200191611183565b820191906000526020600020905b81548152906001019060200180831161116657829003601f168201915b505050505081565b600061119682612292565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611209576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611279611cfb565b73ffffffffffffffffffffffffffffffffffffffff16611297611465565b73ffffffffffffffffffffffffffffffffffffffff16146112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e49061372d565b60405180910390fd5b6112f7600061251d565b565b611301611cfb565b73ffffffffffffffffffffffffffffffffffffffff1661131f611465565b73ffffffffffffffffffffffffffffffffffffffff1614611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c9061372d565b60405180910390fd5b80600a908051906020019061138b929190612d27565b5050565b611397611cfb565b73ffffffffffffffffffffffffffffffffffffffff166113b5611465565b73ffffffffffffffffffffffffffffffffffffffff161461140b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114029061372d565b60405180910390fd5b60011515601060009054906101000a900460ff1615151415611447576000601060006101000a81548160ff021916908315150217905550611463565b6001601060006101000a81548160ff0219169083151502179055505b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461149e90613b16565b80601f01602080910402602001604051908101604052809291908181526020018280546114ca90613b16565b80156115175780601f106114ec57610100808354040283529160200191611517565b820191906000526020600020905b8154815290600101906020018083116114fa57829003601f168201915b5050505050905090565b80601060009054906101000a900460ff1615611572576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115699061374d565b60405180910390fd5b600081116115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac9061370d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a906136ed565b60405180910390fd5b600e54811115611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f9061378d565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116b6919061394b565b11156116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee9061376d565b60405180910390fd5b600d5481611703610aaa565b61170d919061394b565b111561174e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611745906136cd565b60405180910390fd5b8180600c5461175d91906139d2565b34101561179f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611796906137ed565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117ee919061394b565b92505081905550611806611800611cfb565b84612274565b505050565b611813611cfb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611878576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611885611cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611932611cfb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119779190613670565b60405180910390a35050565b61198e848484611dbe565b6119ad8373ffffffffffffffffffffffffffffffffffffffff166125e3565b156119f5576119be84848484612606565b6119f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b6060611a0c82611cad565b611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a42906137cd565b60405180910390fd5b6000611a55612766565b90506000815111611a755760405180602001604052806000815250611aa3565b80611a7f846127f8565b600b604051602001611a93939291906135a1565b6040516020818303038152906040525b915050919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b4d611cfb565b73ffffffffffffffffffffffffffffffffffffffff16611b6b611465565b73ffffffffffffffffffffffffffffffffffffffff1614611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb89061372d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c28906136ad565b60405180910390fd5b611c3a8161251d565b50565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611cb8611db5565b11158015611cc7575060005482105b8015611cf4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611dc982612292565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e34576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e55611cfb565b73ffffffffffffffffffffffffffffffffffffffff161480611e845750611e8385611e7e611cfb565b611ab1565b5b80611ec95750611e92611cfb565b73ffffffffffffffffffffffffffffffffffffffff16611eb184610923565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f02576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f768585856001612959565b611f8260008487611d03565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561220257600054821461220157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461226d858585600161295f565b5050505050565b61228e828260405180602001604052806000815250612965565b5050565b61229a612dad565b6000829050806122a8611db5565b116124e6576000548110156124e5576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124e357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c7578092505050612518565b5b6001156124e257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124dd578092505050612518565b6123c8565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261262c611cfb565b8786866040518563ffffffff1660e01b815260040161264e9493929190613602565b602060405180830381600087803b15801561266857600080fd5b505af192505050801561269957506040513d601f19601f820116820180604052508101906126969190613146565b60015b612713573d80600081146126c9576040519150601f19603f3d011682016040523d82523d6000602084013e6126ce565b606091505b5060008151141561270b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461277590613b16565b80601f01602080910402602001604051908101604052809291908181526020018280546127a190613b16565b80156127ee5780601f106127c3576101008083540402835291602001916127ee565b820191906000526020600020905b8154815290600101906020018083116127d157829003601f168201915b5050505050905090565b60606000821415612840576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612954565b600082905060005b6000821461287257808061285b90613b79565b915050600a8261286b91906139a1565b9150612848565b60008167ffffffffffffffff81111561288e5761288d613caf565b5b6040519080825280601f01601f1916602001820160405280156128c05781602001600182028036833780820191505090505b5090505b6000851461294d576001826128d99190613a2c565b9150600a856128e89190613bc2565b60306128f4919061394b565b60f81b81838151811061290a57612909613c80565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561294691906139a1565b94506128c4565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129d2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612a0d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a1a6000858386612959565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612bdb8673ffffffffffffffffffffffffffffffffffffffff166125e3565b15612ca0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c506000878480600101955087612606565b612c86576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612be1578260005414612c9b57600080fd5b612d0b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612ca1575b816000819055505050612d21600085838661295f565b50505050565b828054612d3390613b16565b90600052602060002090601f016020900481019282612d555760008555612d9c565b82601f10612d6e57805160ff1916838001178555612d9c565b82800160010185558215612d9c579182015b82811115612d9b578251825591602001919060010190612d80565b5b509050612da99190612df0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e09576000816000905550600101612df1565b5090565b6000612e20612e1b8461384d565b613828565b905082815260208101848484011115612e3c57612e3b613ce3565b5b612e47848285613ad4565b509392505050565b6000612e62612e5d8461387e565b613828565b905082815260208101848484011115612e7e57612e7d613ce3565b5b612e89848285613ad4565b509392505050565b600081359050612ea081613f61565b92915050565b600081359050612eb581613f78565b92915050565b600081359050612eca81613f8f565b92915050565b600081519050612edf81613f8f565b92915050565b600082601f830112612efa57612ef9613cde565b5b8135612f0a848260208601612e0d565b91505092915050565b600082601f830112612f2857612f27613cde565b5b8135612f38848260208601612e4f565b91505092915050565b600081359050612f5081613fa6565b92915050565b600060208284031215612f6c57612f6b613ced565b5b6000612f7a84828501612e91565b91505092915050565b60008060408385031215612f9a57612f99613ced565b5b6000612fa885828601612e91565b9250506020612fb985828601612e91565b9150509250929050565b600080600060608486031215612fdc57612fdb613ced565b5b6000612fea86828701612e91565b9350506020612ffb86828701612e91565b925050604061300c86828701612f41565b9150509250925092565b600080600080608085870312156130305761302f613ced565b5b600061303e87828801612e91565b945050602061304f87828801612e91565b935050604061306087828801612f41565b925050606085013567ffffffffffffffff81111561308157613080613ce8565b5b61308d87828801612ee5565b91505092959194509250565b600080604083850312156130b0576130af613ced565b5b60006130be85828601612e91565b92505060206130cf85828601612ea6565b9150509250929050565b600080604083850312156130f0576130ef613ced565b5b60006130fe85828601612e91565b925050602061310f85828601612f41565b9150509250929050565b60006020828403121561312f5761312e613ced565b5b600061313d84828501612ebb565b91505092915050565b60006020828403121561315c5761315b613ced565b5b600061316a84828501612ed0565b91505092915050565b60006020828403121561318957613188613ced565b5b600082013567ffffffffffffffff8111156131a7576131a6613ce8565b5b6131b384828501612f13565b91505092915050565b6000602082840312156131d2576131d1613ced565b5b60006131e084828501612f41565b91505092915050565b60008060408385031215613200576131ff613ced565b5b600061320e85828601612f41565b925050602061321f85828601612e91565b9150509250929050565b60006132358383613583565b60208301905092915050565b61324a81613a60565b82525050565b600061325b826138d4565b6132658185613902565b9350613270836138af565b8060005b838110156132a15781516132888882613229565b9750613293836138f5565b925050600181019050613274565b5085935050505092915050565b6132b781613a72565b82525050565b60006132c8826138df565b6132d28185613913565b93506132e2818560208601613ae3565b6132eb81613cf2565b840191505092915050565b6000613301826138ea565b61330b818561392f565b935061331b818560208601613ae3565b61332481613cf2565b840191505092915050565b600061333a826138ea565b6133448185613940565b9350613354818560208601613ae3565b80840191505092915050565b6000815461336d81613b16565b6133778186613940565b9450600182166000811461339257600181146133a3576133d6565b60ff198316865281860193506133d6565b6133ac856138bf565b60005b838110156133ce578154818901526001820191506020810190506133af565b838801955050505b50505092915050565b60006133ec60268361392f565b91506133f782613d03565b604082019050919050565b600061340f601f8361392f565b915061341a82613d52565b602082019050919050565b6000613432601e8361392f565b915061343d82613d7b565b602082019050919050565b6000613455601a8361392f565b915061346082613da4565b602082019050919050565b600061347860208361392f565b915061348382613dcd565b602082019050919050565b600061349b60178361392f565b91506134a682613df6565b602082019050919050565b60006134be600083613924565b91506134c982613e1f565b600082019050919050565b60006134e160258361392f565b91506134ec82613e22565b604082019050919050565b600061350460228361392f565b915061350f82613e71565b604082019050919050565b6000613527601f8361392f565b915061353282613ec0565b602082019050919050565b600061354a60308361392f565b915061355582613ee9565b604082019050919050565b600061356d60138361392f565b915061357882613f38565b602082019050919050565b61358c81613aca565b82525050565b61359b81613aca565b82525050565b60006135ad828661332f565b91506135b9828561332f565b91506135c58284613360565b9150819050949350505050565b60006135dd826134b1565b9150819050919050565b60006020820190506135fc6000830184613241565b92915050565b60006080820190506136176000830187613241565b6136246020830186613241565b6136316040830185613592565b818103606083015261364381846132bd565b905095945050505050565b600060208201905081810360008301526136688184613250565b905092915050565b600060208201905061368560008301846132ae565b92915050565b600060208201905081810360008301526136a581846132f6565b905092915050565b600060208201905081810360008301526136c6816133df565b9050919050565b600060208201905081810360008301526136e681613402565b9050919050565b6000602082019050818103600083015261370681613425565b9050919050565b6000602082019050818103600083015261372681613448565b9050919050565b600060208201905081810360008301526137468161346b565b9050919050565b600060208201905081810360008301526137668161348e565b9050919050565b60006020820190508181036000830152613786816134d4565b9050919050565b600060208201905081810360008301526137a6816134f7565b9050919050565b600060208201905081810360008301526137c68161351a565b9050919050565b600060208201905081810360008301526137e68161353d565b9050919050565b6000602082019050818103600083015261380681613560565b9050919050565b60006020820190506138226000830184613592565b92915050565b6000613832613843565b905061383e8282613b48565b919050565b6000604051905090565b600067ffffffffffffffff82111561386857613867613caf565b5b61387182613cf2565b9050602081019050919050565b600067ffffffffffffffff82111561389957613898613caf565b5b6138a282613cf2565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061395682613aca565b915061396183613aca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561399657613995613bf3565b5b828201905092915050565b60006139ac82613aca565b91506139b783613aca565b9250826139c7576139c6613c22565b5b828204905092915050565b60006139dd82613aca565b91506139e883613aca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a2157613a20613bf3565b5b828202905092915050565b6000613a3782613aca565b9150613a4283613aca565b925082821015613a5557613a54613bf3565b5b828203905092915050565b6000613a6b82613aaa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b01578082015181840152602081019050613ae6565b83811115613b10576000848401525b50505050565b60006002820490506001821680613b2e57607f821691505b60208210811415613b4257613b41613c51565b5b50919050565b613b5182613cf2565b810181811067ffffffffffffffff82111715613b7057613b6f613caf565b5b80604052505050565b6000613b8482613aca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bb757613bb6613bf3565b5b600182019050919050565b6000613bcd82613aca565b9150613bd883613aca565b925082613be857613be7613c22565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e742065786365656473206d617820737570706c792100600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4d696e7420616d6f756e742063616e2774206265207a65726f2e000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d6178206d696e7420616d6f756e74207065722061646472657373206578636560008201527f6564656421000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e7420706572207472616e73616374696f6e206578636565646560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613f6a81613a60565b8114613f7557600080fd5b50565b613f8181613a72565b8114613f8c57600080fd5b50565b613f9881613a7e565b8114613fa357600080fd5b50565b613faf81613aca565b8114613fba57600080fd5b5056fea26469706673582212208d927d97c1941b63535a080b6c685986e0449dd6e94129fd0117adbad176e5dc64736f6c6343000807003368747470733a2f2f617277656176652e6e65742f7433535368596f747a6f387730774b7a657141473750436d36474650555f4934697476333030654a564c342f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806362b99ad41161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106b6578063d5abeb01146106f3578063e985e9c51461071e578063f2fde38b1461075b578063ff64569114610784576101ee565b8063a0712d681461061d578063a22cb46514610639578063b88d4fde14610662578063ba7d2c761461068b576101ee565b80637ec4a659116100dc5780637ec4a659146105875780638456cb59146105b05780638da5cb5b146105c757806395d89b41146105f2576101ee565b806362b99ad4146104cb5780636352211e146104f657806370a0823114610533578063715018a614610570576101ee565b80633ccfd60b11610185578063512b658d11610154578063512b658d146104235780635503a0e81461044c5780635c975abb146104775780635ef9ff37146104a2576101ee565b80633ccfd60b1461037d57806342842e0e14610394578063438b6300146103bd57806344a0d68a146103fa576101ee565b806313faede6116101c157806313faede6146102c157806318160ddd146102ec57806318cae2691461031757806323b872dd14610354576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613119565b6107af565b6040516102279190613670565b60405180910390f35b34801561023c57600080fd5b50610245610891565b604051610252919061368b565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906131bc565b610923565b60405161028f91906135e7565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906130d9565b61099f565b005b3480156102cd57600080fd5b506102d6610aa4565b6040516102e3919061380d565b60405180910390f35b3480156102f857600080fd5b50610301610aaa565b60405161030e919061380d565b60405180910390f35b34801561032357600080fd5b5061033e60048036038101906103399190612f56565b610ac1565b60405161034b919061380d565b60405180910390f35b34801561036057600080fd5b5061037b60048036038101906103769190612fc3565b610ad9565b005b34801561038957600080fd5b50610392610ae9565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612fc3565b610c3b565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612f56565b610c5b565b6040516103f1919061364e565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906131bc565b610e6f565b005b34801561042f57600080fd5b5061044a600480360381019061044591906131e9565b610ef5565b005b34801561045857600080fd5b50610461610fd6565b60405161046e919061368b565b60405180910390f35b34801561048357600080fd5b5061048c611064565b6040516104999190613670565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906131bc565b611077565b005b3480156104d757600080fd5b506104e06110fd565b6040516104ed919061368b565b60405180910390f35b34801561050257600080fd5b5061051d600480360381019061051891906131bc565b61118b565b60405161052a91906135e7565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612f56565b6111a1565b604051610567919061380d565b60405180910390f35b34801561057c57600080fd5b50610585611271565b005b34801561059357600080fd5b506105ae60048036038101906105a99190613173565b6112f9565b005b3480156105bc57600080fd5b506105c561138f565b005b3480156105d357600080fd5b506105dc611465565b6040516105e991906135e7565b60405180910390f35b3480156105fe57600080fd5b5061060761148f565b604051610614919061368b565b60405180910390f35b610637600480360381019061063291906131bc565b611521565b005b34801561064557600080fd5b50610660600480360381019061065b9190613099565b61180b565b005b34801561066e57600080fd5b5061068960048036038101906106849190613016565b611983565b005b34801561069757600080fd5b506106a06119fb565b6040516106ad919061380d565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d891906131bc565b611a01565b6040516106ea919061368b565b60405180910390f35b3480156106ff57600080fd5b50610708611aab565b604051610715919061380d565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190612f83565b611ab1565b6040516107529190613670565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d9190612f56565b611b45565b005b34801561079057600080fd5b50610799611c3d565b6040516107a6919061380d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a575061088982611c43565b5b9050919050565b6060600280546108a090613b16565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90613b16565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611cad565b610964576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109aa8261118b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a12576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a31611cfb565b73ffffffffffffffffffffffffffffffffffffffff1614610a9457610a5d81610a58611cfb565b611ab1565b610a93576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610a9f838383611d03565b505050565b600c5481565b6000610ab4611db5565b6001546000540303905090565b60116020528060005260406000206000915090505481565b610ae4838383611dbe565b505050565b610af1611cfb565b73ffffffffffffffffffffffffffffffffffffffff16610b0f611465565b73ffffffffffffffffffffffffffffffffffffffff1614610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c9061372d565b60405180910390fd5b60026009541415610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba2906137ad565b60405180910390fd5b60026009819055506000610bbd611465565b73ffffffffffffffffffffffffffffffffffffffff1647604051610be0906135d2565b60006040518083038185875af1925050503d8060008114610c1d576040519150601f19603f3d011682016040523d82523d6000602084013e610c22565b606091505b5050905080610c3057600080fd5b506001600981905550565b610c5683838360405180602001604052806000815250611983565b505050565b60606000610c68836111a1565b905060008167ffffffffffffffff811115610c8657610c85613caf565b5b604051908082528060200260200182016040528015610cb45781602001602082028036833780820191505090505b5090506000610cc1611db5565b90506000805b8482108015610cd7575060005483105b15610e62576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610e4e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dea57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4d5783858481518110610e3257610e31613c80565b5b6020026020010181815250508280610e4990613b79565b9350505b5b8380610e5990613b79565b94505050610cc7565b8395505050505050919050565b610e77611cfb565b73ffffffffffffffffffffffffffffffffffffffff16610e95611465565b73ffffffffffffffffffffffffffffffffffffffff1614610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee29061372d565b60405180910390fd5b80600c8190555050565b610efd611cfb565b73ffffffffffffffffffffffffffffffffffffffff16610f1b611465565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f689061372d565b60405180910390fd5b600d5482610f7d610aaa565b610f87919061394b565b1115610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf906136cd565b60405180910390fd5b610fd28183612274565b5050565b600b8054610fe390613b16565b80601f016020809104026020016040519081016040528092919081815260200182805461100f90613b16565b801561105c5780601f106110315761010080835404028352916020019161105c565b820191906000526020600020905b81548152906001019060200180831161103f57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b61107f611cfb565b73ffffffffffffffffffffffffffffffffffffffff1661109d611465565b73ffffffffffffffffffffffffffffffffffffffff16146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea9061372d565b60405180910390fd5b80600e8190555050565b600a805461110a90613b16565b80601f016020809104026020016040519081016040528092919081815260200182805461113690613b16565b80156111835780601f1061115857610100808354040283529160200191611183565b820191906000526020600020905b81548152906001019060200180831161116657829003601f168201915b505050505081565b600061119682612292565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611209576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611279611cfb565b73ffffffffffffffffffffffffffffffffffffffff16611297611465565b73ffffffffffffffffffffffffffffffffffffffff16146112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e49061372d565b60405180910390fd5b6112f7600061251d565b565b611301611cfb565b73ffffffffffffffffffffffffffffffffffffffff1661131f611465565b73ffffffffffffffffffffffffffffffffffffffff1614611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c9061372d565b60405180910390fd5b80600a908051906020019061138b929190612d27565b5050565b611397611cfb565b73ffffffffffffffffffffffffffffffffffffffff166113b5611465565b73ffffffffffffffffffffffffffffffffffffffff161461140b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114029061372d565b60405180910390fd5b60011515601060009054906101000a900460ff1615151415611447576000601060006101000a81548160ff021916908315150217905550611463565b6001601060006101000a81548160ff0219169083151502179055505b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461149e90613b16565b80601f01602080910402602001604051908101604052809291908181526020018280546114ca90613b16565b80156115175780601f106114ec57610100808354040283529160200191611517565b820191906000526020600020905b8154815290600101906020018083116114fa57829003601f168201915b5050505050905090565b80601060009054906101000a900460ff1615611572576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115699061374d565b60405180910390fd5b600081116115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac9061370d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a906136ed565b60405180910390fd5b600e54811115611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f9061378d565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116b6919061394b565b11156116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee9061376d565b60405180910390fd5b600d5481611703610aaa565b61170d919061394b565b111561174e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611745906136cd565b60405180910390fd5b8180600c5461175d91906139d2565b34101561179f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611796906137ed565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117ee919061394b565b92505081905550611806611800611cfb565b84612274565b505050565b611813611cfb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611878576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611885611cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611932611cfb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119779190613670565b60405180910390a35050565b61198e848484611dbe565b6119ad8373ffffffffffffffffffffffffffffffffffffffff166125e3565b156119f5576119be84848484612606565b6119f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b6060611a0c82611cad565b611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a42906137cd565b60405180910390fd5b6000611a55612766565b90506000815111611a755760405180602001604052806000815250611aa3565b80611a7f846127f8565b600b604051602001611a93939291906135a1565b6040516020818303038152906040525b915050919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b4d611cfb565b73ffffffffffffffffffffffffffffffffffffffff16611b6b611465565b73ffffffffffffffffffffffffffffffffffffffff1614611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb89061372d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c28906136ad565b60405180910390fd5b611c3a8161251d565b50565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611cb8611db5565b11158015611cc7575060005482105b8015611cf4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611dc982612292565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e34576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e55611cfb565b73ffffffffffffffffffffffffffffffffffffffff161480611e845750611e8385611e7e611cfb565b611ab1565b5b80611ec95750611e92611cfb565b73ffffffffffffffffffffffffffffffffffffffff16611eb184610923565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f02576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f768585856001612959565b611f8260008487611d03565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561220257600054821461220157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461226d858585600161295f565b5050505050565b61228e828260405180602001604052806000815250612965565b5050565b61229a612dad565b6000829050806122a8611db5565b116124e6576000548110156124e5576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124e357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c7578092505050612518565b5b6001156124e257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124dd578092505050612518565b6123c8565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261262c611cfb565b8786866040518563ffffffff1660e01b815260040161264e9493929190613602565b602060405180830381600087803b15801561266857600080fd5b505af192505050801561269957506040513d601f19601f820116820180604052508101906126969190613146565b60015b612713573d80600081146126c9576040519150601f19603f3d011682016040523d82523d6000602084013e6126ce565b606091505b5060008151141561270b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461277590613b16565b80601f01602080910402602001604051908101604052809291908181526020018280546127a190613b16565b80156127ee5780601f106127c3576101008083540402835291602001916127ee565b820191906000526020600020905b8154815290600101906020018083116127d157829003601f168201915b5050505050905090565b60606000821415612840576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612954565b600082905060005b6000821461287257808061285b90613b79565b915050600a8261286b91906139a1565b9150612848565b60008167ffffffffffffffff81111561288e5761288d613caf565b5b6040519080825280601f01601f1916602001820160405280156128c05781602001600182028036833780820191505090505b5090505b6000851461294d576001826128d99190613a2c565b9150600a856128e89190613bc2565b60306128f4919061394b565b60f81b81838151811061290a57612909613c80565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561294691906139a1565b94506128c4565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129d2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612a0d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a1a6000858386612959565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612bdb8673ffffffffffffffffffffffffffffffffffffffff166125e3565b15612ca0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c506000878480600101955087612606565b612c86576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612be1578260005414612c9b57600080fd5b612d0b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612ca1575b816000819055505050612d21600085838661295f565b50505050565b828054612d3390613b16565b90600052602060002090601f016020900481019282612d555760008555612d9c565b82601f10612d6e57805160ff1916838001178555612d9c565b82800160010185558215612d9c579182015b82811115612d9b578251825591602001919060010190612d80565b5b509050612da99190612df0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e09576000816000905550600101612df1565b5090565b6000612e20612e1b8461384d565b613828565b905082815260208101848484011115612e3c57612e3b613ce3565b5b612e47848285613ad4565b509392505050565b6000612e62612e5d8461387e565b613828565b905082815260208101848484011115612e7e57612e7d613ce3565b5b612e89848285613ad4565b509392505050565b600081359050612ea081613f61565b92915050565b600081359050612eb581613f78565b92915050565b600081359050612eca81613f8f565b92915050565b600081519050612edf81613f8f565b92915050565b600082601f830112612efa57612ef9613cde565b5b8135612f0a848260208601612e0d565b91505092915050565b600082601f830112612f2857612f27613cde565b5b8135612f38848260208601612e4f565b91505092915050565b600081359050612f5081613fa6565b92915050565b600060208284031215612f6c57612f6b613ced565b5b6000612f7a84828501612e91565b91505092915050565b60008060408385031215612f9a57612f99613ced565b5b6000612fa885828601612e91565b9250506020612fb985828601612e91565b9150509250929050565b600080600060608486031215612fdc57612fdb613ced565b5b6000612fea86828701612e91565b9350506020612ffb86828701612e91565b925050604061300c86828701612f41565b9150509250925092565b600080600080608085870312156130305761302f613ced565b5b600061303e87828801612e91565b945050602061304f87828801612e91565b935050604061306087828801612f41565b925050606085013567ffffffffffffffff81111561308157613080613ce8565b5b61308d87828801612ee5565b91505092959194509250565b600080604083850312156130b0576130af613ced565b5b60006130be85828601612e91565b92505060206130cf85828601612ea6565b9150509250929050565b600080604083850312156130f0576130ef613ced565b5b60006130fe85828601612e91565b925050602061310f85828601612f41565b9150509250929050565b60006020828403121561312f5761312e613ced565b5b600061313d84828501612ebb565b91505092915050565b60006020828403121561315c5761315b613ced565b5b600061316a84828501612ed0565b91505092915050565b60006020828403121561318957613188613ced565b5b600082013567ffffffffffffffff8111156131a7576131a6613ce8565b5b6131b384828501612f13565b91505092915050565b6000602082840312156131d2576131d1613ced565b5b60006131e084828501612f41565b91505092915050565b60008060408385031215613200576131ff613ced565b5b600061320e85828601612f41565b925050602061321f85828601612e91565b9150509250929050565b60006132358383613583565b60208301905092915050565b61324a81613a60565b82525050565b600061325b826138d4565b6132658185613902565b9350613270836138af565b8060005b838110156132a15781516132888882613229565b9750613293836138f5565b925050600181019050613274565b5085935050505092915050565b6132b781613a72565b82525050565b60006132c8826138df565b6132d28185613913565b93506132e2818560208601613ae3565b6132eb81613cf2565b840191505092915050565b6000613301826138ea565b61330b818561392f565b935061331b818560208601613ae3565b61332481613cf2565b840191505092915050565b600061333a826138ea565b6133448185613940565b9350613354818560208601613ae3565b80840191505092915050565b6000815461336d81613b16565b6133778186613940565b9450600182166000811461339257600181146133a3576133d6565b60ff198316865281860193506133d6565b6133ac856138bf565b60005b838110156133ce578154818901526001820191506020810190506133af565b838801955050505b50505092915050565b60006133ec60268361392f565b91506133f782613d03565b604082019050919050565b600061340f601f8361392f565b915061341a82613d52565b602082019050919050565b6000613432601e8361392f565b915061343d82613d7b565b602082019050919050565b6000613455601a8361392f565b915061346082613da4565b602082019050919050565b600061347860208361392f565b915061348382613dcd565b602082019050919050565b600061349b60178361392f565b91506134a682613df6565b602082019050919050565b60006134be600083613924565b91506134c982613e1f565b600082019050919050565b60006134e160258361392f565b91506134ec82613e22565b604082019050919050565b600061350460228361392f565b915061350f82613e71565b604082019050919050565b6000613527601f8361392f565b915061353282613ec0565b602082019050919050565b600061354a60308361392f565b915061355582613ee9565b604082019050919050565b600061356d60138361392f565b915061357882613f38565b602082019050919050565b61358c81613aca565b82525050565b61359b81613aca565b82525050565b60006135ad828661332f565b91506135b9828561332f565b91506135c58284613360565b9150819050949350505050565b60006135dd826134b1565b9150819050919050565b60006020820190506135fc6000830184613241565b92915050565b60006080820190506136176000830187613241565b6136246020830186613241565b6136316040830185613592565b818103606083015261364381846132bd565b905095945050505050565b600060208201905081810360008301526136688184613250565b905092915050565b600060208201905061368560008301846132ae565b92915050565b600060208201905081810360008301526136a581846132f6565b905092915050565b600060208201905081810360008301526136c6816133df565b9050919050565b600060208201905081810360008301526136e681613402565b9050919050565b6000602082019050818103600083015261370681613425565b9050919050565b6000602082019050818103600083015261372681613448565b9050919050565b600060208201905081810360008301526137468161346b565b9050919050565b600060208201905081810360008301526137668161348e565b9050919050565b60006020820190508181036000830152613786816134d4565b9050919050565b600060208201905081810360008301526137a6816134f7565b9050919050565b600060208201905081810360008301526137c68161351a565b9050919050565b600060208201905081810360008301526137e68161353d565b9050919050565b6000602082019050818103600083015261380681613560565b9050919050565b60006020820190506138226000830184613592565b92915050565b6000613832613843565b905061383e8282613b48565b919050565b6000604051905090565b600067ffffffffffffffff82111561386857613867613caf565b5b61387182613cf2565b9050602081019050919050565b600067ffffffffffffffff82111561389957613898613caf565b5b6138a282613cf2565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061395682613aca565b915061396183613aca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561399657613995613bf3565b5b828201905092915050565b60006139ac82613aca565b91506139b783613aca565b9250826139c7576139c6613c22565b5b828204905092915050565b60006139dd82613aca565b91506139e883613aca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a2157613a20613bf3565b5b828202905092915050565b6000613a3782613aca565b9150613a4283613aca565b925082821015613a5557613a54613bf3565b5b828203905092915050565b6000613a6b82613aaa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b01578082015181840152602081019050613ae6565b83811115613b10576000848401525b50505050565b60006002820490506001821680613b2e57607f821691505b60208210811415613b4257613b41613c51565b5b50919050565b613b5182613cf2565b810181811067ffffffffffffffff82111715613b7057613b6f613caf565b5b80604052505050565b6000613b8482613aca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bb757613bb6613bf3565b5b600182019050919050565b6000613bcd82613aca565b9150613bd883613aca565b925082613be857613be7613c22565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e742065786365656473206d617820737570706c792100600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4d696e7420616d6f756e742063616e2774206265207a65726f2e000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d6178206d696e7420616d6f756e74207065722061646472657373206578636560008201527f6564656421000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e7420706572207472616e73616374696f6e206578636565646560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613f6a81613a60565b8114613f7557600080fd5b50565b613f8181613a72565b8114613f8c57600080fd5b50565b613f9881613a7e565b8114613fa357600080fd5b50565b613faf81613aca565b8114613fba57600080fd5b5056fea26469706673582212208d927d97c1941b63535a080b6c685986e0449dd6e94129fd0117adbad176e5dc64736f6c63430008070033

Deployed Bytecode Sourcemap

36825:4147:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19682:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22797:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24301:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23863:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36991:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18922:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37172:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25166:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40807:162;;;;;;;;;;;;;:::i;:::-;;25407:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38931:827;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40383:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38627:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36949:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37140:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40463:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36921:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22605:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20051:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4069:103;;;;;;;;;;;;;:::i;:::-;;40581:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40687:114;;;;;;;;;;;;;:::i;:::-;;3418:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22966:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38384:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24577:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25663:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37095:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39944:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37025:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24935:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4327:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37063:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19682:305;19784:4;19836:25;19821:40;;;:11;:40;;;;:105;;;;19893:33;19878:48;;;:11;:48;;;;19821:105;:158;;;;19943:36;19967:11;19943:23;:36::i;:::-;19821:158;19801:178;;19682:305;;;:::o;22797:100::-;22851:13;22884:5;22877:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22797:100;:::o;24301:204::-;24369:7;24394:16;24402:7;24394;:16::i;:::-;24389:64;;24419:34;;;;;;;;;;;;;;24389:64;24473:15;:24;24489:7;24473:24;;;;;;;;;;;;;;;;;;;;;24466:31;;24301:204;;;:::o;23863:372::-;23936:13;23952:24;23968:7;23952:15;:24::i;:::-;23936:40;;23997:5;23991:11;;:2;:11;;;23987:48;;;24011:24;;;;;;;;;;;;;;23987:48;24068:5;24052:21;;:12;:10;:12::i;:::-;:21;;;24048:139;;24079:37;24096:5;24103:12;:10;:12::i;:::-;24079:16;:37::i;:::-;24075:112;;24140:35;;;;;;;;;;;;;;24075:112;24048:139;24199:28;24208:2;24212:7;24221:5;24199:8;:28::i;:::-;23925:310;23863:372;;:::o;36991:29::-;;;;:::o;18922:312::-;18975:7;19200:15;:13;:15::i;:::-;19185:12;;19169:13;;:28;:46;19162:53;;18922:312;:::o;37172:55::-;;;;;;;;;;;;;;;;;:::o;25166:170::-;25300:28;25310:4;25316:2;25320:7;25300:9;:28::i;:::-;25166:170;;;:::o;40807:162::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;262:1:::1;482:7;;:19;;474:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;262:1;615:7;:18;;;;40867:12:::2;40893:7;:5;:7::i;:::-;40885:21;;40914;40885:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40866:74;;;40955:7;40947:16;;;::::0;::::2;;40859:110;218:1:::1;660:7;:22;;;;40807:162::o:0;25407:185::-;25545:39;25562:4;25568:2;25572:7;25545:39;;;;;;;;;;;;:16;:39::i;:::-;25407:185;;;:::o;38931:827::-;38991:16;39016:23;39042:17;39052:6;39042:9;:17::i;:::-;39016:43;;39066:30;39113:15;39099:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39066:63;;39136:22;39161:15;:13;:15::i;:::-;39136:40;;39183:23;39217:26;39252:474;39277:15;39259;:33;:67;;;;;39313:13;;39296:14;:30;39259:67;39252:474;;;39337:31;39371:11;:27;39383:14;39371:27;;;;;;;;;;;39337:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39414:9;:16;;;39409:285;;39473:1;39447:28;;:9;:14;;;:28;;;39443:94;;39511:9;:14;;;39490:35;;39443:94;39575:6;39553:28;;:18;:28;;;39549:136;;;39629:14;39596:13;39610:15;39596:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;39656:17;;;;;:::i;:::-;;;;39549:136;39409:285;39702:16;;;;;:::i;:::-;;;;39328:398;39252:474;;;39739:13;39732:20;;;;;;;38931:827;;;:::o;40383:74::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40446:5:::1;40439:4;:12;;;;40383:74:::0;:::o;38627:217::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38753:9:::1;;38738:11;38722:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;38714:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;38805:33;38815:9;38826:11;38805:9;:33::i;:::-;38627:217:::0;;:::o;36949:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37140:25::-;;;;;;;;;;;;;:::o;40463:98::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40542:13:::1;40531:8;:24;;;;40463:98:::0;:::o;36921:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22605:125::-;22669:7;22696:21;22709:7;22696:12;:21::i;:::-;:26;;;22689:33;;22605:125;;;:::o;20051:206::-;20115:7;20156:1;20139:19;;:5;:19;;;20135:60;;;20167:28;;;;;;;;;;;;;;20135:60;20221:12;:19;20234:5;20221:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;20213:36;;20206:43;;20051:206;;;:::o;4069:103::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4134:30:::1;4161:1;4134:18;:30::i;:::-;4069:103::o:0;40581:100::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40665:10:::1;40653:9;:22;;;;;;;;;;;;:::i;:::-;;40581:100:::0;:::o;40687:114::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40742:4:::1;40732:14;;:6;;;;;;;;;;;:14;;;40728:68;;;40759:5;40750:6;;:14;;;;;;;;;;;;;;;;;;40728:68;;;40789:4;40780:6;;:13;;;;;;;;;;;;;;;;;;40728:68;40687:114::o:0;3418:87::-;3464:7;3491:6;;;;;;;;;;;3484:13;;3418:87;:::o;22966:104::-;23022:13;23055:7;23048:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22966:104;:::o;38384:214::-;38449:11;37668:6;;;;;;;;;;;37667:7;37659:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;37731:1;37717:11;:15;37709:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;37791:10;37778:23;;:9;:23;;;37770:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37866:8;;37851:11;:23;;37843:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;37978:18;;37963:11;37928:20;:32;37949:10;37928:32;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:68;;37920:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;38084:9;;38069:11;38053:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;38045:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;38482:11:::1;38234;38227:4;;:18;;;;:::i;:::-;38214:9;:31;;38206:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38538:11:::2;38502:20;:32;38523:10;38502:32;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;38556:36;38566:12;:10;:12::i;:::-;38580:11;38556:9;:36::i;:::-;38136:1:::1;38384:214:::0;;:::o;24577:287::-;24688:12;:10;:12::i;:::-;24676:24;;:8;:24;;;24672:54;;;24709:17;;;;;;;;;;;;;;24672:54;24784:8;24739:18;:32;24758:12;:10;:12::i;:::-;24739:32;;;;;;;;;;;;;;;:42;24772:8;24739:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24837:8;24808:48;;24823:12;:10;:12::i;:::-;24808:48;;;24847:8;24808:48;;;;;;:::i;:::-;;;;;;;;24577:287;;:::o;25663:370::-;25830:28;25840:4;25846:2;25850:7;25830:9;:28::i;:::-;25873:15;:2;:13;;;:15::i;:::-;25869:157;;;25894:56;25925:4;25931:2;25935:7;25944:5;25894:30;:56::i;:::-;25890:136;;25974:40;;;;;;;;;;;;;;25890:136;25869:157;25663:370;;;;:::o;37095:38::-;;;;:::o;39944:365::-;40018:13;40048:17;40056:8;40048:7;:17::i;:::-;40040:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;40126:28;40157:10;:8;:10::i;:::-;40126:41;;40212:1;40187:14;40181:28;:32;:122;;;;;;;;;;;;;;;;;40245:14;40261:19;:8;:17;:19::i;:::-;40282:9;40228:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40181:122;40174:129;;;39944:365;;;:::o;37025:31::-;;;;:::o;24935:164::-;25032:4;25056:18;:25;25075:5;25056:25;;;;;;;;;;;;;;;:35;25082:8;25056:35;;;;;;;;;;;;;;;;;;;;;;;;;25049:42;;24935:164;;;;:::o;4327:201::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4436:1:::1;4416:22;;:8;:22;;;;4408:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4492:28;4511:8;4492:18;:28::i;:::-;4327:201:::0;:::o;37063:27::-;;;;:::o;10910:157::-;10995:4;11034:25;11019:40;;;:11;:40;;;;11012:47;;10910:157;;;:::o;26288:174::-;26345:4;26388:7;26369:15;:13;:15::i;:::-;:26;;:53;;;;;26409:13;;26399:7;:23;26369:53;:85;;;;;26427:11;:20;26439:7;26427:20;;;;;;;;;;;:27;;;;;;;;;;;;26426:28;26369:85;26362:92;;26288:174;;;:::o;2708:98::-;2761:7;2788:10;2781:17;;2708:98;:::o;35510:196::-;35652:2;35625:15;:24;35641:7;35625:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35690:7;35686:2;35670:28;;35679:5;35670:28;;;;;;;;;;;;35510:196;;;:::o;39782:95::-;39847:7;39870:1;39863:8;;39782:95;:::o;30458:2130::-;30573:35;30611:21;30624:7;30611:12;:21::i;:::-;30573:59;;30671:4;30649:26;;:13;:18;;;:26;;;30645:67;;30684:28;;;;;;;;;;;;;;30645:67;30725:22;30767:4;30751:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;30788:36;30805:4;30811:12;:10;:12::i;:::-;30788:16;:36::i;:::-;30751:73;:126;;;;30865:12;:10;:12::i;:::-;30841:36;;:20;30853:7;30841:11;:20::i;:::-;:36;;;30751:126;30725:153;;30896:17;30891:66;;30922:35;;;;;;;;;;;;;;30891:66;30986:1;30972:16;;:2;:16;;;30968:52;;;30997:23;;;;;;;;;;;;;;30968:52;31033:43;31055:4;31061:2;31065:7;31074:1;31033:21;:43::i;:::-;31141:35;31158:1;31162:7;31171:4;31141:8;:35::i;:::-;31502:1;31472:12;:18;31485:4;31472:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31546:1;31518:12;:16;31531:2;31518:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31564:31;31598:11;:20;31610:7;31598:20;;;;;;;;;;;31564:54;;31649:2;31633:8;:13;;;:18;;;;;;;;;;;;;;;;;;31699:15;31666:8;:23;;;:49;;;;;;;;;;;;;;;;;;31967:19;31999:1;31989:7;:11;31967:33;;32015:31;32049:11;:24;32061:11;32049:24;;;;;;;;;;;32015:58;;32117:1;32092:27;;:8;:13;;;;;;;;;;;;:27;;;32088:384;;;32302:13;;32287:11;:28;32283:174;;32356:4;32340:8;:13;;;:20;;;;;;;;;;;;;;;;;;32409:13;:28;;;32383:8;:23;;;:54;;;;;;;;;;;;;;;;;;32283:174;32088:384;31447:1036;;;32519:7;32515:2;32500:27;;32509:4;32500:27;;;;;;;;;;;;32538:42;32559:4;32565:2;32569:7;32578:1;32538:20;:42::i;:::-;30562:2026;;30458:2130;;;:::o;26546:104::-;26615:27;26625:2;26629:8;26615:27;;;;;;;;;;;;:9;:27::i;:::-;26546:104;;:::o;21432:1111::-;21494:21;;:::i;:::-;21528:12;21543:7;21528:22;;21611:4;21592:15;:13;:15::i;:::-;:23;21588:888;;21628:13;;21621:4;:20;21617:859;;;21662:31;21696:11;:17;21708:4;21696:17;;;;;;;;;;;21662:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21737:9;:16;;;21732:729;;21808:1;21782:28;;:9;:14;;;:28;;;21778:101;;21846:9;21839:16;;;;;;21778:101;22181:261;22188:4;22181:261;;;22221:6;;;;;;;;22266:11;:17;22278:4;22266:17;;;;;;;;;;;22254:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22340:1;22314:28;;:9;:14;;;:28;;;22310:109;;22382:9;22375:16;;;;;;22310:109;22181:261;;;21732:729;21643:833;21617:859;21588:888;22504:31;;;;;;;;;;;;;;21432:1111;;;;:::o;4688:191::-;4762:16;4781:6;;;;;;;;;;;4762:25;;4807:8;4798:6;;:17;;;;;;;;;;;;;;;;;;4862:8;4831:40;;4852:8;4831:40;;;;;;;;;;;;4751:128;4688:191;:::o;5140:115::-;5200:4;5246:1;5224:7;:19;;;:23;5217:30;;5140:115;;;:::o;35716:667::-;35879:4;35916:2;35900:36;;;35937:12;:10;:12::i;:::-;35951:4;35957:7;35966:5;35900:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35896:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36151:1;36134:6;:13;:18;36130:235;;;36180:40;;;;;;;;;;;;;;36130:235;36323:6;36317:13;36308:6;36304:2;36300:15;36293:38;35896:480;36029:45;;;36019:55;;;:6;:55;;;;36012:62;;;35716:667;;;;;;:::o;37439:104::-;37499:13;37528:9;37521:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37439:104;:::o;966:534::-;1022:13;1063:1;1054:5;:10;1050:53;;;1081:10;;;;;;;;;;;;;;;;;;;;;1050:53;1113:12;1128:5;1113:20;;1144:14;1169:78;1184:1;1176:4;:9;1169:78;;1202:8;;;;;:::i;:::-;;;;1233:2;1225:10;;;;;:::i;:::-;;;1169:78;;;1257:19;1289:6;1279:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1257:39;;1307:154;1323:1;1314:5;:10;1307:154;;1351:1;1341:11;;;;;:::i;:::-;;;1418:2;1410:5;:10;;;;:::i;:::-;1397:2;:24;;;;:::i;:::-;1384:39;;1367:6;1374;1367:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1447:2;1438:11;;;;;:::i;:::-;;;1307:154;;;1485:6;1471:21;;;;;966:534;;;;:::o;36394:159::-;;;;;:::o;36563:158::-;;;;;:::o;27023:1749::-;27146:20;27169:13;;27146:36;;27211:1;27197:16;;:2;:16;;;27193:48;;;27222:19;;;;;;;;;;;;;;27193:48;27268:1;27256:8;:13;27252:44;;;27278:18;;;;;;;;;;;;;;27252:44;27309:61;27339:1;27343:2;27347:12;27361:8;27309:21;:61::i;:::-;27682:8;27647:12;:16;27660:2;27647:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27746:8;27706:12;:16;27719:2;27706:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27805:2;27772:11;:25;27784:12;27772:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;27872:15;27822:11;:25;27834:12;27822:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;27905:20;27928:12;27905:35;;27955:11;27984:8;27969:12;:23;27955:37;;28013:15;:2;:13;;;:15::i;:::-;28009:631;;;28049:313;28105:12;28101:2;28080:38;;28097:1;28080:38;;;;;;;;;;;;28146:69;28185:1;28189:2;28193:14;;;;;;28209:5;28146:30;:69::i;:::-;28141:174;;28251:40;;;;;;;;;;;;;;28141:174;28357:3;28342:12;:18;28049:313;;28443:12;28426:13;;:29;28422:43;;28457:8;;;28422:43;28009:631;;;28506:119;28562:14;;;;;;28558:2;28537:40;;28554:1;28537:40;;;;;;;;;;;;28620:3;28605:12;:18;28506:119;;28009:631;28670:12;28654:13;:28;;;;27622:1072;;28704:60;28733:1;28737:2;28741:12;28755:8;28704:20;:60::i;:::-;27135:1637;27023:1749;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:474::-;7226:6;7234;7283:2;7271:9;7262:7;7258:23;7254:32;7251:119;;;7289:79;;:::i;:::-;7251:119;7409:1;7434:53;7479:7;7470:6;7459:9;7455:22;7434:53;:::i;:::-;7424:63;;7380:117;7536:2;7562:53;7607:7;7598:6;7587:9;7583:22;7562:53;:::i;:::-;7552:63;;7507:118;7158:474;;;;;:::o;7638:179::-;7707:10;7728:46;7770:3;7762:6;7728:46;:::i;:::-;7806:4;7801:3;7797:14;7783:28;;7638:179;;;;:::o;7823:118::-;7910:24;7928:5;7910:24;:::i;:::-;7905:3;7898:37;7823:118;;:::o;7977:732::-;8096:3;8125:54;8173:5;8125:54;:::i;:::-;8195:86;8274:6;8269:3;8195:86;:::i;:::-;8188:93;;8305:56;8355:5;8305:56;:::i;:::-;8384:7;8415:1;8400:284;8425:6;8422:1;8419:13;8400:284;;;8501:6;8495:13;8528:63;8587:3;8572:13;8528:63;:::i;:::-;8521:70;;8614:60;8667:6;8614:60;:::i;:::-;8604:70;;8460:224;8447:1;8444;8440:9;8435:14;;8400:284;;;8404:14;8700:3;8693:10;;8101:608;;;7977:732;;;;:::o;8715:109::-;8796:21;8811:5;8796:21;:::i;:::-;8791:3;8784:34;8715:109;;:::o;8830:360::-;8916:3;8944:38;8976:5;8944:38;:::i;:::-;8998:70;9061:6;9056:3;8998:70;:::i;:::-;8991:77;;9077:52;9122:6;9117:3;9110:4;9103:5;9099:16;9077:52;:::i;:::-;9154:29;9176:6;9154:29;:::i;:::-;9149:3;9145:39;9138:46;;8920:270;8830:360;;;;:::o;9196:364::-;9284:3;9312:39;9345:5;9312:39;:::i;:::-;9367:71;9431:6;9426:3;9367:71;:::i;:::-;9360:78;;9447:52;9492:6;9487:3;9480:4;9473:5;9469:16;9447:52;:::i;:::-;9524:29;9546:6;9524:29;:::i;:::-;9519:3;9515:39;9508:46;;9288:272;9196:364;;;;:::o;9566:377::-;9672:3;9700:39;9733:5;9700:39;:::i;:::-;9755:89;9837:6;9832:3;9755:89;:::i;:::-;9748:96;;9853:52;9898:6;9893:3;9886:4;9879:5;9875:16;9853:52;:::i;:::-;9930:6;9925:3;9921:16;9914:23;;9676:267;9566:377;;;;:::o;9973:845::-;10076:3;10113:5;10107:12;10142:36;10168:9;10142:36;:::i;:::-;10194:89;10276:6;10271:3;10194:89;:::i;:::-;10187:96;;10314:1;10303:9;10299:17;10330:1;10325:137;;;;10476:1;10471:341;;;;10292:520;;10325:137;10409:4;10405:9;10394;10390:25;10385:3;10378:38;10445:6;10440:3;10436:16;10429:23;;10325:137;;10471:341;10538:38;10570:5;10538:38;:::i;:::-;10598:1;10612:154;10626:6;10623:1;10620:13;10612:154;;;10700:7;10694:14;10690:1;10685:3;10681:11;10674:35;10750:1;10741:7;10737:15;10726:26;;10648:4;10645:1;10641:12;10636:17;;10612:154;;;10795:6;10790:3;10786:16;10779:23;;10478:334;;10292:520;;10080:738;;9973:845;;;;:::o;10824:366::-;10966:3;10987:67;11051:2;11046:3;10987:67;:::i;:::-;10980:74;;11063:93;11152:3;11063:93;:::i;:::-;11181:2;11176:3;11172:12;11165:19;;10824:366;;;:::o;11196:::-;11338:3;11359:67;11423:2;11418:3;11359:67;:::i;:::-;11352:74;;11435:93;11524:3;11435:93;:::i;:::-;11553:2;11548:3;11544:12;11537:19;;11196:366;;;:::o;11568:::-;11710:3;11731:67;11795:2;11790:3;11731:67;:::i;:::-;11724:74;;11807:93;11896:3;11807:93;:::i;:::-;11925:2;11920:3;11916:12;11909:19;;11568:366;;;:::o;11940:::-;12082:3;12103:67;12167:2;12162:3;12103:67;:::i;:::-;12096:74;;12179:93;12268:3;12179:93;:::i;:::-;12297:2;12292:3;12288:12;12281:19;;11940:366;;;:::o;12312:::-;12454:3;12475:67;12539:2;12534:3;12475:67;:::i;:::-;12468:74;;12551:93;12640:3;12551:93;:::i;:::-;12669:2;12664:3;12660:12;12653:19;;12312:366;;;:::o;12684:::-;12826:3;12847:67;12911:2;12906:3;12847:67;:::i;:::-;12840:74;;12923:93;13012:3;12923:93;:::i;:::-;13041:2;13036:3;13032:12;13025:19;;12684:366;;;:::o;13056:398::-;13215:3;13236:83;13317:1;13312:3;13236:83;:::i;:::-;13229:90;;13328:93;13417:3;13328:93;:::i;:::-;13446:1;13441:3;13437:11;13430:18;;13056:398;;;:::o;13460:366::-;13602:3;13623:67;13687:2;13682:3;13623:67;:::i;:::-;13616:74;;13699:93;13788:3;13699:93;:::i;:::-;13817:2;13812:3;13808:12;13801:19;;13460:366;;;:::o;13832:::-;13974:3;13995:67;14059:2;14054:3;13995:67;:::i;:::-;13988:74;;14071:93;14160:3;14071:93;:::i;:::-;14189:2;14184:3;14180:12;14173:19;;13832:366;;;:::o;14204:::-;14346:3;14367:67;14431:2;14426:3;14367:67;:::i;:::-;14360:74;;14443:93;14532:3;14443:93;:::i;:::-;14561:2;14556:3;14552:12;14545:19;;14204:366;;;:::o;14576:::-;14718:3;14739:67;14803:2;14798:3;14739:67;:::i;:::-;14732:74;;14815:93;14904:3;14815:93;:::i;:::-;14933:2;14928:3;14924:12;14917:19;;14576:366;;;:::o;14948:::-;15090:3;15111:67;15175:2;15170:3;15111:67;:::i;:::-;15104:74;;15187:93;15276:3;15187:93;:::i;:::-;15305:2;15300:3;15296:12;15289:19;;14948:366;;;:::o;15320:108::-;15397:24;15415:5;15397:24;:::i;:::-;15392:3;15385:37;15320:108;;:::o;15434:118::-;15521:24;15539:5;15521:24;:::i;:::-;15516:3;15509:37;15434:118;;:::o;15558:589::-;15783:3;15805:95;15896:3;15887:6;15805:95;:::i;:::-;15798:102;;15917:95;16008:3;15999:6;15917:95;:::i;:::-;15910:102;;16029:92;16117:3;16108:6;16029:92;:::i;:::-;16022:99;;16138:3;16131:10;;15558:589;;;;;;:::o;16153:379::-;16337:3;16359:147;16502:3;16359:147;:::i;:::-;16352:154;;16523:3;16516:10;;16153:379;;;:::o;16538:222::-;16631:4;16669:2;16658:9;16654:18;16646:26;;16682:71;16750:1;16739:9;16735:17;16726:6;16682:71;:::i;:::-;16538:222;;;;:::o;16766:640::-;16961:4;16999:3;16988:9;16984:19;16976:27;;17013:71;17081:1;17070:9;17066:17;17057:6;17013:71;:::i;:::-;17094:72;17162:2;17151:9;17147:18;17138:6;17094:72;:::i;:::-;17176;17244:2;17233:9;17229:18;17220:6;17176:72;:::i;:::-;17295:9;17289:4;17285:20;17280:2;17269:9;17265:18;17258:48;17323:76;17394:4;17385:6;17323:76;:::i;:::-;17315:84;;16766:640;;;;;;;:::o;17412:373::-;17555:4;17593:2;17582:9;17578:18;17570:26;;17642:9;17636:4;17632:20;17628:1;17617:9;17613:17;17606:47;17670:108;17773:4;17764:6;17670:108;:::i;:::-;17662:116;;17412:373;;;;:::o;17791:210::-;17878:4;17916:2;17905:9;17901:18;17893:26;;17929:65;17991:1;17980:9;17976:17;17967:6;17929:65;:::i;:::-;17791:210;;;;:::o;18007:313::-;18120:4;18158:2;18147:9;18143:18;18135:26;;18207:9;18201:4;18197:20;18193:1;18182:9;18178:17;18171:47;18235:78;18308:4;18299:6;18235:78;:::i;:::-;18227:86;;18007:313;;;;:::o;18326:419::-;18492:4;18530:2;18519:9;18515:18;18507:26;;18579:9;18573:4;18569:20;18565:1;18554:9;18550:17;18543:47;18607:131;18733:4;18607:131;:::i;:::-;18599:139;;18326:419;;;:::o;18751:::-;18917:4;18955:2;18944:9;18940:18;18932:26;;19004:9;18998:4;18994:20;18990:1;18979:9;18975:17;18968:47;19032:131;19158:4;19032:131;:::i;:::-;19024:139;;18751:419;;;:::o;19176:::-;19342:4;19380:2;19369:9;19365:18;19357:26;;19429:9;19423:4;19419:20;19415:1;19404:9;19400:17;19393:47;19457:131;19583:4;19457:131;:::i;:::-;19449:139;;19176:419;;;:::o;19601:::-;19767:4;19805:2;19794:9;19790:18;19782:26;;19854:9;19848:4;19844:20;19840:1;19829:9;19825:17;19818:47;19882:131;20008:4;19882:131;:::i;:::-;19874:139;;19601:419;;;:::o;20026:::-;20192:4;20230:2;20219:9;20215:18;20207:26;;20279:9;20273:4;20269:20;20265:1;20254:9;20250:17;20243:47;20307:131;20433:4;20307:131;:::i;:::-;20299:139;;20026:419;;;:::o;20451:::-;20617:4;20655:2;20644:9;20640:18;20632:26;;20704:9;20698:4;20694:20;20690:1;20679:9;20675:17;20668:47;20732:131;20858:4;20732:131;:::i;:::-;20724:139;;20451:419;;;:::o;20876:::-;21042:4;21080:2;21069:9;21065:18;21057:26;;21129:9;21123:4;21119:20;21115:1;21104:9;21100:17;21093:47;21157:131;21283:4;21157:131;:::i;:::-;21149:139;;20876:419;;;:::o;21301:::-;21467:4;21505:2;21494:9;21490:18;21482:26;;21554:9;21548:4;21544:20;21540:1;21529:9;21525:17;21518:47;21582:131;21708:4;21582:131;:::i;:::-;21574:139;;21301:419;;;:::o;21726:::-;21892:4;21930:2;21919:9;21915:18;21907:26;;21979:9;21973:4;21969:20;21965:1;21954:9;21950:17;21943:47;22007:131;22133:4;22007:131;:::i;:::-;21999:139;;21726:419;;;:::o;22151:::-;22317:4;22355:2;22344:9;22340:18;22332:26;;22404:9;22398:4;22394:20;22390:1;22379:9;22375:17;22368:47;22432:131;22558:4;22432:131;:::i;:::-;22424:139;;22151:419;;;:::o;22576:::-;22742:4;22780:2;22769:9;22765:18;22757:26;;22829:9;22823:4;22819:20;22815:1;22804:9;22800:17;22793:47;22857:131;22983:4;22857:131;:::i;:::-;22849:139;;22576:419;;;:::o;23001:222::-;23094:4;23132:2;23121:9;23117:18;23109:26;;23145:71;23213:1;23202:9;23198:17;23189:6;23145:71;:::i;:::-;23001:222;;;;:::o;23229:129::-;23263:6;23290:20;;:::i;:::-;23280:30;;23319:33;23347:4;23339:6;23319:33;:::i;:::-;23229:129;;;:::o;23364:75::-;23397:6;23430:2;23424:9;23414:19;;23364:75;:::o;23445:307::-;23506:4;23596:18;23588:6;23585:30;23582:56;;;23618:18;;:::i;:::-;23582:56;23656:29;23678:6;23656:29;:::i;:::-;23648:37;;23740:4;23734;23730:15;23722:23;;23445:307;;;:::o;23758:308::-;23820:4;23910:18;23902:6;23899:30;23896:56;;;23932:18;;:::i;:::-;23896:56;23970:29;23992:6;23970:29;:::i;:::-;23962:37;;24054:4;24048;24044:15;24036:23;;23758:308;;;:::o;24072:132::-;24139:4;24162:3;24154:11;;24192:4;24187:3;24183:14;24175:22;;24072:132;;;:::o;24210:141::-;24259:4;24282:3;24274:11;;24305:3;24302:1;24295:14;24339:4;24336:1;24326:18;24318:26;;24210:141;;;:::o;24357:114::-;24424:6;24458:5;24452:12;24442:22;;24357:114;;;:::o;24477:98::-;24528:6;24562:5;24556:12;24546:22;;24477:98;;;:::o;24581:99::-;24633:6;24667:5;24661:12;24651:22;;24581:99;;;:::o;24686:113::-;24756:4;24788;24783:3;24779:14;24771:22;;24686:113;;;:::o;24805:184::-;24904:11;24938:6;24933:3;24926:19;24978:4;24973:3;24969:14;24954:29;;24805:184;;;;:::o;24995:168::-;25078:11;25112:6;25107:3;25100:19;25152:4;25147:3;25143:14;25128:29;;24995:168;;;;:::o;25169:147::-;25270:11;25307:3;25292:18;;25169:147;;;;:::o;25322:169::-;25406:11;25440:6;25435:3;25428:19;25480:4;25475:3;25471:14;25456:29;;25322:169;;;;:::o;25497:148::-;25599:11;25636:3;25621:18;;25497:148;;;;:::o;25651:305::-;25691:3;25710:20;25728:1;25710:20;:::i;:::-;25705:25;;25744:20;25762:1;25744:20;:::i;:::-;25739:25;;25898:1;25830:66;25826:74;25823:1;25820:81;25817:107;;;25904:18;;:::i;:::-;25817:107;25948:1;25945;25941:9;25934:16;;25651:305;;;;:::o;25962:185::-;26002:1;26019:20;26037:1;26019:20;:::i;:::-;26014:25;;26053:20;26071:1;26053:20;:::i;:::-;26048:25;;26092:1;26082:35;;26097:18;;:::i;:::-;26082:35;26139:1;26136;26132:9;26127:14;;25962:185;;;;:::o;26153:348::-;26193:7;26216:20;26234:1;26216:20;:::i;:::-;26211:25;;26250:20;26268:1;26250:20;:::i;:::-;26245:25;;26438:1;26370:66;26366:74;26363:1;26360:81;26355:1;26348:9;26341:17;26337:105;26334:131;;;26445:18;;:::i;:::-;26334:131;26493:1;26490;26486:9;26475:20;;26153:348;;;;:::o;26507:191::-;26547:4;26567:20;26585:1;26567:20;:::i;:::-;26562:25;;26601:20;26619:1;26601:20;:::i;:::-;26596:25;;26640:1;26637;26634:8;26631:34;;;26645:18;;:::i;:::-;26631:34;26690:1;26687;26683:9;26675:17;;26507:191;;;;:::o;26704:96::-;26741:7;26770:24;26788:5;26770:24;:::i;:::-;26759:35;;26704:96;;;:::o;26806:90::-;26840:7;26883:5;26876:13;26869:21;26858:32;;26806:90;;;:::o;26902:149::-;26938:7;26978:66;26971:5;26967:78;26956:89;;26902:149;;;:::o;27057:126::-;27094:7;27134:42;27127:5;27123:54;27112:65;;27057:126;;;:::o;27189:77::-;27226:7;27255:5;27244:16;;27189:77;;;:::o;27272:154::-;27356:6;27351:3;27346;27333:30;27418:1;27409:6;27404:3;27400:16;27393:27;27272:154;;;:::o;27432:307::-;27500:1;27510:113;27524:6;27521:1;27518:13;27510:113;;;27609:1;27604:3;27600:11;27594:18;27590:1;27585:3;27581:11;27574:39;27546:2;27543:1;27539:10;27534:15;;27510:113;;;27641:6;27638:1;27635:13;27632:101;;;27721:1;27712:6;27707:3;27703:16;27696:27;27632:101;27481:258;27432:307;;;:::o;27745:320::-;27789:6;27826:1;27820:4;27816:12;27806:22;;27873:1;27867:4;27863:12;27894:18;27884:81;;27950:4;27942:6;27938:17;27928:27;;27884:81;28012:2;28004:6;28001:14;27981:18;27978:38;27975:84;;;28031:18;;:::i;:::-;27975:84;27796:269;27745:320;;;:::o;28071:281::-;28154:27;28176:4;28154:27;:::i;:::-;28146:6;28142:40;28284:6;28272:10;28269:22;28248:18;28236:10;28233:34;28230:62;28227:88;;;28295:18;;:::i;:::-;28227:88;28335:10;28331:2;28324:22;28114:238;28071:281;;:::o;28358:233::-;28397:3;28420:24;28438:5;28420:24;:::i;:::-;28411:33;;28466:66;28459:5;28456:77;28453:103;;;28536:18;;:::i;:::-;28453:103;28583:1;28576:5;28572:13;28565:20;;28358:233;;;:::o;28597:176::-;28629:1;28646:20;28664:1;28646:20;:::i;:::-;28641:25;;28680:20;28698:1;28680:20;:::i;:::-;28675:25;;28719:1;28709:35;;28724:18;;:::i;:::-;28709:35;28765:1;28762;28758:9;28753:14;;28597:176;;;;:::o;28779:180::-;28827:77;28824:1;28817:88;28924:4;28921:1;28914:15;28948:4;28945:1;28938:15;28965:180;29013:77;29010:1;29003:88;29110:4;29107:1;29100:15;29134:4;29131:1;29124:15;29151:180;29199:77;29196:1;29189:88;29296:4;29293:1;29286:15;29320:4;29317:1;29310:15;29337:180;29385:77;29382:1;29375:88;29482:4;29479:1;29472:15;29506:4;29503:1;29496:15;29523:180;29571:77;29568:1;29561:88;29668:4;29665:1;29658:15;29692:4;29689:1;29682:15;29709:117;29818:1;29815;29808:12;29832:117;29941:1;29938;29931:12;29955:117;30064:1;30061;30054:12;30078:117;30187:1;30184;30177:12;30201:102;30242:6;30293:2;30289:7;30284:2;30277:5;30273:14;30269:28;30259:38;;30201:102;;;:::o;30309:225::-;30449:34;30445:1;30437:6;30433:14;30426:58;30518:8;30513:2;30505:6;30501:15;30494:33;30309:225;:::o;30540:181::-;30680:33;30676:1;30668:6;30664:14;30657:57;30540:181;:::o;30727:180::-;30867:32;30863:1;30855:6;30851:14;30844:56;30727:180;:::o;30913:176::-;31053:28;31049:1;31041:6;31037:14;31030:52;30913:176;:::o;31095:182::-;31235:34;31231:1;31223:6;31219:14;31212:58;31095:182;:::o;31283:173::-;31423:25;31419:1;31411:6;31407:14;31400:49;31283:173;:::o;31462:114::-;;:::o;31582:224::-;31722:34;31718:1;31710:6;31706:14;31699:58;31791:7;31786:2;31778:6;31774:15;31767:32;31582:224;:::o;31812:221::-;31952:34;31948:1;31940:6;31936:14;31929:58;32021:4;32016:2;32008:6;32004:15;31997:29;31812:221;:::o;32039:181::-;32179:33;32175:1;32167:6;32163:14;32156:57;32039:181;:::o;32226:235::-;32366:34;32362:1;32354:6;32350:14;32343:58;32435:18;32430:2;32422:6;32418:15;32411:43;32226:235;:::o;32467:169::-;32607:21;32603:1;32595:6;32591:14;32584:45;32467:169;:::o;32642:122::-;32715:24;32733:5;32715:24;:::i;:::-;32708:5;32705:35;32695:63;;32754:1;32751;32744:12;32695:63;32642:122;:::o;32770:116::-;32840:21;32855:5;32840:21;:::i;:::-;32833:5;32830:32;32820:60;;32876:1;32873;32866:12;32820:60;32770:116;:::o;32892:120::-;32964:23;32981:5;32964:23;:::i;:::-;32957:5;32954:34;32944:62;;33002:1;32999;32992:12;32944:62;32892:120;:::o;33018:122::-;33091:24;33109:5;33091:24;:::i;:::-;33084:5;33081:35;33071:63;;33130:1;33127;33120:12;33071:63;33018:122;:::o

Swarm Source

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