ETH Price: $2,666.26 (+1.74%)

Token

Gunrack.finance Ammo (GFA)
 

Overview

Max Total Supply

173 GFA

Holders

51

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 GFA
0x6c0116a073f07bd449665b1c3ab0012b5c0b98e1
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:
gammo

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

// File: @openzeppelin/contracts/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);

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/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: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    /*function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }*/

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    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");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }


    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    //using EnumerableSet for EnumerableSet.UintSet;
    //using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    //mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    //EnumerableMap.UintToAddressMap private _tokenOwners;

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

    mapping (address => uint256) private tokenBalance;
    mapping (uint256 => address) private tokenOwner;
    mapping (uint256 => bool) private tokenExists;
    mapping (uint256 => bool) private winnerToken;
    mapping (address => uint8) public winner;
    mapping (address => uint8) public mintedQty;
    uint8 public winnersCount = 0;

    uint256 public tokensMinted = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    uint256 public MAX_GFA;

    // Optional mapping for token URIs
    //mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI = "QmXApPBVRSZQR5yA9ntpeHPZPno7yNXhT2rEdQoTTB8beJ";

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        //return _holderTokens[owner].length();
        return tokenBalance[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        //return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
        require(tokenId > 0, "ERC721: owner query for nonexistent token");
        return tokenOwner[tokenId];
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        //string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        /*if (bytes(base).length == 0) {
            return _tokenURI;
        }*/
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        /*if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }*/
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked("ipfs://", base, "/", tokenId.toString(), ".json"));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    /*function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }*/

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        //return _tokenOwners.length();
        //return tokenBalance[];
        return tokensMinted;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    /*function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }*/

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        //return _tokenOwners.contains(tokenId);
        return tokenExists[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */

    function random() private view returns (uint) {
        uint randomHash = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
        return randomHash % 1000;
    }

    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        tokenOwner[tokenId] = to;
        tokenExists[tokenId] = true;

        tokenBalance[to] = tokenBalance[to] + 1;
        tokensMinted = tokensMinted + 1;
        
        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        tokenBalance[from]--;
        tokenOwner[tokenId] = to;
        tokenBalance[to]++;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    /*function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }*/

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }*/
}



pragma solidity ^0.8.0;

/*
 * @title GFA contract
 */
contract gammo is Ownable, ERC721 {

    uint256 public GFAPrice = 1500000000000000; //0.02 ETH

    
    uint256 public constant maxGFAPurchase = 10;

    uint256 public constant preMaxPerWallet = 60;
    uint256 public constant freeMintQty = 1000;
    
    
    /*
    uint256 public constant maxGFAPurchase = 10;

    uint256 public constant preMaxPerWallet = 10;
    uint256 public constant freeMintQty = 15;
    */


    uint256 public mintContrib = 0;
    
    mapping (address => bool) public withdrawn;

    bool public saleIsActive = false;

    uint256 public ownerWithdrawals = 0;

    uint256 public deposited = 0;

    constructor(string memory name, string memory symbol, uint256 maxNftSupply) ERC721(name, symbol) {
        MAX_GFA = maxNftSupply;
    }

    function withdraw(uint256 amount) public onlyOwner {
        payable(msg.sender).transfer(amount);
    }

    function emergencyDeposit() public payable {
        require(msg.value > 0, "must deposit some eth");
        deposited = deposited + msg.value;
    }

    function updateMintPrice(uint256 newPrice) public onlyOwner {
        GFAPrice = newPrice;
    }

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

    /*
    * Pause sale if active, make active if paused
    */
    function flipState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    /**
    * Mints GFA
    */
    function mintGFA(uint8 numberOfTokens) public payable {
        uint256 supply = totalSupply();
        require(numberOfTokens <= maxGFAPurchase, "E11");
        require((supply + numberOfTokens) <= MAX_GFA, "E12");
        require(saleIsActive, "E10");
        require((mintedQty[msg.sender] + numberOfTokens) <= preMaxPerWallet, "max per wallet reached for premint");

        if (supply >= freeMintQty) {
            require((GFAPrice * numberOfTokens) <= msg.value, "E15");
        } else {
            if (numberOfTokens <= (freeMintQty - supply)) {
                mintContrib = mintContrib + (GFAPrice * numberOfTokens);
            } else {
                require(((numberOfTokens - (freeMintQty - supply)) * GFAPrice) <= msg.value, "E15");
                mintContrib = mintContrib + ((numberOfTokens - (freeMintQty - supply)) * GFAPrice);
            }
        }

        mintedQty[msg.sender] = mintedQty[msg.sender] + numberOfTokens;

        for(uint256 i = 1; i <= numberOfTokens; i++) {
            if (supply < MAX_GFA) {
                _safeMint(msg.sender, supply + i);
            }
        }
    }



}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxNftSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"GFAPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GFA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposited","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyDeposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGFAPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintContrib","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintGFA","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedQty","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerWithdrawals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMaxPerWallet","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":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMinted","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"winner","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winnersCount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"withdrawn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

