ETH Price: $2,607.86 (+1.27%)
Gas: 4.59 Gwei

Token

Tiny Ghost Genesis (TINYGHOST)
 

Overview

Max Total Supply

666 TINYGHOST

Holders

361

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
xdotscott.eth
Balance
14 TINYGHOST
0xd26c639cc3e088310b3ce03a1446ec6dd87555da
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Next Gen NFT Platform.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TinyGhostGenesis

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 666 runs

Other Settings:
default evmVersion, MIT license
File 1 of 21 : TinyGhostGenesis.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

//-----------------------------------------------------------------------------
// geneticchain.io - NextGen Generative NFT Platform
//-----------------------------------------------------------------------------
 /*\_____________________________________________________________   .¿yy¿.   __
 MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM```````/MMM\\\\\  \\$$$$$$S/  .
 MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM``   `/  yyyy    ` _____J$$$^^^^/%#//
 MMMMMMMMMMMMMMMMMMMYYYMMM````      `\/  .¿yü  /  $ùpüüü%%% | ``|//|` __
 MMMMMYYYYMMMMMMM/`     `| ___.¿yüy¿.  .d$$$$  /  $$$$SSSSM |   | ||  MMNNNNNNM
 M/``      ``\/`  .¿ù%%/.  |.d$$$$$$$b.$$$*°^  /  o$$$  __  |   | ||  MMMMMMMMM
 M   .¿yy¿.     .dX$$$$$$7.|$$$$"^"$$$$$$o`  /MM  o$$$  MM  |   | ||  MMYYYYYYM
   \\$$$$$$S/  .S$$o"^"4$$$$$$$` _ `SSSSS\        ____  MM  |___|_||  MM  ____
  J$$$^^^^/%#//oSSS`    YSSSSSS  /  pyyyüüü%%%XXXÙ$$$$  MM  pyyyyyyy, `` ,$$$o
 .$$$` ___     pyyyyyyyyyyyy//+  /  $$$$$$SSSSSSSÙM$$$. `` .S&&T$T$$$byyd$$$$\
 \$$7  ``     //o$$SSXMMSSSS  |  /  $$/&&X  _  ___ %$$$byyd$$$X\$`/S$$$$$$$S\
 o$$l   .\\YS$$X>$X  _  ___|  |  /  $$/%$$b.,.d$$$\`7$$$$$$$$7`.$   `"***"`  __
 o$$l  __  7$$$X>$$b.,.d$$$\  |  /  $$.`7$$$$$$$$%`  `*+SX+*|_\\$  /.     ..\MM
 o$$L  MM  !$$$$\$$$$$$$$$%|__|  /  $$// `*+XX*\'`  `____           ` `/MMMMMMM
 /$$X, `` ,S$$$$\ `*+XX*\'`____  /  %SXX .      .,   NERV   ___.¿yüy¿.   /MMMMM
  7$$$byyd$$$>$X\  .,,_    $$$$  `    ___ .y%%ü¿.  _______  $.d$$$$$$$S.  `MMMM
  `/S$$$$$$$\\$J`.\\$$$ :  $\`.¿yüy¿. `\\  $$$$$$S.//XXSSo  $$$$$"^"$$$$.  /MMM
 y   `"**"`"Xo$7J$$$$$\    $.d$$$$$$$b.    ^``/$$$$.`$$$$o  $$$$\ _ 'SSSo  /MMM
 M/.__   .,\Y$$$\\$$O` _/  $d$$$*°\ pyyyüüü%%%W $$$o.$$$$/  S$$$. `  S$To   MMM
 MMMM`  \$P*$$X+ b$$l  MM  $$$$` _  $$$$$$SSSSM $$$X.$T&&X  o$$$. `  S$To   MMM
 MMMX`  $<.\X\` -X$$l  MM  $$$$  /  $$/&&X      X$$$/$/X$$dyS$$>. `  S$X%/  `MM
 MMMM/   `"`  . -$$$l  MM  yyyy  /  $$/%$$b.__.d$$$$/$.'7$$$$$$$. `  %SXXX.  MM
 MMMMM//   ./M  .<$$S, `` ,S$$>  /  $$.`7$$$$$$$$$$$/S//_'*+%%XX\ `._       /MM
 MMMMMMMMMMMMM\  /$$$$byyd$$$$\  /  $$// `*+XX+*XXXX      ,.      .\MMMMMMMMMMM
 GENETIC/MMMMM\.  /$$$$$$$$$$\|  /  %SXX  ,_  .      .\MMMMMMMMMMMMMMMMMMMMMMMM
 CHAIN/MMMMMMMM/__  `*+YY+*`_\|  /_______//MMMMMMMMMMMMMMMMMMMMMMMMMMM/-/-/-\*/
//-----------------------------------------------------------------------------
// Genetic Chain: TinyGhost
//-----------------------------------------------------------------------------
// Author: papaver (@tronicdreams)
//-----------------------------------------------------------------------------

import "./GeneticChain721.sol";

//------------------------------------------------------------------------------
// GeneticChainMetadata
//------------------------------------------------------------------------------

/**
 * @title TinyGhostGenesis
 * GeneticChain - Project #8 - Rainbow7
 */
contract TinyGhostGenesis is GeneticChain721
{

    //-------------------------------------------------------------------------
    // fields
    //-------------------------------------------------------------------------

    string private _baseUri;

    string public tokenIpfsHash;

    //-------------------------------------------------------------------------
    // ctor
    //-------------------------------------------------------------------------

    constructor(
        string memory baseUri_,
        string memory ipfsHash_,
        uint256[3] memory tokenMax_,
        address proxyRegistryAddress)
        GeneticChain721(
          tokenMax_,
          proxyRegistryAddress)
    {
        _baseUri      = baseUri_;
        tokenIpfsHash = ipfsHash_;
    }

    //-------------------------------------------------------------------------
    // accessors
    //-------------------------------------------------------------------------

    function setTokenIpfsHash(string memory hash)
        public
        onlyOwner
    {
        if (bytes(hash).length == 0) {
            delete tokenIpfsHash;
        } else {
            tokenIpfsHash = hash;
        }
    }

    //-------------------------------------------------------------------------

    function setBaseTokenURI(string memory baseUri)
        public
        onlyOwner
    {
        _baseUri = baseUri;
    }

    //-------------------------------------------------------------------------
    // ERC721Metadata
    //-------------------------------------------------------------------------

    function baseTokenURI()
        public
        view
        returns (string memory)
    {
        return _baseUri;
    }

    //-------------------------------------------------------------------------

    /**
     * @dev Returns uri of a token.  Not guarenteed token exists.
     */
    function tokenURI(uint256 tokenId)
        override
        public
        view
        returns (string memory)
    {
        return bytes(tokenIpfsHash).length == 0
            ? string(abi.encodePacked(
                baseTokenURI(), "/", Strings.toString(tokenId)))
            : string(abi.encodePacked(
                baseTokenURI(),
                    "/", tokenIpfsHash,
                    "/", Strings.toString(tokenId)));
    }

}

File 2 of 21 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        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;
    }
}

File 3 of 21 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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 4 of 21 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 5 of 21 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 6 of 21 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 7 of 21 : Address.sol
// SPDX-License-Identifier: MIT

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

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

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(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 8 of 21 : 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 meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 9 of 21 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 10 of 21 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
        } else if (signature.length == 64) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                let vs := mload(add(signature, 0x40))
                r := mload(add(signature, 0x20))
                s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
                v := add(shr(255, vs), 27)
            }
        } else {
            revert("ECDSA: invalid signature length");
        }

        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value");
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 11 of 21 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 12 of 21 : IERC165.sol
// SPDX-License-Identifier: MIT

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 13 of 21 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 14 of 21 : GeneticChain721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

//------------------------------------------------------------------------------
// geneticchain.io - NextGen Generative NFT Platform
//------------------------------------------------------------------------------
//________________________________________________________________   .¿yy¿.   __
//MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM```````/MMM\\\\\  \\$$$$$$S/  .
//MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM``   `/  yyyy    ` _____J$$$*^^*/%#//
//MMMMMMMMMMMMMMMMMMMYYYMMM````      `\/  .¿yü  /  $ùpüüü%%% | ``|//|` __
//MMMMMYYYYMMMMMMM/`     `| ___.¿yüy¿.  .d$$$$  /  $$$$SSSSM |   | ||  MMNNNNNNM
//M/``      ``\/`  .¿ù%%/.  |.d$$$$$$$b.$$$*°^  /  o$$$  __  |   | ||  MMMMMMMMM
//M   .¿yy¿.     .dX$$$$$$7.|$$$$"^"$$$$$$o`  /MM  o$$$  MM  |   | ||  MMYYYYYYM
//  \\$$$$$$S/  .S$$o"^"4$$$$$$$` _ `SSSSS\        ____  MM  |___|_||  MM  ____
// J$$$*^^*/%#//oSSS`    YSSSSSS  /  pyyyüüü%%%XXXÙ$$$$  MM  pyyyyyyy, `` ,$$$o
//.$$$` ___     pyyyyyyyyyyyy//+  /  $$$$$$SSSSSSSÙM$$$. `` .S&&T$T$$$byyd$$$$\
//\$$7  ``     //o$$SSXMMSSSS  |  /  $$/&&X  _  ___ %$$$byyd$$$X\$`/S$$$$$$$S\
//o$$l   .\\YS$$X>$X  _  ___|  |  /  $$/%$$b.,.d$$$\`7$$$$$$$$7`.$   `"***"`  __
//o$$l  __  7$$$X>$$b.,.d$$$\  |  /  $$.`7$$$$$$$$%`  `*+SX+*|_\\$  /.     ..\MM
//o$$L  MM  !$$$$\$$$$$$$$$%|__|  /  $$// `*+XX*\'`  `____           ` `/MMMMMMM
///$$X, `` ,S$$$$\ `*+XX*\'`____  /  %SXX .      .,   NERV   ___.¿yüy¿.   /MMMMM
// 7$$$byyd$$$>$X\  .,,_    $$$$  `    ___ .y%%ü¿.  _______  $.d$$$$$$$S.  `MMMM
// `/S$$$$$$$\\$J`.\\$$$ :  $\`.¿yüy¿. `\\  $$$$$$S.//XXSSo  $$$$$"^"$$$$.  /MMM
//y   `"**"`"Xo$7J$$$$$\    $.d$$$$$$$b.    ^``/$$$$.`$$$$o  $$$$\ _ 'SSSo  /MMM
//M/.__   .,\Y$$$\\$$O` _/  $d$$$*°\ pyyyüüü%%%W $$$o.$$$$/  S$$$. `  S$To   MMM
//MMMM`  \$P*$$X+ b$$l  MM  $$$$` _  $$$$$$SSSSM $$$X.$T&&X  o$$$. `  S$To   MMM
//MMMX`  $<.\X\` -X$$l  MM  $$$$  /  $$/&&X      X$$$/$/X$$dyS$$>. `  S$X%/  `MM
//MMMM/   `"`  . -$$$l  MM  yyyy  /  $$/%$$b.__.d$$$$/$.'7$$$$$$$. `  %SXXX.  MM
//MMMMM//   ./M  .<$$S, `` ,S$$>  /  $$.`7$$$$$$$$$$$/S//_'*+%%XX\ `._       /MM
//MMMMMMMMMMMMM\  /$$$$byyd$$$$\  /  $$// `*+XX+*XXXX      ,.      .\MMMMMMMMMMM
//GENETIC/MMMMM\.  /$$$$$$$$$$\|  /  %SXX  ,_  .      .\MMMMMMMMMMMMMMMMMMMMMMMM
//CHAIN/MMMMMMMM/__  `*+YY+*`_\|  /_______//MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//------------------------------------------------------------------------------
// Genetic Chain: GeneticChain721
//------------------------------------------------------------------------------
// Author: papaver (@tronicdreams)
//------------------------------------------------------------------------------

import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/utils/cryptography/ECDSA.sol";
import "openzeppelin-solidity/contracts/utils/Strings.sol";

import "./common/meta-transactions/ContentMixin.sol";
import "./common/meta-transactions/NativeMetaTransaction.sol";
import "./geneticchain/ERC721Sequential.sol";
import "./geneticchain/ERC721SeqEnumerable.sol";
import "./libraries/State.sol";

//------------------------------------------------------------------------------
// helper contracts
//------------------------------------------------------------------------------

contract OwnableDelegateProxy {}

//------------------------------------------------------------------------------

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

//------------------------------------------------------------------------------
// GeneticChain721
//------------------------------------------------------------------------------

/**
 * @title GeneticChain721
 *
 * ERC721 contract with various features:
 *  - low-gas implmentation
 *  - off-chain whitelist verify (secure minting)
 *  - dynamic token allocation
 *  - artist allocation
 *  - gallery allocation
 *  - low-gas generative token hash
 *  - protected controlled burns
 *  - opensea proxy setup
 *  - simple funds withdrawl
 */
