ETH Price: $3,300.02 (-1.20%)

Token

Golden Key Society (GKS)
 

Overview

Max Total Supply

169 GKS

Holders

43

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
itzko.eth
Balance
1 GKS
0xC01A0311708476E586fc194eB433979FF904E6Dd
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:
GoldenKeySociety

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-28
*/

// 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/goldenkeysociety.sol

pragma solidity >= 0.8.0 < 0.9.0;

contract GoldenKeySociety is ERC721A, Ownable, ReentrancyGuard {

    using Strings for uint256;

    address signerAddress;

    uint256 public MAX_SUPPLY = 15000;
    uint256 public MAX_PUBLIC_MINT = 100;
    uint256 public MAX_WHITELIST_MINT = 20;
    uint256 public MAX_PER_TRX = 20;
    uint256 public PUBLIC_SALE_PRICE = 0.23 ether;
    uint256 public WHITELIST_SALE_PRICE = 0.23 ether;

    string public uriPrefix;
    string public uriSuffix = ".json";

    bool public publicSale = false;
    bool public whiteListSale = true;
    bool public pause = false;

    mapping(address => uint256) public totalPublicMint;
    mapping(address => uint256) public totalWhitelistMint;

    constructor( address _signerAddress ) ERC721A ( "Golden Key Society", "GKS" ) {
    setTokenUri( "ipfs://bafybeiftq7a7driymwllug6ozwhvfzpcyzfopalibio37d5opltqakl6ou/");
    signerAddress = _signerAddress;
    }

// ~~~~~~~~~~~~~~~~~~~~ URI's ~~~~~~~~~~~~~~~~~~~~
    function _baseURI() internal view virtual override returns (string memory) {
        return uriPrefix;
    }

// ~~~~~~~~~~~~~~~~~~~~ Modifiers ~~~~~~~~~~~~~~~~~~~~
    modifier mintCompliance(uint256 _quantity) {
        require(!pause, "The contract is paused!");
        require(_quantity > 0, "Mint amount can't be zero.");
        require(tx.origin == msg.sender, "The caller is another contract");
        require(_quantity <= MAX_PER_TRX, "Max mint per transaction exceeded!");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Golden Key Society :: Beyond Max Supply");
    _;
    }

// ~~~~~~~~~~~~~~~~~~~~ Mint Functions ~~~~~~~~~~~~~~~~~~~~
    function mint(uint256 _quantity, bytes memory sig) public payable mintCompliance(_quantity) {

        if(isValidData(msg.sender, sig) == true) {
            require(whiteListSale, "Golden Key Society :: Minting is on Pause");
            require(totalWhitelistMint[msg.sender] + _quantity  <= MAX_WHITELIST_MINT, "Golden Key Society :: Cannot mint beyond whitelist max mint!");
            require(msg.value >= WHITELIST_SALE_PRICE * _quantity, "Insufficient funds!");
            totalWhitelistMint[msg.sender] += _quantity;
            }
        else
            {
            require(publicSale, "Golden Key Society :: Public Mint is Not Yet Active.");
            require(totalPublicMint[msg.sender] + _quantity <= MAX_PUBLIC_MINT, "Golden Key Society :: Already minted 100 times!");
            require(msg.value >= PUBLIC_SALE_PRICE * _quantity, "Insufficient funds!");
            totalPublicMint[msg.sender] += _quantity;
            }

        _safeMint(msg.sender, _quantity);
    }

// ~~~~~~~~~~~~~~~~~~~~ SIGNATURES ~~~~~~~~~~~~~~~~~~~~
  function isValidData(address _user, bytes memory sig) public view returns (bool) {
    bytes32 message = keccak256(abi.encodePacked(_user));
    return (recoverSigner(message, sig) == signerAddress);
  }

  function recoverSigner(bytes32 message, bytes memory sig) public pure returns (address) {
    uint8 v; bytes32 r; bytes32 s;
    (v, r, s) = splitSignature(sig);
    return ecrecover(message, v, r, s);
  }

  function splitSignature(bytes memory sig) public pure returns (uint8, bytes32, bytes32) {
    require(sig.length == 65);
    bytes32 r; bytes32 s; uint8 v;
    assembly { r := mload(add(sig, 32)) s := mload(add(sig, 64)) v := byte(0, mload(add(sig, 96))) }
    return (v, r, s);
  }

// ~~~~~~~~~~~~~~~~~~~~ Checks ~~~~~~~~~~~~~~~~~~~~
    // 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))
    : "";
    }

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

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