600a805460ff191690556000600b5560e0604052602e6080818152906200257060a03980516200003891600f91602090910190620001c9565b506605543df729c000601055600060118190556013805460ff1916905560148190556015553480156200006a57600080fd5b506040516200259e3803806200259e8339810160408190526200008d916200031a565b828260006200009b62000167565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000f76301ffc9a760e01b6200016b565b81516200010c90600c906020850190620001c9565b5080516200012290600d906020840190620001c9565b50620001356380ac58cd60e01b6200016b565b62000147635b5e139f60e01b6200016b565b6200015963780e9d6360e01b6200016b565b5050600e5550620004149050565b3390565b6001600160e01b03198082161415620001a15760405162461bcd60e51b815260040162000198906200038a565b60405180910390fd5b6001600160e01b0319166000908152600160208190526040909120805460ff19169091179055565b828054620001d790620003c1565b90600052602060002090601f016020900481019282620001fb576000855562000246565b82601f106200021657805160ff191683800117855562000246565b8280016001018555821562000246579182015b828111156200024657825182559160200191906001019062000229565b506200025492915062000258565b5090565b5b8082111562000254576000815560010162000259565b600082601f83011262000280578081fd5b81516001600160401b03808211156200029d576200029d620003fe565b6040516020601f8401601f1916820181018381118382101715620002c557620002c5620003fe565b6040528382528584018101871015620002dc578485fd5b8492505b83831015620002ff5785830181015182840182015291820191620002e0565b838311156200031057848185840101525b5095945050505050565b6000806000606084860312156200032f578283fd5b83516001600160401b038082111562000346578485fd5b62000354878388016200026f565b945060208601519150808211156200036a578384fd5b5062000379868287016200026f565b925050604084015190509250925092565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b600281046001821680620003d657607f821691505b60208210811415620003f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61214c80620004246000396000f3fe60806040526004361061020e5760003560e01c80636ef6109211610118578063a22cb465116100a0578063d885a21e1161006f578063d885a21e14610598578063e985e9c5146105a0578063eb27bf81146105c0578063eb8d2444146105d5578063eef49ee3146105ea5761020e565b8063a22cb46514610518578063b88d4fde14610538578063c87b56dd14610558578063cfb15ef0146105785761020e565b8063861d47b4116100e7578063861d47b4146104af5780638da5cb5b146104c45780638e920351146104d957806395d89b41146104ee578063a04cee7d146105035761020e565b80636ef610921461044557806370a0823114610465578063807f54f614610485578063831622481461049a5761020e565b80632ebb49e51161019b57806355f804b31161016a57806355f804b3146103c85780636352211e146103e85780636c0360eb146104085780636dc189071461041d5780636de9f32b146104305761020e565b80632ebb49e51461036957806342842e0e1461037e578063497138111461039e5780634a2eeebb146103b35761020e565b8063095ea7b3116101e2578063095ea7b3146102ba57806318160ddd146102da57806323b872dd146102fc5780632ad957861461031c5780632e1a7d4d146103495761020e565b8062728e461461021357806301ffc9a71461023557806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561021f57600080fd5b5061023361022e36600461186e565b6105ff565b005b34801561024157600080fd5b506102556102503660046117f0565b61064c565b60405161026291906119a1565b60405180910390f35b34801561027757600080fd5b5061028061066f565b60405161026291906119ac565b34801561029957600080fd5b506102ad6102a836600461186e565b610701565b6040516102629190611950565b3480156102c657600080fd5b506102336102d53660046117c7565b610744565b3480156102e657600080fd5b506102ef6107dc565b6040516102629190611f41565b34801561030857600080fd5b506102336103173660046116d9565b6107e2565b34801561032857600080fd5b5061033c61033736600461168d565b61081a565b6040516102629190611f4a565b34801561035557600080fd5b5061023361036436600461186e565b61082f565b34801561037557600080fd5b506102ef61089f565b34801561038a57600080fd5b506102336103993660046116d9565b6108a5565b3480156103aa57600080fd5b5061033c6108c0565b3480156103bf57600080fd5b506102ef6108c9565b3480156103d457600080fd5b506102336103e3366004611828565b6108cf565b3480156103f457600080fd5b506102ad61040336600461186e565b61091a565b34801561041457600080fd5b50610280610957565b61023361042b366004611886565b610966565b34801561043c57600080fd5b506102ef610b99565b34801561045157600080fd5b5061025561046036600461168d565b610b9f565b34801561047157600080fd5b506102ef61048036600461168d565b610bb4565b34801561049157600080fd5b506102ef610bf8565b3480156104a657600080fd5b506102ef610bfe565b3480156104bb57600080fd5b506102ef610c04565b3480156104d057600080fd5b506102ad610c09565b3480156104e557600080fd5b50610233610c18565b3480156104fa57600080fd5b50610280610c6b565b34801561050f57600080fd5b506102ef610c7a565b34801561052457600080fd5b5061023361053336600461178d565b610c7f565b34801561054457600080fd5b50610233610553366004611714565b610d4d565b34801561056457600080fd5b5061028061057336600461186e565b610d8c565b34801561058457600080fd5b5061033c61059336600461168d565b610df1565b610233610e06565b3480156105ac57600080fd5b506102556105bb3660046116a7565b610e39565b3480156105cc57600080fd5b506102ef610e67565b3480156105e157600080fd5b50610255610e6d565b3480156105f657600080fd5b506102ef610e76565b610607610e7c565b6001600160a01b0316610618610c09565b6001600160a01b0316146106475760405162461bcd60e51b815260040161063e90611d71565b60405180910390fd5b601055565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b6060600c805461067e90612022565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa90612022565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b5050505050905090565b600061070c82610e80565b6107285760405162461bcd60e51b815260040161063e90611d25565b506000908152600260205260409020546001600160a01b031690565b600061074f8261091a565b9050806001600160a01b0316836001600160a01b031614156107835760405162461bcd60e51b815260040161063e90611e5b565b806001600160a01b0316610795610e7c565b6001600160a01b031614806107b157506107b1816105bb610e7c565b6107cd5760405162461bcd60e51b815260040161063e90611be3565b6107d78383610e95565b505050565b600b5490565b6107f36107ed610e7c565b82610f03565b61080f5760405162461bcd60e51b815260040161063e90611e9c565b6107d7838383610f88565b60086020526000908152604090205460ff1681565b610837610e7c565b6001600160a01b0316610848610c09565b6001600160a01b03161461086e5760405162461bcd60e51b815260040161063e90611d71565b604051339082156108fc029083906000818181858888f1935050505015801561089b573d6000803e3d6000fd5b5050565b600e5481565b6107d783838360405180602001604052806000815250610d4d565b600a5460ff1681565b60145481565b6108d7610e7c565b6001600160a01b03166108e8610c09565b6001600160a01b03161461090e5760405162461bcd60e51b815260040161063e90611d71565b610917816110b3565b50565b600080821161093b5760405162461bcd60e51b815260040161063e90611c8a565b506000908152600560205260409020546001600160a01b031690565b6060600f805461067e90612022565b60006109706107dc565b9050600a8260ff1611156109965760405162461bcd60e51b815260040161063e90611d08565b600e546109a660ff841683611f58565b11156109c45760405162461bcd60e51b815260040161063e90611f24565b60135460ff166109e65760405162461bcd60e51b815260040161063e90611bc6565b33600090815260096020526040902054603c90610a0790849060ff16611f70565b60ff161115610a285760405162461bcd60e51b815260040161063e90611b84565b6103e88110610a6657348260ff16601054610a439190611fa9565b1115610a615760405162461bcd60e51b815260040161063e90611e3e565b610b1e565b610a72816103e8611fc8565b8260ff1611610aa1578160ff16601054610a8c9190611fa9565b601154610a999190611f58565b601155610b1e565b6010543490610ab2836103e8611fc8565b610abf9060ff8616611fc8565b610ac99190611fa9565b1115610ae75760405162461bcd60e51b815260040161063e90611e3e565b601054610af6826103e8611fc8565b610b039060ff8516611fc8565b610b0d9190611fa9565b601154610b1a9190611f58565b6011555b33600090815260096020526040902054610b3c90839060ff16611f70565b336000908152600960205260409020805460ff191660ff9290921691909117905560015b8260ff1681116107d757600e54821015610b8757610b8733610b828385611f58565b6110c6565b80610b918161205d565b915050610b60565b600b5481565b60126020526000908152604090205460ff1681565b60006001600160a01b038216610bdc5760405162461bcd60e51b815260040161063e90611c40565b506001600160a01b031660009081526004602052604090205490565b60115481565b60105481565b603c81565b6000546001600160a01b031690565b610c20610e7c565b6001600160a01b0316610c31610c09565b6001600160a01b031614610c575760405162461bcd60e51b815260040161063e90611d71565b6013805460ff19811660ff90911615179055565b6060600d805461067e90612022565b600a81565b610c87610e7c565b6001600160a01b0316826001600160a01b03161415610cb85760405162461bcd60e51b815260040161063e90611abb565b8060036000610cc5610e7c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d09610e7c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d4191906119a1565b60405180910390a35050565b610d5e610d58610e7c565b83610f03565b610d7a5760405162461bcd60e51b815260040161063e90611e9c565b610d86848484846110e0565b50505050565b6060610d9782610e80565b610db35760405162461bcd60e51b815260040161063e90611def565b6000610dbd610957565b905080610dc984611113565b604051602001610dda9291906118ef565b604051602081830303815290604052915050919050565b60096020526000908152604090205460ff1681565b60003411610e265760405162461bcd60e51b815260040161063e90611a11565b34601554610e349190611f58565b601555565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b6103e881565b60135460ff1681565b60155481565b3390565b60009081526006602052604090205460ff1690565b600081815260026020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610eca8261091a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f0e82610e80565b610f2a5760405162461bcd60e51b815260040161063e90611b38565b6000610f358361091a565b9050806001600160a01b0316846001600160a01b03161480610f705750836001600160a01b0316610f6584610701565b6001600160a01b0316145b80610f805750610f808185610e39565b949350505050565b826001600160a01b0316610f9b8261091a565b6001600160a01b031614610fc15760405162461bcd60e51b815260040161063e90611da6565b6001600160a01b038216610fe75760405162461bcd60e51b815260040161063e90611a77565b610ff28383836107d7565b610ffd600082610e95565b6001600160a01b03831660009081526004602052604081208054916110218361200b565b9091555050600081815260056020908152604080832080546001600160a01b0319166001600160a01b0387169081179091558352600490915281208054916110688361205d565b919050555080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b805161089b90600f90602084019061156d565b61089b82826040518060200160405280600081525061122e565b6110eb848484610f88565b6110f784848484611261565b610d865760405162461bcd60e51b815260040161063e906119bf565b60608161113857506040805180820190915260018152600360fc1b602082015261066a565b8160005b8115611162578061114c8161205d565b915061115b9050600a83611f95565b915061113c565b60008167ffffffffffffffff81111561118b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156111b5576020820181803683370190505b5090505b8415610f80576111ca600183611fc8565b91506111d7600a86612078565b6111e2906030611f58565b60f81b81838151811061120557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611227600a86611f95565b94506111b9565b6112388383611340565b6112456000848484611261565b6107d75760405162461bcd60e51b815260040161063e906119bf565b6000611275846001600160a01b0316611455565b61128157506001610f80565b6000611309630a85bd0160e11b611296610e7c565b8887876040516024016112ac9493929190611964565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016120e5603291396001600160a01b038816919061145b565b9050600081806020019051810190611321919061180c565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b0382166113665760405162461bcd60e51b815260040161063e90611cd3565b61136f81610e80565b1561138c5760405162461bcd60e51b815260040161063e90611a40565b611398600083836107d7565b600081815260056020908152604080832080546001600160a01b0319166001600160a01b03871690811790915560068352818420805460ff191660019081179091559084526004909252909120546113ef91611f58565b6001600160a01b038316600090815260046020526040902055600b54611416906001611f58565b600b5560405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b606061146a8484600085611474565b90505b9392505050565b6060824710156114965760405162461bcd60e51b815260040161063e90611af2565b61149f85611455565b6114bb5760405162461bcd60e51b815260040161063e90611eed565b600080866001600160a01b031685876040516114d791906118d3565b60006040518083038185875af1925050503d8060008114611514576040519150601f19603f3d011682016040523d82523d6000602084013e611519565b606091505b5091509150611529828286611534565b979650505050505050565b6060831561154357508161146d565b8251156115535782518084602001fd5b8160405162461bcd60e51b815260040161063e91906119ac565b82805461157990612022565b90600052602060002090601f01602090048101928261159b57600085556115e1565b82601f106115b457805160ff19168380011785556115e1565b828001600101855582156115e1579182015b828111156115e15782518255916020019190600101906115c6565b506115ed9291506115f1565b5090565b5b808211156115ed57600081556001016115f2565b600067ffffffffffffffff80841115611621576116216120b8565b604051601f8501601f191681016020018281118282101715611645576116456120b8565b60405284815291508183850186101561165d57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461066a57600080fd5b60006020828403121561169e578081fd5b61146d82611676565b600080604083850312156116b9578081fd5b6116c283611676565b91506116d060208401611676565b90509250929050565b6000806000606084860312156116ed578081fd5b6116f684611676565b925061170460208501611676565b9150604084013590509250925092565b60008060008060808587031215611729578081fd5b61173285611676565b935061174060208601611676565b925060408501359150606085013567ffffffffffffffff811115611762578182fd5b8501601f81018713611772578182fd5b61178187823560208401611606565b91505092959194509250565b6000806040838503121561179f578182fd5b6117a883611676565b9150602083013580151581146117bc578182fd5b809150509250929050565b600080604083850312156117d9578182fd5b6117e283611676565b946020939093013593505050565b600060208284031215611801578081fd5b813561146d816120ce565b60006020828403121561181d578081fd5b815161146d816120ce565b600060208284031215611839578081fd5b813567ffffffffffffffff81111561184f578182fd5b8201601f8101841361185f578182fd5b610f8084823560208401611606565b60006020828403121561187f578081fd5b5035919050565b600060208284031215611897578081fd5b813560ff8116811461146d578182fd5b600081518084526118bf816020860160208601611fdf565b601f01601f19169290920160200192915050565b600082516118e5818460208701611fdf565b9190910192915050565b600066697066733a2f2f60c81b82528351611911816007850160208801611fdf565b602f60f81b6007918401918201528351611932816008840160208801611fdf565b64173539b7b760d91b60089290910191820152600d01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611997908301846118a7565b9695505050505050565b901515815260200190565b60006020825261146d60208301846118a7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601590820152740daeae6e840c8cae0dee6d2e840e6dedaca40cae8d605b1b604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526022908201527f6d6178207065722077616c6c6574207265616368656420666f72207072656d696040820152611b9d60f21b606082015260800190565b60208082526003908201526204531360ec1b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526003908201526245313160e81b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526003908201526245313560e81b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526003908201526222989960e91b604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611f6b57611f6b61208c565b500190565b600060ff821660ff84168060ff03821115611f8d57611f8d61208c565b019392505050565b600082611fa457611fa46120a2565b500490565b6000816000190483118215151615611fc357611fc361208c565b500290565b600082821015611fda57611fda61208c565b500390565b60005b83811015611ffa578181015183820152602001611fe2565b83811115610d865750506000910152565b60008161201a5761201a61208c565b506000190190565b60028104600182168061203657607f821691505b6020821081141561205757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120715761207161208c565b5060010190565b600082612087576120876120a2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461091757600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572a2646970667358221220ed1316b4eb2d21cf1fa1a3a5b52771458ddd14271a366be0a56814d49fc2532464736f6c63430008000033516d58417050425652535a5152357941396e74706548505a506e6f37794e58685432724564516f5454423862654a000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000003a98000000000000000000000000000000000000000000000000000000000000001447756e7261636b2e66696e616e636520416d6d6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000034746410000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020e5760003560e01c80636ef6109211610118578063a22cb465116100a0578063d885a21e1161006f578063d885a21e14610598578063e985e9c5146105a0578063eb27bf81146105c0578063eb8d2444146105d5578063eef49ee3146105ea5761020e565b8063a22cb46514610518578063b88d4fde14610538578063c87b56dd14610558578063cfb15ef0146105785761020e565b8063861d47b4116100e7578063861d47b4146104af5780638da5cb5b146104c45780638e920351146104d957806395d89b41146104ee578063a04cee7d146105035761020e565b80636ef610921461044557806370a0823114610465578063807f54f614610485578063831622481461049a5761020e565b80632ebb49e51161019b57806355f804b31161016a57806355f804b3146103c85780636352211e146103e85780636c0360eb146104085780636dc189071461041d5780636de9f32b146104305761020e565b80632ebb49e51461036957806342842e0e1461037e578063497138111461039e5780634a2eeebb146103b35761020e565b8063095ea7b3116101e2578063095ea7b3146102ba57806318160ddd146102da57806323b872dd146102fc5780632ad957861461031c5780632e1a7d4d146103495761020e565b8062728e461461021357806301ffc9a71461023557806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561021f57600080fd5b5061023361022e36600461186e565b6105ff565b005b34801561024157600080fd5b506102556102503660046117f0565b61064c565b60405161026291906119a1565b60405180910390f35b34801561027757600080fd5b5061028061066f565b60405161026291906119ac565b34801561029957600080fd5b506102ad6102a836600461186e565b610701565b6040516102629190611950565b3480156102c657600080fd5b506102336102d53660046117c7565b610744565b3480156102e657600080fd5b506102ef6107dc565b6040516102629190611f41565b34801561030857600080fd5b506102336103173660046116d9565b6107e2565b34801561032857600080fd5b5061033c61033736600461168d565b61081a565b6040516102629190611f4a565b34801561035557600080fd5b5061023361036436600461186e565b61082f565b34801561037557600080fd5b506102ef61089f565b34801561038a57600080fd5b506102336103993660046116d9565b6108a5565b3480156103aa57600080fd5b5061033c6108c0565b3480156103bf57600080fd5b506102ef6108c9565b3480156103d457600080fd5b506102336103e3366004611828565b6108cf565b3480156103f457600080fd5b506102ad61040336600461186e565b61091a565b34801561041457600080fd5b50610280610957565b61023361042b366004611886565b610966565b34801561043c57600080fd5b506102ef610b99565b34801561045157600080fd5b5061025561046036600461168d565b610b9f565b34801561047157600080fd5b506102ef61048036600461168d565b610bb4565b34801561049157600080fd5b506102ef610bf8565b3480156104a657600080fd5b506102ef610bfe565b3480156104bb57600080fd5b506102ef610c04565b3480156104d057600080fd5b506102ad610c09565b3480156104e557600080fd5b50610233610c18565b3480156104fa57600080fd5b50610280610c6b565b34801561050f57600080fd5b506102ef610c7a565b34801561052457600080fd5b5061023361053336600461178d565b610c7f565b34801561054457600080fd5b50610233610553366004611714565b610d4d565b34801561056457600080fd5b5061028061057336600461186e565b610d8c565b34801561058457600080fd5b5061033c61059336600461168d565b610df1565b610233610e06565b3480156105ac57600080fd5b506102556105bb3660046116a7565b610e39565b3480156105cc57600080fd5b506102ef610e67565b3480156105e157600080fd5b50610255610e6d565b3480156105f657600080fd5b506102ef610e76565b610607610e7c565b6001600160a01b0316610618610c09565b6001600160a01b0316146106475760405162461bcd60e51b815260040161063e90611d71565b60405180910390fd5b601055565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b6060600c805461067e90612022565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa90612022565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b5050505050905090565b600061070c82610e80565b6107285760405162461bcd60e51b815260040161063e90611d25565b506000908152600260205260409020546001600160a01b031690565b600061074f8261091a565b9050806001600160a01b0316836001600160a01b031614156107835760405162461bcd60e51b815260040161063e90611e5b565b806001600160a01b0316610795610e7c565b6001600160a01b031614806107b157506107b1816105bb610e7c565b6107cd5760405162461bcd60e51b815260040161063e90611be3565b6107d78383610e95565b505050565b600b5490565b6107f36107ed610e7c565b82610f03565b61080f5760405162461bcd60e51b815260040161063e90611e9c565b6107d7838383610f88565b60086020526000908152604090205460ff1681565b610837610e7c565b6001600160a01b0316610848610c09565b6001600160a01b03161461086e5760405162461bcd60e51b815260040161063e90611d71565b604051339082156108fc029083906000818181858888f1935050505015801561089b573d6000803e3d6000fd5b5050565b600e5481565b6107d783838360405180602001604052806000815250610d4d565b600a5460ff1681565b60145481565b6108d7610e7c565b6001600160a01b03166108e8610c09565b6001600160a01b03161461090e5760405162461bcd60e51b815260040161063e90611d71565b610917816110b3565b50565b600080821161093b5760405162461bcd60e51b815260040161063e90611c8a565b506000908152600560205260409020546001600160a01b031690565b6060600f805461067e90612022565b60006109706107dc565b9050600a8260ff1611156109965760405162461bcd60e51b815260040161063e90611d08565b600e546109a660ff841683611f58565b11156109c45760405162461bcd60e51b815260040161063e90611f24565b60135460ff166109e65760405162461bcd60e51b815260040161063e90611bc6565b33600090815260096020526040902054603c90610a0790849060ff16611f70565b60ff161115610a285760405162461bcd60e51b815260040161063e90611b84565b6103e88110610a6657348260ff16601054610a439190611fa9565b1115610a615760405162461bcd60e51b815260040161063e90611e3e565b610b1e565b610a72816103e8611fc8565b8260ff1611610aa1578160ff16601054610a8c9190611fa9565b601154610a999190611f58565b601155610b1e565b6010543490610ab2836103e8611fc8565b610abf9060ff8616611fc8565b610ac99190611fa9565b1115610ae75760405162461bcd60e51b815260040161063e90611e3e565b601054610af6826103e8611fc8565b610b039060ff8516611fc8565b610b0d9190611fa9565b601154610b1a9190611f58565b6011555b33600090815260096020526040902054610b3c90839060ff16611f70565b336000908152600960205260409020805460ff191660ff9290921691909117905560015b8260ff1681116107d757600e54821015610b8757610b8733610b828385611f58565b6110c6565b80610b918161205d565b915050610b60565b600b5481565b60126020526000908152604090205460ff1681565b60006001600160a01b038216610bdc5760405162461bcd60e51b815260040161063e90611c40565b506001600160a01b031660009081526004602052604090205490565b60115481565b60105481565b603c81565b6000546001600160a01b031690565b610c20610e7c565b6001600160a01b0316610c31610c09565b6001600160a01b031614610c575760405162461bcd60e51b815260040161063e90611d71565b6013805460ff19811660ff90911615179055565b6060600d805461067e90612022565b600a81565b610c87610e7c565b6001600160a01b0316826001600160a01b03161415610cb85760405162461bcd60e51b815260040161063e90611abb565b8060036000610cc5610e7c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d09610e7c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d4191906119a1565b60405180910390a35050565b610d5e610d58610e7c565b83610f03565b610d7a5760405162461bcd60e51b815260040161063e90611e9c565b610d86848484846110e0565b50505050565b6060610d9782610e80565b610db35760405162461bcd60e51b815260040161063e90611def565b6000610dbd610957565b905080610dc984611113565b604051602001610dda9291906118ef565b604051602081830303815290604052915050919050565b60096020526000908152604090205460ff1681565b60003411610e265760405162461bcd60e51b815260040161063e90611a11565b34601554610e349190611f58565b601555565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b6103e881565b60135460ff1681565b60155481565b3390565b60009081526006602052604090205460ff1690565b600081815260026020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610eca8261091a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f0e82610e80565b610f2a5760405162461bcd60e51b815260040161063e90611b38565b6000610f358361091a565b9050806001600160a01b0316846001600160a01b03161480610f705750836001600160a01b0316610f6584610701565b6001600160a01b0316145b80610f805750610f808185610e39565b949350505050565b826001600160a01b0316610f9b8261091a565b6001600160a01b031614610fc15760405162461bcd60e51b815260040161063e90611da6565b6001600160a01b038216610fe75760405162461bcd60e51b815260040161063e90611a77565b610ff28383836107d7565b610ffd600082610e95565b6001600160a01b03831660009081526004602052604081208054916110218361200b565b9091555050600081815260056020908152604080832080546001600160a01b0319166001600160a01b0387169081179091558352600490915281208054916110688361205d565b919050555080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b805161089b90600f90602084019061156d565b61089b82826040518060200160405280600081525061122e565b6110eb848484610f88565b6110f784848484611261565b610d865760405162461bcd60e51b815260040161063e906119bf565b60608161113857506040805180820190915260018152600360fc1b602082015261066a565b8160005b8115611162578061114c8161205d565b915061115b9050600a83611f95565b915061113c565b60008167ffffffffffffffff81111561118b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156111b5576020820181803683370190505b5090505b8415610f80576111ca600183611fc8565b91506111d7600a86612078565b6111e2906030611f58565b60f81b81838151811061120557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611227600a86611f95565b94506111b9565b6112388383611340565b6112456000848484611261565b6107d75760405162461bcd60e51b815260040161063e906119bf565b6000611275846001600160a01b0316611455565b61128157506001610f80565b6000611309630a85bd0160e11b611296610e7c565b8887876040516024016112ac9493929190611964565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016120e5603291396001600160a01b038816919061145b565b9050600081806020019051810190611321919061180c565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b0382166113665760405162461bcd60e51b815260040161063e90611cd3565b61136f81610e80565b1561138c5760405162461bcd60e51b815260040161063e90611a40565b611398600083836107d7565b600081815260056020908152604080832080546001600160a01b0319166001600160a01b03871690811790915560068352818420805460ff191660019081179091559084526004909252909120546113ef91611f58565b6001600160a01b038316600090815260046020526040902055600b54611416906001611f58565b600b5560405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b606061146a8484600085611474565b90505b9392505050565b6060824710156114965760405162461bcd60e51b815260040161063e90611af2565b61149f85611455565b6114bb5760405162461bcd60e51b815260040161063e90611eed565b600080866001600160a01b031685876040516114d791906118d3565b60006040518083038185875af1925050503d8060008114611514576040519150601f19603f3d011682016040523d82523d6000602084013e611519565b606091505b5091509150611529828286611534565b979650505050505050565b6060831561154357508161146d565b8251156115535782518084602001fd5b8160405162461bcd60e51b815260040161063e91906119ac565b82805461157990612022565b90600052602060002090601f01602090048101928261159b57600085556115e1565b82601f106115b457805160ff19168380011785556115e1565b828001600101855582156115e1579182015b828111156115e15782518255916020019190600101906115c6565b506115ed9291506115f1565b5090565b5b808211156115ed57600081556001016115f2565b600067ffffffffffffffff80841115611621576116216120b8565b604051601f8501601f191681016020018281118282101715611645576116456120b8565b60405284815291508183850186101561165d57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461066a57600080fd5b60006020828403121561169e578081fd5b61146d82611676565b600080604083850312156116b9578081fd5b6116c283611676565b91506116d060208401611676565b90509250929050565b6000806000606084860312156116ed578081fd5b6116f684611676565b925061170460208501611676565b9150604084013590509250925092565b60008060008060808587031215611729578081fd5b61173285611676565b935061174060208601611676565b925060408501359150606085013567ffffffffffffffff811115611762578182fd5b8501601f81018713611772578182fd5b61178187823560208401611606565b91505092959194509250565b6000806040838503121561179f578182fd5b6117a883611676565b9150602083013580151581146117bc578182fd5b809150509250929050565b600080604083850312156117d9578182fd5b6117e283611676565b946020939093013593505050565b600060208284031215611801578081fd5b813561146d816120ce565b60006020828403121561181d578081fd5b815161146d816120ce565b600060208284031215611839578081fd5b813567ffffffffffffffff81111561184f578182fd5b8201601f8101841361185f578182fd5b610f8084823560208401611606565b60006020828403121561187f578081fd5b5035919050565b600060208284031215611897578081fd5b813560ff8116811461146d578182fd5b600081518084526118bf816020860160208601611fdf565b601f01601f19169290920160200192915050565b600082516118e5818460208701611fdf565b9190910192915050565b600066697066733a2f2f60c81b82528351611911816007850160208801611fdf565b602f60f81b6007918401918201528351611932816008840160208801611fdf565b64173539b7b760d91b60089290910191820152600d01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611997908301846118a7565b9695505050505050565b901515815260200190565b60006020825261146d60208301846118a7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601590820152740daeae6e840c8cae0dee6d2e840e6dedaca40cae8d605b1b604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526022908201527f6d6178207065722077616c6c6574207265616368656420666f72207072656d696040820152611b9d60f21b606082015260800190565b60208082526003908201526204531360ec1b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526003908201526245313160e81b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526003908201526245313560e81b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526003908201526222989960e91b604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611f6b57611f6b61208c565b500190565b600060ff821660ff84168060ff03821115611f8d57611f8d61208c565b019392505050565b600082611fa457611fa46120a2565b500490565b6000816000190483118215151615611fc357611fc361208c565b500290565b600082821015611fda57611fda61208c565b500390565b60005b83811015611ffa578181015183820152602001611fe2565b83811115610d865750506000910152565b60008161201a5761201a61208c565b506000190190565b60028104600182168061203657607f821691505b6020821081141561205757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120715761207161208c565b5060010190565b600082612087576120876120a2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461091757600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572a2646970667358221220ed1316b4eb2d21cf1fa1a3a5b52771458ddd14271a366be0a56814d49fc2532464736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000003a98000000000000000000000000000000000000000000000000000000000000001447756e7261636b2e66696e616e636520416d6d6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000034746410000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Gunrack.finance Ammo
Arg [1] : symbol (string): GFA
Arg [2] : maxNftSupply (uint256): 15000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000003a98
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 47756e7261636b2e66696e616e636520416d6d6f000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4746410000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