abstract contract GeneticChain721 is
    ContextMixin,
    ERC721SeqEnumerable,
    NativeMetaTransaction,
    Ownable
{
    using ECDSA for bytes32;
    using State for State.Data;

    //-------------------------------------------------------------------------
    // fields
    //-------------------------------------------------------------------------

    // erc721 metadata
    string constant private __name   = "Tiny Ghost Genesis";
    string constant private __symbol = "TINYGHOST";

    // metadata
    uint256 constant public projectId  = 9;
    string constant public artist      = "Reis O'Brien";
    string constant public description = "Collection of 666 unique Tiny Ghost NFTs.";

    // mint price
    uint256 constant public memberPrice = .05 ether;
    uint256 constant public publicPrice = .05 ether;

    // verification address
    address constant private _signer = 0xf0f137b3f4b6862d5ef02C4dAC6264DDbC110528;

    // token limits
    uint256 public immutable publicMax;
    uint256 public immutable artistMax;
    uint256 public immutable galleryMax;

    // opensea proxy
    address private immutable _proxyRegistryAddress;

    // contract state
    State.Data private _state;

    // roles
    address private _burnerAddress;
    address private _artistAddress = 0x00f630965f882298219edBB1B96e0409EC6C8698;

    // track mint count per address
    mapping (address => uint256) private _mints;

    //-------------------------------------------------------------------------
    // modifiers
    //-------------------------------------------------------------------------

    modifier validTokenId(uint256 tokenId) {
        require(_exists(tokenId), "invalid token");
        _;
    }

    //-------------------------------------------------------------------------

    modifier approvedOrOwner(address operator, uint256 tokenId) {
        require(_isApprovedOrOwner(operator, tokenId));
        _;
    }

    //-------------------------------------------------------------------------

    modifier isArtist() {
        require(_msgSender() == _artistAddress, "caller not artist");
        _;
    }

    //-------------------------------------------------------------------------

    modifier isBurner() {
        require(_msgSender() == _burnerAddress, "caller not burner");
        _;
    }

    //-------------------------------------------------------------------------

    modifier notLocked() {
        require(_state._locked == 0, "contract is locked");
        _;
    }

    //-------------------------------------------------------------------------
    // ctor
    //-------------------------------------------------------------------------

    constructor(
        uint256[3] memory tokenMax_,
        address proxyRegistryAddress)
        ERC721Sequential(__name, __symbol)
    {
        publicMax             = tokenMax_[0];
        artistMax             = tokenMax_[1];
        galleryMax            = tokenMax_[2];
        _proxyRegistryAddress = proxyRegistryAddress;
        _initializeEIP712(__name);

        // start tokens at 1 index
        _owners.push();
    }

    //-------------------------------------------------------------------------
    // accessors
    //-------------------------------------------------------------------------

    /**
     * Set artist address.
     */
    function setArtistAddress(address artistAddress)
        public onlyOwner
    {
        _artistAddress = artistAddress;
    }

    //-------------------------------------------------------------------------

    /**
     * Set burner address.
     */
    function setBurnerAddress(address burner)
        public onlyOwner
    {
        _burnerAddress = burner;
    }

    //-------------------------------------------------------------------------

    /**
     * Enable public minting.
     */
    function enablePublicMint()
        public onlyOwner
    {
        _state.setLive(1);
    }

    //-------------------------------------------------------------------------

    /**
     * Check if public minting is live.
     */
    function publicLive()
        public view returns (bool)
    {
        return _state._live == 1;
    }

    //-------------------------------------------------------------------------

    /**
     * Lock contract.  Disable public/member minting. Disallow on-chain
     *  code/library updates.
     */
    function lockContract()
        public onlyOwner
    {
        _state.setLocked(1);
    }

    //-------------------------------------------------------------------------

    /**
     * Check if contract is locked.
     */
    function isLocked()
        public view returns (bool)
    {
        return _state._locked == 1;
    }

    //-------------------------------------------------------------------------

    /**
     * Get total gallery has minted.
     */
    function gallryMinted()
        public view returns (uint256)
    {
        return _state._gallery;
    }

    //-------------------------------------------------------------------------

    /**
     * Get total artist has minted.
     */
    function artistMinted()
        public view returns (uint256)
    {
        return _state._artist;
    }

    //-------------------------------------------------------------------------

    /**
     * Get total public has minted.
     */
    function publicMinted()
        public view returns (uint256)
    {
        return _state._public;
    }

    //-------------------------------------------------------------------------
    // security
    //-------------------------------------------------------------------------

    /**
     * Validate hash contains input data.
     */
    function validateHash(
            bytes32 msgHash,
            address sender,
            uint256 allocation,
            uint256 count)
        private pure returns(bool)
    {
        return ECDSA.toEthSignedMessageHash(
            keccak256(abi.encodePacked(sender, allocation, count))) == msgHash;
    }

    //-------------------------------------------------------------------------

    /**
     * Validate message was signed by signer.
     */
    function validateSigner(bytes32 msgHash, bytes memory signature)
        private pure returns(bool)
    {
        return msgHash.recover(signature) == _signer;
    }

    //-------------------------------------------------------------------------
    // minting
    //-------------------------------------------------------------------------

    /**
     * Allow anyone to mint tokens for the right price.
     */
    function mint(uint256 count)
        payable public notLocked
    {
        require(_state._live == 1, "public mint not live");
        require(publicPrice * count == msg.value, "insufficient funds");
        require(_state._public + count <= publicMax, "exceed public supply");
        _state.addPublic(count);
        for (uint256 i = 0; i < count; ++i) {
            _safeMint(msg.sender);
        }
    }

    //-------------------------------------------------------------------------

    /**
     * Mint count tokens using securely signed message.
     */
    function secureMint(
            bytes32 msgHash,
            bytes calldata signature,
            uint256 allocation,
            uint256 count)
        payable external notLocked
    {
        require(memberPrice * count == msg.value, "insufficient funds");
        require(_state._public + count <= publicMax, "exceed public supply");
        require(_mints[msg.sender] + count <= allocation, "exceed allocation");
        require(validateSigner(msgHash, signature), "invalid signer");
        require(validateHash(msgHash, msg.sender, allocation, count), "invalid hash");
        _state.addPublic(count);
        unchecked {
            _mints[msg.sender] += count;
        }
        for (uint256 i = 0; i < count; ++i) {
            _safeMint(msg.sender);
        }
    }

    //-------------------------------------------------------------------------

    /**
     * @dev Mints a token to an address.
     * @param _to address of the future owner of the token
     */
    function galleryMintTo(address _to, uint256 count)
        public onlyOwner
    {
        require(_state._gallery + count <= galleryMax, "exceed gallery supply");
        _state.addGallery(count);
        for (uint256 i = 0; i < count; ++i) {
            _safeMint(_to);
        }
    }

    //-------------------------------------------------------------------------

    /**
     * @dev Mints a token to an address.
     * @param _to address of the future owner of the token
     */
    function artistMintTo(address _to, uint256 count)
        public isArtist
    {
        require(_state._artist + count <= artistMax, "exceed artist supply");
        _state.addArtist(count);
        for (uint256 i = 0; i < count; ++i) {
            _safeMint(_to);
        }
    }

    //-------------------------------------------------------------------------

    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     */
    function burn(uint256 tokenId)
        public isBurner
    {
        _burn(tokenId);
    }

    //-------------------------------------------------------------------------
    // money
    //-------------------------------------------------------------------------

    /**
     * Pull money out of this contract.
     */
    function withdraw(address to, uint256 amount)
        public onlyOwner
    {
        require(amount > 0, "amount empty");
        require(amount <= address(this).balance, "amount exceeds balance");
        require(to != address(0), "address null");
        payable(to).transfer(amount);
    }

    //-------------------------------------------------------------------------
    // approval
    //-------------------------------------------------------------------------

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts
     *  to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override public view returns (bool)
    {
        // whitelist OpenSea proxy contract for easy trading
        ProxyRegistry proxyRegistry = ProxyRegistry(_proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    //-------------------------------------------------------------------------

    /**
     * This is used instead of msg.sender as transactions won't be sent by
     *  the original token owner, but by OpenSea.
     */
    function _msgSender()
        override internal view returns (address sender)
    {
        return ContextMixin.msgSender();
    }

}

File 15 of 21 : ContentMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 16 of 21 : EIP712Base.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {Initializable} from "./Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

File 17 of 21 : Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

File 18 of 21 : NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {SafeMath} from  "openzeppelin-solidity/contracts/utils/math/SafeMath.sol";
import {EIP712Base} from "./EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

File 19 of 21 : ERC721SeqEnumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

//------------------------------------------------------------------------------
// geneticchain.io - NextGen Generative NFT Platform
//------------------------------------------------------------------------------
//    _______                   __   __        ______ __          __
//   |     __|-----.-----.-----|  |_|__|----. |      |  |--.---.-|__|-----.
//   |    |  |  -__|     |  -__|   _|  |  __| |   ---|     |  _  |  |     |
//   |_______|_____|__|__|_____|____|__|____| |______|__|__|___._|__|__|__|
//
//------------------------------------------------------------------------------
// Genetic Chain: ERC721SeqEnumerable
//------------------------------------------------------------------------------
// Author: papaver (@tronicdreams)
//------------------------------------------------------------------------------

import "openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "./ERC721Sequential.sol";

/**
 * @dev This is a no storage implemntation of the optional extension {ERC721}
 * defined in the EIP that adds enumerability of all the token ids in the
 * contract as well as all token ids owned by each account. These functions
 * are mainly for convienence and should NEVER be called from inside a
 * contract on the chain.
 */
abstract contract ERC721SeqEnumerable is ERC721Sequential, IERC721Enumerable {

    address constant zero = address(0);

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(
        address owner,
        uint256 index
    ) public view virtual override returns (uint256 tokenId) {
        uint256 length = _owners.length;

        unchecked {
            for (; tokenId < length; ++tokenId) {
                if (_owners[tokenId] == owner) {
                    if (index-- == 0) {
                        break;
                    }
                }
            }
        }

        require(tokenId < length, "ERC721Enumerable: owner index out of bounds");
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256 supply) {
        unchecked {
            uint256 length = _owners.length;
            for (uint256 tokenId = 0; tokenId < length; ++tokenId) {
                if (_owners[tokenId] != zero) {
                    ++supply;
                }
            }
        }
    }

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

        unchecked {
            for (; tokenId < length; ++tokenId) {
                if (_owners[tokenId] != zero) {
                    if (index-- == 0) {
                        break;
                    }
                }
            }
        }

        require(tokenId < length, "ERC721Enumerable: global index out of bounds");
    }

    /**
     * @dev Get all tokens owned by owner.
     */
    function ownerTokens(
        address owner
    ) public view returns (uint256[] memory) {
        uint256 tokenCount = ERC721Sequential.balanceOf(owner);
        require(tokenCount != 0, "ERC721Enumerable: owner owns no tokens");

        uint256 length = _owners.length;
        uint256[] memory tokenIds = new uint256[](tokenCount);
        unchecked {
            uint256 i = 0;
            for (uint256 tokenId = 0; tokenId < length; ++tokenId) {
                if (_owners[tokenId] == owner) {
                    tokenIds[i++] = tokenId;
                }
            }
        }

        return tokenIds;
    }

}

File 20 of 21 : ERC721Sequential.sol
// SPDX-License-Identifier: MIT
// Forked from: OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

//------------------------------------------------------------------------------
// geneticchain.io - NextGen Generative NFT Platform
//------------------------------------------------------------------------------
//    _______                   __   __        ______ __          __
//   |     __|-----.-----.-----|  |_|__|----. |      |  |--.---.-|__|-----.
//   |    |  |  -__|     |  -__|   _|  |  __| |   ---|     |  _  |  |     |
//   |_______|_____|__|__|_____|____|__|____| |______|__|__|___._|__|__|__|
//
//------------------------------------------------------------------------------
// Genetic Chain: ERC721Sequential
//------------------------------------------------------------------------------
// Author: papaver (@tronicdreams)
//------------------------------------------------------------------------------

import "openzeppelin-solidity/contracts/token/ERC721/IERC721.sol";
import "openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol";
import "openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "openzeppelin-solidity/contracts/utils/Address.sol";
import "openzeppelin-solidity/contracts/utils/Context.sol";
import "openzeppelin-solidity/contracts/utils/Strings.sol";
import "openzeppelin-solidity/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721
 *  [ERC721] Non-Fungible Token Standard
 *
 *  This implmentation of ERC721 assumes sequencial token creation to provide
 *  efficient minting.  Storage for balance are no longer required reducing
 *  gas significantly.  This comes at the price of calculating the balance by
 *  iterating through the entire array.  The balanceOf function should NOT
 *  be used inside a contract.  Gas usage will explode as the size of tokens
 *  increase.  A convineiance function is provided which returns the entire
 *  list of owners whose index maps tokenIds to thier owners.  Zero addresses
 *  indicate burned tokens.
 *
 */
contract ERC721Sequential is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    address[] _owners;

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

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

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

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

        unchecked {
            uint256 length = _owners.length;
            for (uint256 i = 0; i < length; ++i) {
                if (_owners[i] == owner) {
                    ++balance;
                }
            }
        }

    }

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

    /**
     * @dev Returns entire list of owner enumerated by thier tokenIds.  Burned tokens
     * will have a zero address.
     */
    function owners() public view returns (address[] memory) {
        address[] memory owners_ = _owners;
        return owners_;
    }

    /**
     * @dev Return largest tokenId minted.
     */
    function maxTokenId() public view returns (uint256) {
        return _owners.length - 1;
    }

    /**
     * @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 baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

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

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

        require(
            _msgSender() == owner || 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 {
        _setApprovalForAll(_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 tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    /**
     * @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 = ERC721Sequential.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `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) internal virtual returns (uint256 tokenId) {
        tokenId = _safeMint(to, "");
    }

    /**
     * @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,
        bytes memory _data
    ) internal virtual returns (uint256 tokenId) {
        tokenId = _mint(to);
        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 _mint(address to) internal virtual returns (uint256 tokenId) {
        require(to != address(0), "ERC721: mint to the zero address");
        tokenId = _owners.length;

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

        _owners.push(to);

        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.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721Sequential.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @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(ERC721Sequential.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @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` and `to` are never both zero.
     *
     * 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 21 of 21 : State.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

//------------------------------------------------------------------------------
// geneticchain.io - NextGen Generative NFT Platform
//------------------------------------------------------------------------------
//    _______                   __   __        ______ __          __
//   |     __|-----.-----.-----|  |_|__|----. |      |  |--.---.-|__|-----.
//   |    |  |  -__|     |  -__|   _|  |  __| |   ---|     |  _  |  |     |
//   |_______|_____|__|__|_____|____|__|____| |______|__|__|___._|__|__|__|
//
//------------------------------------------------------------------------------
// Genetic Chain: library/State
//------------------------------------------------------------------------------
// Author: papaver (@tronicdreams)
//------------------------------------------------------------------------------

/**
 * @dev Handle contract state efficiently as possbile.
 */