// ~~~~~~~~~~~~~~~~~~~~ onlyOwner Functions ~~~~~~~~~~~~~~~~~~~~
    function setTokenUri(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setCostPublic(uint256 _cost) public onlyOwner {
        PUBLIC_SALE_PRICE = _cost;
    }

    function setCostWhitelist(uint256 _cost) public onlyOwner {
        WHITELIST_SALE_PRICE = _cost;
    }

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

    function toggleWhiteListSale() public onlyOwner {
        if (whiteListSale == true) { whiteListSale = false; }
        else { whiteListSale = true; }
    }

    function togglePublicSale() public onlyOwner {
        if (publicSale == true) { publicSale = false; }
        else { publicSale = true; }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"}],"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":"MAX_PER_TRX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","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":[{"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":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"isValidData","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"message","type":"bytes32"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","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":"setCostPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","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":"whiteListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052613a98600b556064600c556014600d556014600e556703311fc80a570000600f556703311fc80a5700006010556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601290805190602001906200007e929190620003ff565b506000601360006101000a81548160ff0219169083151502179055506001601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff021916908315150217905550348015620000dd57600080fd5b506040516200510c3803806200510c8339818101604052810190620001039190620004c6565b6040518060400160405280601281526020017f476f6c64656e204b657920536f636965747900000000000000000000000000008152506040518060400160405280600381526020017f474b530000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000187929190620003ff565b508060039080519060200190620001a0929190620003ff565b50620001b16200025360201b60201c565b6000819055505050620001d9620001cd6200025c60201b60201c565b6200026460201b60201c565b60016009819055506200020b604051806080016040528060438152602001620050c9604391396200032a60201b60201c565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000633565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200033a6200025c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000360620003d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b0906200051f565b60405180910390fd5b8060119080519060200190620003d1929190620003ff565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200040d9062000586565b90600052602060002090601f0160209004810192826200043157600085556200047d565b82601f106200044c57805160ff19168380011785556200047d565b828001600101855582156200047d579182015b828111156200047c5782518255916020019190600101906200045f565b5b5090506200048c919062000490565b5090565b5b80821115620004ab57600081600090555060010162000491565b5090565b600081519050620004c08162000619565b92915050565b600060208284031215620004df57620004de620005eb565b5b6000620004ef84828501620004af565b91505092915050565b60006200050760208362000541565b91506200051482620005f0565b602082019050919050565b600060208201905081810360008301526200053a81620004f8565b9050919050565b600082825260208201905092915050565b60006200055f8262000566565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200059f57607f821691505b60208210811415620005b657620005b5620005bc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620006248162000552565b81146200063057600080fd5b50565b614a8680620006436000396000f3fe6080604052600436106102515760003560e01c80636a14550c11610139578063a7bb5803116100b6578063c4ae31681161007a578063c4ae3168146108cc578063c87b56dd146108e3578063db7fd40814610920578063e222c7f91461093c578063e985e9c514610953578063f2fde38b1461099057610251565b8063a7bb5803146107d1578063b0940d4514610810578063b88d4fde1461084d578063bc912e1a14610876578063c08dfd3c146108a157610251565b80638bb64a8c116100fd5780638bb64a8c146106fe5780638da5cb5b1461071557806395d89b411461074057806397aba7f91461076b578063a22cb465146107a857610251565b80636a14550c1461062957806370a0823114610654578063715018a6146106915780638456cb59146106a857806386a173ee146106d357610251565b806323b872dd116101d257806342842e0e1161019657806342842e0e14610505578063438b63001461052e5780635503a0e81461056b57806362b99ad4146105965780636352211e146105c157806365f13097146105fe57610251565b806323b872dd146104465780632f9a7c581461046f57806332cb6b0c1461049857806333bc1c5c146104c35780633ccfd60b146104ee57610251565b8063081812fc11610219578063081812fc1461034f578063095ea7b31461038c578063121c93ca146103b557806318160ddd146103de5780631c16521c1461040957610251565b806301ffc9a7146102565780630345e3cb146102935780630675b7c6146102d057806306fdde03146102f957806307e89ec014610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613840565b6109b9565b60405161028a9190613eb5565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906135c5565b610a9b565b6040516102c791906140f7565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f291906138e3565b610ab3565b005b34801561030557600080fd5b5061030e610b49565b60405161031b9190613f15565b60405180910390f35b34801561033057600080fd5b50610339610bdb565b60405161034691906140f7565b60405180910390f35b34801561035b57600080fd5b506103766004803603810190610371919061392c565b610be1565b6040516103839190613e2c565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae91906137a4565b610c5d565b005b3480156103c157600080fd5b506103dc60048036038101906103d7919061392c565b610d62565b005b3480156103ea57600080fd5b506103f3610de8565b60405161040091906140f7565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b91906135c5565b610dff565b60405161043d91906140f7565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190613632565b610e17565b005b34801561047b57600080fd5b506104966004803603810190610491919061392c565b610e27565b005b3480156104a457600080fd5b506104ad610ead565b6040516104ba91906140f7565b60405180910390f35b3480156104cf57600080fd5b506104d8610eb3565b6040516104e59190613eb5565b60405180910390f35b3480156104fa57600080fd5b50610503610ec6565b005b34801561051157600080fd5b5061052c60048036038101906105279190613632565b611025565b005b34801561053a57600080fd5b50610555600480360381019061055091906135c5565b611045565b6040516105629190613e93565b60405180910390f35b34801561057757600080fd5b50610580611259565b60405161058d9190613f15565b60405180910390f35b3480156105a257600080fd5b506105ab6112e7565b6040516105b89190613f15565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e3919061392c565b611375565b6040516105f59190613e2c565b60405180910390f35b34801561060a57600080fd5b5061061361138b565b60405161062091906140f7565b60405180910390f35b34801561063557600080fd5b5061063e611391565b60405161064b91906140f7565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906135c5565b611397565b60405161068891906140f7565b60405180910390f35b34801561069d57600080fd5b506106a6611467565b005b3480156106b457600080fd5b506106bd6114ef565b6040516106ca9190613eb5565b60405180910390f35b3480156106df57600080fd5b506106e8611502565b6040516106f59190613eb5565b60405180910390f35b34801561070a57600080fd5b50610713611515565b005b34801561072157600080fd5b5061072a6115eb565b6040516107379190613e2c565b60405180910390f35b34801561074c57600080fd5b50610755611615565b6040516107629190613f15565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d91906137e4565b6116a7565b60405161079f9190613e2c565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613708565b61171c565b005b3480156107dd57600080fd5b506107f860048036038101906107f3919061389a565b611894565b60405161080793929190614112565b60405180910390f35b34801561081c57600080fd5b5061083760048036038101906108329190613748565b6118d7565b6040516108449190613eb5565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190613685565b611966565b005b34801561088257600080fd5b5061088b6119de565b60405161089891906140f7565b60405180910390f35b3480156108ad57600080fd5b506108b66119e4565b6040516108c391906140f7565b60405180910390f35b3480156108d857600080fd5b506108e16119ea565b005b3480156108ef57600080fd5b5061090a6004803603810190610905919061392c565b611ac0565b6040516109179190613f15565b60405180910390f35b61093a60048036038101906109359190613959565b611b6a565b005b34801561094857600080fd5b5061095161203b565b005b34801561095f57600080fd5b5061097a600480360381019061097591906135f2565b612111565b6040516109879190613eb5565b60405180910390f35b34801561099c57600080fd5b506109b760048036038101906109b291906135c5565b6121a5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a945750610a938261229d565b5b9050919050565b60156020528060005260406000206000915090505481565b610abb612307565b73ffffffffffffffffffffffffffffffffffffffff16610ad96115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2690614017565b60405180910390fd5b8060119080519060200190610b45929190613381565b5050565b606060028054610b589061444e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b849061444e565b8015610bd15780601f10610ba657610100808354040283529160200191610bd1565b820191906000526020600020905b815481529060010190602001808311610bb457829003601f168201915b5050505050905090565b600f5481565b6000610bec8261230f565b610c22576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c6882611375565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cef612307565b73ffffffffffffffffffffffffffffffffffffffff1614610d5257610d1b81610d16612307565b612111565b610d51576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610d5d83838361235d565b505050565b610d6a612307565b73ffffffffffffffffffffffffffffffffffffffff16610d886115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590614017565b60405180910390fd5b8060108190555050565b6000610df261240f565b6001546000540303905090565b60146020528060005260406000206000915090505481565b610e22838383612418565b505050565b610e2f612307565b73ffffffffffffffffffffffffffffffffffffffff16610e4d6115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90614017565b60405180910390fd5b80600f8190555050565b600b5481565b601360009054906101000a900460ff1681565b610ece612307565b73ffffffffffffffffffffffffffffffffffffffff16610eec6115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990614017565b60405180910390fd5b60026009541415610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90614077565b60405180910390fd5b6002600981905550600073df18896426a836ae3e4f74f347b183e88100b00973ffffffffffffffffffffffffffffffffffffffff1647604051610fca90613e17565b60006040518083038185875af1925050503d8060008114611007576040519150601f19603f3d011682016040523d82523d6000602084013e61100c565b606091505b505090508061101a57600080fd5b506001600981905550565b61104083838360405180602001604052806000815250611966565b505050565b6060600061105283611397565b905060008167ffffffffffffffff8111156110705761106f61460b565b5b60405190808252806020026020018201604052801561109e5781602001602082028036833780820191505090505b50905060006110ab61240f565b90506000805b84821080156110c1575060005483105b1561124c576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161123857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111d457806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611237578385848151811061121c5761121b6145dc565b5b6020026020010181815250508280611233906144b1565b9350505b5b8380611243906144b1565b945050506110b1565b8395505050505050919050565b601280546112669061444e565b80601f01602080910402602001604051908101604052809291908181526020018280546112929061444e565b80156112df5780601f106112b4576101008083540402835291602001916112df565b820191906000526020600020905b8154815290600101906020018083116112c257829003601f168201915b505050505081565b601180546112f49061444e565b80601f01602080910402602001604051908101604052809291908181526020018280546113209061444e565b801561136d5780601f106113425761010080835404028352916020019161136d565b820191906000526020600020905b81548152906001019060200180831161135057829003601f168201915b505050505081565b6000611380826128ce565b600001519050919050565b600c5481565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ff576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61146f612307565b73ffffffffffffffffffffffffffffffffffffffff1661148d6115eb565b73ffffffffffffffffffffffffffffffffffffffff16146114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90614017565b60405180910390fd5b6114ed6000612b59565b565b601360029054906101000a900460ff1681565b601360019054906101000a900460ff1681565b61151d612307565b73ffffffffffffffffffffffffffffffffffffffff1661153b6115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158890614017565b60405180910390fd5b60011515601360019054906101000a900460ff16151514156115cd576000601360016101000a81548160ff0219169083151502179055506115e9565b6001601360016101000a81548160ff0219169083151502179055505b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116249061444e565b80601f01602080910402602001604051908101604052809291908181526020018280546116509061444e565b801561169d5780601f106116725761010080835404028352916020019161169d565b820191906000526020600020905b81548152906001019060200180831161168057829003601f168201915b5050505050905090565b6000806000806116b685611894565b809350819450829550505050600186848484604051600081526020016040526040516116e59493929190613ed0565b6020604051602081039080840390855afa158015611707573d6000803e3d6000fd5b50505060206040510351935050505092915050565b611724612307565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611789576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611796612307565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611843612307565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118889190613eb5565b60405180910390a35050565b600080600060418451146118a757600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b600080836040516020016118eb9190613dcb565b604051602081830303815290604052805190602001209050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661194682856116a7565b73ffffffffffffffffffffffffffffffffffffffff161491505092915050565b611971848484612418565b6119908373ffffffffffffffffffffffffffffffffffffffff16612c1f565b156119d8576119a184848484612c42565b6119d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b600d5481565b6119f2612307565b73ffffffffffffffffffffffffffffffffffffffff16611a106115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d90614017565b60405180910390fd5b60011515601360029054906101000a900460ff1615151415611aa2576000601360026101000a81548160ff021916908315150217905550611abe565b6001601360026101000a81548160ff0219169083151502179055505b565b6060611acb8261230f565b611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190614097565b60405180910390fd5b6000611b14612da2565b90506000815111611b345760405180602001604052806000815250611b62565b80611b3e84612e34565b6012604051602001611b5293929190613de6565b6040516020818303038152906040525b915050919050565b81601360029054906101000a900460ff1615611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb290614037565b60405180910390fd5b60008111611bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf590613ff7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6390613f97565b60405180910390fd5b600e54811115611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890614057565b60405180910390fd5b600b5481611cbd610de8565b611cc7919061426c565b1115611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff90613fb7565b60405180910390fd5b60011515611d1633846118d7565b15151415611ea757601360019054906101000a900460ff16611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490613f77565b60405180910390fd5b600d5483601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dbb919061426c565b1115611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390613fd7565b60405180910390fd5b82601054611e0a91906142f3565b341015611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e43906140d7565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9b919061426c565b9250508190555061202c565b601360009054906101000a900460ff16611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed90613f57565b60405180910390fd5b600c5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f44919061426c565b1115611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c906140b7565b60405180910390fd5b82600f54611f9391906142f3565b341015611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc906140d7565b60405180910390fd5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612024919061426c565b925050819055505b6120363384612f95565b505050565b612043612307565b73ffffffffffffffffffffffffffffffffffffffff166120616115eb565b73ffffffffffffffffffffffffffffffffffffffff16146120b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ae90614017565b60405180910390fd5b60011515601360009054906101000a900460ff16151514156120f3576000601360006101000a81548160ff02191690831515021790555061210f565b6001601360006101000a81548160ff0219169083151502179055505b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121ad612307565b73ffffffffffffffffffffffffffffffffffffffff166121cb6115eb565b73ffffffffffffffffffffffffffffffffffffffff1614612221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221890614017565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228890613f37565b60405180910390fd5b61229a81612b59565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161231a61240f565b11158015612329575060005482105b8015612356575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612423826128ce565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461248e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124af612307565b73ffffffffffffffffffffffffffffffffffffffff1614806124de57506124dd856124d8612307565b612111565b5b8061252357506124ec612307565b73ffffffffffffffffffffffffffffffffffffffff1661250b84610be1565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061255c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125d08585856001612fb3565b6125dc6000848761235d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561285c57600054821461285b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c78585856001612fb9565b5050505050565b6128d6613407565b6000829050806128e461240f565b11612b2257600054811015612b21576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b1f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a03578092505050612b54565b5b600115612b1e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b19578092505050612b54565b612a04565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c68612307565b8786866040518563ffffffff1660e01b8152600401612c8a9493929190613e47565b602060405180830381600087803b158015612ca457600080fd5b505af1925050508015612cd557506040513d601f19601f82011682018060405250810190612cd2919061386d565b60015b612d4f573d8060008114612d05576040519150601f19603f3d011682016040523d82523d6000602084013e612d0a565b606091505b50600081511415612d47576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060118054612db19061444e565b80601f0160208091040260200160405190810160405280929190818152602001828054612ddd9061444e565b8015612e2a5780601f10612dff57610100808354040283529160200191612e2a565b820191906000526020600020905b815481529060010190602001808311612e0d57829003601f168201915b5050505050905090565b60606000821415612e7c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f90565b600082905060005b60008214612eae578080612e97906144b1565b915050600a82612ea791906142c2565b9150612e84565b60008167ffffffffffffffff811115612eca57612ec961460b565b5b6040519080825280601f01601f191660200182016040528015612efc5781602001600182028036833780820191505090505b5090505b60008514612f8957600182612f15919061434d565b9150600a85612f24919061451e565b6030612f30919061426c565b60f81b818381518110612f4657612f456145dc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f8291906142c2565b9450612f00565b8093505050505b919050565b612faf828260405180602001604052806000815250612fbf565b5050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561302c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613067576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130746000858386612fb3565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506132358673ffffffffffffffffffffffffffffffffffffffff16612c1f565b156132fa575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132aa6000878480600101955087612c42565b6132e0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061323b5782600054146132f557600080fd5b613365565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106132fb575b81600081905550505061337b6000858386612fb9565b50505050565b82805461338d9061444e565b90600052602060002090601f0160209004810192826133af57600085556133f6565b82601f106133c857805160ff19168380011785556133f6565b828001600101855582156133f6579182015b828111156133f55782518255916020019190600101906133da565b5b509050613403919061344a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561346357600081600090555060010161344b565b5090565b600061347a6134758461416e565b614149565b9050828152602081018484840111156134965761349561463f565b5b6134a184828561440c565b509392505050565b60006134bc6134b78461419f565b614149565b9050828152602081018484840111156134d8576134d761463f565b5b6134e384828561440c565b509392505050565b6000813590506134fa816149dd565b92915050565b60008135905061350f816149f4565b92915050565b60008135905061352481614a0b565b92915050565b60008135905061353981614a22565b92915050565b60008151905061354e81614a22565b92915050565b600082601f8301126135695761356861463a565b5b8135613579848260208601613467565b91505092915050565b600082601f8301126135975761359661463a565b5b81356135a78482602086016134a9565b91505092915050565b6000813590506135bf81614a39565b92915050565b6000602082840312156135db576135da614649565b5b60006135e9848285016134eb565b91505092915050565b6000806040838503121561360957613608614649565b5b6000613617858286016134eb565b9250506020613628858286016134eb565b9150509250929050565b60008060006060848603121561364b5761364a614649565b5b6000613659868287016134eb565b935050602061366a868287016134eb565b925050604061367b868287016135b0565b9150509250925092565b6000806000806080858703121561369f5761369e614649565b5b60006136ad878288016134eb565b94505060206136be878288016134eb565b93505060406136cf878288016135b0565b925050606085013567ffffffffffffffff8111156136f0576136ef614644565b5b6136fc87828801613554565b91505092959194509250565b6000806040838503121561371f5761371e614649565b5b600061372d858286016134eb565b925050602061373e85828601613500565b9150509250929050565b6000806040838503121561375f5761375e614649565b5b600061376d858286016134eb565b925050602083013567ffffffffffffffff81111561378e5761378d614644565b5b61379a85828601613554565b9150509250929050565b600080604083850312156137bb576137ba614649565b5b60006137c9858286016134eb565b92505060206137da858286016135b0565b9150509250929050565b600080604083850312156137fb576137fa614649565b5b600061380985828601613515565b925050602083013567ffffffffffffffff81111561382a57613829614644565b5b61383685828601613554565b9150509250929050565b60006020828403121561385657613855614649565b5b60006138648482850161352a565b91505092915050565b60006020828403121561388357613882614649565b5b60006138918482850161353f565b91505092915050565b6000602082840312156138b0576138af614649565b5b600082013567ffffffffffffffff8111156138ce576138cd614644565b5b6138da84828501613554565b91505092915050565b6000602082840312156138f9576138f8614649565b5b600082013567ffffffffffffffff81111561391757613916614644565b5b61392384828501613582565b91505092915050565b60006020828403121561394257613941614649565b5b6000613950848285016135b0565b91505092915050565b600080604083850312156139705761396f614649565b5b600061397e858286016135b0565b925050602083013567ffffffffffffffff81111561399f5761399e614644565b5b6139ab85828601613554565b9150509250929050565b60006139c18383613d9e565b60208301905092915050565b6139d681614381565b82525050565b6139ed6139e882614381565b6144fa565b82525050565b60006139fe826141f5565b613a088185614223565b9350613a13836141d0565b8060005b83811015613a44578151613a2b88826139b5565b9750613a3683614216565b925050600181019050613a17565b5085935050505092915050565b613a5a81614393565b82525050565b613a698161439f565b82525050565b6000613a7a82614200565b613a848185614234565b9350613a9481856020860161441b565b613a9d8161464e565b840191505092915050565b6000613ab38261420b565b613abd8185614250565b9350613acd81856020860161441b565b613ad68161464e565b840191505092915050565b6000613aec8261420b565b613af68185614261565b9350613b0681856020860161441b565b80840191505092915050565b60008154613b1f8161444e565b613b298186614261565b94506001821660008114613b445760018114613b5557613b88565b60ff19831686528186019350613b88565b613b5e856141e0565b60005b83811015613b8057815481890152600182019150602081019050613b61565b838801955050505b50505092915050565b6000613b9e602683614250565b9150613ba98261466c565b604082019050919050565b6000613bc1603483614250565b9150613bcc826146bb565b604082019050919050565b6000613be4602983614250565b9150613bef8261470a565b604082019050919050565b6000613c07601e83614250565b9150613c1282614759565b602082019050919050565b6000613c2a602783614250565b9150613c3582614782565b604082019050919050565b6000613c4d603c83614250565b9150613c58826147d1565b604082019050919050565b6000613c70601a83614250565b9150613c7b82614820565b602082019050919050565b6000613c93602083614250565b9150613c9e82614849565b602082019050919050565b6000613cb6601783614250565b9150613cc182614872565b602082019050919050565b6000613cd9600083614245565b9150613ce48261489b565b600082019050919050565b6000613cfc602283614250565b9150613d078261489e565b604082019050919050565b6000613d1f601f83614250565b9150613d2a826148ed565b602082019050919050565b6000613d42603083614250565b9150613d4d82614916565b604082019050919050565b6000613d65602f83614250565b9150613d7082614965565b604082019050919050565b6000613d88601383614250565b9150613d93826149b4565b602082019050919050565b613da7816143f5565b82525050565b613db6816143f5565b82525050565b613dc5816143ff565b82525050565b6000613dd782846139dc565b60148201915081905092915050565b6000613df28286613ae1565b9150613dfe8285613ae1565b9150613e0a8284613b12565b9150819050949350505050565b6000613e2282613ccc565b9150819050919050565b6000602082019050613e4160008301846139cd565b92915050565b6000608082019050613e5c60008301876139cd565b613e6960208301866139cd565b613e766040830185613dad565b8181036060830152613e888184613a6f565b905095945050505050565b60006020820190508181036000830152613ead81846139f3565b905092915050565b6000602082019050613eca6000830184613a51565b92915050565b6000608082019050613ee56000830187613a60565b613ef26020830186613dbc565b613eff6040830185613a60565b613f0c6060830184613a60565b95945050505050565b60006020820190508181036000830152613f2f8184613aa8565b905092915050565b60006020820190508181036000830152613f5081613b91565b9050919050565b60006020820190508181036000830152613f7081613bb4565b9050919050565b60006020820190508181036000830152613f9081613bd7565b9050919050565b60006020820190508181036000830152613fb081613bfa565b9050919050565b60006020820190508181036000830152613fd081613c1d565b9050919050565b60006020820190508181036000830152613ff081613c40565b9050919050565b6000602082019050818103600083015261401081613c63565b9050919050565b6000602082019050818103600083015261403081613c86565b9050919050565b6000602082019050818103600083015261405081613ca9565b9050919050565b6000602082019050818103600083015261407081613cef565b9050919050565b6000602082019050818103600083015261409081613d12565b9050919050565b600060208201905081810360008301526140b081613d35565b9050919050565b600060208201905081810360008301526140d081613d58565b9050919050565b600060208201905081810360008301526140f081613d7b565b9050919050565b600060208201905061410c6000830184613dad565b92915050565b60006060820190506141276000830186613dbc565b6141346020830185613a60565b6141416040830184613a60565b949350505050565b6000614153614164565b905061415f8282614480565b919050565b6000604051905090565b600067ffffffffffffffff8211156141895761418861460b565b5b6141928261464e565b9050602081019050919050565b600067ffffffffffffffff8211156141ba576141b961460b565b5b6141c38261464e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614277826143f5565b9150614282836143f5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142b7576142b661454f565b5b828201905092915050565b60006142cd826143f5565b91506142d8836143f5565b9250826142e8576142e761457e565b5b828204905092915050565b60006142fe826143f5565b9150614309836143f5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143425761434161454f565b5b828202905092915050565b6000614358826143f5565b9150614363836143f5565b9250828210156143765761437561454f565b5b828203905092915050565b600061438c826143d5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561443957808201518184015260208101905061441e565b83811115614448576000848401525b50505050565b6000600282049050600182168061446657607f821691505b6020821081141561447a576144796145ad565b5b50919050565b6144898261464e565b810181811067ffffffffffffffff821117156144a8576144a761460b565b5b80604052505050565b60006144bc826143f5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144ef576144ee61454f565b5b600182019050919050565b60006145058261450c565b9050919050565b60006145178261465f565b9050919050565b6000614529826143f5565b9150614534836143f5565b9250826145445761454361457e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f476f6c64656e204b657920536f6369657479203a3a205075626c6963204d696e60008201527f74206973204e6f7420596574204163746976652e000000000000000000000000602082015250565b7f476f6c64656e204b657920536f6369657479203a3a204d696e74696e6720697360008201527f206f6e2050617573650000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f476f6c64656e204b657920536f6369657479203a3a204265796f6e64204d617860008201527f20537570706c7900000000000000000000000000000000000000000000000000602082015250565b7f476f6c64656e204b657920536f6369657479203a3a2043616e6e6f74206d696e60008201527f74206265796f6e642077686974656c697374206d6178206d696e742100000000602082015250565b7f4d696e7420616d6f756e742063616e2774206265207a65726f2e000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d6178206d696e7420706572207472616e73616374696f6e206578636565646560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b7f476f6c64656e204b657920536f6369657479203a3a20416c7265616479206d6960008201527f6e746564203130302074696d6573210000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6149e681614381565b81146149f157600080fd5b50565b6149fd81614393565b8114614a0857600080fd5b50565b614a148161439f565b8114614a1f57600080fd5b50565b614a2b816143a9565b8114614a3657600080fd5b50565b614a42816143f5565b8114614a4d57600080fd5b5056fea264697066735822122023548e5de09e45e279c55ba0712154e2099625a6e7ffd7978b527cec1c23641764736f6c63430008070033697066733a2f2f62616679626569667471376137647269796d776c6c7567366f7a776876667a7063797a666f70616c6962696f333764356f706c7471616b6c366f752f00000000000000000000000015f267001c5d5a2b092833695521839e86fff89a

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636a14550c11610139578063a7bb5803116100b6578063c4ae31681161007a578063c4ae3168146108cc578063c87b56dd146108e3578063db7fd40814610920578063e222c7f91461093c578063e985e9c514610953578063f2fde38b1461099057610251565b8063a7bb5803146107d1578063b0940d4514610810578063b88d4fde1461084d578063bc912e1a14610876578063c08dfd3c146108a157610251565b80638bb64a8c116100fd5780638bb64a8c146106fe5780638da5cb5b1461071557806395d89b411461074057806397aba7f91461076b578063a22cb465146107a857610251565b80636a14550c1461062957806370a0823114610654578063715018a6146106915780638456cb59146106a857806386a173ee146106d357610251565b806323b872dd116101d257806342842e0e1161019657806342842e0e14610505578063438b63001461052e5780635503a0e81461056b57806362b99ad4146105965780636352211e146105c157806365f13097146105fe57610251565b806323b872dd146104465780632f9a7c581461046f57806332cb6b0c1461049857806333bc1c5c146104c35780633ccfd60b146104ee57610251565b8063081812fc11610219578063081812fc1461034f578063095ea7b31461038c578063121c93ca146103b557806318160ddd146103de5780631c16521c1461040957610251565b806301ffc9a7146102565780630345e3cb146102935780630675b7c6146102d057806306fdde03146102f957806307e89ec014610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613840565b6109b9565b60405161028a9190613eb5565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906135c5565b610a9b565b6040516102c791906140f7565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f291906138e3565b610ab3565b005b34801561030557600080fd5b5061030e610b49565b60405161031b9190613f15565b60405180910390f35b34801561033057600080fd5b50610339610bdb565b60405161034691906140f7565b60405180910390f35b34801561035b57600080fd5b506103766004803603810190610371919061392c565b610be1565b6040516103839190613e2c565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae91906137a4565b610c5d565b005b3480156103c157600080fd5b506103dc60048036038101906103d7919061392c565b610d62565b005b3480156103ea57600080fd5b506103f3610de8565b60405161040091906140f7565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b91906135c5565b610dff565b60405161043d91906140f7565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190613632565b610e17565b005b34801561047b57600080fd5b506104966004803603810190610491919061392c565b610e27565b005b3480156104a457600080fd5b506104ad610ead565b6040516104ba91906140f7565b60405180910390f35b3480156104cf57600080fd5b506104d8610eb3565b6040516104e59190613eb5565b60405180910390f35b3480156104fa57600080fd5b50610503610ec6565b005b34801561051157600080fd5b5061052c60048036038101906105279190613632565b611025565b005b34801561053a57600080fd5b50610555600480360381019061055091906135c5565b611045565b6040516105629190613e93565b60405180910390f35b34801561057757600080fd5b50610580611259565b60405161058d9190613f15565b60405180910390f35b3480156105a257600080fd5b506105ab6112e7565b6040516105b89190613f15565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e3919061392c565b611375565b6040516105f59190613e2c565b60405180910390f35b34801561060a57600080fd5b5061061361138b565b60405161062091906140f7565b60405180910390f35b34801561063557600080fd5b5061063e611391565b60405161064b91906140f7565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906135c5565b611397565b60405161068891906140f7565b60405180910390f35b34801561069d57600080fd5b506106a6611467565b005b3480156106b457600080fd5b506106bd6114ef565b6040516106ca9190613eb5565b60405180910390f35b3480156106df57600080fd5b506106e8611502565b6040516106f59190613eb5565b60405180910390f35b34801561070a57600080fd5b50610713611515565b005b34801561072157600080fd5b5061072a6115eb565b6040516107379190613e2c565b60405180910390f35b34801561074c57600080fd5b50610755611615565b6040516107629190613f15565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d91906137e4565b6116a7565b60405161079f9190613e2c565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613708565b61171c565b005b3480156107dd57600080fd5b506107f860048036038101906107f3919061389a565b611894565b60405161080793929190614112565b60405180910390f35b34801561081c57600080fd5b5061083760048036038101906108329190613748565b6118d7565b6040516108449190613eb5565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190613685565b611966565b005b34801561088257600080fd5b5061088b6119de565b60405161089891906140f7565b60405180910390f35b3480156108ad57600080fd5b506108b66119e4565b6040516108c391906140f7565b60405180910390f35b3480156108d857600080fd5b506108e16119ea565b005b3480156108ef57600080fd5b5061090a6004803603810190610905919061392c565b611ac0565b6040516109179190613f15565b60405180910390f35b61093a60048036038101906109359190613959565b611b6a565b005b34801561094857600080fd5b5061095161203b565b005b34801561095f57600080fd5b5061097a600480360381019061097591906135f2565b612111565b6040516109879190613eb5565b60405180910390f35b34801561099c57600080fd5b506109b760048036038101906109b291906135c5565b6121a5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a945750610a938261229d565b5b9050919050565b60156020528060005260406000206000915090505481565b610abb612307565b73ffffffffffffffffffffffffffffffffffffffff16610ad96115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2690614017565b60405180910390fd5b8060119080519060200190610b45929190613381565b5050565b606060028054610b589061444e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b849061444e565b8015610bd15780601f10610ba657610100808354040283529160200191610bd1565b820191906000526020600020905b815481529060010190602001808311610bb457829003601f168201915b5050505050905090565b600f5481565b6000610bec8261230f565b610c22576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c6882611375565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cef612307565b73ffffffffffffffffffffffffffffffffffffffff1614610d5257610d1b81610d16612307565b612111565b610d51576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610d5d83838361235d565b505050565b610d6a612307565b73ffffffffffffffffffffffffffffffffffffffff16610d886115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590614017565b60405180910390fd5b8060108190555050565b6000610df261240f565b6001546000540303905090565b60146020528060005260406000206000915090505481565b610e22838383612418565b505050565b610e2f612307565b73ffffffffffffffffffffffffffffffffffffffff16610e4d6115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90614017565b60405180910390fd5b80600f8190555050565b600b5481565b601360009054906101000a900460ff1681565b610ece612307565b73ffffffffffffffffffffffffffffffffffffffff16610eec6115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990614017565b60405180910390fd5b60026009541415610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90614077565b60405180910390fd5b6002600981905550600073df18896426a836ae3e4f74f347b183e88100b00973ffffffffffffffffffffffffffffffffffffffff1647604051610fca90613e17565b60006040518083038185875af1925050503d8060008114611007576040519150601f19603f3d011682016040523d82523d6000602084013e61100c565b606091505b505090508061101a57600080fd5b506001600981905550565b61104083838360405180602001604052806000815250611966565b505050565b6060600061105283611397565b905060008167ffffffffffffffff8111156110705761106f61460b565b5b60405190808252806020026020018201604052801561109e5781602001602082028036833780820191505090505b50905060006110ab61240f565b90506000805b84821080156110c1575060005483105b1561124c576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161123857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111d457806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611237578385848151811061121c5761121b6145dc565b5b6020026020010181815250508280611233906144b1565b9350505b5b8380611243906144b1565b945050506110b1565b8395505050505050919050565b601280546112669061444e565b80601f01602080910402602001604051908101604052809291908181526020018280546112929061444e565b80156112df5780601f106112b4576101008083540402835291602001916112df565b820191906000526020600020905b8154815290600101906020018083116112c257829003601f168201915b505050505081565b601180546112f49061444e565b80601f01602080910402602001604051908101604052809291908181526020018280546113209061444e565b801561136d5780601f106113425761010080835404028352916020019161136d565b820191906000526020600020905b81548152906001019060200180831161135057829003601f168201915b505050505081565b6000611380826128ce565b600001519050919050565b600c5481565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ff576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61146f612307565b73ffffffffffffffffffffffffffffffffffffffff1661148d6115eb565b73ffffffffffffffffffffffffffffffffffffffff16146114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90614017565b60405180910390fd5b6114ed6000612b59565b565b601360029054906101000a900460ff1681565b601360019054906101000a900460ff1681565b61151d612307565b73ffffffffffffffffffffffffffffffffffffffff1661153b6115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158890614017565b60405180910390fd5b60011515601360019054906101000a900460ff16151514156115cd576000601360016101000a81548160ff0219169083151502179055506115e9565b6001601360016101000a81548160ff0219169083151502179055505b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116249061444e565b80601f01602080910402602001604051908101604052809291908181526020018280546116509061444e565b801561169d5780601f106116725761010080835404028352916020019161169d565b820191906000526020600020905b81548152906001019060200180831161168057829003601f168201915b5050505050905090565b6000806000806116b685611894565b809350819450829550505050600186848484604051600081526020016040526040516116e59493929190613ed0565b6020604051602081039080840390855afa158015611707573d6000803e3d6000fd5b50505060206040510351935050505092915050565b611724612307565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611789576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611796612307565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611843612307565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118889190613eb5565b60405180910390a35050565b600080600060418451146118a757600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b600080836040516020016118eb9190613dcb565b604051602081830303815290604052805190602001209050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661194682856116a7565b73ffffffffffffffffffffffffffffffffffffffff161491505092915050565b611971848484612418565b6119908373ffffffffffffffffffffffffffffffffffffffff16612c1f565b156119d8576119a184848484612c42565b6119d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b600d5481565b6119f2612307565b73ffffffffffffffffffffffffffffffffffffffff16611a106115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d90614017565b60405180910390fd5b60011515601360029054906101000a900460ff1615151415611aa2576000601360026101000a81548160ff021916908315150217905550611abe565b6001601360026101000a81548160ff0219169083151502179055505b565b6060611acb8261230f565b611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190614097565b60405180910390fd5b6000611b14612da2565b90506000815111611b345760405180602001604052806000815250611b62565b80611b3e84612e34565b6012604051602001611b5293929190613de6565b6040516020818303038152906040525b915050919050565b81601360029054906101000a900460ff1615611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb290614037565b60405180910390fd5b60008111611bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf590613ff7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6390613f97565b60405180910390fd5b600e54811115611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890614057565b60405180910390fd5b600b5481611cbd610de8565b611cc7919061426c565b1115611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff90613fb7565b60405180910390fd5b60011515611d1633846118d7565b15151415611ea757601360019054906101000a900460ff16611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490613f77565b60405180910390fd5b600d5483601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dbb919061426c565b1115611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390613fd7565b60405180910390fd5b82601054611e0a91906142f3565b341015611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e43906140d7565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9b919061426c565b9250508190555061202c565b601360009054906101000a900460ff16611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed90613f57565b60405180910390fd5b600c5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f44919061426c565b1115611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c906140b7565b60405180910390fd5b82600f54611f9391906142f3565b341015611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc906140d7565b60405180910390fd5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612024919061426c565b925050819055505b6120363384612f95565b505050565b612043612307565b73ffffffffffffffffffffffffffffffffffffffff166120616115eb565b73ffffffffffffffffffffffffffffffffffffffff16146120b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ae90614017565b60405180910390fd5b60011515601360009054906101000a900460ff16151514156120f3576000601360006101000a81548160ff02191690831515021790555061210f565b6001601360006101000a81548160ff0219169083151502179055505b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121ad612307565b73ffffffffffffffffffffffffffffffffffffffff166121cb6115eb565b73ffffffffffffffffffffffffffffffffffffffff1614612221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221890614017565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228890613f37565b60405180910390fd5b61229a81612b59565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161231a61240f565b11158015612329575060005482105b8015612356575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612423826128ce565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461248e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124af612307565b73ffffffffffffffffffffffffffffffffffffffff1614806124de57506124dd856124d8612307565b612111565b5b8061252357506124ec612307565b73ffffffffffffffffffffffffffffffffffffffff1661250b84610be1565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061255c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125d08585856001612fb3565b6125dc6000848761235d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561285c57600054821461285b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c78585856001612fb9565b5050505050565b6128d6613407565b6000829050806128e461240f565b11612b2257600054811015612b21576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b1f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a03578092505050612b54565b5b600115612b1e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b19578092505050612b54565b612a04565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c68612307565b8786866040518563ffffffff1660e01b8152600401612c8a9493929190613e47565b602060405180830381600087803b158015612ca457600080fd5b505af1925050508015612cd557506040513d601f19601f82011682018060405250810190612cd2919061386d565b60015b612d4f573d8060008114612d05576040519150601f19603f3d011682016040523d82523d6000602084013e612d0a565b606091505b50600081511415612d47576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060118054612db19061444e565b80601f0160208091040260200160405190810160405280929190818152602001828054612ddd9061444e565b8015612e2a5780601f10612dff57610100808354040283529160200191612e2a565b820191906000526020600020905b815481529060010190602001808311612e0d57829003601f168201915b5050505050905090565b60606000821415612e7c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f90565b600082905060005b60008214612eae578080612e97906144b1565b915050600a82612ea791906142c2565b9150612e84565b60008167ffffffffffffffff811115612eca57612ec961460b565b5b6040519080825280601f01601f191660200182016040528015612efc5781602001600182028036833780820191505090505b5090505b60008514612f8957600182612f15919061434d565b9150600a85612f24919061451e565b6030612f30919061426c565b60f81b818381518110612f4657612f456145dc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f8291906142c2565b9450612f00565b8093505050505b919050565b612faf828260405180602001604052806000815250612fbf565b5050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561302c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613067576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130746000858386612fb3565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506132358673ffffffffffffffffffffffffffffffffffffffff16612c1f565b156132fa575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132aa6000878480600101955087612c42565b6132e0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061323b5782600054146132f557600080fd5b613365565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106132fb575b81600081905550505061337b6000858386612fb9565b50505050565b82805461338d9061444e565b90600052602060002090601f0160209004810192826133af57600085556133f6565b82601f106133c857805160ff19168380011785556133f6565b828001600101855582156133f6579182015b828111156133f55782518255916020019190600101906133da565b5b509050613403919061344a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561346357600081600090555060010161344b565b5090565b600061347a6134758461416e565b614149565b9050828152602081018484840111156134965761349561463f565b5b6134a184828561440c565b509392505050565b60006134bc6134b78461419f565b614149565b9050828152602081018484840111156134d8576134d761463f565b5b6134e384828561440c565b509392505050565b6000813590506134fa816149dd565b92915050565b60008135905061350f816149f4565b92915050565b60008135905061352481614a0b565b92915050565b60008135905061353981614a22565b92915050565b60008151905061354e81614a22565b92915050565b600082601f8301126135695761356861463a565b5b8135613579848260208601613467565b91505092915050565b600082601f8301126135975761359661463a565b5b81356135a78482602086016134a9565b91505092915050565b6000813590506135bf81614a39565b92915050565b6000602082840312156135db576135da614649565b5b60006135e9848285016134eb565b91505092915050565b6000806040838503121561360957613608614649565b5b6000613617858286016134eb565b9250506020613628858286016134eb565b9150509250929050565b60008060006060848603121561364b5761364a614649565b5b6000613659868287016134eb565b935050602061366a868287016134eb565b925050604061367b868287016135b0565b9150509250925092565b6000806000806080858703121561369f5761369e614649565b5b60006136ad878288016134eb565b94505060206136be878288016134eb565b93505060406136cf878288016135b0565b925050606085013567ffffffffffffffff8111156136f0576136ef614644565b5b6136fc87828801613554565b91505092959194509250565b6000806040838503121561371f5761371e614649565b5b600061372d858286016134eb565b925050602061373e85828601613500565b9150509250929050565b6000806040838503121561375f5761375e614649565b5b600061376d858286016134eb565b925050602083013567ffffffffffffffff81111561378e5761378d614644565b5b61379a85828601613554565b9150509250929050565b600080604083850312156137bb576137ba614649565b5b60006137c9858286016134eb565b92505060206137da858286016135b0565b9150509250929050565b600080604083850312156137fb576137fa614649565b5b600061380985828601613515565b925050602083013567ffffffffffffffff81111561382a57613829614644565b5b61383685828601613554565b9150509250929050565b60006020828403121561385657613855614649565b5b60006138648482850161352a565b91505092915050565b60006020828403121561388357613882614649565b5b60006138918482850161353f565b91505092915050565b6000602082840312156138b0576138af614649565b5b600082013567ffffffffffffffff8111156138ce576138cd614644565b5b6138da84828501613554565b91505092915050565b6000602082840312156138f9576138f8614649565b5b600082013567ffffffffffffffff81111561391757613916614644565b5b61392384828501613582565b91505092915050565b60006020828403121561394257613941614649565b5b6000613950848285016135b0565b91505092915050565b600080604083850312156139705761396f614649565b5b600061397e858286016135b0565b925050602083013567ffffffffffffffff81111561399f5761399e614644565b5b6139ab85828601613554565b9150509250929050565b60006139c18383613d9e565b60208301905092915050565b6139d681614381565b82525050565b6139ed6139e882614381565b6144fa565b82525050565b60006139fe826141f5565b613a088185614223565b9350613a13836141d0565b8060005b83811015613a44578151613a2b88826139b5565b9750613a3683614216565b925050600181019050613a17565b5085935050505092915050565b613a5a81614393565b82525050565b613a698161439f565b82525050565b6000613a7a82614200565b613a848185614234565b9350613a9481856020860161441b565b613a9d8161464e565b840191505092915050565b6000613ab38261420b565b613abd8185614250565b9350613acd81856020860161441b565b613ad68161464e565b840191505092915050565b6000613aec8261420b565b613af68185614261565b9350613b0681856020860161441b565b80840191505092915050565b60008154613b1f8161444e565b613b298186614261565b94506001821660008114613b445760018114613b5557613b88565b60ff19831686528186019350613b88565b613b5e856141e0565b60005b83811015613b8057815481890152600182019150602081019050613b61565b838801955050505b50505092915050565b6000613b9e602683614250565b9150613ba98261466c565b604082019050919050565b6000613bc1603483614250565b9150613bcc826146bb565b604082019050919050565b6000613be4602983614250565b9150613bef8261470a565b604082019050919050565b6000613c07601e83614250565b9150613c1282614759565b602082019050919050565b6000613c2a602783614250565b9150613c3582614782565b604082019050919050565b6000613c4d603c83614250565b9150613c58826147d1565b604082019050919050565b6000613c70601a83614250565b9150613c7b82614820565b602082019050919050565b6000613c93602083614250565b9150613c9e82614849565b602082019050919050565b6000613cb6601783614250565b9150613cc182614872565b602082019050919050565b6000613cd9600083614245565b9150613ce48261489b565b600082019050919050565b6000613cfc602283614250565b9150613d078261489e565b604082019050919050565b6000613d1f601f83614250565b9150613d2a826148ed565b602082019050919050565b6000613d42603083614250565b9150613d4d82614916565b604082019050919050565b6000613d65602f83614250565b9150613d7082614965565b604082019050919050565b6000613d88601383614250565b9150613d93826149b4565b602082019050919050565b613da7816143f5565b82525050565b613db6816143f5565b82525050565b613dc5816143ff565b82525050565b6000613dd782846139dc565b60148201915081905092915050565b6000613df28286613ae1565b9150613dfe8285613ae1565b9150613e0a8284613b12565b9150819050949350505050565b6000613e2282613ccc565b9150819050919050565b6000602082019050613e4160008301846139cd565b92915050565b6000608082019050613e5c60008301876139cd565b613e6960208301866139cd565b613e766040830185613dad565b8181036060830152613e888184613a6f565b905095945050505050565b60006020820190508181036000830152613ead81846139f3565b905092915050565b6000602082019050613eca6000830184613a51565b92915050565b6000608082019050613ee56000830187613a60565b613ef26020830186613dbc565b613eff6040830185613a60565b613f0c6060830184613a60565b95945050505050565b60006020820190508181036000830152613f2f8184613aa8565b905092915050565b60006020820190508181036000830152613f5081613b91565b9050919050565b60006020820190508181036000830152613f7081613bb4565b9050919050565b60006020820190508181036000830152613f9081613bd7565b9050919050565b60006020820190508181036000830152613fb081613bfa565b9050919050565b60006020820190508181036000830152613fd081613c1d565b9050919050565b60006020820190508181036000830152613ff081613c40565b9050919050565b6000602082019050818103600083015261401081613c63565b9050919050565b6000602082019050818103600083015261403081613c86565b9050919050565b6000602082019050818103600083015261405081613ca9565b9050919050565b6000602082019050818103600083015261407081613cef565b9050919050565b6000602082019050818103600083015261409081613d12565b9050919050565b600060208201905081810360008301526140b081613d35565b9050919050565b600060208201905081810360008301526140d081613d58565b9050919050565b600060208201905081810360008301526140f081613d7b565b9050919050565b600060208201905061410c6000830184613dad565b92915050565b60006060820190506141276000830186613dbc565b6141346020830185613a60565b6141416040830184613a60565b949350505050565b6000614153614164565b905061415f8282614480565b919050565b6000604051905090565b600067ffffffffffffffff8211156141895761418861460b565b5b6141928261464e565b9050602081019050919050565b600067ffffffffffffffff8211156141ba576141b961460b565b5b6141c38261464e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614277826143f5565b9150614282836143f5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142b7576142b661454f565b5b828201905092915050565b60006142cd826143f5565b91506142d8836143f5565b9250826142e8576142e761457e565b5b828204905092915050565b60006142fe826143f5565b9150614309836143f5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143425761434161454f565b5b828202905092915050565b6000614358826143f5565b9150614363836143f5565b9250828210156143765761437561454f565b5b828203905092915050565b600061438c826143d5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561443957808201518184015260208101905061441e565b83811115614448576000848401525b50505050565b6000600282049050600182168061446657607f821691505b6020821081141561447a576144796145ad565b5b50919050565b6144898261464e565b810181811067ffffffffffffffff821117156144a8576144a761460b565b5b80604052505050565b60006144bc826143f5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144ef576144ee61454f565b5b600182019050919050565b60006145058261450c565b9050919050565b60006145178261465f565b9050919050565b6000614529826143f5565b9150614534836143f5565b9250826145445761454361457e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f476f6c64656e204b657920536f6369657479203a3a205075626c6963204d696e60008201527f74206973204e6f7420596574204163746976652e000000000000000000000000602082015250565b7f476f6c64656e204b657920536f6369657479203a3a204d696e74696e6720697360008201527f206f6e2050617573650000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f476f6c64656e204b657920536f6369657479203a3a204265796f6e64204d617860008201527f20537570706c7900000000000000000000000000000000000000000000000000602082015250565b7f476f6c64656e204b657920536f6369657479203a3a2043616e6e6f74206d696e60008201527f74206265796f6e642077686974656c697374206d6178206d696e742100000000602082015250565b7f4d696e7420616d6f756e742063616e2774206265207a65726f2e000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d6178206d696e7420706572207472616e73616374696f6e206578636565646560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b7f476f6c64656e204b657920536f6369657479203a3a20416c7265616479206d6960008201527f6e746564203130302074696d6573210000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6149e681614381565b81146149f157600080fd5b50565b6149fd81614393565b8114614a0857600080fd5b50565b614a148161439f565b8114614a1f57600080fd5b50565b614a2b816143a9565b8114614a3657600080fd5b50565b614a42816143f5565b8114614a4d57600080fd5b5056fea264697066735822122023548e5de09e45e279c55ba0712154e2099625a6e7ffd7978b527cec1c23641764736f6c63430008070033

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

00000000000000000000000015f267001c5d5a2b092833695521839e86fff89a

-----Decoded View---------------
Arg [0] : _signerAddress (address): 0x15F267001c5D5A2b092833695521839E86FFf89A

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000015f267001c5d5a2b092833695521839e86fff89a


Deployed Bytecode Sourcemap

36810:5996:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19682:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37460:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41804:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22797:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37112:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24301:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23863:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42024:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18922:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37403:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25166:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41917:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36946:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37293:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42594:197;;;;;;;;;;;;;:::i;:::-;;25407:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40903:827;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37251:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37221:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22605:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36986:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37074:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20051:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4069:103;;;;;;;;;;;;;:::i;:::-;;37369:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37330:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42272:159;;;;;;;;;;;;;:::i;:::-;;3418:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22966:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39759:209;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24577:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39974;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;39547:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25663:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37164:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37029:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42137:127;;;;;;;;;;;;;:::i;:::-;;40383:367;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38474:1010;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42439:147;;;;;;;;;;;;;:::i;:::-;;24935:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4327:201;;;;;;;;;;;;;;;;;;;;;;;:::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;37460:53::-;;;;;;;;;;;;;;;;;:::o;41804:105::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41891:10:::1;41879:9;:22;;;;;;;;;;;;:::i;:::-;;41804:105:::0;:::o;22797:100::-;22851:13;22884:5;22877:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22797:100;:::o;37112:45::-;;;;:::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;42024:105::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42116:5:::1;42093:20;:28;;;;42024:105:::0;:::o;18922:312::-;18975:7;19200:15;:13;:15::i;:::-;19185:12;;19169:13;;:28;:46;19162:53;;18922:312;:::o;37403:50::-;;;;;;;;;;;;;;;;;:::o;25166:170::-;25300:28;25310:4;25316:2;25320:7;25300:9;:28::i;:::-;25166:170;;;:::o;41917:99::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42003:5:::1;41983:17;:25;;;;41917:99:::0;:::o;36946:33::-;;;;:::o;37293:30::-;;;;;;;;;;;;;:::o;42594:197::-;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;;;;42654:12:::2;42680:42;42672:56;;42736:21;42672:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42653:109;;;42777:7;42769:16;;;::::0;::::2;;42646:145;218:1:::1;660:7;:22;;;;42594:197::o:0;25407:185::-;25545:39;25562:4;25568:2;25572:7;25545:39;;;;;;;;;;;;:16;:39::i;:::-;25407:185;;;:::o;40903:827::-;40963:16;40988:23;41014:17;41024:6;41014:9;:17::i;:::-;40988:43;;41038:30;41085:15;41071:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41038:63;;41108:22;41133:15;:13;:15::i;:::-;41108:40;;41155:23;41189:26;41224:474;41249:15;41231;:33;:67;;;;;41285:13;;41268:14;:30;41231:67;41224:474;;;41309:31;41343:11;:27;41355:14;41343:27;;;;;;;;;;;41309:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41386:9;:16;;;41381:285;;41445:1;41419:28;;:9;:14;;;:28;;;41415:94;;41483:9;:14;;;41462:35;;41415:94;41547:6;41525:28;;:18;:28;;;41521:136;;;41601:14;41568:13;41582:15;41568:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;41628:17;;;;;:::i;:::-;;;;41521:136;41381:285;41674:16;;;;;:::i;:::-;;;;41300:398;41224:474;;;41711:13;41704:20;;;;;;;40903:827;;;:::o;37251:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37221:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22605:125::-;22669:7;22696:21;22709:7;22696:12;:21::i;:::-;:26;;;22689:33;;22605:125;;;:::o;36986:36::-;;;;:::o;37074:31::-;;;;:::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;37369:25::-;;;;;;;;;;;;;:::o;37330:32::-;;;;;;;;;;;;;:::o;42272:159::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42352:4:::1;42335:21;;:13;;;;;;;;;;;:21;;;42331:93;;;42376:5;42360:13;;:21;;;;;;;;;;;;;;;;;;42331:93;;;42417:4;42401:13;;:20;;;;;;;;;;;;;;;;;;42331:93;42272:159::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;39759:209::-;39838:7;39854;39863:9;39874;39902:19;39917:3;39902:14;:19::i;:::-;39890:31;;;;;;;;;;;;39935:27;39945:7;39954:1;39957;39960;39935:27;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39928:34;;;;;39759:209;;;;:::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;39974:::-;40037:5;40044:7;40053;40091:2;40077:3;:10;:16;40069:25;;;;;;40101:9;40112;40123:7;40168:2;40163:3;40159:12;40153:19;40148:24;;40193:2;40188:3;40184:12;40178:19;40173:24;;40226:2;40221:3;40217:12;40211:19;40208:1;40203:28;40198:33;;40247:1;40250;40253;40239:16;;;;;;;;;39974:287;;;;;:::o;39547:206::-;39622:4;39635:15;39680:5;39663:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;39653:34;;;;;;39635:52;;39733:13;;;;;;;;;;;39702:44;;:27;39716:7;39725:3;39702:13;:27::i;:::-;:44;;;39694:53;;;39547:206;;;;:::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;37164:48::-;;;;:::o;37029:38::-;;;;:::o;42137:127::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42201:4:::1;42192:13;;:5;;;;;;;;;;;:13;;;42188:69;;;42217:5;42209;;:13;;;;;;;;;;;;;;;;;;42188:69;;;42250:4;42242:5;;:12;;;;;;;;;;;;;;;;;;42188:69;42137:127::o:0;40383:367::-;40457:13;40487:17;40495:8;40487:7;:17::i;:::-;40479:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;40565:28;40596:10;:8;:10::i;:::-;40565:41;;40651:1;40626:14;40620:28;:32;:122;;;;;;;;;;;;;;;;;40684:14;40700:19;:8;:17;:19::i;:::-;40721:9;40667:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40620:122;40613:129;;;40383:367;;;:::o;38474:1010::-;38555:9;38032:5;;;;;;;;;;;38031:6;38023:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;38096:1;38084:9;:13;38076:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;38160:10;38147:23;;:9;:23;;;38139:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38237:11;;38224:9;:24;;38216:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38335:10;;38322:9;38306:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;38298:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;38614:4:::1;38582:36;;:28;38594:10;38606:3;38582:11;:28::i;:::-;:36;;;38579:853;;;38643:13;;;;;;;;;;;38635:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38772:18;;38758:9;38725:18;:30;38744:10;38725:30;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;:65;;38717:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;38914:9;38891:20;;:32;;;;:::i;:::-;38878:9;:45;;38870:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;38996:9;38962:18;:30;38981:10;38962:30;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;38579:853;;;39072:10;;;;;;;;;;;39064:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;39205:15;;39192:9;39162:15;:27;39178:10;39162:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:58;;39154:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;39328:9;39308:17;;:29;;;;:::i;:::-;39295:9;:42;;39287:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;39407:9;39376:15;:27;39392:10;39376:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;38579:853;39444:32;39454:10;39466:9;39444;:32::i;:::-;38474:1010:::0;;;:::o;42439:147::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42513:4:::1;42499:18;;:10;;;;;;;;;;;:18;;;42495:84;;;42534:5;42521:10;;:18;;;;;;;;;;;;;;;;;;42495:84;;;42572:4;42559:10;;:17;;;;;;;;;;;;;;;;;;42495:84;42439:147::o:0;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;10910:157::-;10995:4;11034:25;11019:40;;;:11;:40;;;;11012:47;;10910:157;;;:::o;2708:98::-;2761:7;2788:10;2781:17;;2708:98;:::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;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;40776:95::-;40841:7;40864:1;40857:8;;40776: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;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;37795:110::-;37855:13;37888:9;37881:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37795:110;:::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;26546:104::-;26615:27;26625:2;26629:8;26615:27;;;;;;;;;;;;:9;:27::i;:::-;26546:104;;:::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:139::-;1171:5;1209:6;1196:20;1187:29;;1225:33;1252:5;1225:33;:::i;:::-;1125:139;;;;:::o;1270:137::-;1315:5;1353:6;1340:20;1331:29;;1369:32;1395:5;1369:32;:::i;:::-;1270:137;;;;:::o;1413:141::-;1469:5;1500:6;1494:13;1485:22;;1516:32;1542:5;1516:32;:::i;:::-;1413:141;;;;:::o;1573:338::-;1628:5;1677:3;1670:4;1662:6;1658:17;1654:27;1644:122;;1685:79;;:::i;:::-;1644:122;1802:6;1789:20;1827:78;1901:3;1893:6;1886:4;1878:6;1874:17;1827:78;:::i;:::-;1818:87;;1634:277;1573:338;;;;:::o;1931:340::-;1987:5;2036:3;2029:4;2021:6;2017:17;2013:27;2003:122;;2044:79;;:::i;:::-;2003:122;2161:6;2148:20;2186:79;2261:3;2253:6;2246:4;2238:6;2234:17;2186:79;:::i;:::-;2177:88;;1993:278;1931:340;;;;:::o;2277:139::-;2323:5;2361:6;2348:20;2339:29;;2377:33;2404:5;2377:33;:::i;:::-;2277:139;;;;:::o;2422:329::-;2481:6;2530:2;2518:9;2509:7;2505:23;2501:32;2498:119;;;2536:79;;:::i;:::-;2498:119;2656:1;2681:53;2726:7;2717:6;2706:9;2702:22;2681:53;:::i;:::-;2671:63;;2627:117;2422:329;;;;:::o;2757:474::-;2825:6;2833;2882:2;2870:9;2861:7;2857:23;2853:32;2850:119;;;2888:79;;:::i;:::-;2850:119;3008:1;3033:53;3078:7;3069:6;3058:9;3054:22;3033:53;:::i;:::-;3023:63;;2979:117;3135:2;3161:53;3206:7;3197:6;3186:9;3182:22;3161:53;:::i;:::-;3151:63;;3106:118;2757:474;;;;;:::o;3237:619::-;3314:6;3322;3330;3379:2;3367:9;3358:7;3354:23;3350:32;3347:119;;;3385:79;;:::i;:::-;3347:119;3505:1;3530:53;3575:7;3566:6;3555:9;3551:22;3530:53;:::i;:::-;3520:63;;3476:117;3632:2;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3603:118;3760:2;3786:53;3831:7;3822:6;3811:9;3807:22;3786:53;:::i;:::-;3776:63;;3731:118;3237:619;;;;;:::o;3862:943::-;3957:6;3965;3973;3981;4030:3;4018:9;4009:7;4005:23;4001:33;3998:120;;;4037:79;;:::i;:::-;3998:120;4157:1;4182:53;4227:7;4218:6;4207:9;4203:22;4182:53;:::i;:::-;4172:63;;4128:117;4284:2;4310:53;4355:7;4346:6;4335:9;4331:22;4310:53;:::i;:::-;4300:63;;4255:118;4412:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4383:118;4568:2;4557:9;4553:18;4540:32;4599:18;4591:6;4588:30;4585:117;;;4621:79;;:::i;:::-;4585:117;4726:62;4780:7;4771:6;4760:9;4756:22;4726:62;:::i;:::-;4716:72;;4511:287;3862:943;;;;;;;:::o;4811:468::-;4876:6;4884;4933:2;4921:9;4912:7;4908:23;4904:32;4901:119;;;4939:79;;:::i;:::-;4901:119;5059:1;5084:53;5129:7;5120:6;5109:9;5105:22;5084:53;:::i;:::-;5074:63;;5030:117;5186:2;5212:50;5254:7;5245:6;5234:9;5230:22;5212:50;:::i;:::-;5202:60;;5157:115;4811:468;;;;;:::o;5285:652::-;5362:6;5370;5419:2;5407:9;5398:7;5394:23;5390:32;5387:119;;;5425:79;;:::i;:::-;5387:119;5545:1;5570:53;5615:7;5606:6;5595:9;5591:22;5570:53;:::i;:::-;5560:63;;5516:117;5700:2;5689:9;5685:18;5672:32;5731:18;5723:6;5720:30;5717:117;;;5753:79;;:::i;:::-;5717:117;5858:62;5912:7;5903:6;5892:9;5888:22;5858:62;:::i;:::-;5848:72;;5643:287;5285:652;;;;;:::o;5943:474::-;6011:6;6019;6068:2;6056:9;6047:7;6043:23;6039:32;6036:119;;;6074:79;;:::i;:::-;6036:119;6194:1;6219:53;6264:7;6255:6;6244:9;6240:22;6219:53;:::i;:::-;6209:63;;6165:117;6321:2;6347:53;6392:7;6383:6;6372:9;6368:22;6347:53;:::i;:::-;6337:63;;6292:118;5943:474;;;;;:::o;6423:652::-;6500:6;6508;6557:2;6545:9;6536:7;6532:23;6528:32;6525:119;;;6563:79;;:::i;:::-;6525:119;6683:1;6708:53;6753:7;6744:6;6733:9;6729:22;6708:53;:::i;:::-;6698:63;;6654:117;6838:2;6827:9;6823:18;6810:32;6869:18;6861:6;6858:30;6855:117;;;6891:79;;:::i;:::-;6855:117;6996:62;7050:7;7041:6;7030:9;7026:22;6996:62;:::i;:::-;6986:72;;6781:287;6423:652;;;;;:::o;7081:327::-;7139:6;7188:2;7176:9;7167:7;7163:23;7159:32;7156:119;;;7194:79;;:::i;:::-;7156:119;7314:1;7339:52;7383:7;7374:6;7363:9;7359:22;7339:52;:::i;:::-;7329:62;;7285:116;7081:327;;;;:::o;7414:349::-;7483:6;7532:2;7520:9;7511:7;7507:23;7503:32;7500:119;;;7538:79;;:::i;:::-;7500:119;7658:1;7683:63;7738:7;7729:6;7718:9;7714:22;7683:63;:::i;:::-;7673:73;;7629:127;7414:349;;;;:::o;7769:507::-;7837:6;7886:2;7874:9;7865:7;7861:23;7857:32;7854:119;;;7892:79;;:::i;:::-;7854:119;8040:1;8029:9;8025:17;8012:31;8070:18;8062:6;8059:30;8056:117;;;8092:79;;:::i;:::-;8056:117;8197:62;8251:7;8242:6;8231:9;8227:22;8197:62;:::i;:::-;8187:72;;7983:286;7769:507;;;;:::o;8282:509::-;8351:6;8400:2;8388:9;8379:7;8375:23;8371:32;8368:119;;;8406:79;;:::i;:::-;8368:119;8554:1;8543:9;8539:17;8526:31;8584:18;8576:6;8573:30;8570:117;;;8606:79;;:::i;:::-;8570:117;8711:63;8766:7;8757:6;8746:9;8742:22;8711:63;:::i;:::-;8701:73;;8497:287;8282:509;;;;:::o;8797:329::-;8856:6;8905:2;8893:9;8884:7;8880:23;8876:32;8873:119;;;8911:79;;:::i;:::-;8873:119;9031:1;9056:53;9101:7;9092:6;9081:9;9077:22;9056:53;:::i;:::-;9046:63;;9002:117;8797:329;;;;:::o;9132:652::-;9209:6;9217;9266:2;9254:9;9245:7;9241:23;9237:32;9234:119;;;9272:79;;:::i;:::-;9234:119;9392:1;9417:53;9462:7;9453:6;9442:9;9438:22;9417:53;:::i;:::-;9407:63;;9363:117;9547:2;9536:9;9532:18;9519:32;9578:18;9570:6;9567:30;9564:117;;;9600:79;;:::i;:::-;9564:117;9705:62;9759:7;9750:6;9739:9;9735:22;9705:62;:::i;:::-;9695:72;;9490:287;9132:652;;;;;:::o;9790:179::-;9859:10;9880:46;9922:3;9914:6;9880:46;:::i;:::-;9958:4;9953:3;9949:14;9935:28;;9790:179;;;;:::o;9975:118::-;10062:24;10080:5;10062:24;:::i;:::-;10057:3;10050:37;9975:118;;:::o;10099:157::-;10204:45;10224:24;10242:5;10224:24;:::i;:::-;10204:45;:::i;:::-;10199:3;10192:58;10099:157;;:::o;10292:732::-;10411:3;10440:54;10488:5;10440:54;:::i;:::-;10510:86;10589:6;10584:3;10510:86;:::i;:::-;10503:93;;10620:56;10670:5;10620:56;:::i;:::-;10699:7;10730:1;10715:284;10740:6;10737:1;10734:13;10715:284;;;10816:6;10810:13;10843:63;10902:3;10887:13;10843:63;:::i;:::-;10836:70;;10929:60;10982:6;10929:60;:::i;:::-;10919:70;;10775:224;10762:1;10759;10755:9;10750:14;;10715:284;;;10719:14;11015:3;11008:10;;10416:608;;;10292:732;;;;:::o;11030:109::-;11111:21;11126:5;11111:21;:::i;:::-;11106:3;11099:34;11030:109;;:::o;11145:118::-;11232:24;11250:5;11232:24;:::i;:::-;11227:3;11220:37;11145:118;;:::o;11269:360::-;11355:3;11383:38;11415:5;11383:38;:::i;:::-;11437:70;11500:6;11495:3;11437:70;:::i;:::-;11430:77;;11516:52;11561:6;11556:3;11549:4;11542:5;11538:16;11516:52;:::i;:::-;11593:29;11615:6;11593:29;:::i;:::-;11588:3;11584:39;11577:46;;11359:270;11269:360;;;;:::o;11635:364::-;11723:3;11751:39;11784:5;11751:39;:::i;:::-;11806:71;11870:6;11865:3;11806:71;:::i;:::-;11799:78;;11886:52;11931:6;11926:3;11919:4;11912:5;11908:16;11886:52;:::i;:::-;11963:29;11985:6;11963:29;:::i;:::-;11958:3;11954:39;11947:46;;11727:272;11635:364;;;;:::o;12005:377::-;12111:3;12139:39;12172:5;12139:39;:::i;:::-;12194:89;12276:6;12271:3;12194:89;:::i;:::-;12187:96;;12292:52;12337:6;12332:3;12325:4;12318:5;12314:16;12292:52;:::i;:::-;12369:6;12364:3;12360:16;12353:23;;12115:267;12005:377;;;;:::o;12412:845::-;12515:3;12552:5;12546:12;12581:36;12607:9;12581:36;:::i;:::-;12633:89;12715:6;12710:3;12633:89;:::i;:::-;12626:96;;12753:1;12742:9;12738:17;12769:1;12764:137;;;;12915:1;12910:341;;;;12731:520;;12764:137;12848:4;12844:9;12833;12829:25;12824:3;12817:38;12884:6;12879:3;12875:16;12868:23;;12764:137;;12910:341;12977:38;13009:5;12977:38;:::i;:::-;13037:1;13051:154;13065:6;13062:1;13059:13;13051:154;;;13139:7;13133:14;13129:1;13124:3;13120:11;13113:35;13189:1;13180:7;13176:15;13165:26;;13087:4;13084:1;13080:12;13075:17;;13051:154;;;13234:6;13229:3;13225:16;13218:23;;12917:334;;12731:520;;12519:738;;12412:845;;;;:::o;13263:366::-;13405:3;13426:67;13490:2;13485:3;13426:67;:::i;:::-;13419:74;;13502:93;13591:3;13502:93;:::i;:::-;13620:2;13615:3;13611:12;13604:19;;13263:366;;;:::o;13635:::-;13777:3;13798:67;13862:2;13857:3;13798:67;:::i;:::-;13791:74;;13874:93;13963:3;13874:93;:::i;:::-;13992:2;13987:3;13983:12;13976:19;;13635:366;;;:::o;14007:::-;14149:3;14170:67;14234:2;14229:3;14170:67;:::i;:::-;14163:74;;14246:93;14335:3;14246:93;:::i;:::-;14364:2;14359:3;14355:12;14348:19;;14007:366;;;:::o;14379:::-;14521:3;14542:67;14606:2;14601:3;14542:67;:::i;:::-;14535:74;;14618:93;14707:3;14618:93;:::i;:::-;14736:2;14731:3;14727:12;14720:19;;14379:366;;;:::o;14751:::-;14893:3;14914:67;14978:2;14973:3;14914:67;:::i;:::-;14907:74;;14990:93;15079:3;14990:93;:::i;:::-;15108:2;15103:3;15099:12;15092:19;;14751:366;;;:::o;15123:::-;15265:3;15286:67;15350:2;15345:3;15286:67;:::i;:::-;15279:74;;15362:93;15451:3;15362:93;:::i;:::-;15480:2;15475:3;15471:12;15464:19;;15123:366;;;:::o;15495:::-;15637:3;15658:67;15722:2;15717:3;15658:67;:::i;:::-;15651:74;;15734:93;15823:3;15734:93;:::i;:::-;15852:2;15847:3;15843:12;15836:19;;15495:366;;;:::o;15867:::-;16009:3;16030:67;16094:2;16089:3;16030:67;:::i;:::-;16023:74;;16106:93;16195:3;16106:93;:::i;:::-;16224:2;16219:3;16215:12;16208:19;;15867:366;;;:::o;16239:::-;16381:3;16402:67;16466:2;16461:3;16402:67;:::i;:::-;16395:74;;16478:93;16567:3;16478:93;:::i;:::-;16596:2;16591:3;16587:12;16580:19;;16239:366;;;:::o;16611:398::-;16770:3;16791:83;16872:1;16867:3;16791:83;:::i;:::-;16784:90;;16883:93;16972:3;16883:93;:::i;:::-;17001:1;16996:3;16992:11;16985:18;;16611:398;;;:::o;17015:366::-;17157:3;17178:67;17242:2;17237:3;17178:67;:::i;:::-;17171:74;;17254:93;17343:3;17254:93;:::i;:::-;17372:2;17367:3;17363:12;17356:19;;17015:366;;;:::o;17387:::-;17529:3;17550:67;17614:2;17609:3;17550:67;:::i;:::-;17543:74;;17626:93;17715:3;17626:93;:::i;:::-;17744:2;17739:3;17735:12;17728:19;;17387:366;;;:::o;17759:::-;17901:3;17922:67;17986:2;17981:3;17922:67;:::i;:::-;17915:74;;17998:93;18087:3;17998:93;:::i;:::-;18116:2;18111:3;18107:12;18100:19;;17759:366;;;:::o;18131:::-;18273:3;18294:67;18358:2;18353:3;18294:67;:::i;:::-;18287:74;;18370:93;18459:3;18370:93;:::i;:::-;18488:2;18483:3;18479:12;18472:19;;18131:366;;;:::o;18503:::-;18645:3;18666:67;18730:2;18725:3;18666:67;:::i;:::-;18659:74;;18742:93;18831:3;18742:93;:::i;:::-;18860:2;18855:3;18851:12;18844:19;;18503:366;;;:::o;18875:108::-;18952:24;18970:5;18952:24;:::i;:::-;18947:3;18940:37;18875:108;;:::o;18989:118::-;19076:24;19094:5;19076:24;:::i;:::-;19071:3;19064:37;18989:118;;:::o;19113:112::-;19196:22;19212:5;19196:22;:::i;:::-;19191:3;19184:35;19113:112;;:::o;19231:256::-;19343:3;19358:75;19429:3;19420:6;19358:75;:::i;:::-;19458:2;19453:3;19449:12;19442:19;;19478:3;19471:10;;19231:256;;;;:::o;19493:589::-;19718:3;19740:95;19831:3;19822:6;19740:95;:::i;:::-;19733:102;;19852:95;19943:3;19934:6;19852:95;:::i;:::-;19845:102;;19964:92;20052:3;20043:6;19964:92;:::i;:::-;19957:99;;20073:3;20066:10;;19493:589;;;;;;:::o;20088:379::-;20272:3;20294:147;20437:3;20294:147;:::i;:::-;20287:154;;20458:3;20451:10;;20088:379;;;:::o;20473:222::-;20566:4;20604:2;20593:9;20589:18;20581:26;;20617:71;20685:1;20674:9;20670:17;20661:6;20617:71;:::i;:::-;20473:222;;;;:::o;20701:640::-;20896:4;20934:3;20923:9;20919:19;20911:27;;20948:71;21016:1;21005:9;21001:17;20992:6;20948:71;:::i;:::-;21029:72;21097:2;21086:9;21082:18;21073:6;21029:72;:::i;:::-;21111;21179:2;21168:9;21164:18;21155:6;21111:72;:::i;:::-;21230:9;21224:4;21220:20;21215:2;21204:9;21200:18;21193:48;21258:76;21329:4;21320:6;21258:76;:::i;:::-;21250:84;;20701:640;;;;;;;:::o;21347:373::-;21490:4;21528:2;21517:9;21513:18;21505:26;;21577:9;21571:4;21567:20;21563:1;21552:9;21548:17;21541:47;21605:108;21708:4;21699:6;21605:108;:::i;:::-;21597:116;;21347:373;;;;:::o;21726:210::-;21813:4;21851:2;21840:9;21836:18;21828:26;;21864:65;21926:1;21915:9;21911:17;21902:6;21864:65;:::i;:::-;21726:210;;;;:::o;21942:545::-;22115:4;22153:3;22142:9;22138:19;22130:27;;22167:71;22235:1;22224:9;22220:17;22211:6;22167:71;:::i;:::-;22248:68;22312:2;22301:9;22297:18;22288:6;22248:68;:::i;:::-;22326:72;22394:2;22383:9;22379:18;22370:6;22326:72;:::i;:::-;22408;22476:2;22465:9;22461:18;22452:6;22408:72;:::i;:::-;21942:545;;;;;;;:::o;22493:313::-;22606:4;22644:2;22633:9;22629:18;22621:26;;22693:9;22687:4;22683:20;22679:1;22668:9;22664:17;22657:47;22721:78;22794:4;22785:6;22721:78;:::i;:::-;22713:86;;22493:313;;;;:::o;22812:419::-;22978:4;23016:2;23005:9;23001:18;22993:26;;23065:9;23059:4;23055:20;23051:1;23040:9;23036:17;23029:47;23093:131;23219:4;23093:131;:::i;:::-;23085:139;;22812:419;;;:::o;23237:::-;23403:4;23441:2;23430:9;23426:18;23418:26;;23490:9;23484:4;23480:20;23476:1;23465:9;23461:17;23454:47;23518:131;23644:4;23518:131;:::i;:::-;23510:139;;23237:419;;;:::o;23662:::-;23828:4;23866:2;23855:9;23851:18;23843:26;;23915:9;23909:4;23905:20;23901:1;23890:9;23886:17;23879:47;23943:131;24069:4;23943:131;:::i;:::-;23935:139;;23662:419;;;:::o;24087:::-;24253:4;24291:2;24280:9;24276:18;24268:26;;24340:9;24334:4;24330:20;24326:1;24315:9;24311:17;24304:47;24368:131;24494:4;24368:131;:::i;:::-;24360:139;;24087:419;;;:::o;24512:::-;24678:4;24716:2;24705:9;24701:18;24693:26;;24765:9;24759:4;24755:20;24751:1;24740:9;24736:17;24729:47;24793:131;24919:4;24793:131;:::i;:::-;24785:139;;24512:419;;;:::o;24937:::-;25103:4;25141:2;25130:9;25126:18;25118:26;;25190:9;25184:4;25180:20;25176:1;25165:9;25161:17;25154:47;25218:131;25344:4;25218:131;:::i;:::-;25210:139;;24937:419;;;:::o;25362:::-;25528:4;25566:2;25555:9;25551:18;25543:26;;25615:9;25609:4;25605:20;25601:1;25590:9;25586:17;25579:47;25643:131;25769:4;25643:131;:::i;:::-;25635:139;;25362:419;;;:::o;25787:::-;25953:4;25991:2;25980:9;25976:18;25968:26;;26040:9;26034:4;26030:20;26026:1;26015:9;26011:17;26004:47;26068:131;26194:4;26068:131;:::i;:::-;26060:139;;25787:419;;;:::o;26212:::-;26378:4;26416:2;26405:9;26401:18;26393:26;;26465:9;26459:4;26455:20;26451:1;26440:9;26436:17;26429:47;26493:131;26619:4;26493:131;:::i;:::-;26485:139;;26212:419;;;:::o;26637:::-;26803:4;26841:2;26830:9;26826:18;26818:26;;26890:9;26884:4;26880:20;26876:1;26865:9;26861:17;26854:47;26918:131;27044:4;26918:131;:::i;:::-;26910:139;;26637:419;;;:::o;27062:::-;27228:4;27266:2;27255:9;27251:18;27243:26;;27315:9;27309:4;27305:20;27301:1;27290:9;27286:17;27279:47;27343:131;27469:4;27343:131;:::i;:::-;27335:139;;27062:419;;;:::o;27487:::-;27653:4;27691:2;27680:9;27676:18;27668:26;;27740:9;27734:4;27730:20;27726:1;27715:9;27711:17;27704:47;27768:131;27894:4;27768:131;:::i;:::-;27760:139;;27487:419;;;:::o;27912:::-;28078:4;28116:2;28105:9;28101:18;28093:26;;28165:9;28159:4;28155:20;28151:1;28140:9;28136:17;28129:47;28193:131;28319:4;28193:131;:::i;:::-;28185:139;;27912:419;;;:::o;28337:::-;28503:4;28541:2;28530:9;28526:18;28518:26;;28590:9;28584:4;28580:20;28576:1;28565:9;28561:17;28554:47;28618:131;28744:4;28618:131;:::i;:::-;28610:139;;28337:419;;;:::o;28762:222::-;28855:4;28893:2;28882:9;28878:18;28870:26;;28906:71;28974:1;28963:9;28959:17;28950:6;28906:71;:::i;:::-;28762:222;;;;:::o;28990:434::-;29135:4;29173:2;29162:9;29158:18;29150:26;;29186:67;29250:1;29239:9;29235:17;29226:6;29186:67;:::i;:::-;29263:72;29331:2;29320:9;29316:18;29307:6;29263:72;:::i;:::-;29345;29413:2;29402:9;29398:18;29389:6;29345:72;:::i;:::-;28990:434;;;;;;:::o;29430:129::-;29464:6;29491:20;;:::i;:::-;29481:30;;29520:33;29548:4;29540:6;29520:33;:::i;:::-;29430:129;;;:::o;29565:75::-;29598:6;29631:2;29625:9;29615:19;;29565:75;:::o;29646:307::-;29707:4;29797:18;29789:6;29786:30;29783:56;;;29819:18;;:::i;:::-;29783:56;29857:29;29879:6;29857:29;:::i;:::-;29849:37;;29941:4;29935;29931:15;29923:23;;29646:307;;;:::o;29959:308::-;30021:4;30111:18;30103:6;30100:30;30097:56;;;30133:18;;:::i;:::-;30097:56;30171:29;30193:6;30171:29;:::i;:::-;30163:37;;30255:4;30249;30245:15;30237:23;;29959:308;;;:::o;30273:132::-;30340:4;30363:3;30355:11;;30393:4;30388:3;30384:14;30376:22;;30273:132;;;:::o;30411:141::-;30460:4;30483:3;30475:11;;30506:3;30503:1;30496:14;30540:4;30537:1;30527:18;30519:26;;30411:141;;;:::o;30558:114::-;30625:6;30659:5;30653:12;30643:22;;30558:114;;;:::o;30678:98::-;30729:6;30763:5;30757:12;30747:22;;30678:98;;;:::o;30782:99::-;30834:6;30868:5;30862:12;30852:22;;30782:99;;;:::o;30887:113::-;30957:4;30989;30984:3;30980:14;30972:22;;30887:113;;;:::o;31006:184::-;31105:11;31139:6;31134:3;31127:19;31179:4;31174:3;31170:14;31155:29;;31006:184;;;;:::o;31196:168::-;31279:11;31313:6;31308:3;31301:19;31353:4;31348:3;31344:14;31329:29;;31196:168;;;;:::o;31370:147::-;31471:11;31508:3;31493:18;;31370:147;;;;:::o;31523:169::-;31607:11;31641:6;31636:3;31629:19;31681:4;31676:3;31672:14;31657:29;;31523:169;;;;:::o;31698:148::-;31800:11;31837:3;31822:18;;31698:148;;;;:::o;31852:305::-;31892:3;31911:20;31929:1;31911:20;:::i;:::-;31906:25;;31945:20;31963:1;31945:20;:::i;:::-;31940:25;;32099:1;32031:66;32027:74;32024:1;32021:81;32018:107;;;32105:18;;:::i;:::-;32018:107;32149:1;32146;32142:9;32135:16;;31852:305;;;;:::o;32163:185::-;32203:1;32220:20;32238:1;32220:20;:::i;:::-;32215:25;;32254:20;32272:1;32254:20;:::i;:::-;32249:25;;32293:1;32283:35;;32298:18;;:::i;:::-;32283:35;32340:1;32337;32333:9;32328:14;;32163:185;;;;:::o;32354:348::-;32394:7;32417:20;32435:1;32417:20;:::i;:::-;32412:25;;32451:20;32469:1;32451:20;:::i;:::-;32446:25;;32639:1;32571:66;32567:74;32564:1;32561:81;32556:1;32549:9;32542:17;32538:105;32535:131;;;32646:18;;:::i;:::-;32535:131;32694:1;32691;32687:9;32676:20;;32354:348;;;;:::o;32708:191::-;32748:4;32768:20;32786:1;32768:20;:::i;:::-;32763:25;;32802:20;32820:1;32802:20;:::i;:::-;32797:25;;32841:1;32838;32835:8;32832:34;;;32846:18;;:::i;:::-;32832:34;32891:1;32888;32884:9;32876:17;;32708:191;;;;:::o;32905:96::-;32942:7;32971:24;32989:5;32971:24;:::i;:::-;32960:35;;32905:96;;;:::o;33007:90::-;33041:7;33084:5;33077:13;33070:21;33059:32;;33007:90;;;:::o;33103:77::-;33140:7;33169:5;33158:16;;33103:77;;;:::o;33186:149::-;33222:7;33262:66;33255:5;33251:78;33240:89;;33186:149;;;:::o;33341:126::-;33378:7;33418:42;33411:5;33407:54;33396:65;;33341:126;;;:::o;33473:77::-;33510:7;33539:5;33528:16;;33473:77;;;:::o;33556:86::-;33591:7;33631:4;33624:5;33620:16;33609:27;;33556:86;;;:::o;33648:154::-;33732:6;33727:3;33722;33709:30;33794:1;33785:6;33780:3;33776:16;33769:27;33648:154;;;:::o;33808:307::-;33876:1;33886:113;33900:6;33897:1;33894:13;33886:113;;;33985:1;33980:3;33976:11;33970:18;33966:1;33961:3;33957:11;33950:39;33922:2;33919:1;33915:10;33910:15;;33886:113;;;34017:6;34014:1;34011:13;34008:101;;;34097:1;34088:6;34083:3;34079:16;34072:27;34008:101;33857:258;33808:307;;;:::o;34121:320::-;34165:6;34202:1;34196:4;34192:12;34182:22;;34249:1;34243:4;34239:12;34270:18;34260:81;;34326:4;34318:6;34314:17;34304:27;;34260:81;34388:2;34380:6;34377:14;34357:18;34354:38;34351:84;;;34407:18;;:::i;:::-;34351:84;34172:269;34121:320;;;:::o;34447:281::-;34530:27;34552:4;34530:27;:::i;:::-;34522:6;34518:40;34660:6;34648:10;34645:22;34624:18;34612:10;34609:34;34606:62;34603:88;;;34671:18;;:::i;:::-;34603:88;34711:10;34707:2;34700:22;34490:238;34447:281;;:::o;34734:233::-;34773:3;34796:24;34814:5;34796:24;:::i;:::-;34787:33;;34842:66;34835:5;34832:77;34829:103;;;34912:18;;:::i;:::-;34829:103;34959:1;34952:5;34948:13;34941:20;;34734:233;;;:::o;34973:100::-;35012:7;35041:26;35061:5;35041:26;:::i;:::-;35030:37;;34973:100;;;:::o;35079:94::-;35118:7;35147:20;35161:5;35147:20;:::i;:::-;35136:31;;35079:94;;;:::o;35179:176::-;35211:1;35228:20;35246:1;35228:20;:::i;:::-;35223:25;;35262:20;35280:1;35262:20;:::i;:::-;35257:25;;35301:1;35291:35;;35306:18;;:::i;:::-;35291:35;35347:1;35344;35340:9;35335:14;;35179:176;;;;:::o;35361:180::-;35409:77;35406:1;35399:88;35506:4;35503:1;35496:15;35530:4;35527:1;35520:15;35547:180;35595:77;35592:1;35585:88;35692:4;35689:1;35682:15;35716:4;35713:1;35706:15;35733:180;35781:77;35778:1;35771:88;35878:4;35875:1;35868:15;35902:4;35899:1;35892:15;35919:180;35967:77;35964:1;35957:88;36064:4;36061:1;36054:15;36088:4;36085:1;36078:15;36105:180;36153:77;36150:1;36143:88;36250:4;36247:1;36240:15;36274:4;36271:1;36264:15;36291:117;36400:1;36397;36390:12;36414:117;36523:1;36520;36513:12;36537:117;36646:1;36643;36636:12;36660:117;36769:1;36766;36759:12;36783:102;36824:6;36875:2;36871:7;36866:2;36859:5;36855:14;36851:28;36841:38;;36783:102;;;:::o;36891:94::-;36924:8;36972:5;36968:2;36964:14;36943:35;;36891:94;;;:::o;36991:225::-;37131:34;37127:1;37119:6;37115:14;37108:58;37200:8;37195:2;37187:6;37183:15;37176:33;36991:225;:::o;37222:239::-;37362:34;37358:1;37350:6;37346:14;37339:58;37431:22;37426:2;37418:6;37414:15;37407:47;37222:239;:::o;37467:228::-;37607:34;37603:1;37595:6;37591:14;37584:58;37676:11;37671:2;37663:6;37659:15;37652:36;37467:228;:::o;37701:180::-;37841:32;37837:1;37829:6;37825:14;37818:56;37701:180;:::o;37887:226::-;38027:34;38023:1;38015:6;38011:14;38004:58;38096:9;38091:2;38083:6;38079:15;38072:34;37887:226;:::o;38119:247::-;38259:34;38255:1;38247:6;38243:14;38236:58;38328:30;38323:2;38315:6;38311:15;38304:55;38119:247;:::o;38372:176::-;38512:28;38508:1;38500:6;38496:14;38489:52;38372:176;:::o;38554:182::-;38694:34;38690:1;38682:6;38678:14;38671:58;38554:182;:::o;38742:173::-;38882:25;38878:1;38870:6;38866:14;38859:49;38742:173;:::o;38921:114::-;;:::o;39041:221::-;39181:34;39177:1;39169:6;39165:14;39158:58;39250:4;39245:2;39237:6;39233:15;39226:29;39041:221;:::o;39268:181::-;39408:33;39404:1;39396:6;39392:14;39385:57;39268:181;:::o;39455:235::-;39595:34;39591:1;39583:6;39579:14;39572:58;39664:18;39659:2;39651:6;39647:15;39640:43;39455:235;:::o;39696:234::-;39836:34;39832:1;39824:6;39820:14;39813:58;39905:17;39900:2;39892:6;39888:15;39881:42;39696:234;:::o;39936:169::-;40076:21;40072:1;40064:6;40060:14;40053:45;39936:169;:::o;40111:122::-;40184:24;40202:5;40184:24;:::i;:::-;40177:5;40174:35;40164:63;;40223:1;40220;40213:12;40164:63;40111:122;:::o;40239:116::-;40309:21;40324:5;40309:21;:::i;:::-;40302:5;40299:32;40289:60;;40345:1;40342;40335:12;40289:60;40239:116;:::o;40361:122::-;40434:24;40452:5;40434:24;:::i;:::-;40427:5;40424:35;40414:63;;40473:1;40470;40463:12;40414:63;40361:122;:::o;40489:120::-;40561:23;40578:5;40561:23;:::i;:::-;40554:5;40551:34;40541:62;;40599:1;40596;40589:12;40541:62;40489:120;:::o;40615:122::-;40688:24;40706:5;40688:24;:::i;:::-;40681:5;40678:35;40668:63;;40727:1;40724;40717:12;40668:63;40615:122;:::o

Swarm Source

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