39045:2642:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40127:98;;;;;;;;;;-1:-1:-1;40127:98:0;;;;;:::i;:::-;;:::i;:::-;;10158:150;;;;;;;;;;-1:-1:-1;10158:150:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23869:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26755:221::-;;;;;;;;;;-1:-1:-1;26755:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26285:404::-;;;;;;;;;;-1:-1:-1;26285:404:0;;;;;:::i;:::-;;:::i;25702:268::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27645:305::-;;;;;;;;;;-1:-1:-1;27645:305:0;;;;;:::i;:::-;;:::i;20456:40::-;;;;;;;;;;-1:-1:-1;20456:40:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39852:106::-;;;;;;;;;;-1:-1:-1;39852:106:0;;;;;:::i;:::-;;:::i;20731:22::-;;;;;;;;;;;;;:::i;28021:151::-;;;;;;;;;;-1:-1:-1;28021:151:0;;;;;:::i;:::-;;:::i;20553:29::-;;;;;;;;;;;;;:::i;39625:35::-;;;;;;;;;;;;;:::i;40233:99::-;;;;;;;;;;-1:-1:-1;40233:99:0;;;;;:::i;:::-;;:::i;23510:292::-;;;;;;;;;;-1:-1:-1;23510:292:0;;;;;:::i;:::-;;:::i;25279:97::-;;;;;;;;;;;;;:::i;40534:1144::-;;;;;;:::i;:::-;;:::i;20591:31::-;;;;;;;;;;;;;:::i;39533:42::-;;;;;;;;;;-1:-1:-1;39533:42:0;;;;;:::i;:::-;;:::i;23188:260::-;;;;;;;;;;-1:-1:-1;23188:260:0;;;;;:::i;:::-;;:::i;39490:30::-;;;;;;;;;;;;;:::i;39088:42::-;;;;;;;;;;;;;:::i;39208:44::-;;;;;;;;;;;;;:::i;37768:87::-;;;;;;;;;;;;;:::i;40407:85::-;;;;;;;;;;;;;:::i;24038:104::-;;;;;;;;;;;;;:::i;39156:43::-;;;;;;;;;;;;;:::i;27048:295::-;;;;;;;;;;-1:-1:-1;27048:295:0;;;;;:::i;:::-;;:::i;28243:285::-;;;;;;;;;;-1:-1:-1;28243:285:0;;;;;:::i;:::-;;:::i;24213:827::-;;;;;;;;;;-1:-1:-1;24213:827:0;;;;;:::i;:::-;;:::i;20503:43::-;;;;;;;;;;-1:-1:-1;20503:43:0;;;;;:::i;:::-;;:::i;39966:153::-;;;:::i;27414:164::-;;;;;;;;;;-1:-1:-1;27414:164:0;;;;;:::i;:::-;;:::i;39259:42::-;;;;;;;;;;;;;:::i;39584:32::-;;;;;;;;;;;;;:::i;39669:28::-;;;;;;;;;;;;;:::i;40127:98::-;37999:12;:10;:12::i;:::-;-1:-1:-1;;;;;37988:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37988:23:0;;37980:68;;;;-1:-1:-1;;;37980:68:0;;;;;;;:::i;:::-;;;;;;;;;40198:8:::1;:19:::0;40127:98::o;10158:150::-;-1:-1:-1;;;;;;10267:33:0;;10243:4;10267:33;;;:20;:33;;;;;;;;10158:150;;;;:::o;23869:100::-;23923:13;23956:5;23949:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23869:100;:::o;26755:221::-;26831:7;26859:16;26867:7;26859;:16::i;:::-;26851:73;;;;-1:-1:-1;;;26851:73:0;;;;;;;:::i;:::-;-1:-1:-1;26944:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26944:24:0;;26755:221::o;26285:404::-;26366:13;26382:23;26397:7;26382:14;:23::i;:::-;26366:39;;26430:5;-1:-1:-1;;;;;26424:11:0;:2;-1:-1:-1;;;;;26424:11:0;;;26416:57;;;;-1:-1:-1;;;26416:57:0;;;;;;;:::i;:::-;26510:5;-1:-1:-1;;;;;26494:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26494:21:0;;:69;;;;26519:44;26543:5;26550:12;:10;:12::i;26519:44::-;26486:161;;;;-1:-1:-1;;;26486:161:0;;;;;;;:::i;:::-;26660:21;26669:2;26673:7;26660:8;:21::i;:::-;26285:404;;;:::o;25702:268::-;25950:12;;25702:268;:::o;27645:305::-;27806:41;27825:12;:10;:12::i;:::-;27839:7;27806:18;:41::i;:::-;27798:103;;;;-1:-1:-1;;;27798:103:0;;;;;;;:::i;:::-;27914:28;27924:4;27930:2;27934:7;27914:9;:28::i;20456:40::-;;;;;;;;;;;;;;;:::o;39852:106::-;37999:12;:10;:12::i;:::-;-1:-1:-1;;;;;37988:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37988:23:0;;37980:68;;;;-1:-1:-1;;;37980:68:0;;;;;;;:::i;:::-;39914:36:::1;::::0;39922:10:::1;::::0;39914:36;::::1;;;::::0;39943:6;;39914:36:::1;::::0;;;39943:6;39922:10;39914:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;39852:106:::0;:::o;20731:22::-;;;;:::o;28021:151::-;28125:39;28142:4;28148:2;28152:7;28125:39;;;;;;;;;;;;:16;:39::i;20553:29::-;;;;;;:::o;39625:35::-;;;;:::o;40233:99::-;37999:12;:10;:12::i;:::-;-1:-1:-1;;;;;37988:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37988:23:0;;37980:68;;;;-1:-1:-1;;;37980:68:0;;;;;;;:::i;:::-;40304:20:::1;40316:7;40304:11;:20::i;:::-;40233:99:::0;:::o;23510:292::-;23582:7;23710:1;23700:7;:11;23692:65;;;;-1:-1:-1;;;23692:65:0;;;;;;;:::i;:::-;-1:-1:-1;23775:19:0;;;;:10;:19;;;;;;-1:-1:-1;;;;;23775:19:0;;23510:292::o;25279:97::-;25327:13;25360:8;25353:15;;;;;:::i;40534:1144::-;40599:14;40616:13;:11;:13::i;:::-;40599:30;;39197:2;40648:14;:32;;;;40640:48;;;;-1:-1:-1;;;40640:48:0;;;;;;;:::i;:::-;40736:7;;40708:23;;;;:6;:23;:::i;:::-;40707:36;;40699:52;;;;-1:-1:-1;;;40699:52:0;;;;;;;:::i;:::-;40770:12;;;;40762:28;;;;-1:-1:-1;;;40762:28:0;;;;;;;:::i;:::-;40820:10;40810:21;;;;:9;:21;;;;;;39250:2;;40810:38;;40834:14;;40810:21;;:38;:::i;:::-;40809:59;;;;40801:106;;;;-1:-1:-1;;;40801:106:0;;;;;;;:::i;:::-;39297:4;40924:6;:21;40920:503;;41001:9;40982:14;40971:25;;:8;;:25;;;;:::i;:::-;40970:40;;40962:56;;;;-1:-1:-1;;;40962:56:0;;;;;;;:::i;:::-;40920:503;;;41074:20;41088:6;39297:4;41074:20;:::i;:::-;41055:14;:40;;;41051:361;;41156:14;41145:25;;:8;;:25;;;;:::i;:::-;41130:11;;:41;;;;:::i;:::-;41116:11;:55;41051:361;;;41265:8;;41278:9;;41240:20;41254:6;39297:4;41240:20;:::i;:::-;41222:39;;;;;;:::i;:::-;41221:52;;;;:::i;:::-;41220:67;;41212:83;;;;-1:-1:-1;;;41212:83:0;;;;;;;:::i;:::-;41387:8;;41362:20;41376:6;39297:4;41362:20;:::i;:::-;41344:39;;;;;;:::i;:::-;41343:52;;;;:::i;:::-;41328:11;;:68;;;;:::i;:::-;41314:11;:82;41051:361;41469:10;41459:21;;;;:9;:21;;;;;;:38;;41483:14;;41459:21;;:38;:::i;:::-;41445:10;41435:21;;;;:9;:21;;;;;:62;;-1:-1:-1;;41435:62:0;;;;;;;;;;;;-1:-1:-1;41510:161:0;41534:14;41529:19;;:1;:19;41510:161;;41583:7;;41574:6;:16;41570:90;;;41611:33;41621:10;41633;41642:1;41633:6;:10;:::i;:::-;41611:9;:33::i;:::-;41550:3;;;;:::i;:::-;;;;41510:161;;20591:31;;;;:::o;39533:42::-;;;;;;;;;;;;;;;:::o;23188:260::-;23260:7;-1:-1:-1;;;;;23288:19:0;;23280:74;;;;-1:-1:-1;;;23280:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23421:19:0;;;;;:12;:19;;;;;;;23188:260::o;39490:30::-;;;;:::o;39088:42::-;;;;:::o;39208:44::-;39250:2;39208:44;:::o;37768:87::-;37814:7;37841:6;-1:-1:-1;;;;;37841:6:0;37768:87;:::o;40407:85::-;37999:12;:10;:12::i;:::-;-1:-1:-1;;;;;37988:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37988:23:0;;37980:68;;;;-1:-1:-1;;;37980:68:0;;;;;;;:::i;:::-;40472:12:::1;::::0;;-1:-1:-1;;40456:28:0;::::1;40472:12;::::0;;::::1;40471:13;40456:28;::::0;;40407:85::o;24038:104::-;24094:13;24127:7;24120:14;;;;;:::i;39156:43::-;39197:2;39156:43;:::o;27048:295::-;27163:12;:10;:12::i;:::-;-1:-1:-1;;;;;27151:24:0;:8;-1:-1:-1;;;;;27151:24:0;;;27143:62;;;;-1:-1:-1;;;27143:62:0;;;;;;;:::i;:::-;27263:8;27218:18;:32;27237:12;:10;:12::i;:::-;-1:-1:-1;;;;;27218:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;27218:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;27218:53:0;;;;;;;;;;;27302:12;:10;:12::i;:::-;-1:-1:-1;;;;;27287:48:0;;27326:8;27287:48;;;;;;:::i;:::-;;;;;;;;27048:295;;:::o;28243:285::-;28375:41;28394:12;:10;:12::i;:::-;28408:7;28375:18;:41::i;:::-;28367:103;;;;-1:-1:-1;;;28367:103:0;;;;;;;:::i;:::-;28481:39;28495:4;28501:2;28505:7;28514:5;28481:13;:39::i;:::-;28243:285;;;;:::o;24213:827::-;24286:13;24320:16;24328:7;24320;:16::i;:::-;24312:76;;;;-1:-1:-1;;;24312:76:0;;;;;;;:::i;:::-;24459:18;24480:9;:7;:9::i;:::-;24459:30;;24992:4;25003:18;:7;:16;:18::i;:::-;24964:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24950:82;;;24213:827;;;:::o;20503:43::-;;;;;;;;;;;;;;;:::o;39966:153::-;40040:1;40028:9;:13;40020:47;;;;-1:-1:-1;;;40020:47:0;;;;;;;:::i;:::-;40102:9;40090;;:21;;;;:::i;:::-;40078:9;:33;39966:153::o;27414:164::-;-1:-1:-1;;;;;27535:25:0;;;27511:4;27535:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27414:164::o;39259:42::-;39297:4;39259:42;:::o;39584:32::-;;;;;;:::o;39669:28::-;;;;:::o;659:115::-;755:10;659:115;:::o;29995:167::-;30060:4;30134:20;;;:11;:20;;;;;;;;;29995:167::o;35760:192::-;35835:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35835:29:0;-1:-1:-1;;;;;35835:29:0;;;;;;;;:24;;35889:23;35835:24;35889:14;:23::i;:::-;-1:-1:-1;;;;;35880:46:0;;;;;;;;;;;35760:192;;:::o;30329:355::-;30422:4;30447:16;30455:7;30447;:16::i;:::-;30439:73;;;;-1:-1:-1;;;30439:73:0;;;;;;;:::i;:::-;30523:13;30539:23;30554:7;30539:14;:23::i;:::-;30523:39;;30592:5;-1:-1:-1;;;;;30581:16:0;:7;-1:-1:-1;;;;;30581:16:0;;:51;;;;30625:7;-1:-1:-1;;;;;30601:31:0;:20;30613:7;30601:11;:20::i;:::-;-1:-1:-1;;;;;30601:31:0;;30581:51;:94;;;;30636:39;30660:5;30667:7;30636:23;:39::i;:::-;30573:103;30329:355;-1:-1:-1;;;;30329:355:0:o;33202:565::-;33327:4;-1:-1:-1;;;;;33300:31:0;:23;33315:7;33300:14;:23::i;:::-;-1:-1:-1;;;;;33300:31:0;;33292:85;;;;-1:-1:-1;;;33292:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33414:16:0;;33406:65;;;;-1:-1:-1;;;33406:65:0;;;;;;;:::i;:::-;33484:39;33505:4;33511:2;33515:7;33484:20;:39::i;:::-;33588:29;33605:1;33609:7;33588:8;:29::i;:::-;-1:-1:-1;;;;;33630:18:0;;;;;;:12;:18;;;;;:20;;;;;;:::i;:::-;;;;-1:-1:-1;;33661:19:0;;;;:10;:19;;;;;;;;:24;;-1:-1:-1;;;;;;33661:24:0;-1:-1:-1;;;;;33661:24:0;;;;;;;;33696:16;;:12;:16;;;;;:18;;;;;;:::i;:::-;;;;;;33751:7;33747:2;-1:-1:-1;;;;;33732:27:0;33741:4;-1:-1:-1;;;;;33732:27:0;;;;;;;;;;;33202:565;;;:::o;34372:100::-;34445:19;;;;:8;;:19;;;;;:::i;31027:110::-;31103:26;31113:2;31117:7;31103:26;;;;;;;;;;;;:9;:26::i;29410:272::-;29524:28;29534:4;29540:2;29544:7;29524:9;:28::i;:::-;29571:48;29594:4;29600:2;29604:7;29613:5;29571:22;:48::i;:::-;29563:111;;;;-1:-1:-1;;;29563:111:0;;;;;;;:::i;17257:723::-;17313:13;17534:10;17530:53;;-1:-1:-1;17561:10:0;;;;;;;;;;;;-1:-1:-1;;;17561:10:0;;;;;;17530:53;17608:5;17593:12;17649:78;17656:9;;17649:78;;17682:8;;;;:::i;:::-;;-1:-1:-1;17705:10:0;;-1:-1:-1;17713:2:0;17705:10;;:::i;:::-;;;17649:78;;;17737:19;17769:6;17759:17;;;;;;-1:-1:-1;;;17759:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17759:17:0;;17737:39;;17787:154;17794:10;;17787:154;;17821:11;17831:1;17821:11;;:::i;:::-;;-1:-1:-1;17890:10:0;17898:2;17890:5;:10;:::i;:::-;17877:24;;:2;:24;:::i;:::-;17864:39;;17847:6;17854;17847:14;;;;;;-1:-1:-1;;;17847:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17847:56:0;;;;;;;;-1:-1:-1;17918:11:0;17927:2;17918:11;;:::i;:::-;;;17787:154;;31364:250;31460:18;31466:2;31470:7;31460:5;:18::i;:::-;31497:54;31528:1;31532:2;31536:7;31545:5;31497:22;:54::i;:::-;31489:117;;;;-1:-1:-1;;;31489:117:0;;;;;;;:::i;35037:604::-;35158:4;35185:15;:2;-1:-1:-1;;;;;35185:13:0;;:15::i;:::-;35180:60;;-1:-1:-1;35224:4:0;35217:11;;35180:60;35250:23;35276:252;-1:-1:-1;;;35389:12:0;:10;:12::i;:::-;35416:4;35435:7;35457:5;35292:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;35292:181:0;;;;;;;-1:-1:-1;;;;;35292:181:0;;;;;;;;;;;35276:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35276:15:0;;;:252;:15;:252::i;:::-;35250:278;;35539:13;35566:10;35555:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35606:26:0;-1:-1:-1;;;35606:26:0;;-1:-1:-1;;;35037:604:0;;;;;;:::o;32146:496::-;-1:-1:-1;;;;;32226:16:0;;32218:61;;;;-1:-1:-1;;;32218:61:0;;;;;;;:::i;:::-;32299:16;32307:7;32299;:16::i;:::-;32298:17;32290:58;;;;-1:-1:-1;;;32290:58:0;;;;;;;:::i;:::-;32361:45;32390:1;32394:2;32398:7;32361:20;:45::i;:::-;32419:19;;;;:10;:19;;;;;;;;:24;;-1:-1:-1;;;;;;32419:24:0;-1:-1:-1;;;;;32419:24:0;;;;;;;;32454:11;:20;;;;;:27;;-1:-1:-1;;32454:27:0;-1:-1:-1;32454:27:0;;;;;;32513:16;;;:12;:16;;;;;;;:20;;;:::i;:::-;-1:-1:-1;;;;;32494:16:0;;;;;;:12;:16;;;;;:39;32559:12;;:16;;32574:1;32559:16;:::i;:::-;32544:12;:31;32601:33;;32626:7;;-1:-1:-1;;;;;32601:33:0;;;32618:1;;32601:33;;32618:1;;32601:33;32146:496;;:::o;11687:422::-;12054:20;12093:8;;;11687:422::o;14609:195::-;14712:12;14744:52;14766:6;14774:4;14780:1;14783:12;14744:21;:52::i;:::-;14737:59;;14609:195;;;;;;:::o;15661:530::-;15788:12;15846:5;15821:21;:30;;15813:81;;;;-1:-1:-1;;;15813:81:0;;;;;;;:::i;:::-;15913:18;15924:6;15913:10;:18::i;:::-;15905:60;;;;-1:-1:-1;;;15905:60:0;;;;;;;:::i;:::-;16039:12;16053:23;16080:6;-1:-1:-1;;;;;16080:11:0;16100:5;16108:4;16080:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16038:75;;;;16131:52;16149:7;16158:10;16170:12;16131:17;:52::i;:::-;16124:59;15661:530;-1:-1:-1;;;;;;;15661:530:0:o;16201:742::-;16316:12;16345:7;16341:595;;;-1:-1:-1;16376:10:0;16369:17;;16341:595;16490:17;;:21;16486:439;;16753:10;16747:17;16814:15;16801:10;16797:2;16793:19;16786:44;16701:148;16896:12;16889:20;;-1:-1:-1;;;16889:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:289::-;;4307:2;4295:9;4286:7;4282:23;4278:32;4275:2;;;4328:6;4320;4313:22;4275:2;4372:9;4359:23;4422:4;4415:5;4411:16;4404:5;4401:27;4391:2;;4447:6;4439;4432:22;4491:259;;4572:5;4566:12;4599:6;4594:3;4587:19;4615:63;4671:6;4664:4;4659:3;4655:14;4648:4;4641:5;4637:16;4615:63;:::i;:::-;4732:2;4711:15;-1:-1:-1;;4707:29:1;4698:39;;;;4739:4;4694:50;;4542:208;-1:-1:-1;;4542:208:1:o;4755:274::-;;4922:6;4916:13;4938:53;4984:6;4979:3;4972:4;4964:6;4960:17;4938:53;:::i;:::-;5007:16;;;;;4892:137;-1:-1:-1;;4892:137:1:o;5034:909::-;;-1:-1:-1;;;5541:3:1;5534:22;5585:6;5579:13;5601:61;5655:6;5651:1;5646:3;5642:11;5635:4;5627:6;5623:17;5601:61;:::i;:::-;-1:-1:-1;;;5721:1:1;5681:16;;;5713:10;;;5706:23;5754:13;;5776:62;5754:13;5825:1;5817:10;;5810:4;5798:17;;5776:62;:::i;:::-;-1:-1:-1;;;5898:1:1;5857:17;;;;5890:10;;;5883:27;5934:2;5926:11;;5524:419;-1:-1:-1;;;;5524:419:1:o;5948:203::-;-1:-1:-1;;;;;6112:32:1;;;;6094:51;;6082:2;6067:18;;6049:102::o;6156:506::-;-1:-1:-1;;;;;6441:15:1;;;6423:34;;6493:15;;6488:2;6473:18;;6466:43;6540:2;6525:18;;6518:34;;;6588:3;6583:2;6568:18;;6561:31;;;6156:506;;6609:47;;6636:19;;6628:6;6609:47;:::i;:::-;6601:55;6375:287;-1:-1:-1;;;;;;6375:287:1:o;6667:187::-;6832:14;;6825:22;6807:41;;6795:2;6780:18;;6762:92::o;6859:221::-;;7008:2;6997:9;6990:21;7028:46;7070:2;7059:9;7055:18;7047:6;7028:46;:::i;7085:414::-;7287:2;7269:21;;;7326:2;7306:18;;;7299:30;7365:34;7360:2;7345:18;;7338:62;-1:-1:-1;;;7431:2:1;7416:18;;7409:48;7489:3;7474:19;;7259:240::o;7504:345::-;7706:2;7688:21;;;7745:2;7725:18;;;7718:30;-1:-1:-1;;;7779:2:1;7764:18;;7757:51;7840:2;7825:18;;7678:171::o;7854:352::-;8056:2;8038:21;;;8095:2;8075:18;;;8068:30;8134;8129:2;8114:18;;8107:58;8197:2;8182:18;;8028:178::o;8211:400::-;8413:2;8395:21;;;8452:2;8432:18;;;8425:30;8491:34;8486:2;8471:18;;8464:62;-1:-1:-1;;;8557:2:1;8542:18;;8535:34;8601:3;8586:19;;8385:226::o;8616:349::-;8818:2;8800:21;;;8857:2;8837:18;;;8830:30;8896:27;8891:2;8876:18;;8869:55;8956:2;8941:18;;8790:175::o;8970:402::-;9172:2;9154:21;;;9211:2;9191:18;;;9184:30;9250:34;9245:2;9230:18;;9223:62;-1:-1:-1;;;9316:2:1;9301:18;;9294:36;9362:3;9347:19;;9144:228::o;9377:408::-;9579:2;9561:21;;;9618:2;9598:18;;;9591:30;9657:34;9652:2;9637:18;;9630:62;-1:-1:-1;;;9723:2:1;9708:18;;9701:42;9775:3;9760:19;;9551:234::o;9790:398::-;9992:2;9974:21;;;10031:2;10011:18;;;10004:30;10070:34;10065:2;10050:18;;10043:62;-1:-1:-1;;;10136:2:1;10121:18;;10114:32;10178:3;10163:19;;9964:224::o;10193:326::-;10395:2;10377:21;;;10434:1;10414:18;;;10407:29;-1:-1:-1;;;10467:2:1;10452:18;;10445:33;10510:2;10495:18;;10367:152::o;10524:420::-;10726:2;10708:21;;;10765:2;10745:18;;;10738:30;10804:34;10799:2;10784:18;;10777:62;10875:26;10870:2;10855:18;;10848:54;10934:3;10919:19;;10698:246::o;10949:406::-;11151:2;11133:21;;;11190:2;11170:18;;;11163:30;11229:34;11224:2;11209:18;;11202:62;-1:-1:-1;;;11295:2:1;11280:18;;11273:40;11345:3;11330:19;;11123:232::o;11360:405::-;11562:2;11544:21;;;11601:2;11581:18;;;11574:30;11640:34;11635:2;11620:18;;11613:62;-1:-1:-1;;;11706:2:1;11691:18;;11684:39;11755:3;11740:19;;11534:231::o;11770:356::-;11972:2;11954:21;;;11991:18;;;11984:30;12050:34;12045:2;12030:18;;12023:62;12117:2;12102:18;;11944:182::o;12131:326::-;12333:2;12315:21;;;12372:1;12352:18;;;12345:29;-1:-1:-1;;;12405:2:1;12390:18;;12383:33;12448:2;12433:18;;12305:152::o;12462:408::-;12664:2;12646:21;;;12703:2;12683:18;;;12676:30;12742:34;12737:2;12722:18;;12715:62;-1:-1:-1;;;12808:2:1;12793:18;;12786:42;12860:3;12845:19;;12636:234::o;12875:356::-;13077:2;13059:21;;;13096:18;;;13089:30;13155:34;13150:2;13135:18;;13128:62;13222:2;13207:18;;13049:182::o;13236:405::-;13438:2;13420:21;;;13477:2;13457:18;;;13450:30;13516:34;13511:2;13496:18;;13489:62;-1:-1:-1;;;13582:2:1;13567:18;;13560:39;13631:3;13616:19;;13410:231::o;13646:411::-;13848:2;13830:21;;;13887:2;13867:18;;;13860:30;13926:34;13921:2;13906:18;;13899:62;-1:-1:-1;;;13992:2:1;13977:18;;13970:45;14047:3;14032:19;;13820:237::o;14062:326::-;14264:2;14246:21;;;14303:1;14283:18;;;14276:29;-1:-1:-1;;;14336:2:1;14321:18;;14314:33;14379:2;14364:18;;14236:152::o;14393:397::-;14595:2;14577:21;;;14634:2;14614:18;;;14607:30;14673:34;14668:2;14653:18;;14646:62;-1:-1:-1;;;14739:2:1;14724:18;;14717:31;14780:3;14765:19;;14567:223::o;14795:413::-;14997:2;14979:21;;;15036:2;15016:18;;;15009:30;15075:34;15070:2;15055:18;;15048:62;-1:-1:-1;;;15141:2:1;15126:18;;15119:47;15198:3;15183:19;;14969:239::o;15213:353::-;15415:2;15397:21;;;15454:2;15434:18;;;15427:30;15493:31;15488:2;15473:18;;15466:59;15557:2;15542:18;;15387:179::o;15571:326::-;15773:2;15755:21;;;15812:1;15792:18;;;15785:29;-1:-1:-1;;;15845:2:1;15830:18;;15823:33;15888:2;15873:18;;15745:152::o;15902:177::-;16048:25;;;16036:2;16021:18;;16003:76::o;16084:184::-;16256:4;16244:17;;;;16226:36;;16214:2;16199:18;;16181:87::o;16273:128::-;;16344:1;16340:6;16337:1;16334:13;16331:2;;;16350:18;;:::i;:::-;-1:-1:-1;16386:9:1;;16321:80::o;16406:204::-;;16480:4;16477:1;16473:12;16512:4;16509:1;16505:12;16547:3;16541:4;16537:14;16532:3;16529:23;16526:2;;;16555:18;;:::i;:::-;16591:13;;16452:158;-1:-1:-1;;;16452:158:1:o;16615:120::-;;16681:1;16671:2;;16686:18;;:::i;:::-;-1:-1:-1;16720:9:1;;16661:74::o;16740:168::-;;16846:1;16842;16838:6;16834:14;16831:1;16828:21;16823:1;16816:9;16809:17;16805:45;16802:2;;;16853:18;;:::i;:::-;-1:-1:-1;16893:9:1;;16792:116::o;16913:125::-;;16981:1;16978;16975:8;16972:2;;;16986:18;;:::i;:::-;-1:-1:-1;17023:9:1;;16962:76::o;17043:258::-;17115:1;17125:113;17139:6;17136:1;17133:13;17125:113;;;17215:11;;;17209:18;17196:11;;;17189:39;17161:2;17154:10;17125:113;;;17256:6;17253:1;17250:13;17247:2;;;-1:-1:-1;;17291:1:1;17273:16;;17266:27;17096:205::o;17306:136::-;;17373:5;17363:2;;17382:18;;:::i;:::-;-1:-1:-1;;;17418:18:1;;17353:89::o;17447:380::-;17532:1;17522:12;;17579:1;17569:12;;;17590:2;;17644:4;17636:6;17632:17;17622:27;;17590:2;17697;17689:6;17686:14;17666:18;17663:38;17660:2;;;17743:10;17738:3;17734:20;17731:1;17724:31;17778:4;17775:1;17768:15;17806:4;17803:1;17796:15;17660:2;;17502:325;;;:::o;17832:135::-;;-1:-1:-1;;17892:17:1;;17889:2;;;17912:18;;:::i;:::-;-1:-1:-1;17959:1:1;17948:13;;17879:88::o;17972:112::-;;18030:1;18020:2;;18035:18;;:::i;:::-;-1:-1:-1;18069:9:1;;18010:74::o;18089:127::-;18150:10;18145:3;18141:20;18138:1;18131:31;18181:4;18178:1;18171:15;18205:4;18202:1;18195:15;18221:127;18282:10;18277:3;18273:20;18270:1;18263:31;18313:4;18310:1;18303:15;18337:4;18334:1;18327:15;18353:127;18414:10;18409:3;18405:20;18402:1;18395:31;18445:4;18442:1;18435:15;18469:4;18466:1;18459:15;18485:133;-1:-1:-1;;;;;;18561:32:1;;18551:43;;18541:2;;18608:1;18605;18598:12

Swarm Source

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