library State {

    struct Data {
        uint16  _gallery;
        uint16  _artist;
        uint16  _public;
        uint16  _live;
        uint16  _locked;
        uint176 _unused;
    }

    function addGallery(Data storage data, uint256 count)
        internal
     {
        unchecked {
            data._gallery += uint16(count);
        }
    }

    function addArtist(Data storage data, uint256 count)
        internal
     {
        unchecked {
            data._artist += uint16(count);
        }
    }

    function addPublic(Data storage data, uint256 count)
        internal
     {
        unchecked {
            data._public += uint16(count);
        }
    }

    function setLive(Data storage data, uint256 enable)
        internal
     {
        data._live = uint16(enable);
    }

    function setLocked(Data storage data, uint256 enable)
        internal
    {
        data._locked = uint16(enable);
    }

    function set(Data storage data, uint256 _gallery, uint256 _artist, uint256 _public)
        internal
    {
        data._gallery = uint16(_gallery);
        data._artist  = uint16(_artist);
        data._public  = uint16(_public);
    }

}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 666
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseUri_","type":"string"},{"internalType":"string","name":"ipfsHash_","type":"string"},{"internalType":"uint256[3]","name":"tokenMax_","type":"uint256[3]"},{"internalType":"address","name":"proxyRegistryAddress","type":"address"}],"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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"artist","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"artistMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"artistMintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"description","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enablePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"galleryMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"galleryMintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gallryMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"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":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memberPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ownerTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"msgHash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"allocation","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"secureMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"artistAddress","type":"address"}],"name":"setArtistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"burner","type":"address"}],"name":"setBurnerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"hash","type":"string"}],"name":"setTokenIpfsHash","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIpfsHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040526005805460ff19169055600b80546001600160a01b03191672f630965f882298219edbb1b96e0409ec6c86981790553480156200004157600080fd5b50604051620043aa380380620043aa833981016040819052620000649162000525565b604080518082018252601281527154696e792047686f73742047656e6573697360701b6020808301918252835180850190945260098452681512539651d213d4d560ba1b90840152815185938593929091620000c39160009162000359565b508051620000d990600190602084019062000359565b5050506000620000ee620001d860201b60201c565b600880546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350815160805260208083015160a05260408084015160c0526001600160a01b03831660e0528051808201909152601281527154696e792047686f73742047656e6573697360701b918101919091526200019490620001f4565b50506002805460010181556000528351620001b790600d90602087019062000359565b508251620001cd90600e90602086019062000359565b505050505062000632565b6000620001ef6200025860201b620025431760201c565b905090565b60055460ff16156200023d5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b6200024881620002b7565b506005805460ff19166001179055565b600033301415620002b157600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002b49050565b50335b90565b6040518060800160405280604f81526020016200435b604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600655565b8280546200036790620005f5565b90600052602060002090601f0160209004810192826200038b5760008555620003d6565b82601f10620003a657805160ff1916838001178555620003d6565b82800160010185558215620003d6579182015b82811115620003d6578251825591602001919060010190620003b9565b50620003e4929150620003e8565b5090565b5b80821115620003e45760008155600101620003e9565b634e487b7160e01b600052604160045260246000fd5b604051606081016001600160401b03811182821017156200043a576200043a620003ff565b60405290565b604051601f8201601f191681016001600160401b03811182821017156200046b576200046b620003ff565b604052919050565b600082601f8301126200048557600080fd5b81516001600160401b03811115620004a157620004a1620003ff565b6020620004b7601f8301601f1916820162000440565b8281528582848701011115620004cc57600080fd5b60005b83811015620004ec578581018301518282018401528201620004cf565b83811115620004fe5760008385840101525b5095945050505050565b80516001600160a01b03811681146200052057600080fd5b919050565b60008060008060c085870312156200053c57600080fd5b84516001600160401b03808211156200055457600080fd5b620005628883890162000473565b95506020915081870151818111156200057a57600080fd5b6200058889828a0162000473565b9550505086605f8701126200059c57600080fd5b620005a662000415565b8060a0880189811115620005b957600080fd5b604089015b81811015620005d75780518452928401928401620005be565b50819550620005e68162000508565b94505050505092959194509250565b600181811c908216806200060a57607f821691505b602082108114156200062c57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051613cd36200068860003960006121bc0152600081816106e101526112e90152600081816109a30152610ee901526000818161093001528181611a130152611f600152613cd36000f3fe6080604052600436106103555760003560e01c80637284e416116101bb578063b7f751d8116100f7578063e527c6dd11610095578063ef3c66241161006f578063ef3c662414610991578063f2fde38b146109c5578063f3fef3a3146109e5578063f593bd5314610a0557600080fd5b8063e527c6dd1461091e578063e985e9c514610952578063ed329fa81461097257600080fd5b8063c87b56dd116100d1578063c87b56dd146108c1578063d547cfb7146108e1578063d62f3b1c146108f6578063d81bc6631461090b57600080fd5b8063b7f751d81461084e578063b88d4fde14610874578063bba7723e1461089457600080fd5b8063a0712d6811610164578063a4e2d6341161013e578063a4e2d634146107e8578063a4f4f8af1461080b578063a945bf801461067f578063affe39c11461082c57600080fd5b8063a0712d6814610795578063a22cb465146107a8578063a22e4faa146107c857600080fd5b806391ba317a1161019557806391ba317a1461074b57806395d89b41146107605780639df806d61461077557600080fd5b80637284e41614610703578063753868e3146107185780638da5cb5b1461072d57600080fd5b80633408e470116102955780634f6ccce711610233578063636e746b1161020d578063636e746b1461067f57806370a082311461069a578063715018a6146106ba57806371dedace146106cf57600080fd5b80634f6ccce71461062a5780635cdf532f1461064a5780636352211e1461065f57600080fd5b806342966c681161026f57806342966c681461058157806343bc1612146105a157806344be774f146105ea5780634dcc60af1461060a57600080fd5b80633408e470146105395780633fafa1271461054c57806342842e0e1461056157600080fd5b806314d7d5171161030257806323b872dd116102dc57806323b872dd146104a35780632d0335ab146104c35780632f745c59146104f957806330176e131461051957600080fd5b806314d7d5171461044b57806318160ddd1461046b57806320379ee51461048e57600080fd5b8063095ea7b311610333578063095ea7b3146103e95780630c53c51c1461040b5780630f7e59701461041e57600080fd5b806301ffc9a71461035a57806306fdde031461038f578063081812fc146103b1575b600080fd5b34801561036657600080fd5b5061037a610375366004613450565b610a1e565b60405190151581526020015b60405180910390f35b34801561039b57600080fd5b506103a4610a49565b60405161038691906134c5565b3480156103bd57600080fd5b506103d16103cc3660046134d8565b610adb565b6040516001600160a01b039091168152602001610386565b3480156103f557600080fd5b50610409610404366004613506565b610b68565b005b6103a46104193660046135de565b610c90565b34801561042a57600080fd5b506103a4604051806040016040528060018152602001603160f81b81525081565b34801561045757600080fd5b50610409610466366004613506565b610e7a565b34801561047757600080fd5b50610480610fb3565b604051908152602001610386565b34801561049a57600080fd5b50600654610480565b3480156104af57600080fd5b506104096104be36600461365c565b61100f565b3480156104cf57600080fd5b506104806104de36600461369d565b6001600160a01b031660009081526007602052604090205490565b34801561050557600080fd5b50610480610514366004613506565b611091565b34801561052557600080fd5b506104096105343660046136ba565b61116e565b34801561054557600080fd5b5046610480565b34801561055857600080fd5b50610480600981565b34801561056d57600080fd5b5061040961057c36600461365c565b6111ec565b34801561058d57600080fd5b5061040961059c3660046134d8565b611207565b3480156105ad57600080fd5b506103a46040518060400160405280600c81526020017f52656973204f27427269656e000000000000000000000000000000000000000081525081565b3480156105f657600080fd5b50610409610605366004613506565b61127d565b34801561061657600080fd5b506104096106253660046136ba565b6113a2565b34801561063657600080fd5b506104806106453660046134d8565b61142e565b34801561065657600080fd5b506103a461150a565b34801561066b57600080fd5b506103d161067a3660046134d8565b611598565b34801561068b57600080fd5b5061048066b1a2bc2ec5000081565b3480156106a657600080fd5b506104806106b536600461369d565b611632565b3480156106c657600080fd5b5061040961170c565b3480156106db57600080fd5b506104807f000000000000000000000000000000000000000000000000000000000000000081565b34801561070f57600080fd5b506103a46117bd565b34801561072457600080fd5b506104096117d9565b34801561073957600080fd5b506008546001600160a01b03166103d1565b34801561075757600080fd5b5061048061185b565b34801561076c57600080fd5b506103a4611872565b34801561078157600080fd5b5061040961079036600461369d565b611881565b6104096107a33660046134d8565b61190a565b3480156107b457600080fd5b506104096107c3366004613703565b611ae3565b3480156107d457600080fd5b506104096107e336600461369d565b611af5565b3480156107f457600080fd5b50600954600160401b900461ffff1660011461037a565b34801561081757600080fd5b50600954640100000000900461ffff16610480565b34801561083857600080fd5b50610841611b7e565b6040516103869190613741565b34801561085a57600080fd5b506009546601000000000000900461ffff1660011461037a565b34801561088057600080fd5b5061040961088f36600461378e565b611be4565b3480156108a057600080fd5b506108b46108af36600461369d565b611c6d565b60405161038691906137fa565b3480156108cd57600080fd5b506103a46108dc3660046134d8565b611d9f565b3480156108ed57600080fd5b506103a4611e25565b34801561090257600080fd5b50610409611e34565b610409610919366004613832565b611eb7565b34801561092a57600080fd5b506104807f000000000000000000000000000000000000000000000000000000000000000081565b34801561095e57600080fd5b5061037a61096d3660046138bd565b61219a565b34801561097e57600080fd5b5060095462010000900461ffff16610480565b34801561099d57600080fd5b506104807f000000000000000000000000000000000000000000000000000000000000000081565b3480156109d157600080fd5b506104096109e036600461369d565b612288565b3480156109f157600080fd5b50610409610a00366004613506565b6123b0565b348015610a1157600080fd5b5060095461ffff16610480565b60006001600160e01b0319821663780e9d6360e01b1480610a435750610a43826125a0565b92915050565b606060008054610a58906138eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a84906138eb565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae6826125f0565b610b4c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610b7382611598565b9050806001600160a01b0316836001600160a01b03161415610be15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b43565b806001600160a01b0316610bf361263a565b6001600160a01b03161480610c0f5750610c0f8161096d61263a565b610c815760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b43565b610c8b8383612644565b505050565b60408051606081810183526001600160a01b03881660008181526007602090815290859020548452830152918101869052610cce87828787876126b2565b610d245760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610b43565b6001600160a01b038716600090815260076020526040902054610d489060016127a2565b6001600160a01b0388166000908152600760205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610d9890899033908a90613920565b60405180910390a1600080306001600160a01b0316888a604051602001610dc0929190613968565b60408051601f1981840301815290829052610dda9161399f565b6000604051808303816000865af19150503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b509150915081610e6e5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610b43565b98975050505050505050565b600b546001600160a01b0316610e8e61263a565b6001600160a01b031614610ee45760405162461bcd60e51b815260206004820152601160248201527f63616c6c6572206e6f74206172746973740000000000000000000000000000006044820152606401610b43565b6009547f000000000000000000000000000000000000000000000000000000000000000090610f1e90839062010000900461ffff166139d1565b1115610f6c5760405162461bcd60e51b815260206004820152601460248201527f6578636565642061727469737420737570706c790000000000000000000000006044820152606401610b43565b6009805461ffff62010000808304821685019091160263ffff00001990911617905560005b81811015610c8b57610fa2836127b5565b50610fac816139e9565b9050610f91565b600254600090815b8181101561100a5760006001600160a01b031660028281548110610fe157610fe1613a04565b6000918252602090912001546001600160a01b031614611002578260010192505b600101610fbb565b505090565b61102061101a61263a565b826127d0565b6110865760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610b43565b610c8b838383612892565b6002546000905b808210156110f257836001600160a01b0316600283815481106110bd576110bd613a04565b6000918252602090912001546001600160a01b031614156110e7576000198301926110e7576110f2565b816001019150611098565b8082106111675760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b43565b5092915050565b61117661263a565b6001600160a01b03166111916008546001600160a01b031690565b6001600160a01b0316146111d55760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b80516111e890600d90602084019061336b565b5050565b610c8b83838360405180602001604052806000815250611be4565b600a546001600160a01b031661121b61263a565b6001600160a01b0316146112715760405162461bcd60e51b815260206004820152601160248201527f63616c6c6572206e6f74206275726e65720000000000000000000000000000006044820152606401610b43565b61127a816129e8565b50565b61128561263a565b6001600160a01b03166112a06008546001600160a01b031690565b6001600160a01b0316146112e45760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b6009547f00000000000000000000000000000000000000000000000000000000000000009061131890839061ffff166139d1565b11156113665760405162461bcd60e51b815260206004820152601560248201527f6578636565642067616c6c65727920737570706c7900000000000000000000006044820152606401610b43565b6009805461ffff80821684011661ffff1990911617905560005b81811015610c8b57611391836127b5565b5061139b816139e9565b9050611380565b6113aa61263a565b6001600160a01b03166113c56008546001600160a01b031690565b6001600160a01b0316146114095760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b805161141b5761127a600e60006133ef565b80516111e890600e90602084019061336b565b6002546000905b8082101561148f5760006001600160a01b03166002838154811061145b5761145b613a04565b6000918252602090912001546001600160a01b031614611484576000198301926114845761148f565b816001019150611435565b8082106115045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b43565b50919050565b600e8054611517906138eb565b80601f0160208091040260200160405190810160405280929190818152602001828054611543906138eb565b80156115905780601f1061156557610100808354040283529160200191611590565b820191906000526020600020905b81548152906001019060200180831161157357829003601f168201915b505050505081565b60006115a3826125f0565b6116015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b43565b60006002838154811061161657611616613a04565b6000918252602090912001546001600160a01b03169392505050565b60006001600160a01b0382166116b05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b43565b60025460005b8181101561170557836001600160a01b0316600282815481106116db576116db613a04565b6000918252602090912001546001600160a01b031614156116fd578260010192505b6001016116b6565b5050919050565b61171461263a565b6001600160a01b031661172f6008546001600160a01b031690565b6001600160a01b0316146117735760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b604051806060016040528060298152602001613c756029913981565b6117e161263a565b6001600160a01b03166117fc6008546001600160a01b031690565b6001600160a01b0316146118405760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b6009805469ffff00000000000000001916600160401b179055565b60025460009061186d90600190613a1a565b905090565b606060018054610a58906138eb565b61188961263a565b6001600160a01b03166118a46008546001600160a01b031690565b6001600160a01b0316146118e85760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600954600160401b900461ffff161561195a5760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81b1bd8dad95960721b6044820152606401610b43565b6009546601000000000000900461ffff166001146119ba5760405162461bcd60e51b815260206004820152601460248201527f7075626c6963206d696e74206e6f74206c6976650000000000000000000000006044820152606401610b43565b346119cc8266b1a2bc2ec50000613a31565b14611a0e5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b43565b6009547f000000000000000000000000000000000000000000000000000000000000000090611a4a908390640100000000900461ffff166139d1565b1115611a985760405162461bcd60e51b815260206004820152601460248201527f657863656564207075626c696320737570706c790000000000000000000000006044820152606401610b43565b6009805461ffff640100000000808304821685019091160265ffff000000001990911617905560005b818110156111e857611ad2336127b5565b50611adc816139e9565b9050611ac1565b6111e8611aee61263a565b8383612a65565b611afd61263a565b6001600160a01b0316611b186008546001600160a01b031690565b6001600160a01b031614611b5c5760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b606060006002805480602002602001604051908101604052809291908181526020018280548015611bd857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611bba575b50939695505050505050565b611bf5611bef61263a565b836127d0565b611c5b5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610b43565b611c6784848484612b34565b50505050565b60606000611c7a83611632565b905080611cd85760405162461bcd60e51b815260206004820152602660248201527f455243373231456e756d657261626c653a206f776e6572206f776e73206e6f20604482015265746f6b656e7360d01b6064820152608401610b43565b60025460008267ffffffffffffffff811115611cf657611cf6613532565b604051908082528060200260200182016040528015611d1f578160200160208202803683370190505b5090506000805b83811015611d9457866001600160a01b031660028281548110611d4b57611d4b613a04565b6000918252602090912001546001600160a01b03161415611d8c5780838380600101945081518110611d7f57611d7f613a04565b6020026020010181815250505b600101611d26565b509095945050505050565b6060600e8054611dae906138eb565b159050611dee57611dbd611e25565b600e611dc884612bb2565b604051602001611dda93929190613a50565b604051602081830303815290604052610a43565b611df6611e25565b611dff83612bb2565b604051602001611e10929190613b2b565b60405160208183030381529060405292915050565b6060600d8054610a58906138eb565b611e3c61263a565b6001600160a01b0316611e576008546001600160a01b031690565b6001600160a01b031614611e9b5760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b6009805467ffff00000000000019166601000000000000179055565b600954600160401b900461ffff1615611f075760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81b1bd8dad95960721b6044820152606401610b43565b34611f198266b1a2bc2ec50000613a31565b14611f5b5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b43565b6009547f000000000000000000000000000000000000000000000000000000000000000090611f97908390640100000000900461ffff166139d1565b1115611fe55760405162461bcd60e51b815260206004820152601460248201527f657863656564207075626c696320737570706c790000000000000000000000006044820152606401610b43565b336000908152600c602052604090205482906120029083906139d1565b11156120505760405162461bcd60e51b815260206004820152601160248201527f65786365656420616c6c6f636174696f6e0000000000000000000000000000006044820152606401610b43565b6120908585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612cc892505050565b6120dc5760405162461bcd60e51b815260206004820152600e60248201527f696e76616c6964207369676e65720000000000000000000000000000000000006044820152606401610b43565b6120e885338484612cfa565b6121345760405162461bcd60e51b815260206004820152600c60248201527f696e76616c6964206861736800000000000000000000000000000000000000006044820152606401610b43565b6009805461ffff640100000000808304821685019091160265ffff0000000019909116179055336000908152600c602052604081208054830190555b8181101561219257612181336127b5565b5061218b816139e9565b9050612170565b505050505050565b60405163c455279160e01b81526001600160a01b0383811660048301526000917f000000000000000000000000000000000000000000000000000000000000000091848116919083169063c45527919060240160206040518083038186803b15801561220557600080fd5b505afa158015612219573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061223d9190613b67565b6001600160a01b03161415612256576001915050610a43565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b61229061263a565b6001600160a01b03166122ab6008546001600160a01b031690565b6001600160a01b0316146122ef5760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b6001600160a01b0381166123545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b43565b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6123b861263a565b6001600160a01b03166123d36008546001600160a01b031690565b6001600160a01b0316146124175760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b600081116124675760405162461bcd60e51b815260206004820152600c60248201527f616d6f756e7420656d70747900000000000000000000000000000000000000006044820152606401610b43565b478111156124b75760405162461bcd60e51b815260206004820152601660248201527f616d6f756e7420657863656564732062616c616e6365000000000000000000006044820152606401610b43565b6001600160a01b03821661250d5760405162461bcd60e51b815260206004820152600c60248201527f61646472657373206e756c6c00000000000000000000000000000000000000006044820152606401610b43565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610c8b573d6000803e3d6000fd5b60003330141561259a57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061259d9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b14806125d157506001600160e01b03198216635b5e139f60e01b145b80610a4357506301ffc9a760e01b6001600160e01b0319831614610a43565b60025460009082108015610a43575060006001600160a01b03166002838154811061261d5761261d613a04565b6000918252602090912001546001600160a01b0316141592915050565b600061186d612543565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061267982611598565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166127185760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610b43565b600161272b61272687612d55565b612dd2565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015612779573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006127ae82846139d1565b9392505050565b6000610a438260405180602001604052806000815250612e02565b60006127db826125f0565b61283c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b43565b600061284783611598565b9050806001600160a01b0316846001600160a01b031614806128825750836001600160a01b031661287784610adb565b6001600160a01b0316145b806122805750612280818561219a565b826001600160a01b03166128a582611598565b6001600160a01b03161461290d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b43565b6001600160a01b03821661296f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b43565b61297a600082612644565b816002828154811061298e5761298e613a04565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60006129f382611598565b9050612a00600083612644565b60028281548110612a1357612a13613a04565b6000918252602082200180546001600160a01b03191690556040518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b816001600160a01b0316836001600160a01b03161415612ac75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b43565b6001600160a01b03838116600081815260046020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612b3f848484612892565b612b4b84848484612e83565b611c675760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b43565b606081612bd65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612c005780612bea816139e9565b9150612bf99050600a83613b9a565b9150612bda565b60008167ffffffffffffffff811115612c1b57612c1b613532565b6040519080825280601f01601f191660200182016040528015612c45576020820181803683370190505b5090505b841561228057612c5a600183613a1a565b9150612c67600a86613bae565b612c729060306139d1565b60f81b818381518110612c8757612c87613a04565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612cc1600a86613b9a565b9450612c49565b600073f0f137b3f4b6862d5ef02c4dac6264ddbc110528612ce98484612fdf565b6001600160a01b0316149392505050565b6040516bffffffffffffffffffffffff19606085901b16602082015260348101839052605481018290526000908590612d4b90607401604051602081830303815290604052805190602001206130ae565b1495945050505050565b6000604051806080016040528060438152602001613c126043913980516020918201208351848301516040808701518051908601209051612db5950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612ddd60065490565b60405161190160f01b6020820152602281019190915260428101839052606201612db5565b6000612e0d836130e9565b9050612e1c6000848385612e83565b610a435760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b43565b60006001600160a01b0384163b15612fd757836001600160a01b031663150b7a02612eac61263a565b8786866040518563ffffffff1660e01b8152600401612ece9493929190613bc2565b602060405180830381600087803b158015612ee857600080fd5b505af1925050508015612f18575060408051601f3d908101601f19168201909252612f1591810190613bf4565b60015b612fbd573d808015612f46576040519150601f19603f3d011682016040523d82523d6000602084013e612f4b565b606091505b508051612fb55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b43565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612280565b506001612280565b6000806000808451604114156130095750505060208201516040830151606084015160001a613098565b8451604014156130505750505060408201516020830151907f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81169060ff1c601b01613098565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b43565b6130a4868285856131c2565b9695505050505050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01612db5565b60006001600160a01b0382166131415760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b43565b506002546002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561323f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b43565b8360ff16601b148061325457508360ff16601c145b6132ab5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b43565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa1580156132ff573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166133625760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b43565b95945050505050565b828054613377906138eb565b90600052602060002090601f01602090048101928261339957600085556133df565b82601f106133b257805160ff19168380011785556133df565b828001600101855582156133df579182015b828111156133df5782518255916020019190600101906133c4565b506133eb929150613425565b5090565b5080546133fb906138eb565b6000825580601f1061340b575050565b601f01602090049060005260206000209081019061127a91905b5b808211156133eb5760008155600101613426565b6001600160e01b03198116811461127a57600080fd5b60006020828403121561346257600080fd5b81356127ae8161343a565b60005b83811015613488578181015183820152602001613470565b83811115611c675750506000910152565b600081518084526134b181602086016020860161346d565b601f01601f19169290920160200192915050565b6020815260006127ae6020830184613499565b6000602082840312156134ea57600080fd5b5035919050565b6001600160a01b038116811461127a57600080fd5b6000806040838503121561351957600080fd5b8235613524816134f1565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561356357613563613532565b604051601f8501601f19908116603f0116810190828211818310171561358b5761358b613532565b816040528093508581528686860111156135a457600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126135cf57600080fd5b6127ae83833560208501613548565b600080600080600060a086880312156135f657600080fd5b8535613601816134f1565b9450602086013567ffffffffffffffff81111561361d57600080fd5b613629888289016135be565b9450506040860135925060608601359150608086013560ff8116811461364e57600080fd5b809150509295509295909350565b60008060006060848603121561367157600080fd5b833561367c816134f1565b9250602084013561368c816134f1565b929592945050506040919091013590565b6000602082840312156136af57600080fd5b81356127ae816134f1565b6000602082840312156136cc57600080fd5b813567ffffffffffffffff8111156136e357600080fd5b8201601f810184136136f457600080fd5b61228084823560208401613548565b6000806040838503121561371657600080fd5b8235613721816134f1565b91506020830135801515811461373657600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156137825783516001600160a01b03168352928401929184019160010161375d565b50909695505050505050565b600080600080608085870312156137a457600080fd5b84356137af816134f1565b935060208501356137bf816134f1565b925060408501359150606085013567ffffffffffffffff8111156137e257600080fd5b6137ee878288016135be565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b8181101561378257835183529284019291840191600101613816565b60008060008060006080868803121561384a57600080fd5b85359450602086013567ffffffffffffffff8082111561386957600080fd5b818801915088601f83011261387d57600080fd5b81358181111561388c57600080fd5b89602082850101111561389e57600080fd5b9699602092909201985095966040810135965060600135945092505050565b600080604083850312156138d057600080fd5b82356138db816134f1565b91506020830135613736816134f1565b600181811c908216806138ff57607f821691505b6020821081141561150457634e487b7160e01b600052602260045260246000fd5b60006001600160a01b038086168352808516602084015250606060408301526133626060830184613499565b6000815161395e81856020860161346d565b9290920192915050565b6000835161397a81846020880161346d565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600082516139b181846020870161346d565b9190910192915050565b634e487b7160e01b600052601160045260246000fd5b600082198211156139e4576139e46139bb565b500190565b60006000198214156139fd576139fd6139bb565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082821015613a2c57613a2c6139bb565b500390565b6000816000190483118215151615613a4b57613a4b6139bb565b500290565b600084516020613a638285838a0161346d565b602f60f81b918401918252855460019060009080831c81841680613a8857607f821691505b858210811415613aa657634e487b7160e01b84526022600452602484fd5b808015613aba5760018114613acf57613b00565b60ff1984168887015282880186019450613b00565b60008c81526020902060005b84811015613af65781548a8201890152908701908801613adb565b5050858389010194505b50505050613b1e613b1882602f60f81b815260010190565b8861394c565b9998505050505050505050565b60008351613b3d81846020880161346d565b602f60f81b9083019081528351613b5b81600184016020880161346d565b01600101949350505050565b600060208284031215613b7957600080fd5b81516127ae816134f1565b634e487b7160e01b600052601260045260246000fd5b600082613ba957613ba9613b84565b500490565b600082613bbd57613bbd613b84565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526130a46080830184613499565b600060208284031215613c0657600080fd5b81516127ae8161343a56fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e6174757265294f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572436f6c6c656374696f6e206f662036363620756e697175652054696e792047686f7374204e4654732ea264697066735822122010957ac37c45e61349d643c33a1e462d84e200b7588a8418b4dae2e7b3958bc664736f6c63430008090033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000005000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f697066732e67656e65746963636861696e2e696f2f6970667300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6569484242766a6154787361624e416e6561644e686a6452326443757433684e346b6177446a623756796f4a000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103555760003560e01c80637284e416116101bb578063b7f751d8116100f7578063e527c6dd11610095578063ef3c66241161006f578063ef3c662414610991578063f2fde38b146109c5578063f3fef3a3146109e5578063f593bd5314610a0557600080fd5b8063e527c6dd1461091e578063e985e9c514610952578063ed329fa81461097257600080fd5b8063c87b56dd116100d1578063c87b56dd146108c1578063d547cfb7146108e1578063d62f3b1c146108f6578063d81bc6631461090b57600080fd5b8063b7f751d81461084e578063b88d4fde14610874578063bba7723e1461089457600080fd5b8063a0712d6811610164578063a4e2d6341161013e578063a4e2d634146107e8578063a4f4f8af1461080b578063a945bf801461067f578063affe39c11461082c57600080fd5b8063a0712d6814610795578063a22cb465146107a8578063a22e4faa146107c857600080fd5b806391ba317a1161019557806391ba317a1461074b57806395d89b41146107605780639df806d61461077557600080fd5b80637284e41614610703578063753868e3146107185780638da5cb5b1461072d57600080fd5b80633408e470116102955780634f6ccce711610233578063636e746b1161020d578063636e746b1461067f57806370a082311461069a578063715018a6146106ba57806371dedace146106cf57600080fd5b80634f6ccce71461062a5780635cdf532f1461064a5780636352211e1461065f57600080fd5b806342966c681161026f57806342966c681461058157806343bc1612146105a157806344be774f146105ea5780634dcc60af1461060a57600080fd5b80633408e470146105395780633fafa1271461054c57806342842e0e1461056157600080fd5b806314d7d5171161030257806323b872dd116102dc57806323b872dd146104a35780632d0335ab146104c35780632f745c59146104f957806330176e131461051957600080fd5b806314d7d5171461044b57806318160ddd1461046b57806320379ee51461048e57600080fd5b8063095ea7b311610333578063095ea7b3146103e95780630c53c51c1461040b5780630f7e59701461041e57600080fd5b806301ffc9a71461035a57806306fdde031461038f578063081812fc146103b1575b600080fd5b34801561036657600080fd5b5061037a610375366004613450565b610a1e565b60405190151581526020015b60405180910390f35b34801561039b57600080fd5b506103a4610a49565b60405161038691906134c5565b3480156103bd57600080fd5b506103d16103cc3660046134d8565b610adb565b6040516001600160a01b039091168152602001610386565b3480156103f557600080fd5b50610409610404366004613506565b610b68565b005b6103a46104193660046135de565b610c90565b34801561042a57600080fd5b506103a4604051806040016040528060018152602001603160f81b81525081565b34801561045757600080fd5b50610409610466366004613506565b610e7a565b34801561047757600080fd5b50610480610fb3565b604051908152602001610386565b34801561049a57600080fd5b50600654610480565b3480156104af57600080fd5b506104096104be36600461365c565b61100f565b3480156104cf57600080fd5b506104806104de36600461369d565b6001600160a01b031660009081526007602052604090205490565b34801561050557600080fd5b50610480610514366004613506565b611091565b34801561052557600080fd5b506104096105343660046136ba565b61116e565b34801561054557600080fd5b5046610480565b34801561055857600080fd5b50610480600981565b34801561056d57600080fd5b5061040961057c36600461365c565b6111ec565b34801561058d57600080fd5b5061040961059c3660046134d8565b611207565b3480156105ad57600080fd5b506103a46040518060400160405280600c81526020017f52656973204f27427269656e000000000000000000000000000000000000000081525081565b3480156105f657600080fd5b50610409610605366004613506565b61127d565b34801561061657600080fd5b506104096106253660046136ba565b6113a2565b34801561063657600080fd5b506104806106453660046134d8565b61142e565b34801561065657600080fd5b506103a461150a565b34801561066b57600080fd5b506103d161067a3660046134d8565b611598565b34801561068b57600080fd5b5061048066b1a2bc2ec5000081565b3480156106a657600080fd5b506104806106b536600461369d565b611632565b3480156106c657600080fd5b5061040961170c565b3480156106db57600080fd5b506104807f000000000000000000000000000000000000000000000000000000000000000581565b34801561070f57600080fd5b506103a46117bd565b34801561072457600080fd5b506104096117d9565b34801561073957600080fd5b506008546001600160a01b03166103d1565b34801561075757600080fd5b5061048061185b565b34801561076c57600080fd5b506103a4611872565b34801561078157600080fd5b5061040961079036600461369d565b611881565b6104096107a33660046134d8565b61190a565b3480156107b457600080fd5b506104096107c3366004613703565b611ae3565b3480156107d457600080fd5b506104096107e336600461369d565b611af5565b3480156107f457600080fd5b50600954600160401b900461ffff1660011461037a565b34801561081757600080fd5b50600954640100000000900461ffff16610480565b34801561083857600080fd5b50610841611b7e565b6040516103869190613741565b34801561085a57600080fd5b506009546601000000000000900461ffff1660011461037a565b34801561088057600080fd5b5061040961088f36600461378e565b611be4565b3480156108a057600080fd5b506108b46108af36600461369d565b611c6d565b60405161038691906137fa565b3480156108cd57600080fd5b506103a46108dc3660046134d8565b611d9f565b3480156108ed57600080fd5b506103a4611e25565b34801561090257600080fd5b50610409611e34565b610409610919366004613832565b611eb7565b34801561092a57600080fd5b506104807f000000000000000000000000000000000000000000000000000000000000029081565b34801561095e57600080fd5b5061037a61096d3660046138bd565b61219a565b34801561097e57600080fd5b5060095462010000900461ffff16610480565b34801561099d57600080fd5b506104807f000000000000000000000000000000000000000000000000000000000000000581565b3480156109d157600080fd5b506104096109e036600461369d565b612288565b3480156109f157600080fd5b50610409610a00366004613506565b6123b0565b348015610a1157600080fd5b5060095461ffff16610480565b60006001600160e01b0319821663780e9d6360e01b1480610a435750610a43826125a0565b92915050565b606060008054610a58906138eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a84906138eb565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae6826125f0565b610b4c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610b7382611598565b9050806001600160a01b0316836001600160a01b03161415610be15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b43565b806001600160a01b0316610bf361263a565b6001600160a01b03161480610c0f5750610c0f8161096d61263a565b610c815760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b43565b610c8b8383612644565b505050565b60408051606081810183526001600160a01b03881660008181526007602090815290859020548452830152918101869052610cce87828787876126b2565b610d245760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610b43565b6001600160a01b038716600090815260076020526040902054610d489060016127a2565b6001600160a01b0388166000908152600760205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610d9890899033908a90613920565b60405180910390a1600080306001600160a01b0316888a604051602001610dc0929190613968565b60408051601f1981840301815290829052610dda9161399f565b6000604051808303816000865af19150503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b509150915081610e6e5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610b43565b98975050505050505050565b600b546001600160a01b0316610e8e61263a565b6001600160a01b031614610ee45760405162461bcd60e51b815260206004820152601160248201527f63616c6c6572206e6f74206172746973740000000000000000000000000000006044820152606401610b43565b6009547f000000000000000000000000000000000000000000000000000000000000000590610f1e90839062010000900461ffff166139d1565b1115610f6c5760405162461bcd60e51b815260206004820152601460248201527f6578636565642061727469737420737570706c790000000000000000000000006044820152606401610b43565b6009805461ffff62010000808304821685019091160263ffff00001990911617905560005b81811015610c8b57610fa2836127b5565b50610fac816139e9565b9050610f91565b600254600090815b8181101561100a5760006001600160a01b031660028281548110610fe157610fe1613a04565b6000918252602090912001546001600160a01b031614611002578260010192505b600101610fbb565b505090565b61102061101a61263a565b826127d0565b6110865760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610b43565b610c8b838383612892565b6002546000905b808210156110f257836001600160a01b0316600283815481106110bd576110bd613a04565b6000918252602090912001546001600160a01b031614156110e7576000198301926110e7576110f2565b816001019150611098565b8082106111675760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b43565b5092915050565b61117661263a565b6001600160a01b03166111916008546001600160a01b031690565b6001600160a01b0316146111d55760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b80516111e890600d90602084019061336b565b5050565b610c8b83838360405180602001604052806000815250611be4565b600a546001600160a01b031661121b61263a565b6001600160a01b0316146112715760405162461bcd60e51b815260206004820152601160248201527f63616c6c6572206e6f74206275726e65720000000000000000000000000000006044820152606401610b43565b61127a816129e8565b50565b61128561263a565b6001600160a01b03166112a06008546001600160a01b031690565b6001600160a01b0316146112e45760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b6009547f00000000000000000000000000000000000000000000000000000000000000059061131890839061ffff166139d1565b11156113665760405162461bcd60e51b815260206004820152601560248201527f6578636565642067616c6c65727920737570706c7900000000000000000000006044820152606401610b43565b6009805461ffff80821684011661ffff1990911617905560005b81811015610c8b57611391836127b5565b5061139b816139e9565b9050611380565b6113aa61263a565b6001600160a01b03166113c56008546001600160a01b031690565b6001600160a01b0316146114095760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b805161141b5761127a600e60006133ef565b80516111e890600e90602084019061336b565b6002546000905b8082101561148f5760006001600160a01b03166002838154811061145b5761145b613a04565b6000918252602090912001546001600160a01b031614611484576000198301926114845761148f565b816001019150611435565b8082106115045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b43565b50919050565b600e8054611517906138eb565b80601f0160208091040260200160405190810160405280929190818152602001828054611543906138eb565b80156115905780601f1061156557610100808354040283529160200191611590565b820191906000526020600020905b81548152906001019060200180831161157357829003601f168201915b505050505081565b60006115a3826125f0565b6116015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b43565b60006002838154811061161657611616613a04565b6000918252602090912001546001600160a01b03169392505050565b60006001600160a01b0382166116b05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b43565b60025460005b8181101561170557836001600160a01b0316600282815481106116db576116db613a04565b6000918252602090912001546001600160a01b031614156116fd578260010192505b6001016116b6565b5050919050565b61171461263a565b6001600160a01b031661172f6008546001600160a01b031690565b6001600160a01b0316146117735760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b604051806060016040528060298152602001613c756029913981565b6117e161263a565b6001600160a01b03166117fc6008546001600160a01b031690565b6001600160a01b0316146118405760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b6009805469ffff00000000000000001916600160401b179055565b60025460009061186d90600190613a1a565b905090565b606060018054610a58906138eb565b61188961263a565b6001600160a01b03166118a46008546001600160a01b031690565b6001600160a01b0316146118e85760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600954600160401b900461ffff161561195a5760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81b1bd8dad95960721b6044820152606401610b43565b6009546601000000000000900461ffff166001146119ba5760405162461bcd60e51b815260206004820152601460248201527f7075626c6963206d696e74206e6f74206c6976650000000000000000000000006044820152606401610b43565b346119cc8266b1a2bc2ec50000613a31565b14611a0e5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b43565b6009547f000000000000000000000000000000000000000000000000000000000000029090611a4a908390640100000000900461ffff166139d1565b1115611a985760405162461bcd60e51b815260206004820152601460248201527f657863656564207075626c696320737570706c790000000000000000000000006044820152606401610b43565b6009805461ffff640100000000808304821685019091160265ffff000000001990911617905560005b818110156111e857611ad2336127b5565b50611adc816139e9565b9050611ac1565b6111e8611aee61263a565b8383612a65565b611afd61263a565b6001600160a01b0316611b186008546001600160a01b031690565b6001600160a01b031614611b5c5760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b606060006002805480602002602001604051908101604052809291908181526020018280548015611bd857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611bba575b50939695505050505050565b611bf5611bef61263a565b836127d0565b611c5b5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610b43565b611c6784848484612b34565b50505050565b60606000611c7a83611632565b905080611cd85760405162461bcd60e51b815260206004820152602660248201527f455243373231456e756d657261626c653a206f776e6572206f776e73206e6f20604482015265746f6b656e7360d01b6064820152608401610b43565b60025460008267ffffffffffffffff811115611cf657611cf6613532565b604051908082528060200260200182016040528015611d1f578160200160208202803683370190505b5090506000805b83811015611d9457866001600160a01b031660028281548110611d4b57611d4b613a04565b6000918252602090912001546001600160a01b03161415611d8c5780838380600101945081518110611d7f57611d7f613a04565b6020026020010181815250505b600101611d26565b509095945050505050565b6060600e8054611dae906138eb565b159050611dee57611dbd611e25565b600e611dc884612bb2565b604051602001611dda93929190613a50565b604051602081830303815290604052610a43565b611df6611e25565b611dff83612bb2565b604051602001611e10929190613b2b565b60405160208183030381529060405292915050565b6060600d8054610a58906138eb565b611e3c61263a565b6001600160a01b0316611e576008546001600160a01b031690565b6001600160a01b031614611e9b5760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b6009805467ffff00000000000019166601000000000000179055565b600954600160401b900461ffff1615611f075760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81b1bd8dad95960721b6044820152606401610b43565b34611f198266b1a2bc2ec50000613a31565b14611f5b5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b43565b6009547f000000000000000000000000000000000000000000000000000000000000029090611f97908390640100000000900461ffff166139d1565b1115611fe55760405162461bcd60e51b815260206004820152601460248201527f657863656564207075626c696320737570706c790000000000000000000000006044820152606401610b43565b336000908152600c602052604090205482906120029083906139d1565b11156120505760405162461bcd60e51b815260206004820152601160248201527f65786365656420616c6c6f636174696f6e0000000000000000000000000000006044820152606401610b43565b6120908585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612cc892505050565b6120dc5760405162461bcd60e51b815260206004820152600e60248201527f696e76616c6964207369676e65720000000000000000000000000000000000006044820152606401610b43565b6120e885338484612cfa565b6121345760405162461bcd60e51b815260206004820152600c60248201527f696e76616c6964206861736800000000000000000000000000000000000000006044820152606401610b43565b6009805461ffff640100000000808304821685019091160265ffff0000000019909116179055336000908152600c602052604081208054830190555b8181101561219257612181336127b5565b5061218b816139e9565b9050612170565b505050505050565b60405163c455279160e01b81526001600160a01b0383811660048301526000917f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c191848116919083169063c45527919060240160206040518083038186803b15801561220557600080fd5b505afa158015612219573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061223d9190613b67565b6001600160a01b03161415612256576001915050610a43565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b61229061263a565b6001600160a01b03166122ab6008546001600160a01b031690565b6001600160a01b0316146122ef5760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b6001600160a01b0381166123545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b43565b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6123b861263a565b6001600160a01b03166123d36008546001600160a01b031690565b6001600160a01b0316146124175760405162461bcd60e51b81526020600482018190526024820152600080516020613c558339815191526044820152606401610b43565b600081116124675760405162461bcd60e51b815260206004820152600c60248201527f616d6f756e7420656d70747900000000000000000000000000000000000000006044820152606401610b43565b478111156124b75760405162461bcd60e51b815260206004820152601660248201527f616d6f756e7420657863656564732062616c616e6365000000000000000000006044820152606401610b43565b6001600160a01b03821661250d5760405162461bcd60e51b815260206004820152600c60248201527f61646472657373206e756c6c00000000000000000000000000000000000000006044820152606401610b43565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610c8b573d6000803e3d6000fd5b60003330141561259a57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061259d9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b14806125d157506001600160e01b03198216635b5e139f60e01b145b80610a4357506301ffc9a760e01b6001600160e01b0319831614610a43565b60025460009082108015610a43575060006001600160a01b03166002838154811061261d5761261d613a04565b6000918252602090912001546001600160a01b0316141592915050565b600061186d612543565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061267982611598565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166127185760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610b43565b600161272b61272687612d55565b612dd2565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015612779573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006127ae82846139d1565b9392505050565b6000610a438260405180602001604052806000815250612e02565b60006127db826125f0565b61283c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b43565b600061284783611598565b9050806001600160a01b0316846001600160a01b031614806128825750836001600160a01b031661287784610adb565b6001600160a01b0316145b806122805750612280818561219a565b826001600160a01b03166128a582611598565b6001600160a01b03161461290d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b43565b6001600160a01b03821661296f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b43565b61297a600082612644565b816002828154811061298e5761298e613a04565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60006129f382611598565b9050612a00600083612644565b60028281548110612a1357612a13613a04565b6000918252602082200180546001600160a01b03191690556040518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b816001600160a01b0316836001600160a01b03161415612ac75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b43565b6001600160a01b03838116600081815260046020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612b3f848484612892565b612b4b84848484612e83565b611c675760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b43565b606081612bd65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612c005780612bea816139e9565b9150612bf99050600a83613b9a565b9150612bda565b60008167ffffffffffffffff811115612c1b57612c1b613532565b6040519080825280601f01601f191660200182016040528015612c45576020820181803683370190505b5090505b841561228057612c5a600183613a1a565b9150612c67600a86613bae565b612c729060306139d1565b60f81b818381518110612c8757612c87613a04565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612cc1600a86613b9a565b9450612c49565b600073f0f137b3f4b6862d5ef02c4dac6264ddbc110528612ce98484612fdf565b6001600160a01b0316149392505050565b6040516bffffffffffffffffffffffff19606085901b16602082015260348101839052605481018290526000908590612d4b90607401604051602081830303815290604052805190602001206130ae565b1495945050505050565b6000604051806080016040528060438152602001613c126043913980516020918201208351848301516040808701518051908601209051612db5950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612ddd60065490565b60405161190160f01b6020820152602281019190915260428101839052606201612db5565b6000612e0d836130e9565b9050612e1c6000848385612e83565b610a435760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b43565b60006001600160a01b0384163b15612fd757836001600160a01b031663150b7a02612eac61263a565b8786866040518563ffffffff1660e01b8152600401612ece9493929190613bc2565b602060405180830381600087803b158015612ee857600080fd5b505af1925050508015612f18575060408051601f3d908101601f19168201909252612f1591810190613bf4565b60015b612fbd573d808015612f46576040519150601f19603f3d011682016040523d82523d6000602084013e612f4b565b606091505b508051612fb55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b43565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612280565b506001612280565b6000806000808451604114156130095750505060208201516040830151606084015160001a613098565b8451604014156130505750505060408201516020830151907f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81169060ff1c601b01613098565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b43565b6130a4868285856131c2565b9695505050505050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01612db5565b60006001600160a01b0382166131415760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b43565b506002546002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561323f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b43565b8360ff16601b148061325457508360ff16601c145b6132ab5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b43565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa1580156132ff573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166133625760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b43565b95945050505050565b828054613377906138eb565b90600052602060002090601f01602090048101928261339957600085556133df565b82601f106133b257805160ff19168380011785556133df565b828001600101855582156133df579182015b828111156133df5782518255916020019190600101906133c4565b506133eb929150613425565b5090565b5080546133fb906138eb565b6000825580601f1061340b575050565b601f01602090049060005260206000209081019061127a91905b5b808211156133eb5760008155600101613426565b6001600160e01b03198116811461127a57600080fd5b60006020828403121561346257600080fd5b81356127ae8161343a565b60005b83811015613488578181015183820152602001613470565b83811115611c675750506000910152565b600081518084526134b181602086016020860161346d565b601f01601f19169290920160200192915050565b6020815260006127ae6020830184613499565b6000602082840312156134ea57600080fd5b5035919050565b6001600160a01b038116811461127a57600080fd5b6000806040838503121561351957600080fd5b8235613524816134f1565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561356357613563613532565b604051601f8501601f19908116603f0116810190828211818310171561358b5761358b613532565b816040528093508581528686860111156135a457600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126135cf57600080fd5b6127ae83833560208501613548565b600080600080600060a086880312156135f657600080fd5b8535613601816134f1565b9450602086013567ffffffffffffffff81111561361d57600080fd5b613629888289016135be565b9450506040860135925060608601359150608086013560ff8116811461364e57600080fd5b809150509295509295909350565b60008060006060848603121561367157600080fd5b833561367c816134f1565b9250602084013561368c816134f1565b929592945050506040919091013590565b6000602082840312156136af57600080fd5b81356127ae816134f1565b6000602082840312156136cc57600080fd5b813567ffffffffffffffff8111156136e357600080fd5b8201601f810184136136f457600080fd5b61228084823560208401613548565b6000806040838503121561371657600080fd5b8235613721816134f1565b91506020830135801515811461373657600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156137825783516001600160a01b03168352928401929184019160010161375d565b50909695505050505050565b600080600080608085870312156137a457600080fd5b84356137af816134f1565b935060208501356137bf816134f1565b925060408501359150606085013567ffffffffffffffff8111156137e257600080fd5b6137ee878288016135be565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b8181101561378257835183529284019291840191600101613816565b60008060008060006080868803121561384a57600080fd5b85359450602086013567ffffffffffffffff8082111561386957600080fd5b818801915088601f83011261387d57600080fd5b81358181111561388c57600080fd5b89602082850101111561389e57600080fd5b9699602092909201985095966040810135965060600135945092505050565b600080604083850312156138d057600080fd5b82356138db816134f1565b91506020830135613736816134f1565b600181811c908216806138ff57607f821691505b6020821081141561150457634e487b7160e01b600052602260045260246000fd5b60006001600160a01b038086168352808516602084015250606060408301526133626060830184613499565b6000815161395e81856020860161346d565b9290920192915050565b6000835161397a81846020880161346d565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600082516139b181846020870161346d565b9190910192915050565b634e487b7160e01b600052601160045260246000fd5b600082198211156139e4576139e46139bb565b500190565b60006000198214156139fd576139fd6139bb565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082821015613a2c57613a2c6139bb565b500390565b6000816000190483118215151615613a4b57613a4b6139bb565b500290565b600084516020613a638285838a0161346d565b602f60f81b918401918252855460019060009080831c81841680613a8857607f821691505b858210811415613aa657634e487b7160e01b84526022600452602484fd5b808015613aba5760018114613acf57613b00565b60ff1984168887015282880186019450613b00565b60008c81526020902060005b84811015613af65781548a8201890152908701908801613adb565b5050858389010194505b50505050613b1e613b1882602f60f81b815260010190565b8861394c565b9998505050505050505050565b60008351613b3d81846020880161346d565b602f60f81b9083019081528351613b5b81600184016020880161346d565b01600101949350505050565b600060208284031215613b7957600080fd5b81516127ae816134f1565b634e487b7160e01b600052601260045260246000fd5b600082613ba957613ba9613b84565b500490565b600082613bbd57613bbd613b84565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526130a46080830184613499565b600060208284031215613c0657600080fd5b81516127ae8161343a56fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e6174757265294f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572436f6c6c656374696f6e206f662036363620756e697175652054696e792047686f7374204e4654732ea264697066735822122010957ac37c45e61349d643c33a1e462d84e200b7588a8418b4dae2e7b3958bc664736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000005000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f697066732e67656e65746963636861696e2e696f2f6970667300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6569484242766a6154787361624e416e6561644e686a6452326443757433684e346b6177446a623756796f4a000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseUri_ (string): https://ipfs.geneticchain.io/ipfs
Arg [1] : ipfsHash_ (string): QmeiHBBvjaTxsabNAneadNhjdR2dCut3hN4kawDjb7VyoJ
Arg [2] : tokenMax_ (uint256[3]): 656,5,5
Arg [3] : proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000290
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [7] : 68747470733a2f2f697066732e67656e65746963636861696e2e696f2f697066
Arg [8] : 7300000000000000000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [10] : 516d6569484242766a6154787361624e416e6561644e686a6452326443757433
Arg [11] : 684e346b6177446a623756796f4a000000000000000000000000000000000000


Deployed Bytecode Sourcemap

2970:2311:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1531:258:6;;;;;;;;;;-1:-1:-1;1531:258:6;;;;;:::i;:::-;;:::i;:::-;;;565:14:21;;558:22;540:41;;528:2;513:18;1531:258:6;;;;;;;;4513:98:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6034:217::-;;;;;;;;;;-1:-1:-1;6034:217:7;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:55:21;;;1674:74;;1662:2;1647:18;6034:217:7;1528:226:21;5562:411:7;;;;;;;;;;-1:-1:-1;5562:411:7;;;;;:::i;:::-;;:::i;:::-;;984:1117:5;;;;;;:::i;:::-;;:::i;288:43:3:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;288:43:3;;;;;12684:280:0;;;;;;;;;;-1:-1:-1;12684:280:0;;;;;:::i;:::-;;:::i;2461:338:6:-;;;;;;;;;;;;;:::i;:::-;;;4363:25:21;;;4351:2;4336:18;2461:338:6;4217:177:21;1264:99:3;;;;;;;;;;-1:-1:-1;1341:15:3;;1264:99;;6761:330:7;;;;;;;;;;-1:-1:-1;6761:330:7;;;;;:::i;:::-;;:::i;2509:105:5:-;;;;;;;;;;-1:-1:-1;2509:105:5;;;;;:::i;:::-;-1:-1:-1;;;;;2595:12:5;2562:13;2595:12;;;:6;:12;;;;;;;2509:105;1868:522:6;;;;;;;;;;-1:-1:-1;1868:522:6;;;;;:::i;:::-;;:::i;4240:120:1:-;;;;;;;;;;-1:-1:-1;4240:120:1;;;;;:::i;:::-;;:::i;1369:155:3:-;;;;;;;;;;-1:-1:-1;1480:9:3;1369:155;;4596:38:0;;;;;;;;;;;;4633:1;4596:38;;7157:179:7;;;;;;;;;;-1:-1:-1;7157:179:7;;;;;:::i;:::-;;:::i;13116:90:0:-;;;;;;;;;;-1:-1:-1;13116:90:0;;;;;:::i;:::-;;:::i;4640:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12195:286;;;;;;;;;;-1:-1:-1;12195:286:0;;;;;:::i;:::-;;:::i;3929:224:1:-;;;;;;;;;;-1:-1:-1;3929:224:1;;;;;:::i;:::-;;:::i;2871:492:6:-;;;;;;;;;;-1:-1:-1;2871:492:6;;;;;:::i;:::-;;:::i;3227:27:1:-;;;;;;;;;;;;;:::i;3787:232:7:-;;;;;;;;;;-1:-1:-1;3787:232:7;;;;;:::i;:::-;;:::i;4802:47:0:-;;;;;;;;;;;;4840:9;4802:47;;3316:414:7;;;;;;;;;;-1:-1:-1;3316:414:7;;;;;:::i;:::-;;:::i;1700:145:9:-;;;;;;;;;;;;;:::i;5121:35:0:-;;;;;;;;;;;;;;;4697:80;;;;;;;;;;;;;:::i;8468:89::-;;;;;;;;;;;;;:::i;1068:85:9:-;;;;;;;;;;-1:-1:-1;1140:6:9;;-1:-1:-1;;;;;1140:6:9;1068:85;;4357:94:7;;;;;;;;;;;;;:::i;4675:102::-;;;;;;;;;;;;;:::i;7683:111:0:-;;;;;;;;;;-1:-1:-1;7683:111:0;;;;;:::i;:::-;;:::i;10648:408::-;;;;;;:::i;:::-;;:::i;6318:153:7:-;;;;;;;;;;-1:-1:-1;6318:153:7;;;;;:::i;:::-;;:::i;7428:125:0:-;;;;;;;;;;-1:-1:-1;7428:125:0;;;;;:::i;:::-;;:::i;8696:102::-;;;;;;;;;;-1:-1:-1;8772:6:0;:14;-1:-1:-1;;;8772:14:0;;;;8790:1;8772:19;8696:102;;9425:104;;;;;;;;;;-1:-1:-1;9508:6:0;:14;;;;;;9425:104;;4160:132:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;8161:102:0:-;;;;;;;;;;-1:-1:-1;8239:6:0;:12;;;;;;8255:1;8239:17;8161:102;;7402:320:7;;;;;;;;;;-1:-1:-1;7402:320:7;;;;;:::i;:::-;;:::i;3428:619:6:-;;;;;;;;;;-1:-1:-1;3428:619:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4838:440:1:-;;;;;;;;;;-1:-1:-1;4838:440:1;;;;;:::i;:::-;;:::i;4549:120::-;;;;;;;;;;;;;:::i;7927:91:0:-;;;;;;;;;;;;;:::i;11215:777::-;;;;;;:::i;:::-;;:::i;5041:34::-;;;;;;;;;;;;;;;14046:408;;;;;;;;;;-1:-1:-1;14046:408:0;;;;;:::i;:::-;;:::i;9182:104::-;;;;;;;;;;-1:-1:-1;9265:6:0;:14;;;;;;9182:104;;5081:34;;;;;;;;;;;;;;;1994:240:9;;;;;;;;;;-1:-1:-1;1994:240:9;;;;;:::i;:::-;;:::i;13442:292:0:-;;;;;;;;;;-1:-1:-1;13442:292:0;;;;;:::i;:::-;;:::i;8938:105::-;;;;;;;;;;-1:-1:-1;9021:6:0;:15;;;8938:105;;1531:258:6;1657:4;-1:-1:-1;;;;;;1680:50:6;;-1:-1:-1;;;1680:50:6;;:102;;;1746:36;1770:11;1746:23;:36::i;:::-;1673:109;1531:258;-1:-1:-1;;1531:258:6:o;4513:98:7:-;4567:13;4599:5;4592:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4513:98;:::o;6034:217::-;6110:7;6137:16;6145:7;6137;:16::i;:::-;6129:73;;;;-1:-1:-1;;;6129:73:7;;9944:2:21;6129:73:7;;;9926:21:21;9983:2;9963:18;;;9956:30;10022:34;10002:18;;;9995:62;-1:-1:-1;;;10073:18:21;;;10066:42;10125:19;;6129:73:7;;;;;;;;;-1:-1:-1;6220:24:7;;;;:15;:24;;;;;;-1:-1:-1;;;;;6220:24:7;;6034:217::o;5562:411::-;5642:13;5658:33;5683:7;5658:24;:33::i;:::-;5642:49;;5715:5;-1:-1:-1;;;;;5709:11:7;:2;-1:-1:-1;;;;;5709:11:7;;;5701:57;;;;-1:-1:-1;;;5701:57:7;;10357:2:21;5701:57:7;;;10339:21:21;10396:2;10376:18;;;10369:30;10435:34;10415:18;;;10408:62;-1:-1:-1;;;10486:18:21;;;10479:31;10527:19;;5701:57:7;10155:397:21;5701:57:7;5806:5;-1:-1:-1;;;;;5790:21:7;:12;:10;:12::i;:::-;-1:-1:-1;;;;;5790:21:7;;:62;;;;5815:37;5832:5;5839:12;:10;:12::i;5815:37::-;5769:165;;;;-1:-1:-1;;;5769:165:7;;10759:2:21;5769:165:7;;;10741:21:21;10798:2;10778:18;;;10771:30;10837:34;10817:18;;;10810:62;10908:26;10888:18;;;10881:54;10952:19;;5769:165:7;10557:420:21;5769:165:7;5945:21;5954:2;5958:7;5945:8;:21::i;:::-;5632:341;5562:411;;:::o;984:1117:5:-;1235:148;;;1179:12;1235:148;;;;;-1:-1:-1;;;;;1272:19:5;;1203:29;1272:19;;;:6;:19;;;;;;;;;1235:148;;;;;;;;;;;1415:45;1279:11;1235:148;1443:4;1449;1455;1415:6;:45::i;:::-;1394:125;;;;-1:-1:-1;;;1394:125:5;;11184:2:21;1394:125:5;;;11166:21:21;11223:2;11203:18;;;11196:30;11262:34;11242:18;;;11235:62;-1:-1:-1;;;11313:18:21;;;11306:31;11354:19;;1394:125:5;10982:397:21;1394:125:5;-1:-1:-1;;;;;1605:19:5;;;;;;:6;:19;;;;;;:26;;1629:1;1605:23;:26::i;:::-;-1:-1:-1;;;;;1583:19:5;;;;;;:6;:19;;;;;;;:48;;;;1647:122;;;;;1590:11;;1717:10;;1742:17;;1647:122;:::i;:::-;;;;;;;;1877:12;1891:23;1926:4;-1:-1:-1;;;;;1918:18:5;1967:17;1986:11;1950:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1950:48:5;;;;;;;;;;1918:90;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1876:132;;;;2026:7;2018:48;;;;-1:-1:-1;;;2018:48:5;;12934:2:21;2018:48:5;;;12916:21:21;12973:2;12953:18;;;12946:30;13012;12992:18;;;12985:58;13060:18;;2018:48:5;12732:352:21;2018:48:5;2084:10;984:1117;-1:-1:-1;;;;;;;;984:1117:5:o;12684:280:0:-;6158:14;;-1:-1:-1;;;;;6158:14:0;6142:12;:10;:12::i;:::-;-1:-1:-1;;;;;6142:30:0;;6134:60;;;;-1:-1:-1;;;6134:60:0;;13291:2:21;6134:60:0;;;13273:21:21;13330:2;13310:18;;;13303:30;13369:19;13349:18;;;13342:47;13406:18;;6134:60:0;13089:341:21;6134:60:0;12780:6:::1;:14:::0;12806:9:::1;::::0;12780:22:::1;::::0;12797:5;;12780:14;;::::1;;;:22;:::i;:::-;:35;;12772:68;;;::::0;-1:-1:-1;;;12772:68:0;;13902:2:21;12772:68:0::1;::::0;::::1;13884:21:21::0;13941:2;13921:18;;;13914:30;13980:22;13960:18;;;13953:50;14020:18;;12772:68:0::1;13700:344:21::0;12772:68:0::1;12850:6;1414:29:8::0;;;;;;;;;;;;;;;-1:-1:-1;;1414:29:8;;;;;;12888:9:0::1;12883:75;12907:5;12903:1;:9;12883:75;;;12933:14;12943:3;12933:9;:14::i;:::-;-1:-1:-1::0;12914:3:0::1;::::0;::::1;:::i;:::-;;;12883:75;;2461:338:6::0;2589:7;:14;2522;;;2617:166;2653:6;2643:7;:16;2617:166;;;1461:1;-1:-1:-1;;;;;2694:24:6;:7;2702;2694:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;2694:16:6;:24;2690:79;;2742:8;;;;;2690:79;2661:9;;2617:166;;;;2548:245;2461:338;:::o;6761:330:7:-;6950:41;6969:12;:10;:12::i;:::-;6983:7;6950:18;:41::i;:::-;6942:103;;;;-1:-1:-1;;;6942:103:7;;14523:2:21;6942:103:7;;;14505:21:21;14562:2;14542:18;;;14535:30;14601:34;14581:18;;;14574:62;-1:-1:-1;;;14652:18:21;;;14645:47;14709:19;;6942:103:7;14321:413:21;6942:103:7;7056:28;7066:4;7072:2;7076:7;7056:9;:28::i;1868:522:6:-;2031:7;:14;1987:15;;2080:211;2097:6;2087:7;:16;2080:211;;;2158:5;-1:-1:-1;;;;;2138:25:6;:7;2146;2138:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;2138:16:6;:25;2134:143;;;-1:-1:-1;;2191:7:6;;;2187:72;;2231:5;;2187:72;2105:9;;;;;2080:211;;;2329:6;2319:7;:16;2311:72;;;;-1:-1:-1;;;2311:72:6;;14941:2:21;2311:72:6;;;14923:21:21;14980:2;14960:18;;;14953:30;15019:34;14999:18;;;14992:62;15090:13;15070:18;;;15063:41;15121:19;;2311:72:6;14739:407:21;2311:72:6;2004:386;1868:522;;;;:::o;4240:120:1:-;1291:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:9;:7;1140:6;;-1:-1:-1;;;;;1140:6:9;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:9;;1272:68;;;;-1:-1:-1;;;1272:68:9;;15353:2:21;1272:68:9;;;15335:21:21;;;15372:18;;;15365:30;-1:-1:-1;;;;;;;;;;;15411:18:21;;;15404:62;15483:18;;1272:68:9;15151:356:21;1272:68:9;4335:18:1;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;4240:120:::0;:::o;7157:179:7:-;7290:39;7307:4;7313:2;7317:7;7290:39;;;;;;;;;;;;:16;:39::i;13116:90:0:-;6353:14;;-1:-1:-1;;;;;6353:14:0;6337:12;:10;:12::i;:::-;-1:-1:-1;;;;;6337:30:0;;6329:60;;;;-1:-1:-1;;;6329:60:0;;15714:2:21;6329:60:0;;;15696:21:21;15753:2;15733:18;;;15726:30;15792:19;15772:18;;;15765:47;15829:18;;6329:60:0;15512:341:21;6329:60:0;13185:14:::1;13191:7;13185:5;:14::i;:::-;13116:90:::0;:::o;12195:286::-;1291:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:9;:7;1140:6;;-1:-1:-1;;;;;1140:6:9;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:9;;1272:68;;;;-1:-1:-1;;;1272:68:9;;15353:2:21;1272:68:9;;;15335:21:21;;;15372:18;;;15365:30;-1:-1:-1;;;;;;;;;;;15411:18:21;;;15404:62;15483:18;;1272:68:9;15151:356:21;1272:68:9;12293:6:0::1;:15:::0;12320:10:::1;::::0;12293:23:::1;::::0;12311:5;;12293:15:::1;;:23;:::i;:::-;:37;;12285:71;;;::::0;-1:-1:-1;;;12285:71:0;;16060:2:21;12285:71:0::1;::::0;::::1;16042:21:21::0;16099:2;16079:18;;;16072:30;16138:23;16118:18;;;16111:51;16179:18;;12285:71:0::1;15858:345:21::0;12285:71:0::1;12366:6;1252:30:8::0;;;;;;;;;-1:-1:-1;;1252:30:8;;;;;;12405:9:0::1;12400:75;12424:5;12420:1;:9;12400:75;;;12450:14;12460:3;12450:9;:14::i;:::-;-1:-1:-1::0;12431:3:0::1;::::0;::::1;:::i;:::-;;;12400:75;;3929:224:1::0;1291:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:9;:7;1140:6;;-1:-1:-1;;;;;1140:6:9;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:9;;1272:68;;;;-1:-1:-1;;;1272:68:9;;15353:2:21;1272:68:9;;;15335:21:21;;;15372:18;;;15365:30;-1:-1:-1;;;;;;;;;;;15411:18:21;;;15404:62;15483:18;;1272:68:9;15151:356:21;1272:68:9;4026:18:1;;4022:125:::1;;4065:20;4072:13;;4065:20;:::i;4022:125::-;4116:20:::0;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;2871:492:6:-:0;3004:7;:14;2960:15;;3053:210;3070:6;3060:7;:16;3053:210;;;1461:1;-1:-1:-1;;;;;3111:24:6;:7;3119;3111:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;3111:16:6;:24;3107:142;;-1:-1:-1;;3163:7:6;;;3159:72;;3203:5;;3159:72;3078:9;;;;;3053:210;;;3301:6;3291:7;:16;3283:73;;;;-1:-1:-1;;;3283:73:6;;16410:2:21;3283:73:6;;;16392:21:21;16449:2;16429:18;;;16422:30;16488:34;16468:18;;;16461:62;16559:14;16539:18;;;16532:42;16591:19;;3283:73:6;16208:408:21;3283:73:6;2977:386;2871:492;;;:::o;3227:27:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3787:232:7:-;3859:7;3886:16;3894:7;3886;:16::i;:::-;3878:70;;;;-1:-1:-1;;;3878:70:7;;16823:2:21;3878:70:7;;;16805:21:21;16862:2;16842:18;;;16835:30;16901:34;16881:18;;;16874:62;-1:-1:-1;;;16952:18:21;;;16945:39;17001:19;;3878:70:7;16621:405:21;3878:70:7;3958:13;3974:7;3982;3974:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;3974:16:7;;3787:232;-1:-1:-1;;;3787:232:7:o;3316:414::-;3388:15;-1:-1:-1;;;;;3423:19:7;;3415:74;;;;-1:-1:-1;;;3415:74:7;;17233:2:21;3415:74:7;;;17215:21:21;17272:2;17252:18;;;17245:30;17311:34;17291:18;;;17284:62;17382:12;17362:18;;;17355:40;17412:19;;3415:74:7;17031:406:21;3415:74:7;3541:7;:14;3524;3569:144;3593:6;3589:1;:10;3569:144;;;3642:5;-1:-1:-1;;;;;3628:19:7;:7;3636:1;3628:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;3628:10:7;:19;3624:75;;;3671:9;;;;;3624:75;3601:3;;3569:144;;;;3500:223;3316:414;;;:::o;1700:145:9:-;1291:12;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:9;:7;1140:6;;-1:-1:-1;;;;;1140:6:9;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:9;;1272:68;;;;-1:-1:-1;;;1272:68:9;;15353:2:21;1272:68:9;;;15335:21:21;;;15372:18;;;15365:30;-1:-1:-1;;;;;;;;;;;15411:18:21;;;15404:62;15483:18;;1272:68:9;15151:356:21;1272:68:9;1790:6:::1;::::0;1769:40:::1;::::0;1806:1:::1;::::0;-1:-1:-1;;;;;1790:6:9::1;::::0;1769:40:::1;::::0;1806:1;;1769:40:::1;1819:6;:19:::0;;-1:-1:-1;;;;;;1819:19:9::1;::::0;;1700:145::o;4697:80:0:-;;;;;;;;;;;;;;;;;;;:::o;8468:89::-;1291:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:9;:7;1140:6;;-1:-1:-1;;;;;1140:6:9;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:9;;1272:68;;;;-1:-1:-1;;;1272:68:9;;15353:2:21;1272:68:9;;;15335:21:21;;;15372:18;;;15365:30;-1:-1:-1;;;;;;;;;;;15411:18:21;;;15404:62;15483:18;;1272:68:9;15151:356:21;1272:68:9;8531:6:0::1;1836:29:8::0;;-1:-1:-1;;1836:29:8;-1:-1:-1;;;1836:29:8;;;8468:89:0:o;4357:94:7:-;4426:7;:14;4400:7;;4426:18;;4443:1;;4426:18;:::i;:::-;4419:25;;4357:94;:::o;4675:102::-;4731:13;4763:7;4756:14;;;;;:::i;7683:111:0:-;1291:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:9;:7;1140:6;;-1:-1:-1;;;;;1140:6:9;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:9;;1272:68;;;;-1:-1:-1;;;1272:68:9;;15353:2:21;1272:68:9;;;15335:21:21;;;15372:18;;;15365:30;-1:-1:-1;;;;;;;;;;;15411:18:21;;;15404:62;15483:18;;1272:68:9;15151:356:21;1272:68:9;7764:14:0::1;:23:::0;;-1:-1:-1;;;;;;7764:23:0::1;-1:-1:-1::0;;;;;7764:23:0;;;::::1;::::0;;;::::1;::::0;;7683:111::o;10648:408::-;6533:6;:14;-1:-1:-1;;;6533:14:0;;;;:19;6525:50;;;;-1:-1:-1;;;6525:50:0;;17774:2:21;6525:50:0;;;17756:21:21;17813:2;17793:18;;;17786:30;-1:-1:-1;;;17832:18:21;;;17825:48;17890:18;;6525:50:0;17572:342:21;6525:50:0;10732:6:::1;:12:::0;;;::::1;;;10748:1;10732:17;10724:50;;;::::0;-1:-1:-1;;;10724:50:0;;18121:2:21;10724:50:0::1;::::0;::::1;18103:21:21::0;18160:2;18140:18;;;18133:30;18199:22;18179:18;;;18172:50;18239:18;;10724:50:0::1;17919:344:21::0;10724:50:0::1;10815:9;10792:19;10806:5:::0;4893:9:::1;10792:19;:::i;:::-;:32;10784:63;;;::::0;-1:-1:-1;;;10784:63:0;;18643:2:21;10784:63:0::1;::::0;::::1;18625:21:21::0;18682:2;18662:18;;;18655:30;-1:-1:-1;;;18701:18:21;;;18694:48;18759:18;;10784:63:0::1;18441:342:21::0;10784:63:0::1;10865:6;:14:::0;10891:9:::1;::::0;10865:22:::1;::::0;10882:5;;10865:14;;::::1;;;:22;:::i;:::-;:35;;10857:68;;;::::0;-1:-1:-1;;;10857:68:0;;18990:2:21;10857:68:0::1;::::0;::::1;18972:21:21::0;19029:2;19009:18;;;19002:30;19068:22;19048:18;;;19041:50;19108:18;;10857:68:0::1;18788:344:21::0;10857:68:0::1;10935:6;1575:29:8::0;;;;;;;;;;;;;;;-1:-1:-1;;1575:29:8;;;;;;10973:9:0::1;10968:82;10992:5;10988:1;:9;10968:82;;;11018:21;11028:10;11018:9;:21::i;:::-;-1:-1:-1::0;10999:3:0::1;::::0;::::1;:::i;:::-;;;10968:82;;6318:153:7::0;6412:52;6431:12;:10;:12::i;:::-;6445:8;6455;6412:18;:52::i;7428:125:0:-;1291:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:9;:7;1140:6;;-1:-1:-1;;;;;1140:6:9;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:9;;1272:68;;;;-1:-1:-1;;;1272:68:9;;15353:2:21;1272:68:9;;;15335:21:21;;;15372:18;;;15365:30;-1:-1:-1;;;;;;;;;;;15411:18:21;;;15404:62;15483:18;;1272:68:9;15151:356:21;1272:68:9;7516:14:0::1;:30:::0;;-1:-1:-1;;;;;;7516:30:0::1;-1:-1:-1::0;;;;;7516:30:0;;;::::1;::::0;;;::::1;::::0;;7428:125::o;4160:132:7:-;4199:16;4227:24;4254:7;4227:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4227:34:7;;;;;;;;;;;;;;;;-1:-1:-1;4227:34:7;;4160:132;-1:-1:-1;;;;;;4160:132:7:o;7402:320::-;7571:41;7590:12;:10;:12::i;:::-;7604:7;7571:18;:41::i;:::-;7563:103;;;;-1:-1:-1;;;7563:103:7;;14523:2:21;7563:103:7;;;14505:21:21;14562:2;14542:18;;;14535:30;14601:34;14581:18;;;14574:62;-1:-1:-1;;;14652:18:21;;;14645:47;14709:19;;7563:103:7;14321:413:21;7563:103:7;7676:39;7690:4;7696:2;7700:7;7709:5;7676:13;:39::i;:::-;7402:320;;;;:::o;3428:619:6:-;3499:16;3527:18;3548:33;3575:5;3548:26;:33::i;:::-;3527:54;-1:-1:-1;3599:15:6;3591:66;;;;-1:-1:-1;;;3591:66:6;;19339:2:21;3591:66:6;;;19321:21:21;19378:2;19358:18;;;19351:30;19417:34;19397:18;;;19390:62;-1:-1:-1;;;19468:18:21;;;19461:36;19514:19;;3591:66:6;19137:402:21;3591:66:6;3685:7;:14;3668;3751:10;3737:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3737:25:6;;3709:53;;3796:9;3828:15;3823:182;3859:6;3849:7;:16;3823:182;;;3920:5;-1:-1:-1;;;;;3900:25:6;:7;3908;3900:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;3900:16:6;:25;3896:95;;;3965:7;3949:8;3958:3;;;;;;3949:13;;;;;;;;:::i;:::-;;;;;;:23;;;;;3896:95;3867:9;;3823:182;;;-1:-1:-1;4032:8:6;;3428:619;-1:-1:-1;;;;;3428:619:6:o;4838:440:1:-;4935:13;4977;4971:27;;;;;:::i;:::-;:32;;-1:-1:-1;4971:300:1;;5163:14;:12;:14::i;:::-;5204:13;5244:25;5261:7;5244:16;:25::i;:::-;5129:141;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4971:300;;;5059:14;:12;:14::i;:::-;5080:25;5097:7;5080:16;:25::i;:::-;5025:81;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4964:307;4838:440;-1:-1:-1;;4838:440:1:o;4549:120::-;4618:13;4654:8;4647:15;;;;;:::i;7927:91:0:-;1291:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:9;:7;1140:6;;-1:-1:-1;;;;;1140:6:9;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:9;;1272:68;;;;-1:-1:-1;;;1272:68:9;;15353:2:21;1272:68:9;;;15335:21:21;;;15372:18;;;15365:30;-1:-1:-1;;;;;;;;;;;15411:18:21;;;15404:62;15483:18;;1272:68:9;15151:356:21;1272:68:9;7994:6:0::1;1711:27:8::0;;-1:-1:-1;;1711:27:8;;;;;8468:89:0:o;11215:777::-;6533:6;:14;-1:-1:-1;;;6533:14:0;;;;:19;6525:50;;;;-1:-1:-1;;;6525:50:0;;17774:2:21;6525:50:0;;;17756:21:21;17813:2;17793:18;;;17786:30;-1:-1:-1;;;17832:18:21;;;17825:48;17890:18;;6525:50:0;17572:342:21;6525:50:0;11442:9:::1;11419:19;11433:5:::0;4840:9:::1;11419:19;:::i;:::-;:32;11411:63;;;::::0;-1:-1:-1;;;11411:63:0;;18643:2:21;11411:63:0::1;::::0;::::1;18625:21:21::0;18682:2;18662:18;;;18655:30;-1:-1:-1;;;18701:18:21;;;18694:48;18759:18;;11411:63:0::1;18441:342:21::0;11411:63:0::1;11492:6;:14:::0;11518:9:::1;::::0;11492:22:::1;::::0;11509:5;;11492:14;;::::1;;;:22;:::i;:::-;:35;;11484:68;;;::::0;-1:-1:-1;;;11484:68:0;;18990:2:21;11484:68:0::1;::::0;::::1;18972:21:21::0;19029:2;19009:18;;;19002:30;19068:22;19048:18;;;19041:50;19108:18;;11484:68:0::1;18788:344:21::0;11484:68:0::1;11577:10;11570:18;::::0;;;:6:::1;:18;::::0;;;;;11600:10;;11570:26:::1;::::0;11591:5;;11570:26:::1;:::i;:::-;:40;;11562:70;;;::::0;-1:-1:-1;;;11562:70:0;;22320:2:21;11562:70:0::1;::::0;::::1;22302:21:21::0;22359:2;22339:18;;;22332:30;22398:19;22378:18;;;22371:47;22435:18;;11562:70:0::1;22118:341:21::0;11562:70:0::1;11650:34;11665:7;11674:9;;11650:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;11650:14:0::1;::::0;-1:-1:-1;;;11650:34:0:i:1;:::-;11642:61;;;::::0;-1:-1:-1;;;11642:61:0;;22666:2:21;11642:61:0::1;::::0;::::1;22648:21:21::0;22705:2;22685:18;;;22678:30;22744:16;22724:18;;;22717:44;22778:18;;11642:61:0::1;22464:338:21::0;11642:61:0::1;11721:52;11734:7;11743:10;11755;11767:5;11721:12;:52::i;:::-;11713:77;;;::::0;-1:-1:-1;;;11713:77:0;;23009:2:21;11713:77:0::1;::::0;::::1;22991:21:21::0;23048:2;23028:18;;;23021:30;23087:14;23067:18;;;23060:42;23119:18;;11713:77:0::1;22807:336:21::0;11713:77:0::1;11800:6;1575:29:8::0;;;;;;;;;;;;;;;-1:-1:-1;;1575:29:8;;;;;;11864:10:0::1;11857:18;::::0;;;:6:::1;:18;::::0;;;;:27;;;::::1;::::0;;11904:82:::1;11928:5;11924:1;:9;11904:82;;;11954:21;11964:10;11954:9;:21::i;:::-;-1:-1:-1::0;11935:3:0::1;::::0;::::1;:::i;:::-;;;11904:82;;;;11215:777:::0;;;;;:::o;14046:408::-;14312:28;;-1:-1:-1;;;14312:28:0;;-1:-1:-1;;;;;1692:55:21;;;14312:28:0;;;1674:74:21;14143:4:0;;14268:21;;14304:49;;;;14312:21;;;;;;1647:18:21;;14312:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;14304:49:0;;14300:91;;;14376:4;14369:11;;;;;14300:91;-1:-1:-1;;;;;6657:25:7;;;6634:4;6657:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;14408:39:0;14401:46;14046:408;-1:-1:-1;;;;14046:408:0:o;1994:240:9:-;1291:12;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:9;:7;1140:6;;-1:-1:-1;;;;;1140:6:9;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:9;;1272:68;;;;-1:-1:-1;;;1272:68:9;;15353:2:21;1272:68:9;;;15335:21:21;;;15372:18;;;15365:30;-1:-1:-1;;;;;;;;;;;15411:18:21;;;15404:62;15483:18;;1272:68:9;15151:356:21;1272:68:9;-1:-1:-1;;;;;2082:22:9;::::1;2074:73;;;::::0;-1:-1:-1;;;2074:73:9;;23633:2:21;2074:73:9::1;::::0;::::1;23615:21:21::0;23672:2;23652:18;;;23645:30;23711:34;23691:18;;;23684:62;-1:-1:-1;;;23762:18:21;;;23755:36;23808:19;;2074:73:9::1;23431:402:21::0;2074:73:9::1;2183:6;::::0;2162:38:::1;::::0;-1:-1:-1;;;;;2162:38:9;;::::1;::::0;2183:6:::1;::::0;2162:38:::1;::::0;2183:6:::1;::::0;2162:38:::1;2210:6;:17:::0;;-1:-1:-1;;;;;;2210:17:9::1;-1:-1:-1::0;;;;;2210:17:9;;;::::1;::::0;;;::::1;::::0;;1994:240::o;13442:292:0:-;1291:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:9;:7;1140:6;;-1:-1:-1;;;;;1140:6:9;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:9;;1272:68;;;;-1:-1:-1;;;1272:68:9;;15353:2:21;1272:68:9;;;15335:21:21;;;15372:18;;;15365:30;-1:-1:-1;;;;;;;;;;;15411:18:21;;;15404:62;15483:18;;1272:68:9;15151:356:21;1272:68:9;13544:1:0::1;13535:6;:10;13527:35;;;::::0;-1:-1:-1;;;13527:35:0;;24040:2:21;13527:35:0::1;::::0;::::1;24022:21:21::0;24079:2;24059:18;;;24052:30;24118:14;24098:18;;;24091:42;24150:18;;13527:35:0::1;23838:336:21::0;13527:35:0::1;13590:21;13580:6;:31;;13572:66;;;::::0;-1:-1:-1;;;13572:66:0;;24381:2:21;13572:66:0::1;::::0;::::1;24363:21:21::0;24420:2;24400:18;;;24393:30;24459:24;24439:18;;;24432:52;24501:18;;13572:66:0::1;24179:346:21::0;13572:66:0::1;-1:-1:-1::0;;;;;13656:16:0;::::1;13648:41;;;::::0;-1:-1:-1;;;13648:41:0;;24732:2:21;13648:41:0::1;::::0;::::1;24714:21:21::0;24771:2;24751:18;;;24744:30;24810:14;24790:18;;;24783:42;24842:18;;13648:41:0::1;24530:336:21::0;13648:41:0::1;13699:28;::::0;-1:-1:-1;;;;;13699:20:0;::::1;::::0;:28;::::1;;;::::0;13720:6;;13699:28:::1;::::0;;;13720:6;13699:20;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;95:631:2::0;163:22;205:10;227:4;205:27;201:496;;;248:18;269:8;;248:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;307:8:2;514:17;508:24;-1:-1:-1;;;;;483:131:2;;-1:-1:-1;201:496:2;;-1:-1:-1;201:496:2;;-1:-1:-1;675:10:2;201:496;95:631;:::o;2957:300:7:-;3059:4;-1:-1:-1;;;;;;3094:40:7;;-1:-1:-1;;;3094:40:7;;:104;;-1:-1:-1;;;;;;;3150:48:7;;-1:-1:-1;;;3150:48:7;3094:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:18;;;3214:36:7;763:155:18;9194:153:7;9292:7;:14;9259:4;;9282:24;;:58;;;;;9338:1;-1:-1:-1;;;;;9310:30:7;:7;9318;9310:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;9310:16:7;:30;;9275:65;9194:153;-1:-1:-1;;9194:153:7:o;14682:130:0:-;14744:14;14781:24;:22;:24::i;12968:181:7:-;13042:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;13042:29:7;-1:-1:-1;;;;;13042:29:7;;;;;;;;:24;;13095:33;13042:24;13095;:33::i;:::-;-1:-1:-1;;;;;13086:56:7;;;;;;;;;;;12968:181;;:::o;2620:470:5:-;2792:4;-1:-1:-1;;;;;2816:20:5;;2808:70;;;;-1:-1:-1;;;2808:70:5;;25073:2:21;2808:70:5;;;25055:21:21;25112:2;25092:18;;;25085:30;25151:34;25131:18;;;25124:62;-1:-1:-1;;;25202:18:21;;;25195:35;25247:19;;2808:70:5;24871:401:21;2808:70:5;2929:154;2956:47;2975:27;2995:6;2975:19;:27::i;:::-;2956:18;:47::i;:::-;2929:154;;;;;;;;;;;;25504:25:21;;;;25577:4;25565:17;;25545:18;;;25538:45;25599:18;;;25592:34;;;25642:18;;;25635:34;;;25476:19;;2929:154:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2907:176:5;:6;-1:-1:-1;;;;;2907:176:5;;2888:195;;2620:470;;;;;;;:::o;2672:96:20:-;2730:7;2756:5;2760:1;2756;:5;:::i;:::-;2749:12;2672:96;-1:-1:-1;;;2672:96:20:o;10189:118:7:-;10246:15;10283:17;10293:2;10283:17;;;;;;;;;;;;:9;:17::i;9505:354::-;9598:4;9622:16;9630:7;9622;:16::i;:::-;9614:73;;;;-1:-1:-1;;;9614:73:7;;25882:2:21;9614:73:7;;;25864:21:21;25921:2;25901:18;;;25894:30;25960:34;25940:18;;;25933:62;-1:-1:-1;;;26011:18:21;;;26004:42;26063:19;;9614:73:7;25680:408:21;9614:73:7;9697:13;9713:33;9738:7;9713:24;:33::i;:::-;9697:49;;9775:5;-1:-1:-1;;;;;9764:16:7;:7;-1:-1:-1;;;;;9764:16:7;;:51;;;;9808:7;-1:-1:-1;;;;;9784:31:7;:20;9796:7;9784:11;:20::i;:::-;-1:-1:-1;;;;;9784:31:7;;9764:51;:87;;;;9819:32;9836:5;9843:7;9819:16;:32::i;12345:512::-;12509:4;-1:-1:-1;;;;;12472:41:7;:33;12497:7;12472:24;:33::i;:::-;-1:-1:-1;;;;;12472:41:7;;12464:95;;;;-1:-1:-1;;;12464:95:7;;26295:2:21;12464:95:7;;;26277:21:21;26334:2;26314:18;;;26307:30;26373:34;26353:18;;;26346:62;-1:-1:-1;;;26424:18:21;;;26417:39;26473:19;;12464:95:7;26093:405:21;12464:95:7;-1:-1:-1;;;;;12577:16:7;;12569:65;;;;-1:-1:-1;;;12569:65:7;;26705:2:21;12569:65:7;;;26687:21:21;26744:2;26724:18;;;26717:30;26783:34;26763:18;;;26756:62;-1:-1:-1;;;26834:18:21;;;26827:34;26878:19;;12569:65:7;26503:400:21;12569:65:7;12746:29;12763:1;12767:7;12746:8;:29::i;:::-;12805:2;12786:7;12794;12786:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;12786:21:7;-1:-1:-1;;;;;12786:21:7;;;;;;12823:27;;12842:7;;12823:27;;;;;;;;;;12786:16;12823:27;12345:512;;;:::o;11694:327::-;11753:13;11769:33;11794:7;11769:24;:33::i;:::-;11753:49;;11899:29;11916:1;11920:7;11899:8;:29::i;:::-;11946:7;11954;11946:16;;;;;;;;:::i;:::-;;;;;;;;;11939:23;;-1:-1:-1;;;;;;11939:23:7;;;11978:36;;12006:7;;11946:16;-1:-1:-1;;;;;11978:36:7;;;;;11946:16;;11978:36;11743:278;11694:327;:::o;13284:307::-;13434:8;-1:-1:-1;;;;;13425:17:7;:5;-1:-1:-1;;;;;13425:17:7;;;13417:55;;;;-1:-1:-1;;;13417:55:7;;27110:2:21;13417:55:7;;;27092:21:21;27149:2;27129:18;;;27122:30;27188:27;27168:18;;;27161:55;27233:18;;13417:55:7;26908:349:21;13417:55:7;-1:-1:-1;;;;;13482:25:7;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;13482:46:7;;;;;;;;;;13543:41;;540::21;;;13543::7;;513:18:21;13543:41:7;;;;;;;13284:307;;;:::o;8584:::-;8735:28;8745:4;8751:2;8755:7;8735:9;:28::i;:::-;8781:48;8804:4;8810:2;8814:7;8823:5;8781:22;:48::i;:::-;8773:111;;;;-1:-1:-1;;;8773:111:7;;27464:2:21;8773:111:7;;;27446:21:21;27503:2;27483:18;;;27476:30;27542:34;27522:18;;;27515:62;-1:-1:-1;;;27593:18:21;;;27586:48;27651:19;;8773:111:7;27262:414:21;271:703:16;327:13;544:10;540:51;;-1:-1:-1;;570:10:16;;;;;;;;;;;;-1:-1:-1;;;570:10:16;;;;;271:703::o;540:51::-;615:5;600:12;654:75;661:9;;654:75;;686:8;;;;:::i;:::-;;-1:-1:-1;708:10:16;;-1:-1:-1;716:2:16;708:10;;:::i;:::-;;;654:75;;;738:19;770:6;760:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;760:17:16;;738:39;;787:150;794:10;;787:150;;820:11;830:1;820:11;;:::i;:::-;;-1:-1:-1;888:10:16;896:2;888:5;:10;:::i;:::-;875:24;;:2;:24;:::i;:::-;862:39;;845:6;852;845:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;915:11:16;924:2;915:11;;:::i;:::-;;;787:150;;10229:165:0;10323:4;4972:42;10350:26;:7;10366:9;10350:15;:26::i;:::-;-1:-1:-1;;;;;10350:37:0;;;10229:165;-1:-1:-1;;;10229:165:0:o;9770:310::-;10017:43;;-1:-1:-1;;28260:2:21;28256:15;;;28252:53;10017:43:0;;;28240:66:21;28322:12;;;28315:28;;;28359:12;;;28352:28;;;9938:4:0;;10066:7;;9965:97;;28396:12:21;;10017:43:0;;;;;;;;;;;;10007:54;;;;;;9965:28;:97::i;:::-;:108;;9770:310;-1:-1:-1;;;;;9770:310:0:o;2107:396:5:-;2214:7;342:98;;;;;;;;;;;;;;;;;323:123;;;;;;;2362:12;;2396:11;;;;2439:24;;;;;2429:35;;;;;;2283:199;;;;;28650:25:21;;;28706:2;28691:18;;28684:34;;;;-1:-1:-1;;;;;28754:55:21;28749:2;28734:18;;28727:83;28841:2;28826:18;;28819:34;28637:3;28622:19;;28419:440;2283:199:5;;;;;;;;;;;;;2256:240;;;;;;2237:259;;2107:396;;;:::o;1884:249:3:-;1980:7;2078:20;1341:15;;;1264:99;2078:20;2049:63;;-1:-1:-1;;;2049:63:3;;;29122:27:21;29165:11;;;29158:27;;;;29201:12;;;29194:28;;;29238:12;;2049:63:3;28864:392:21;10528:313:7;10627:15;10664:9;10670:2;10664:5;:9::i;:::-;10654:19;;10704:54;10735:1;10739:2;10743:7;10752:5;10704:22;:54::i;:::-;10683:151;;;;-1:-1:-1;;;10683:151:7;;27464:2:21;10683:151:7;;;27446:21:21;27503:2;27483:18;;;27476:30;27542:34;27522:18;;;27515:62;-1:-1:-1;;;27593:18:21;;;27586:48;27651:19;;10683:151:7;27262:414:21;14144:778:7;14294:4;-1:-1:-1;;;;;14314:13:7;;1078:20:14;1116:8;14310:606:7;;14365:2;-1:-1:-1;;;;;14349:36:7;;14386:12;:10;:12::i;:::-;14400:4;14406:7;14415:5;14349:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14349:72:7;;;;;;;;-1:-1:-1;;14349:72:7;;;;;;;;;;;;:::i;:::-;;;14345:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14588:13:7;;14584:266;;14630:60;;-1:-1:-1;;;14630:60:7;;27464:2:21;14630:60:7;;;27446:21:21;27503:2;27483:18;;;27476:30;27542:34;27522:18;;;27515:62;-1:-1:-1;;;27593:18:21;;;27586:48;27651:19;;14630:60:7;27262:414:21;14584:266:7;14802:6;14796:13;14787:6;14783:2;14779:15;14772:38;14345:519;-1:-1:-1;;;;;;14471:51:7;-1:-1:-1;;;14471:51:7;;-1:-1:-1;14464:58:7;;14310:606;-1:-1:-1;14901:4:7;14894:11;;1064:1459:17;1142:7;1217:9;1236;1255:7;1470:9;:16;1490:2;1470:22;1466:1011;;;-1:-1:-1;;;1752:4:17;1737:20;;1731:27;1801:4;1786:20;;1780:27;1858:4;1843:20;;1837:27;1834:1;1829:36;1466:1011;;;1899:9;:16;1919:2;1899:22;1895:582;;;-1:-1:-1;;;2186:4:17;2171:20;;2165:27;2235:4;2220:20;;2214:27;;2271:66;2263:75;;;2368:3;2364:12;2378:2;2360:21;1895:582;;;2425:41;;-1:-1:-1;;;2425:41:17;;30234:2:21;2425:41:17;;;30216:21:21;30273:2;30253:18;;;30246:30;30312:33;30292:18;;;30285:61;30363:18;;2425:41:17;30032:355:21;1895:582:17;2494:22;2502:4;2508:1;2511;2514;2494:7;:22::i;:::-;2487:29;1064:1459;-1:-1:-1;;;;;;1064:1459:17:o;4360:265::-;4559:58;;30634:66:21;4559:58:17;;;30622:79:21;30717:12;;;30710:28;;;4429:7:17;;30754:12:21;;4559:58:17;30392:380:21;11163:314:7;11216:15;-1:-1:-1;;;;;11251:16:7;;11243:61;;;;-1:-1:-1;;;11243:61:7;;30979:2:21;11243:61:7;;;30961:21:21;;;30998:18;;;30991:30;31057:34;31037:18;;;31030:62;31109:18;;11243:61:7;30777:356:21;11243:61:7;-1:-1:-1;11324:7:7;:14;11405:7;:16;;;;;;;-1:-1:-1;11405:16:7;;;;;;;-1:-1:-1;;;;;;11405:16:7;-1:-1:-1;;;;;11405:16:7;;;;;;;;11437:33;;11462:7;;-1:-1:-1;11437:33:7;;-1:-1:-1;;11437:33:7;11163:314;;;:::o;2656:1414:17:-;2741:7;3656:66;3642:80;;;3634:127;;;;-1:-1:-1;;;3634:127:17;;31340:2:21;3634:127:17;;;31322:21:21;31379:2;31359:18;;;31352:30;31418:34;31398:18;;;31391:62;-1:-1:-1;;;31469:18:21;;;31462:32;31511:19;;3634:127:17;31138:398:21;3634:127:17;3779:1;:7;;3784:2;3779:7;:18;;;;3790:1;:7;;3795:2;3790:7;3779:18;3771:65;;;;-1:-1:-1;;;3771:65:17;;31743:2:21;3771:65:17;;;31725:21:21;31782:2;31762:18;;;31755:30;31821:34;31801:18;;;31794:62;-1:-1:-1;;;31872:18:21;;;31865:32;31914:19;;3771:65:17;31541:398:21;3771:65:17;3948:24;;;3931:14;3948:24;;;;;;;;;25504:25:21;;;25577:4;25565:17;;25545:18;;;25538:45;;;;25599:18;;;25592:34;;;25642:18;;;25635:34;;;3948:24:17;;25476:19:21;;3948:24:17;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3948:24:17;;-1:-1:-1;;3948:24:17;;;-1:-1:-1;;;;;;;3990:20:17;;3982:57;;;;-1:-1:-1;;;3982:57:17;;32146:2:21;3982:57:17;;;32128:21:21;32185:2;32165:18;;;32158:30;32224:26;32204:18;;;32197:54;32268:18;;3982:57:17;31944:348:21;3982:57:17;4057:6;2656:1414;-1:-1:-1;;;;;2656:1414:17:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:21;-1:-1:-1;;;;;;88:32:21;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:21;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:21;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:21:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:21;;1343:180;-1:-1:-1;1343:180:21:o;1759:154::-;-1:-1:-1;;;;;1838:5:21;1834:54;1827:5;1824:65;1814:93;;1903:1;1900;1893:12;1918:315;1986:6;1994;2047:2;2035:9;2026:7;2022:23;2018:32;2015:52;;;2063:1;2060;2053:12;2015:52;2102:9;2089:23;2121:31;2146:5;2121:31;:::i;:::-;2171:5;2223:2;2208:18;;;;2195:32;;-1:-1:-1;;;1918:315:21:o;2238:127::-;2299:10;2294:3;2290:20;2287:1;2280:31;2330:4;2327:1;2320:15;2354:4;2351:1;2344:15;2370:631;2434:5;2464:18;2505:2;2497:6;2494:14;2491:40;;;2511:18;;:::i;:::-;2586:2;2580:9;2554:2;2640:15;;-1:-1:-1;;2636:24:21;;;2662:2;2632:33;2628:42;2616:55;;;2686:18;;;2706:22;;;2683:46;2680:72;;;2732:18;;:::i;:::-;2772:10;2768:2;2761:22;2801:6;2792:15;;2831:6;2823;2816:22;2871:3;2862:6;2857:3;2853:16;2850:25;2847:45;;;2888:1;2885;2878:12;2847:45;2938:6;2933:3;2926:4;2918:6;2914:17;2901:44;2993:1;2986:4;2977:6;2969;2965:19;2961:30;2954:41;;;;2370:631;;;;;:::o;3006:220::-;3048:5;3101:3;3094:4;3086:6;3082:17;3078:27;3068:55;;3119:1;3116;3109:12;3068:55;3141:79;3216:3;3207:6;3194:20;3187:4;3179:6;3175:17;3141:79;:::i;3231:758::-;3333:6;3341;3349;3357;3365;3418:3;3406:9;3397:7;3393:23;3389:33;3386:53;;;3435:1;3432;3425:12;3386:53;3474:9;3461:23;3493:31;3518:5;3493:31;:::i;:::-;3543:5;-1:-1:-1;3599:2:21;3584:18;;3571:32;3626:18;3615:30;;3612:50;;;3658:1;3655;3648:12;3612:50;3681:49;3722:7;3713:6;3702:9;3698:22;3681:49;:::i;:::-;3671:59;;;3777:2;3766:9;3762:18;3749:32;3739:42;;3828:2;3817:9;3813:18;3800:32;3790:42;;3884:3;3873:9;3869:19;3856:33;3933:4;3924:7;3920:18;3911:7;3908:31;3898:59;;3953:1;3950;3943:12;3898:59;3976:7;3966:17;;;3231:758;;;;;;;;:::o;4581:456::-;4658:6;4666;4674;4727:2;4715:9;4706:7;4702:23;4698:32;4695:52;;;4743:1;4740;4733:12;4695:52;4782:9;4769:23;4801:31;4826:5;4801:31;:::i;:::-;4851:5;-1:-1:-1;4908:2:21;4893:18;;4880:32;4921:33;4880:32;4921:33;:::i;:::-;4581:456;;4973:7;;-1:-1:-1;;;5027:2:21;5012:18;;;;4999:32;;4581:456::o;5042:247::-;5101:6;5154:2;5142:9;5133:7;5129:23;5125:32;5122:52;;;5170:1;5167;5160:12;5122:52;5209:9;5196:23;5228:31;5253:5;5228:31;:::i;5294:450::-;5363:6;5416:2;5404:9;5395:7;5391:23;5387:32;5384:52;;;5432:1;5429;5422:12;5384:52;5472:9;5459:23;5505:18;5497:6;5494:30;5491:50;;;5537:1;5534;5527:12;5491:50;5560:22;;5613:4;5605:13;;5601:27;-1:-1:-1;5591:55:21;;5642:1;5639;5632:12;5591:55;5665:73;5730:7;5725:2;5712:16;5707:2;5703;5699:11;5665:73;:::i;5749:416::-;5814:6;5822;5875:2;5863:9;5854:7;5850:23;5846:32;5843:52;;;5891:1;5888;5881:12;5843:52;5930:9;5917:23;5949:31;5974:5;5949:31;:::i;:::-;5999:5;-1:-1:-1;6056:2:21;6041:18;;6028:32;6098:15;;6091:23;6079:36;;6069:64;;6129:1;6126;6119:12;6069:64;6152:7;6142:17;;;5749:416;;;;;:::o;6170:681::-;6341:2;6393:21;;;6463:13;;6366:18;;;6485:22;;;6312:4;;6341:2;6564:15;;;;6538:2;6523:18;;;6312:4;6607:218;6621:6;6618:1;6615:13;6607:218;;;6686:13;;-1:-1:-1;;;;;6682:62:21;6670:75;;6800:15;;;;6765:12;;;;6643:1;6636:9;6607:218;;;-1:-1:-1;6842:3:21;;6170:681;-1:-1:-1;;;;;;6170:681:21:o;6856:665::-;6951:6;6959;6967;6975;7028:3;7016:9;7007:7;7003:23;6999:33;6996:53;;;7045:1;7042;7035:12;6996:53;7084:9;7071:23;7103:31;7128:5;7103:31;:::i;:::-;7153:5;-1:-1:-1;7210:2:21;7195:18;;7182:32;7223:33;7182:32;7223:33;:::i;:::-;7275:7;-1:-1:-1;7329:2:21;7314:18;;7301:32;;-1:-1:-1;7384:2:21;7369:18;;7356:32;7411:18;7400:30;;7397:50;;;7443:1;7440;7433:12;7397:50;7466:49;7507:7;7498:6;7487:9;7483:22;7466:49;:::i;:::-;7456:59;;;6856:665;;;;;;;:::o;7526:632::-;7697:2;7749:21;;;7819:13;;7722:18;;;7841:22;;;7668:4;;7697:2;7920:15;;;;7894:2;7879:18;;;7668:4;7963:169;7977:6;7974:1;7971:13;7963:169;;;8038:13;;8026:26;;8107:15;;;;8072:12;;;;7999:1;7992:9;7963:169;;8163:796;8260:6;8268;8276;8284;8292;8345:3;8333:9;8324:7;8320:23;8316:33;8313:53;;;8362:1;8359;8352:12;8313:53;8398:9;8385:23;8375:33;;8459:2;8448:9;8444:18;8431:32;8482:18;8523:2;8515:6;8512:14;8509:34;;;8539:1;8536;8529:12;8509:34;8577:6;8566:9;8562:22;8552:32;;8622:7;8615:4;8611:2;8607:13;8603:27;8593:55;;8644:1;8641;8634:12;8593:55;8684:2;8671:16;8710:2;8702:6;8699:14;8696:34;;;8726:1;8723;8716:12;8696:34;8771:7;8766:2;8757:6;8753:2;8749:15;8745:24;8742:37;8739:57;;;8792:1;8789;8782:12;8739:57;8163:796;;8823:2;8815:11;;;;;-1:-1:-1;8845:6:21;;8898:2;8883:18;;8870:32;;-1:-1:-1;8949:2:21;8934:18;8921:32;;-1:-1:-1;8163:796:21;-1:-1:-1;;;8163:796:21:o;8964:388::-;9032:6;9040;9093:2;9081:9;9072:7;9068:23;9064:32;9061:52;;;9109:1;9106;9099:12;9061:52;9148:9;9135:23;9167:31;9192:5;9167:31;:::i;:::-;9217:5;-1:-1:-1;9274:2:21;9259:18;;9246:32;9287:33;9246:32;9287:33;:::i;9357:380::-;9436:1;9432:12;;;;9479;;;9500:61;;9554:4;9546:6;9542:17;9532:27;;9500:61;9607:2;9599:6;9596:14;9576:18;9573:38;9570:161;;;9653:10;9648:3;9644:20;9641:1;9634:31;9688:4;9685:1;9678:15;9716:4;9713:1;9706:15;11384:455;11566:4;-1:-1:-1;;;;;11676:2:21;11668:6;11664:15;11653:9;11646:34;11728:2;11720:6;11716:15;11711:2;11700:9;11696:18;11689:43;;11768:2;11763;11752:9;11748:18;11741:30;11788:45;11829:2;11818:9;11814:18;11806:6;11788:45;:::i;11844:184::-;11885:3;11923:5;11917:12;11938:52;11983:6;11978:3;11971:4;11964:5;11960:16;11938:52;:::i;:::-;12006:16;;;;;11844:184;-1:-1:-1;;11844:184:21:o;12033:415::-;12190:3;12228:6;12222:13;12244:53;12290:6;12285:3;12278:4;12270:6;12266:17;12244:53;:::i;:::-;12366:2;12362:15;;;;-1:-1:-1;;12358:53:21;12319:16;;;;12344:68;;;12439:2;12428:14;;12033:415;-1:-1:-1;;12033:415:21:o;12453:274::-;12582:3;12620:6;12614:13;12636:53;12682:6;12677:3;12670:4;12662:6;12658:17;12636:53;:::i;:::-;12705:16;;;;;12453:274;-1:-1:-1;;12453:274:21:o;13435:127::-;13496:10;13491:3;13487:20;13484:1;13477:31;13527:4;13524:1;13517:15;13551:4;13548:1;13541:15;13567:128;13607:3;13638:1;13634:6;13631:1;13628:13;13625:39;;;13644:18;;:::i;:::-;-1:-1:-1;13680:9:21;;13567:128::o;14049:135::-;14088:3;-1:-1:-1;;14109:17:21;;14106:43;;;14129:18;;:::i;:::-;-1:-1:-1;14176:1:21;14165:13;;14049:135::o;14189:127::-;14250:10;14245:3;14241:20;14238:1;14231:31;14281:4;14278:1;14271:15;14305:4;14302:1;14295:15;17442:125;17482:4;17510:1;17507;17504:8;17501:34;;;17515:18;;:::i;:::-;-1:-1:-1;17552:9:21;;17442:125::o;18268:168::-;18308:7;18374:1;18370;18366:6;18362:14;18359:1;18356:21;18351:1;18344:9;18337:17;18333:45;18330:71;;;18381:18;;:::i;:::-;-1:-1:-1;18421:9:21;;18268:168::o;19789:1705::-;20215:3;20253:6;20247:13;20279:4;20292:51;20336:6;20331:3;20326:2;20318:6;20314:15;20292:51;:::i;:::-;-1:-1:-1;;;20365:16:21;;;20390:18;;;20475:13;;20427:1;;20448;;20537:18;;;20590;;;;20617:93;;20695:4;20685:8;20681:19;20669:31;;20617:93;20758:2;20748:8;20745:16;20725:18;20722:40;20719:167;;;-1:-1:-1;;;20785:33:21;;20841:4;20838:1;20831:15;20871:4;20792:3;20859:17;20719:167;20902:18;20929:128;;;;21071:1;21066:346;;;;20895:517;;20929:128;-1:-1:-1;;20973:24:21;;20957:14;;;20950:48;21022:20;;;21018:29;;;-1:-1:-1;20929:128:21;;21066:346;19736:1;19729:14;;;19773:4;19760:18;;21161:1;21175:178;21189:8;21186:1;21183:15;21175:178;;;21280:14;;21260:13;;;21256:22;;21249:46;21323:16;;;;21206:10;;21175:178;;;21179:3;;21399:2;21388:8;21381:5;21377:20;21373:29;21366:36;;20895:517;;;;;21428:60;21453:34;21483:3;-1:-1:-1;;;19609:16:21;;19650:1;19641:11;;19544:114;21453:34;21445:6;21428:60;:::i;:::-;21421:67;19789:1705;-1:-1:-1;;;;;;;;;19789:1705:21:o;21499:614::-;21779:3;21817:6;21811:13;21833:53;21879:6;21874:3;21867:4;21859:6;21855:17;21833:53;:::i;:::-;-1:-1:-1;;;21908:16:21;;;21933:18;;;21976:13;;21998:65;21976:13;22050:1;22039:13;;22032:4;22020:17;;21998:65;:::i;:::-;22083:20;22105:1;22079:28;;21499:614;-1:-1:-1;;;;21499:614:21:o;23148:278::-;23245:6;23298:2;23286:9;23277:7;23273:23;23269:32;23266:52;;;23314:1;23311;23304:12;23266:52;23346:9;23340:16;23365:31;23390:5;23365:31;:::i;27681:127::-;27742:10;27737:3;27733:20;27730:1;27723:31;27773:4;27770:1;27763:15;27797:4;27794:1;27787:15;27813:120;27853:1;27879;27869:35;;27884:18;;:::i;:::-;-1:-1:-1;27918:9:21;;27813:120::o;27938:112::-;27970:1;27996;27986:35;;28001:18;;:::i;:::-;-1:-1:-1;28035:9:21;;27938:112::o;29261:512::-;29455:4;-1:-1:-1;;;;;29565:2:21;29557:6;29553:15;29542:9;29535:34;29617:2;29609:6;29605:15;29600:2;29589:9;29585:18;29578:43;;29657:6;29652:2;29641:9;29637:18;29630:34;29700:3;29695:2;29684:9;29680:18;29673:31;29721:46;29762:3;29751:9;29747:19;29739:6;29721:46;:::i;29778:249::-;29847:6;29900:2;29888:9;29879:7;29875:23;29871:32;29868:52;;;29916:1;29913;29906:12;29868:52;29948:9;29942:16;29967:30;29991:5;29967:30;:::i

Swarm Source

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