ETH Price: $3,299.58 (-3.29%)
Gas: 22 Gwei

Token

GenHall (GENHALL)
 

Overview

Max Total Supply

2,721 GENHALL

Holders

751

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 GENHALL
0x7768fbc67afecf2b4caee9d1841ad14637d13652
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GenHallCollection

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-11
*/

//.:::.     .........  ...     ...       ....    ...     ....     ...        ...       
//  .*@@@@@@@*.  @@@@@@@@@: #@@@-  :@@#       #@@*   +@@%    =@@@@=    #@@+      =@@%       
//  @@@*. .+##*  @@@+::::.  #@@@@#::@@#       #@@#:::*@@%   .@@%%@@:   #@@+      =@@%       
// :@@@: +%%%%#  @@@@@@@@=  #@@%@@@%@@#       #@@@@@@@@@%   %@@:-@@%   #@@+      =@@%       
//  @@@*.:-#@@@  @@@+.....  #@@-:#@@@@#       #@@#...+@@%  *@@@##@@@*  #@@*::::: =@@@:::::  
//  :#@@@@@@#@@  @@@@@@@@@- #@@-  -@@@#       #@@*   +@@% -@@@====@@@= #@@@@@@@@ =@@@@@@@@= 
//     .::.  ..  .........  ...     ...       ....    ... ....    .... .........  ........

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IGenHallInterface {
    function upgradeGenHallTokenContract(address _genHallTokenAddress) external;

    function setAllowGen(bool allow) external;

    function genAllowed() external view returns (bool);

    function getMembershipTier(uint256 _membershipId) external view returns (uint256);

    function transferFrom(
        address _from,
        address _to,
        uint256 _amount
    ) external;

    function balanceOf(address _owner) external view returns (uint256);

    function ownerOf(uint256 _membershipId) external view returns (address);
}

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

/**
 * @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() {
        _setOwner(_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 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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

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

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

/**
 * @dev 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;
        assembly {
            size := extcodesize(account)
        }
        return size > 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. 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;
        }
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

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

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

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

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

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */

contract GenHallCollection is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable,
    Ownable
{
    using Address for address;
    using Strings for uint256;
    using Counters for Counters.Counter;
    using SafeMath for uint256;

    struct Collection {
        bool active;
        uint256 tier;
        uint256 invocations;
        uint256 maxInvocations;
        uint256 maxMint;
        bool requiresMembership;
        string script;
        uint256 price;
        uint256 priceGen;
        uint256 artistPercentage;
        uint256 artistRewards;
        address artist;
        mapping(address => uint256) collaboratorPercentages;
        mapping(address => uint256) collaboratorShares;
        address[] collaborators;
        uint256[] maxMintPerMembershipTier;
        uint256 maxMintPerTransaction;
    }

    event Mint(address to, uint256 collectionId, uint256 tokenId, bytes32 hash);

    // IGenHallMintState _genHallMintState;
    mapping(uint256 => Collection) private _collectionsMap;

    // Mapping collectionId to membershipId and total mints
    mapping(uint256 => mapping(uint256 => uint256)) private _collectionsMembershipMintMap;
    mapping(uint256 => mapping(address => uint256)) private _collectionsMintMap;

    mapping(uint256 => bytes32) private _tokenIdToHashMap;
    mapping(uint256 => uint256) private _tokenIdToCollectionIdMap;
    Counters.Counter private _collectionIdCounter;
    IGenHallInterface private _genHallInterface;

    function getCurrentCounter() public view returns(uint256) {
        return _collectionIdCounter.current();
    }

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Base URI
    string private _baseURI;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @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_;
        _collectionIdCounter.increment();
    }

    modifier onlyArtist(uint256 _collectionId) {
        require(
            _collectionsMap[_collectionId].artist == _msgSender(),
            "GenHallCollection: only artist can call this function"
        );
        _;
    }

    modifier onlyCollaborator(uint256 _collectionId) {
        require(
            _collectionsMap[_collectionId].collaboratorPercentages[_msgSender()] > 0,
            "GenHallCollection: only collaborators can call this function"
        );
        _;
    }

    function setMembershipRequired(uint256 _collectionId, bool membershipRequired) public onlyOwner {
        _collectionsMap[_collectionId].requiresMembership = membershipRequired;
    }

    function getMembershipRequired(uint256 _collectionId) public view returns(bool){
        return _collectionsMap[_collectionId].requiresMembership;
    }

    function setCollectionActive(uint256 _collectionId, bool active) public onlyOwner {
        _collectionsMap[_collectionId].active = active;
    }

    function isCollectionActive(uint256 _collectionId) public view returns(bool){
        return _collectionsMap[_collectionId].active;
    }

    function getArtistRewards(uint256 _collectionId) public view returns(uint256) {
        return _collectionsMap[_collectionId].artistRewards;
    }

    function getArtistPercentage(uint256 _collectionId) public view returns(uint256) {
        return _collectionsMap[_collectionId].artistPercentage;
    }

    function withdrawArtist(uint256 _collectionId) public onlyArtist(_collectionId) {
        uint256 withdrawAmount = _collectionsMap[_collectionId].artistRewards;

        _collectionsMap[_collectionId].artistRewards = 0;

        payable(_msgSender()).transfer(withdrawAmount);
    }

    function getCollaboratorShares(uint256 _collectionId, address _collaboratorAddress) public view returns(uint256) {
        return _collectionsMap[_collectionId].collaboratorShares[_collaboratorAddress];
    }

    function getCollaboratorPercentage(uint256 _collectionId, address _collaboratorAddress) public view returns(uint256) {
        return _collectionsMap[_collectionId].collaboratorPercentages[_collaboratorAddress];
    }

    function withdrawCollaborator(uint256 _collectionId) public onlyCollaborator(_collectionId) {
        uint256 withdrawAmount = _collectionsMap[_collectionId].collaboratorShares[_msgSender()];

        _collectionsMap[_collectionId].collaboratorShares[_msgSender()] = 0;

        payable(_msgSender()).transfer(withdrawAmount);
    }

    function createCollection(
        address _artist,
        uint256 _artistPercentage,
        uint256 _price,
        uint256 _priceGen,
        uint256 _maxInvocations,
        uint256 _maxMint,
        bool _requiresMembership,
        address[] memory _collaborators,
        uint256[] memory _collaboratorPercentages,
        uint256 _maxMintPerTransaction
    ) public onlyOwner {
        uint256 _collectionId = _collectionIdCounter.current();

        Collection storage collection = _collectionsMap[_collectionId];

        collection.active = false;
        collection.tier = 1;
        collection.maxMintPerMembershipTier = [1];
        collection.invocations = 0;
        collection.maxInvocations = _maxInvocations;
        collection.maxMint = _maxMint;
        collection.requiresMembership = _requiresMembership;
        collection.price = _price;
        collection.priceGen = _priceGen;
        collection.artistPercentage = _artistPercentage;
        collection.artist = _artist;
        collection.collaborators = _collaborators;
        collection.maxMintPerTransaction = _maxMintPerTransaction;

        uint256 sharesPercentageTotal = _artistPercentage;

        for (uint i = 0; i < collection.collaborators.length; i++) {
            sharesPercentageTotal += _collaboratorPercentages[i];
            collection.collaboratorPercentages[collection.collaborators[i]] =
                _collaboratorPercentages[i];
        }

        require(sharesPercentageTotal == 100, "The shares percentages (artist + collaborators) must add up to 100");

        _collectionIdCounter.increment();
    }

    function updateMaxMint(uint256 _collectionId, uint256 _maxMint) public onlyOwner {
        _collectionsMap[_collectionId].maxMint = _maxMint;
    }

    function updateTier(uint256 _collectionId, uint256 _tier) public onlyOwner {
        _collectionsMap[_collectionId].tier = _tier;
    }

    function updateMaxMintPerMembershipTier(uint256 _collectionId, uint256[] memory _maxMintPerMembershipTier) public onlyOwner {
        _collectionsMap[_collectionId].maxMintPerMembershipTier = _maxMintPerMembershipTier;
    }

    function checkMint(
        address _sender,
        uint256 _collectionId,
        uint256 _membershipId,
        uint256 _value,
        uint256 _amount,
        bool _isEthPayment
    ) internal virtual {
        require(
            _collectionsMap[_collectionId].active == true,
            "GenHallCollection: the collection is still not active, and thus cannot be minted"
        );

        require(
            _collectionsMap[_collectionId].invocations <
                _collectionsMap[_collectionId].maxInvocations,
            "GenHallCollection: max invocations was reached"
        );

        require(
            _amount <= _collectionsMap[_collectionId].maxMintPerTransaction,
            "GenHallCollection: mint amount is over max mint per transaction"
        );

        uint256 avaliableMints = _collectionsMap[_collectionId].maxMint;

        if (_collectionsMap[_collectionId].requiresMembership) {
            address _membershipOwner = _genHallInterface.ownerOf(_membershipId);
            require(
                _membershipOwner == _sender,
                "GenHallCollection: sender must be membership owner"
            );
            uint256 _tier = _genHallInterface.getMembershipTier(_membershipId);
            require(
                _tier >= _collectionsMap[_collectionId].tier,
                "GenHallCollection: no valid membership"
            );
            avaliableMints = getAllowedMintForMembership(
                _collectionId,
                _membershipId
            );
        }
        else{
            avaliableMints = _collectionsMap[_collectionId].maxMint - _collectionsMintMap[_collectionId][_msgSender()];
        }

        require(
            avaliableMints >= _amount,
            "GenHallCollection: not enough mints avaliable for your allowance"
        );
        if (_isEthPayment) {
            require(
                _collectionsMap[_collectionId].price * _amount <= _value,
                "GenHallCollection: incorrect amount sent"
            );
        } else {
            require(
                _collectionsMap[_collectionId].priceGen * _amount <= _value,
                "GenHallCollection: insufficient $GENHALL balance"
            );
        }
    }

    function mint(
        address _to,
        uint256 _collectionId,
        uint256 _membershipId
    ) public payable {
        checkMint(_msgSender(), _collectionId, _membershipId, msg.value, 1, true);
        updateMintState(_collectionId, _membershipId, 1);
        _mintOne(_to, _collectionId);
        splitFunds(_msgSender(), _collectionId, 1, true);
    }

    function mintGen(
        address _to,
        uint256 _collectionId,
        uint256 _membershipId
    ) public {
        bool _genAllowed = _genHallInterface.genAllowed();
        require(_genAllowed, "Mint with $GENHALL not allowed");
        uint256 balance = _genHallInterface.balanceOf(_msgSender());
        checkMint(_msgSender(), _collectionId, _membershipId, balance, 1, false);
        updateMintState(_collectionId, _membershipId, 1);
        _mintOne(_to, _collectionId);
        splitFunds(_msgSender(), _collectionId, 1, false);
    }

    function mintMany(
        address _to,
        uint256 _collectionId,
        uint256 _membershipId,
        uint256 _amount
    ) public payable {
        checkMint(
            _msgSender(),
            _collectionId,
            _membershipId,
            msg.value,
            _amount,
            true
        );
        updateMintState(_collectionId, _membershipId, _amount);
        _mintMany(_to, _collectionId, _amount);
        splitFunds(_msgSender(), _collectionId, _amount, true);
    }

    function mintManyGen(
        address _to,
        uint256 _collectionId,
        uint256 _membershipId,
        uint256 _amount
    ) public {
        bool _genAllowed = _genHallInterface.genAllowed();
        require(_genAllowed, "Mint with $GENHALL not allowed");
        uint256 balance = _genHallInterface.balanceOf(_msgSender());
        checkMint(
            _msgSender(),
            _collectionId,
            _membershipId,
            balance,
            _amount,
            false
        );
        updateMintState(_collectionId, _membershipId, _amount);
        _mintMany(_to, _collectionId, _amount);
        splitFunds(_msgSender(), _collectionId, _amount, false);
    }

    function _mintMany(
        address _to,
        uint256 _collectionId,
        uint256 _amount
    ) internal virtual {
        for (uint256 i = 0; i < _amount; i++) {
            _mintOne(_to, _collectionId);
        }
    }

    function _mintOne(address _to, uint256 _collectionId) internal virtual {
        uint256 invocation = _collectionsMap[_collectionId].invocations + 1;
        uint256 _tokenId = _collectionId * 100000 + invocation;
        _collectionsMap[_collectionId].invocations = invocation;

        bytes32 hash = keccak256(
            abi.encodePacked(invocation, block.number, block.difficulty, _to)
        );
        _tokenIdToHashMap[_tokenId] = hash;
        _tokenIdToCollectionIdMap[_tokenId] = _collectionId;

        _safeMint(_to, _tokenId);

        emit Mint(_to, _collectionId, _tokenId, hash);
    }

    function splitFunds(
        address _sender,
        uint256 _collectionId,
        uint256 _amount,
        bool _isEthPayment
    ) internal virtual {
        uint256 value = _isEthPayment
            ? _collectionsMap[_collectionId].price * _amount
            : _collectionsMap[_collectionId].priceGen * _amount;
        address _owner = owner();
        uint256 artistReward = (value *
            _collectionsMap[_collectionId].artistPercentage) / 100;

        if (_isEthPayment) {
            _collectionsMap[_collectionId].artistRewards += artistReward;

            for (uint i = 0; i < _collectionsMap[_collectionId].collaborators.length; i++) {
                uint256 collaboratorShare = (value *
                    _collectionsMap[_collectionId].collaboratorPercentages[_collectionsMap[_collectionId].collaborators[i]]) / 100;

                _collectionsMap[_collectionId].collaboratorShares[_collectionsMap[_collectionId].collaborators[i]] += collaboratorShare;
            }
        } else {
            // handle collaborators
            uint256 collaboratorSharesTotal = 0;
            for (uint i = 0; i < _collectionsMap[_collectionId].collaborators.length; i++) {
                uint256 collaboratorShare = (value *
                    _collectionsMap[_collectionId].collaboratorPercentages[_collectionsMap[_collectionId].collaborators[i]]) / 100;
                _genHallInterface.transferFrom(
                    _sender,
                    _collectionsMap[_collectionId].collaborators[i],
                    collaboratorShare
                );
                collaboratorSharesTotal += collaboratorShare;
            }

            // handle artist
            _genHallInterface.transferFrom(
                _sender,
                _collectionsMap[_collectionId].artist,
                artistReward
            );

            // finally, handle owner who gets remaining
            _genHallInterface.transferFrom(
                _sender,
                _owner,
                value - artistReward - collaboratorSharesTotal
            );
        }
    }

    function burn(uint256 _tokenId) public {
        _burn(_tokenId);
    }

    function getMaxMintPerTransaction(uint256 _collectionId) public view returns(uint256){
        return _collectionsMap[_collectionId].maxMintPerTransaction;
    }

    function getMaxMintForMembership(
        uint256 _collectionId,
        uint256 _membershipId
    ) public view returns (uint256) {
        uint256 _tier = _genHallInterface.getMembershipTier(_membershipId);

        return _tier < _collectionsMap[_collectionId].maxMintPerMembershipTier.length ?
            _collectionsMap[_collectionId].maxMintPerMembershipTier[_tier] :
            _collectionsMap[_collectionId].maxMintPerMembershipTier[_collectionsMap[_collectionId].maxMintPerMembershipTier.length - 1];
    }

    function getMembershipTier(uint256 _membershipId) public view returns(uint256) {
        return _genHallInterface.getMembershipTier(_membershipId);
    }

    function getAllowedMintForMembership(
        uint256 _collectionId,
        uint256 _membershipId
    ) public view returns (uint256) {
        return getMaxMintForMembership(_collectionId, _membershipId) - _collectionsMembershipMintMap[_collectionId][_membershipId];
    }

    function getMaxMintForNonMembership(uint256 _collectionId) public view returns(uint256) {
        return _collectionsMap[_collectionId].maxMint;
    }

    function remainingNonMembershipMint(uint256 _collectionId) public view returns(uint256) {
        return _collectionsMap[_collectionId].maxMint - _collectionsMintMap[_collectionId][_msgSender()];
    }

    function updateMintState(
        uint256 _collectionId,
        uint256 _membershipId,
        uint256 _amount
    ) internal virtual {
        if (_collectionsMap[_collectionId].requiresMembership) {
            _collectionsMembershipMintMap[_collectionId][_membershipId] =
                _collectionsMembershipMintMap[_collectionId][_membershipId] +
                _amount;
        } else {
            _collectionsMintMap[_collectionId][_msgSender()] =
                _collectionsMintMap[_collectionId][_msgSender()] +
                _amount;
        }
    }

    function updateArtistAddress(uint256 _collectionId, address _artist)
        public
        onlyArtist(_collectionId)
    {
        _collectionsMap[_collectionId].artist = _artist;
    }

    function updateMaxInvocations(
        uint256 _collectionId,
        uint256 _maxInvocations
    ) public onlyOwner {
        _collectionsMap[_collectionId].maxInvocations = _maxInvocations;
    }

    function updateScript(uint256 _collectionId, string memory _script)
        public
        onlyOwner
    {
        _collectionsMap[_collectionId].script = _script;
    }

    function upgradeGenHallInterfaceContract(address _genHallInterfaceAddress)
        public
        onlyOwner
    {
        _genHallInterface = IGenHallInterface(_genHallInterfaceAddress);
    }

    function updatePrice(
        uint256 _collectionId,
        uint256 _price,
        uint256 _priceGen
    ) public onlyOwner {
        _collectionsMap[_collectionId].price = _price;
        _collectionsMap[_collectionId].priceGen = _priceGen;
    }

    function getCollectionInfo(uint256 _collectionId)
        public
        view
        returns (
            uint256 invocations,
            uint256 maxInvocations,
            uint256 price,
            uint256 priceGen,
            address artist,
            uint256 artistPercentage,
            bool requiresMembership
        )
    {
        return (
            _collectionsMap[_collectionId].invocations,
            _collectionsMap[_collectionId].maxInvocations,
            _collectionsMap[_collectionId].price,
            _collectionsMap[_collectionId].priceGen,
            _collectionsMap[_collectionId].artist,
            _collectionsMap[_collectionId].artistPercentage,
            _collectionsMap[_collectionId].requiresMembership
        );
    }

    function getTokenInfo(uint256 _tokenId)
        public
        view
        returns (
            uint256,
            uint256,
            address,
            bytes32
        )
    {
        _exists(_tokenId);
        bytes32 hash = _tokenIdToHashMap[_tokenId];
        uint256 _collectionId = _tokenIdToCollectionIdMap[_tokenId];
        address owner = GenHallCollection.ownerOf(_tokenId);

        return (_tokenId, _collectionId, owner, hash);
    }

    function getTokensByOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokenIds;
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = GenHallCollection.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
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _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 = GenHallCollection.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, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

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

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

        _balances[to] += 1;
        _owners[tokenId] = 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 = GenHallCollection.ownerOf(tokenId);
        require(
            _msgSender() == owner,
            "GenHallCollection: only token owner can burn"
        );
        _beforeTokenTransfer(owner, address(0), tokenId);
        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        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 _msgSender().
     *
     * 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(
            GenHallCollection.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);

        _balances[from] -= 1;
        _balances[to] += 1;
        _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(GenHallCollection.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @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 See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < GenHallCollection.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < GenHallCollection.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

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

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = GenHallCollection.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = GenHallCollection.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"collectionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"Mint","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_artist","type":"address"},{"internalType":"uint256","name":"_artistPercentage","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_priceGen","type":"uint256"},{"internalType":"uint256","name":"_maxInvocations","type":"uint256"},{"internalType":"uint256","name":"_maxMint","type":"uint256"},{"internalType":"bool","name":"_requiresMembership","type":"bool"},{"internalType":"address[]","name":"_collaborators","type":"address[]"},{"internalType":"uint256[]","name":"_collaboratorPercentages","type":"uint256[]"},{"internalType":"uint256","name":"_maxMintPerTransaction","type":"uint256"}],"name":"createCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_membershipId","type":"uint256"}],"name":"getAllowedMintForMembership","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"getArtistPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"getArtistRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"address","name":"_collaboratorAddress","type":"address"}],"name":"getCollaboratorPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"address","name":"_collaboratorAddress","type":"address"}],"name":"getCollaboratorShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"getCollectionInfo","outputs":[{"internalType":"uint256","name":"invocations","type":"uint256"},{"internalType":"uint256","name":"maxInvocations","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"priceGen","type":"uint256"},{"internalType":"address","name":"artist","type":"address"},{"internalType":"uint256","name":"artistPercentage","type":"uint256"},{"internalType":"bool","name":"requiresMembership","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_membershipId","type":"uint256"}],"name":"getMaxMintForMembership","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"getMaxMintForNonMembership","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"getMaxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"getMembershipRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_membershipId","type":"uint256"}],"name":"getMembershipTier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getTokenInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokensByOwner","outputs":[{"internalType":"uint256[]","name":"","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":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"isCollectionActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_membershipId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_membershipId","type":"uint256"}],"name":"mintGen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_membershipId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_membershipId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintManyGen","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_collectionId","type":"uint256"}],"name":"remainingNonMembershipMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"bool","name":"active","type":"bool"}],"name":"setCollectionActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"bool","name":"membershipRequired","type":"bool"}],"name":"setMembershipRequired","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":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","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":"","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":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"address","name":"_artist","type":"address"}],"name":"updateArtistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_maxInvocations","type":"uint256"}],"name":"updateMaxInvocations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"updateMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256[]","name":"_maxMintPerMembershipTier","type":"uint256[]"}],"name":"updateMaxMintPerMembershipTier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_priceGen","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"string","name":"_script","type":"string"}],"name":"updateScript","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_tier","type":"uint256"}],"name":"updateTier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_genHallInterfaceAddress","type":"address"}],"name":"upgradeGenHallInterfaceContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"withdrawArtist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"withdrawCollaborator","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200454438038062004544833981016040819052620000349162000240565b6200003f336200008a565b815162000054906008906020850190620000e3565b5080516200006a906009906020840190620000e3565b50620000826006620000da60201b6200203f1760201c565b5050620002fd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80546001019055565b828054620000f190620002aa565b90600052602060002090601f01602090048101928262000115576000855562000160565b82601f106200013057805160ff191683800117855562000160565b8280016001018555821562000160579182015b828111156200016057825182559160200191906001019062000143565b506200016e92915062000172565b5090565b5b808211156200016e576000815560010162000173565b600082601f8301126200019b57600080fd5b81516001600160401b0380821115620001b857620001b8620002e7565b604051601f8301601f19908116603f01168101908282118183101715620001e357620001e3620002e7565b816040528381526020925086838588010111156200020057600080fd5b600091505b8382101562000224578582018301518183018401529082019062000205565b83821115620002365760008385830101525b9695505050505050565b600080604083850312156200025457600080fd5b82516001600160401b03808211156200026c57600080fd5b6200027a8683870162000189565b935060208501519150808211156200029157600080fd5b50620002a08582860162000189565b9150509250929050565b600181811c90821680620002bf57607f821691505b60208210811415620002e157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b614237806200030d6000396000f3fe60806040526004361061031a5760003560e01c80637dd346a9116101ab578063bc50f888116100f7578063d4e4d3dd11610095578063ea07e2951161006f578063ea07e29514610acb578063f1d3cc4d14610aeb578063f2fde38b14610b1b578063f48d115414610b3b57600080fd5b8063d4e4d3dd146109ba578063def6a7f214610a62578063e985e9c514610a8257600080fd5b8063c87b56dd116100d1578063c87b56dd1461091a578063cc5d60b31461093a578063cca2379d1461095a578063cf3f42d11461098a57600080fd5b8063bc50f888146108ba578063c65be562146108da578063c86e7a19146108fa57600080fd5b80638da5cb5b116101645780639a3bf6061161013e5780639a3bf6061461082a578063a22cb4651461085a578063b155d57e1461087a578063b88d4fde1461089a57600080fd5b80638da5cb5b146107d757806395d89b41146107f557806397b03b571461080a57600080fd5b80637dd346a9146106e25780637e3ca9ea1461070257806382449a3f1461071557806384e49deb14610735578063884050de146107555780638c7a63ae1461078857600080fd5b806340398d671161026a57806355f804b3116102235780636352211e116101fd5780636352211e1461066d5780636ed5be8e1461068d57806370a08231146106ad57806373448c46146106cd57600080fd5b806355f804b3146105e65780635664faaf146106065780635845bfb11461064d57600080fd5b806340398d671461051957806342842e0e1461054657806342966c68146105665780634f6ccce714610586578063500e10ac146105a657806350308695146105c657600080fd5b8063156e29f6116102d757806323b872dd116102b157806323b872dd146104895780632f745c59146104a957806337160b44146104c95780633efd9ae8146104f957600080fd5b8063156e29f61461041057806318160ddd1461042357806320408c301461044257600080fd5b806301ffc9a71461031f57806306fdde0314610354578063081812fc14610376578063095ea7b3146103ae5780630b2680f9146103d05780630f436129146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a366004613c34565b610b5b565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b50610369610bc8565b60405161034b9190613ecd565b34801561038257600080fd5b50610396610391366004613ca3565b610c5a565b6040516001600160a01b03909116815260200161034b565b3480156103ba57600080fd5b506103ce6103c9366004613aba565b610cf4565b005b3480156103dc57600080fd5b506103ce6103eb366004613d41565b610e0a565b3480156103fc57600080fd5b506103ce61040b366004613dc5565b610e54565b6103ce61041e366004613ae6565b610e9b565b34801561042f57600080fd5b506011545b60405190815260200161034b565b34801561044e57600080fd5b5061043461045d366004613cd5565b60008281526001602090815260408083206001600160a01b0385168452600d0190915290205492915050565b34801561049557600080fd5b506103ce6104a43660046139cb565b610ecd565b3480156104b557600080fd5b506104346104c4366004613aba565b610efe565b3480156104d557600080fd5b5061033f6104e4366004613ca3565b60009081526001602052604090205460ff1690565b34801561050557600080fd5b506103ce610514366004613b1b565b610f94565b34801561052557600080fd5b50610539610534366004613958565b611128565b60405161034b9190613e89565b34801561055257600080fd5b506103ce6105613660046139cb565b6111ca565b34801561057257600080fd5b506103ce610581366004613ca3565b6111e5565b34801561059257600080fd5b506104346105a1366004613ca3565b6111f1565b3480156105b257600080fd5b506103ce6105c1366004613d41565b611284565b3480156105d257600080fd5b506103ce6105e1366004613cfa565b6112d1565b3480156105f257600080fd5b506103ce610601366004613c6e565b611320565b34801561061257600080fd5b50610434610621366004613cd5565b60008281526001602090815260408083206001600160a01b0385168452600c0190915290205492915050565b34801561065957600080fd5b506103ce610668366004613ae6565b611361565b34801561067957600080fd5b50610396610688366004613ca3565b6114f6565b34801561069957600080fd5b506103ce6106a8366004613958565b61156d565b3480156106b957600080fd5b506104346106c8366004613958565b6115b9565b3480156106d957600080fd5b50610434611640565b3480156106ee57600080fd5b506104346106fd366004613ca3565b611650565b6103ce610710366004613b1b565b6116cd565b34801561072157600080fd5b50610434610730366004613ca3565b611705565b34801561074157600080fd5b506103ce610750366004613ca3565b611737565b34801561076157600080fd5b5061033f610770366004613ca3565b60009081526001602052604090206005015460ff1690565b34801561079457600080fd5b506107a86107a3366004613ca3565b611825565b60405161034b949392919093845260208401929092526001600160a01b03166040830152606082015260800190565b3480156107e357600080fd5b506000546001600160a01b0316610396565b34801561080157600080fd5b50610369611881565b34801561081657600080fd5b506103ce610825366004613da3565b611890565b34801561083657600080fd5b50610434610845366004613ca3565b60009081526001602052604090206004015490565b34801561086657600080fd5b506103ce610875366004613a8c565b6118cf565b34801561088657600080fd5b506103ce610895366004613d66565b611994565b3480156108a657600080fd5b506103ce6108b5366004613a0c565b6119e3565b3480156108c657600080fd5b506103ce6108d5366004613b56565b611a15565b3480156108e657600080fd5b506104346108f5366004613da3565b611c40565b34801561090657600080fd5b506103ce610915366004613cd5565b611c75565b34801561092657600080fd5b50610369610935366004613ca3565b611ce2565b34801561094657600080fd5b50610434610955366004613da3565b611dbc565b34801561096657600080fd5b50610434610975366004613ca3565b60009081526001602052604090206009015490565b34801561099657600080fd5b506104346109a5366004613ca3565b60009081526001602052604090206010015490565b3480156109c657600080fd5b50610a226109d5366004613ca3565b60009081526001602052604090206002810154600382015460078301546008840154600b850154600986015460059096015494969395929491936001600160a01b03909116929160ff1690565b6040805197885260208801969096529486019390935260608501919091526001600160a01b0316608084015260a0830152151560c082015260e00161034b565b348015610a6e57600080fd5b506103ce610a7d366004613da3565b611ed0565b348015610a8e57600080fd5b5061033f610a9d366004613992565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205460ff1690565b348015610ad757600080fd5b506103ce610ae6366004613ca3565b611f11565b348015610af757600080fd5b50610434610b06366004613ca3565b6000908152600160205260409020600a015490565b348015610b2757600080fd5b506103ce610b36366004613958565b611f68565b348015610b4757600080fd5b506103ce610b56366004613da3565b612000565b60006001600160e01b031982166380ac58cd60e01b1480610b8c57506001600160e01b03198216635b5e139f60e01b145b80610ba757506001600160e01b0319821663780e9d6360e01b145b80610bc257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060088054610bd7906140f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c03906140f0565b8015610c505780601f10610c2557610100808354040283529160200191610c50565b820191906000526020600020905b815481529060010190602001808311610c3357829003601f168201915b5050505050905090565b6000818152600b60205260408120546001600160a01b0316610cd85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600d60205260409020546001600160a01b031690565b6000610cff826114f6565b9050806001600160a01b0316836001600160a01b03161415610d6d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ccf565b336001600160a01b0382161480610d895750610d898133610a9d565b610dfb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ccf565b610e058383612048565b505050565b6000546001600160a01b03163314610e345760405162461bcd60e51b8152600401610ccf90613f87565b600091825260016020526040909120805460ff1916911515919091179055565b6000546001600160a01b03163314610e7e5760405162461bcd60e51b8152600401610ccf90613f87565b600092835260016020526040909220600781019190915560080155565b610eaa338383346001806120b6565b610eb682826001612643565b610ec083836126e8565b610e0533836001806127fa565b610ed73382612c29565b610ef35760405162461bcd60e51b8152600401610ccf90613fbc565b610e05838383612d1c565b6000610f09836115b9565b8210610f6b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ccf565b506001600160a01b03919091166000908152600f60209081526040808320938352929052205490565b600754604080516337f554b360e11b815290516000926001600160a01b031691636feaa966916004808301926020929190829003018186803b158015610fd957600080fd5b505afa158015610fed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110119190613c17565b9050806110605760405162461bcd60e51b815260206004820152601e60248201527f4d696e742077697468202447454e48414c4c206e6f7420616c6c6f77656400006044820152606401610ccf565b6007546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156110b457600080fd5b505afa1580156110c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ec9190613cbc565b90506110fd338686848760006120b6565b611108858585612643565b611113868685612ec7565b61112033868560006127fa565b505050505050565b60606000611135836115b9565b905060008167ffffffffffffffff811115611152576111526141b2565b60405190808252806020026020018201604052801561117b578160200160208202803683370190505b50905060005b828110156111c2576111938582610efe565b8282815181106111a5576111a561419c565b6020908102919091010152806111ba8161412b565b915050611181565b509392505050565b610e05838383604051806020016040528060008152506119e3565b6111ee81612eee565b50565b60006111fc60115490565b821061125f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ccf565b601182815481106112725761127261419c565b90600052602060002001549050919050565b6000546001600160a01b031633146112ae5760405162461bcd60e51b8152600401610ccf90613f87565b600091825260016020526040909120600501805460ff1916911515919091179055565b6000546001600160a01b031633146112fb5760405162461bcd60e51b8152600401610ccf90613f87565b60008281526001602090815260409091208251610e0592600f90920191840190613682565b6000546001600160a01b0316331461134a5760405162461bcd60e51b8152600401610ccf90613f87565b805161135d90600a9060208401906136cd565b5050565b600754604080516337f554b360e11b815290516000926001600160a01b031691636feaa966916004808301926020929190829003018186803b1580156113a657600080fd5b505afa1580156113ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113de9190613c17565b90508061142d5760405162461bcd60e51b815260206004820152601e60248201527f4d696e742077697468202447454e48414c4c206e6f7420616c6c6f77656400006044820152606401610ccf565b6007546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b15801561148157600080fd5b505afa158015611495573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b99190613cbc565b90506114cb33858584600160006120b6565b6114d784846001612643565b6114e185856126e8565b6114ef3385600160006127fa565b5050505050565b6000818152600b60205260408120546001600160a01b031680610bc25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ccf565b6000546001600160a01b031633146115975760405162461bcd60e51b8152600401610ccf90613f87565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166116245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ccf565b506001600160a01b03166000908152600c602052604090205490565b600061164b60065490565b905090565b600754604051637dd346a960e01b8152600481018390526000916001600160a01b031690637dd346a99060240160206040518083038186803b15801561169557600080fd5b505afa1580156116a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc29190613cbc565b6116dc338484348560016120b6565b6116e7838383612643565b6116f2848483612ec7565b6116ff33848360016127fa565b50505050565b60008181526003602090815260408083203384528252808320548484526001909252822060040154610bc291906140ad565b6000818152600160209081526040808320338452600c0190915290205481906117c85760405162461bcd60e51b815260206004820152603c60248201527f47656e48616c6c436f6c6c656374696f6e3a206f6e6c7920636f6c6c61626f7260448201527f61746f72732063616e2063616c6c20746869732066756e6374696f6e000000006064820152608401610ccf565b600082815260016020908152604080832033808552600d909101909252822080549290555b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156116ff573d6000803e3d6000fd5b60008060008061184c856000908152600b60205260409020546001600160a01b0316151590565b5060008581526004602090815260408083205460059092528220549091611872886114f6565b97989197965091945092505050565b606060098054610bd7906140f0565b6000546001600160a01b031633146118ba5760405162461bcd60e51b8152600401610ccf90613f87565b60009182526001602052604090912060040155565b6001600160a01b0382163314156119285760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ccf565b336000818152600e602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146119be5760405162461bcd60e51b8152600401610ccf90613f87565b60008281526001602090815260409091208251610e05926006909201918401906136cd565b6119ed3383612c29565b611a095760405162461bcd60e51b8152600401610ccf90613fbc565b6116ff84848484613002565b6000546001600160a01b03163314611a3f5760405162461bcd60e51b8152600401610ccf90613f87565b6000611a4a60065490565b600081815260016020818152604092839020805460ff1916815580830183905583519182019093528181529293509091611a8991600f84019190613740565b5060006002820155600381018890556004810187905560058101805460ff1916871515179055600781018a905560088101899055600981018b9055600b810180546001600160a01b0319166001600160a01b038e161790558451611af690600e8301906020880190613780565b50601081018390558a60005b600e830154811015611ba157858181518110611b2057611b2061419c565b602002602001015182611b339190614062565b9150858181518110611b4757611b4761419c565b602002602001015183600c01600085600e018481548110611b6a57611b6a61419c565b60009182526020808320909101546001600160a01b0316835282019290925260400190205580611b998161412b565b915050611b02565b5080606414611c235760405162461bcd60e51b815260206004820152604260248201527f546865207368617265732070657263656e74616765732028617274697374202b60448201527f20636f6c6c61626f7261746f727329206d7573742061646420757020746f2031606482015261030360f41b608482015260a401610ccf565b611c31600680546001019055565b50505050505050505050505050565b6000828152600260209081526040808320848452909152812054611c648484611dbc565b611c6e91906140ad565b9392505050565b6000828152600160205260409020600b015482906001600160a01b03163314611cb05760405162461bcd60e51b8152600401610ccf90613ee0565b50600091825260016020526040909120600b0180546001600160a01b0319166001600160a01b03909216919091179055565b6000818152600b60205260409020546060906001600160a01b0316611d615760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ccf565b6000611d6b613035565b90506000815111611d8b5760405180602001604052806000815250611c6e565b80611d9584613044565b604051602001611da6929190613e1d565b6040516020818303038152906040529392505050565b600754604051637dd346a960e01b81526004810183905260009182916001600160a01b0390911690637dd346a99060240160206040518083038186803b158015611e0557600080fd5b505afa158015611e19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e3d9190613cbc565b6000858152600160205260409020600f01549091508110611e99576000848152600160208190526040909120600f0180549091611e79916140ad565b81548110611e8957611e8961419c565b9060005260206000200154611ec8565b6000848152600160205260409020600f01805482908110611ebc57611ebc61419c565b90600052602060002001545b949350505050565b6000546001600160a01b03163314611efa5760405162461bcd60e51b8152600401610ccf90613f87565b600091825260016020819052604090922090910155565b6000818152600160205260409020600b015481906001600160a01b03163314611f4c5760405162461bcd60e51b8152600401610ccf90613ee0565b6000828152600160205260408120600a018054919055336117ed565b6000546001600160a01b03163314611f925760405162461bcd60e51b8152600401610ccf90613f87565b6001600160a01b038116611ff75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ccf565b6111ee81613142565b6000546001600160a01b0316331461202a5760405162461bcd60e51b8152600401610ccf90613f87565b60009182526001602052604090912060030155565b80546001019055565b6000818152600d6020526040902080546001600160a01b0319166001600160a01b038416908117909155819061207d826114f6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008581526001602081905260409091205460ff161515146121595760405162461bcd60e51b815260206004820152605060248201527f47656e48616c6c436f6c6c656374696f6e3a2074686520636f6c6c656374696f60448201527f6e206973207374696c6c206e6f74206163746976652c20616e6420746875732060648201526f18d85b9b9bdd081899481b5a5b9d195960821b608482015260a401610ccf565b60008581526001602052604090206003810154600290910154106121d65760405162461bcd60e51b815260206004820152602e60248201527f47656e48616c6c436f6c6c656374696f6e3a206d617820696e766f636174696f60448201526d1b9cc81dd85cc81c995858da195960921b6064820152608401610ccf565b60008581526001602052604090206010015482111561225d5760405162461bcd60e51b815260206004820152603f60248201527f47656e48616c6c436f6c6c656374696f6e3a206d696e7420616d6f756e74206960448201527f73206f766572206d6178206d696e7420706572207472616e73616374696f6e006064820152608401610ccf565b6000858152600160205260409020600481015460059091015460ff161561247d576007546040516331a9108f60e11b8152600481018790526000916001600160a01b031690636352211e9060240160206040518083038186803b1580156122c357600080fd5b505afa1580156122d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122fb9190613975565b9050876001600160a01b0316816001600160a01b0316146123795760405162461bcd60e51b815260206004820152603260248201527f47656e48616c6c436f6c6c656374696f6e3a2073656e646572206d7573742062604482015271329036b2b6b132b939b434b81037bbb732b960711b6064820152608401610ccf565b600754604051637dd346a960e01b8152600481018890526000916001600160a01b031690637dd346a99060240160206040518083038186803b1580156123be57600080fd5b505afa1580156123d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f69190613cbc565b6000898152600160208190526040909120015490915081101561246a5760405162461bcd60e51b815260206004820152602660248201527f47656e48616c6c436f6c6c656374696f6e3a206e6f2076616c6964206d656d6260448201526506572736869760d41b6064820152608401610ccf565b6124748888611c40565b925050506124b3565b60008681526003602090815260408083203384528252808320548984526001909252909120600401546124b091906140ad565b90505b8281101561252b576040805162461bcd60e51b81526020600482015260248101919091527f47656e48616c6c436f6c6c656374696f6e3a206e6f7420656e6f756768206d6960448201527f6e7473206176616c6961626c6520666f7220796f757220616c6c6f77616e63656064820152608401610ccf565b81156125b457600086815260016020526040902060070154849061255090859061408e565b11156125af5760405162461bcd60e51b815260206004820152602860248201527f47656e48616c6c436f6c6c656374696f6e3a20696e636f727265637420616d6f6044820152671d5b9d081cd95b9d60c21b6064820152608401610ccf565b61263a565b60008681526001602052604090206008015484906125d390859061408e565b111561263a5760405162461bcd60e51b815260206004820152603060248201527f47656e48616c6c436f6c6c656374696f6e3a20696e73756666696369656e742060448201526f2447454e48414c4c2062616c616e636560801b6064820152608401610ccf565b50505050505050565b60008381526001602052604090206005015460ff16156126a1576000838152600260209081526040808320858452909152902054612682908290614062565b6000848152600260209081526040808320868452909152902055505050565b60008381526003602090815260408083203384529091529020546126c6908290614062565b6000938452600360209081526040808620338752909152909320929092555050565b600081815260016020819052604082206002015461270591614062565b905060008161271784620186a061408e565b6127219190614062565b6000848152600160209081526040808320600201869055805180830187905243818301524460608083019190915289901b6bffffffffffffffffffffffff1916608082015281518082036074018152609490910182528051908301208484526004835281842081905560059092529091208590559091506127a28583613192565b604080516001600160a01b038716815260208101869052908101839052606081018290527fcf6fbb9dcea7d07263ab4f5c3a92f53af33dffc421d9d121e1c74b307e68189d9060800160405180910390a15050505050565b6000816128235760008481526001602052604090206008015461281e90849061408e565b612840565b60008481526001602052604090206007015461284090849061408e565b905060006128566000546001600160a01b031690565b60008681526001602052604081206009015491925090606490612879908561408e565b612883919061407a565b905083156129b8576000868152600160205260408120600a0180548392906128ac908490614062565b90915550600090505b6000878152600160205260409020600e01548110156129b2576000878152600160205260408120600e81018054606492600c01918491869081106128fb576128fb61419c565b60009182526020808320909101546001600160a01b0316835282019290925260400190205461292a908761408e565b612934919061407a565b6000898152600160205260408120600e810180549394508493600d9092019291869081106129645761296461419c565b60009182526020808320909101546001600160a01b0316835282019290925260400181208054909190612998908490614062565b909155508291506129aa90508161412b565b9150506128b5565b5061263a565b6000805b6000888152600160205260409020600e0154811015612b0d576000888152600160205260408120600e81018054606492600c0191849186908110612a0257612a0261419c565b60009182526020808320909101546001600160a01b03168352820192909252604001902054612a31908861408e565b612a3b919061407a565b60075460008b8152600160205260409020600e0180549293506001600160a01b03909116916323b872dd918d9186908110612a7857612a7861419c565b60009182526020909120015460405160e084901b6001600160e01b03191681526001600160a01b0392831660048201529116602482015260448101849052606401600060405180830381600087803b158015612ad357600080fd5b505af1158015612ae7573d6000803e3d6000fd5b505050508083612af79190614062565b9250508080612b059061412b565b9150506129bc565b5060075460008881526001602052604090819020600b015490516323b872dd60e01b81526001600160a01b038b811660048301529182166024820152604481018590529116906323b872dd90606401600060405180830381600087803b158015612b7657600080fd5b505af1158015612b8a573d6000803e3d6000fd5b50506007546001600160a01b031691506323b872dd9050898584612bae878a6140ad565b612bb891906140ad565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b158015612c0757600080fd5b505af1158015612c1b573d6000803e3d6000fd5b505050505050505050505050565b6000818152600b60205260408120546001600160a01b0316612ca25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ccf565b6000612cad836114f6565b9050806001600160a01b0316846001600160a01b03161480612ce85750836001600160a01b0316612cdd84610c5a565b6001600160a01b0316145b80611ec857506001600160a01b038082166000908152600e602090815260408083209388168352929052205460ff16611ec8565b826001600160a01b0316612d2f826114f6565b6001600160a01b031614612d975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ccf565b6001600160a01b038216612df95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ccf565b612e048383836131ac565b612e0f600082612048565b6001600160a01b0383166000908152600c60205260408120805460019290612e389084906140ad565b90915550506001600160a01b0382166000908152600c60205260408120805460019290612e66908490614062565b90915550506000818152600b602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b818110156116ff57612edc84846126e8565b80612ee68161412b565b915050612eca565b6000612ef9826114f6565b9050336001600160a01b03821614612f685760405162461bcd60e51b815260206004820152602c60248201527f47656e48616c6c436f6c6c656374696f6e3a206f6e6c7920746f6b656e206f7760448201526b3732b91031b0b710313ab93760a11b6064820152608401610ccf565b612f74816000846131ac565b612f7f600083612048565b6001600160a01b0381166000908152600c60205260408120805460019290612fa89084906140ad565b90915550506000828152600b602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61300d848484612d1c565b61301984848484613264565b6116ff5760405162461bcd60e51b8152600401610ccf90613f35565b6060600a8054610bd7906140f0565b6060816130685750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613092578061307c8161412b565b915061308b9050600a8361407a565b915061306c565b60008167ffffffffffffffff8111156130ad576130ad6141b2565b6040519080825280601f01601f1916602001820160405280156130d7576020820181803683370190505b5090505b8415611ec8576130ec6001836140ad565b91506130f9600a86614146565b613104906030614062565b60f81b8183815181106131195761311961419c565b60200101906001600160f81b031916908160001a90535061313b600a8661407a565b94506130db565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61135d828260405180602001604052806000815250613371565b6001600160a01b0383166132075761320281601180546000838152601260205260408120829055600182018355919091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680155565b61322a565b816001600160a01b0316836001600160a01b03161461322a5761322a83826133a4565b6001600160a01b03821661324157610e0581613441565b826001600160a01b0316826001600160a01b031614610e0557610e0582826134f0565b60006001600160a01b0384163b1561336657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906132a8903390899088908890600401613e4c565b602060405180830381600087803b1580156132c257600080fd5b505af19250505080156132f2575060408051601f3d908101601f191682019092526132ef91810190613c51565b60015b61334c573d808015613320576040519150601f19603f3d011682016040523d82523d6000602084013e613325565b606091505b5080516133445760405162461bcd60e51b8152600401610ccf90613f35565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ec8565b506001949350505050565b61337b8383613534565b6133886000848484613264565b610e055760405162461bcd60e51b8152600401610ccf90613f35565b600060016133b1846115b9565b6133bb91906140ad565b60008381526010602052604090205490915080821461340e576001600160a01b0384166000908152600f602090815260408083208584528252808320548484528184208190558352601090915290208190555b5060009182526010602090815260408084208490556001600160a01b039094168352600f81528383209183525290812055565b601154600090613453906001906140ad565b6000838152601260205260408120546011805493945090928490811061347b5761347b61419c565b90600052602060002001549050806011838154811061349c5761349c61419c565b60009182526020808320909101929092558281526012909152604080822084905585825281205560118054806134d4576134d4614186565b6001900381819060005260206000200160009055905550505050565b60006134fb836115b9565b6001600160a01b039093166000908152600f60209081526040808320868452825280832085905593825260109052919091209190915550565b6001600160a01b03821661358a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ccf565b6000818152600b60205260409020546001600160a01b0316156135ef5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ccf565b6135fb600083836131ac565b6001600160a01b0382166000908152600c60205260408120805460019290613624908490614062565b90915550506000818152600b602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280548282559060005260206000209081019282156136bd579160200282015b828111156136bd5782518255916020019190600101906136a2565b506136c99291506137d5565b5090565b8280546136d9906140f0565b90600052602060002090601f0160209004810192826136fb57600085556136bd565b82601f1061371457805160ff19168380011785556136bd565b828001600101855582156136bd57918201828111156136bd5782518255916020019190600101906136a2565b8280548282559060005260206000209081019282156136bd579160200282015b828111156136bd578251829060ff16905591602001919060010190613760565b8280548282559060005260206000209081019282156136bd579160200282015b828111156136bd57825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906137a0565b5b808211156136c957600081556001016137d6565b600067ffffffffffffffff831115613804576138046141b2565b613817601f8401601f191660200161400d565b905082815283838301111561382b57600080fd5b828260208301376000602084830101529392505050565b803561384d816141c8565b919050565b600082601f83011261386357600080fd5b813560206138786138738361403e565b61400d565b80838252828201915082860187848660051b890101111561389857600080fd5b60005b858110156138c05781356138ae816141c8565b8452928401929084019060010161389b565b5090979650505050505050565b600082601f8301126138de57600080fd5b813560206138ee6138738361403e565b80838252828201915082860187848660051b890101111561390e57600080fd5b60005b858110156138c057813584529284019290840190600101613911565b803561384d816141dd565b600082601f83011261394957600080fd5b611c6e838335602085016137ea565b60006020828403121561396a57600080fd5b8135611c6e816141c8565b60006020828403121561398757600080fd5b8151611c6e816141c8565b600080604083850312156139a557600080fd5b82356139b0816141c8565b915060208301356139c0816141c8565b809150509250929050565b6000806000606084860312156139e057600080fd5b83356139eb816141c8565b925060208401356139fb816141c8565b929592945050506040919091013590565b60008060008060808587031215613a2257600080fd5b8435613a2d816141c8565b93506020850135613a3d816141c8565b925060408501359150606085013567ffffffffffffffff811115613a6057600080fd5b8501601f81018713613a7157600080fd5b613a80878235602084016137ea565b91505092959194509250565b60008060408385031215613a9f57600080fd5b8235613aaa816141c8565b915060208301356139c0816141dd565b60008060408385031215613acd57600080fd5b8235613ad8816141c8565b946020939093013593505050565b600080600060608486031215613afb57600080fd5b8335613b06816141c8565b95602085013595506040909401359392505050565b60008060008060808587031215613b3157600080fd5b8435613b3c816141c8565b966020860135965060408601359560600135945092505050565b6000806000806000806000806000806101408b8d031215613b7657600080fd5b613b7f8b613842565b995060208b0135985060408b0135975060608b0135965060808b0135955060a08b01359450613bb060c08c0161392d565b935060e08b013567ffffffffffffffff80821115613bcd57600080fd5b613bd98e838f01613852565b94506101008d0135915080821115613bf057600080fd5b50613bfd8d828e016138cd565b9250506101208b013590509295989b9194979a5092959850565b600060208284031215613c2957600080fd5b8151611c6e816141dd565b600060208284031215613c4657600080fd5b8135611c6e816141eb565b600060208284031215613c6357600080fd5b8151611c6e816141eb565b600060208284031215613c8057600080fd5b813567ffffffffffffffff811115613c9757600080fd5b611ec884828501613938565b600060208284031215613cb557600080fd5b5035919050565b600060208284031215613cce57600080fd5b5051919050565b60008060408385031215613ce857600080fd5b8235915060208301356139c0816141c8565b60008060408385031215613d0d57600080fd5b82359150602083013567ffffffffffffffff811115613d2b57600080fd5b613d37858286016138cd565b9150509250929050565b60008060408385031215613d5457600080fd5b8235915060208301356139c0816141dd565b60008060408385031215613d7957600080fd5b82359150602083013567ffffffffffffffff811115613d9757600080fd5b613d3785828601613938565b60008060408385031215613db657600080fd5b50508035926020909101359150565b600080600060608486031215613dda57600080fd5b505081359360208301359350604090920135919050565b60008151808452613e098160208601602086016140c4565b601f01601f19169290920160200192915050565b60008351613e2f8184602088016140c4565b835190830190613e438183602088016140c4565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613e7f90830184613df1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613ec157835183529284019291840191600101613ea5565b50909695505050505050565b602081526000611c6e6020830184613df1565b60208082526035908201527f47656e48616c6c436f6c6c656374696f6e3a206f6e6c7920617274697374206360408201527430b71031b0b636103a3434b990333ab731ba34b7b760591b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715614036576140366141b2565b604052919050565b600067ffffffffffffffff821115614058576140586141b2565b5060051b60200190565b600082198211156140755761407561415a565b500190565b60008261408957614089614170565b500490565b60008160001904831182151516156140a8576140a861415a565b500290565b6000828210156140bf576140bf61415a565b500390565b60005b838110156140df5781810151838201526020016140c7565b838111156116ff5750506000910152565b600181811c9082168061410457607f821691505b6020821081141561412557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561413f5761413f61415a565b5060010190565b60008261415557614155614170565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146111ee57600080fd5b80151581146111ee57600080fd5b6001600160e01b0319811681146111ee57600080fdfea2646970667358221220f14c97d87bd95983bf1a605664ee556fcce812f1559e6ee9557677169206ff7b64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000747656e48616c6c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000747454e48414c4c00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061031a5760003560e01c80637dd346a9116101ab578063bc50f888116100f7578063d4e4d3dd11610095578063ea07e2951161006f578063ea07e29514610acb578063f1d3cc4d14610aeb578063f2fde38b14610b1b578063f48d115414610b3b57600080fd5b8063d4e4d3dd146109ba578063def6a7f214610a62578063e985e9c514610a8257600080fd5b8063c87b56dd116100d1578063c87b56dd1461091a578063cc5d60b31461093a578063cca2379d1461095a578063cf3f42d11461098a57600080fd5b8063bc50f888146108ba578063c65be562146108da578063c86e7a19146108fa57600080fd5b80638da5cb5b116101645780639a3bf6061161013e5780639a3bf6061461082a578063a22cb4651461085a578063b155d57e1461087a578063b88d4fde1461089a57600080fd5b80638da5cb5b146107d757806395d89b41146107f557806397b03b571461080a57600080fd5b80637dd346a9146106e25780637e3ca9ea1461070257806382449a3f1461071557806384e49deb14610735578063884050de146107555780638c7a63ae1461078857600080fd5b806340398d671161026a57806355f804b3116102235780636352211e116101fd5780636352211e1461066d5780636ed5be8e1461068d57806370a08231146106ad57806373448c46146106cd57600080fd5b806355f804b3146105e65780635664faaf146106065780635845bfb11461064d57600080fd5b806340398d671461051957806342842e0e1461054657806342966c68146105665780634f6ccce714610586578063500e10ac146105a657806350308695146105c657600080fd5b8063156e29f6116102d757806323b872dd116102b157806323b872dd146104895780632f745c59146104a957806337160b44146104c95780633efd9ae8146104f957600080fd5b8063156e29f61461041057806318160ddd1461042357806320408c301461044257600080fd5b806301ffc9a71461031f57806306fdde0314610354578063081812fc14610376578063095ea7b3146103ae5780630b2680f9146103d05780630f436129146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a366004613c34565b610b5b565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b50610369610bc8565b60405161034b9190613ecd565b34801561038257600080fd5b50610396610391366004613ca3565b610c5a565b6040516001600160a01b03909116815260200161034b565b3480156103ba57600080fd5b506103ce6103c9366004613aba565b610cf4565b005b3480156103dc57600080fd5b506103ce6103eb366004613d41565b610e0a565b3480156103fc57600080fd5b506103ce61040b366004613dc5565b610e54565b6103ce61041e366004613ae6565b610e9b565b34801561042f57600080fd5b506011545b60405190815260200161034b565b34801561044e57600080fd5b5061043461045d366004613cd5565b60008281526001602090815260408083206001600160a01b0385168452600d0190915290205492915050565b34801561049557600080fd5b506103ce6104a43660046139cb565b610ecd565b3480156104b557600080fd5b506104346104c4366004613aba565b610efe565b3480156104d557600080fd5b5061033f6104e4366004613ca3565b60009081526001602052604090205460ff1690565b34801561050557600080fd5b506103ce610514366004613b1b565b610f94565b34801561052557600080fd5b50610539610534366004613958565b611128565b60405161034b9190613e89565b34801561055257600080fd5b506103ce6105613660046139cb565b6111ca565b34801561057257600080fd5b506103ce610581366004613ca3565b6111e5565b34801561059257600080fd5b506104346105a1366004613ca3565b6111f1565b3480156105b257600080fd5b506103ce6105c1366004613d41565b611284565b3480156105d257600080fd5b506103ce6105e1366004613cfa565b6112d1565b3480156105f257600080fd5b506103ce610601366004613c6e565b611320565b34801561061257600080fd5b50610434610621366004613cd5565b60008281526001602090815260408083206001600160a01b0385168452600c0190915290205492915050565b34801561065957600080fd5b506103ce610668366004613ae6565b611361565b34801561067957600080fd5b50610396610688366004613ca3565b6114f6565b34801561069957600080fd5b506103ce6106a8366004613958565b61156d565b3480156106b957600080fd5b506104346106c8366004613958565b6115b9565b3480156106d957600080fd5b50610434611640565b3480156106ee57600080fd5b506104346106fd366004613ca3565b611650565b6103ce610710366004613b1b565b6116cd565b34801561072157600080fd5b50610434610730366004613ca3565b611705565b34801561074157600080fd5b506103ce610750366004613ca3565b611737565b34801561076157600080fd5b5061033f610770366004613ca3565b60009081526001602052604090206005015460ff1690565b34801561079457600080fd5b506107a86107a3366004613ca3565b611825565b60405161034b949392919093845260208401929092526001600160a01b03166040830152606082015260800190565b3480156107e357600080fd5b506000546001600160a01b0316610396565b34801561080157600080fd5b50610369611881565b34801561081657600080fd5b506103ce610825366004613da3565b611890565b34801561083657600080fd5b50610434610845366004613ca3565b60009081526001602052604090206004015490565b34801561086657600080fd5b506103ce610875366004613a8c565b6118cf565b34801561088657600080fd5b506103ce610895366004613d66565b611994565b3480156108a657600080fd5b506103ce6108b5366004613a0c565b6119e3565b3480156108c657600080fd5b506103ce6108d5366004613b56565b611a15565b3480156108e657600080fd5b506104346108f5366004613da3565b611c40565b34801561090657600080fd5b506103ce610915366004613cd5565b611c75565b34801561092657600080fd5b50610369610935366004613ca3565b611ce2565b34801561094657600080fd5b50610434610955366004613da3565b611dbc565b34801561096657600080fd5b50610434610975366004613ca3565b60009081526001602052604090206009015490565b34801561099657600080fd5b506104346109a5366004613ca3565b60009081526001602052604090206010015490565b3480156109c657600080fd5b50610a226109d5366004613ca3565b60009081526001602052604090206002810154600382015460078301546008840154600b850154600986015460059096015494969395929491936001600160a01b03909116929160ff1690565b6040805197885260208801969096529486019390935260608501919091526001600160a01b0316608084015260a0830152151560c082015260e00161034b565b348015610a6e57600080fd5b506103ce610a7d366004613da3565b611ed0565b348015610a8e57600080fd5b5061033f610a9d366004613992565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205460ff1690565b348015610ad757600080fd5b506103ce610ae6366004613ca3565b611f11565b348015610af757600080fd5b50610434610b06366004613ca3565b6000908152600160205260409020600a015490565b348015610b2757600080fd5b506103ce610b36366004613958565b611f68565b348015610b4757600080fd5b506103ce610b56366004613da3565b612000565b60006001600160e01b031982166380ac58cd60e01b1480610b8c57506001600160e01b03198216635b5e139f60e01b145b80610ba757506001600160e01b0319821663780e9d6360e01b145b80610bc257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060088054610bd7906140f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c03906140f0565b8015610c505780601f10610c2557610100808354040283529160200191610c50565b820191906000526020600020905b815481529060010190602001808311610c3357829003601f168201915b5050505050905090565b6000818152600b60205260408120546001600160a01b0316610cd85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600d60205260409020546001600160a01b031690565b6000610cff826114f6565b9050806001600160a01b0316836001600160a01b03161415610d6d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ccf565b336001600160a01b0382161480610d895750610d898133610a9d565b610dfb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ccf565b610e058383612048565b505050565b6000546001600160a01b03163314610e345760405162461bcd60e51b8152600401610ccf90613f87565b600091825260016020526040909120805460ff1916911515919091179055565b6000546001600160a01b03163314610e7e5760405162461bcd60e51b8152600401610ccf90613f87565b600092835260016020526040909220600781019190915560080155565b610eaa338383346001806120b6565b610eb682826001612643565b610ec083836126e8565b610e0533836001806127fa565b610ed73382612c29565b610ef35760405162461bcd60e51b8152600401610ccf90613fbc565b610e05838383612d1c565b6000610f09836115b9565b8210610f6b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ccf565b506001600160a01b03919091166000908152600f60209081526040808320938352929052205490565b600754604080516337f554b360e11b815290516000926001600160a01b031691636feaa966916004808301926020929190829003018186803b158015610fd957600080fd5b505afa158015610fed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110119190613c17565b9050806110605760405162461bcd60e51b815260206004820152601e60248201527f4d696e742077697468202447454e48414c4c206e6f7420616c6c6f77656400006044820152606401610ccf565b6007546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156110b457600080fd5b505afa1580156110c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ec9190613cbc565b90506110fd338686848760006120b6565b611108858585612643565b611113868685612ec7565b61112033868560006127fa565b505050505050565b60606000611135836115b9565b905060008167ffffffffffffffff811115611152576111526141b2565b60405190808252806020026020018201604052801561117b578160200160208202803683370190505b50905060005b828110156111c2576111938582610efe565b8282815181106111a5576111a561419c565b6020908102919091010152806111ba8161412b565b915050611181565b509392505050565b610e05838383604051806020016040528060008152506119e3565b6111ee81612eee565b50565b60006111fc60115490565b821061125f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ccf565b601182815481106112725761127261419c565b90600052602060002001549050919050565b6000546001600160a01b031633146112ae5760405162461bcd60e51b8152600401610ccf90613f87565b600091825260016020526040909120600501805460ff1916911515919091179055565b6000546001600160a01b031633146112fb5760405162461bcd60e51b8152600401610ccf90613f87565b60008281526001602090815260409091208251610e0592600f90920191840190613682565b6000546001600160a01b0316331461134a5760405162461bcd60e51b8152600401610ccf90613f87565b805161135d90600a9060208401906136cd565b5050565b600754604080516337f554b360e11b815290516000926001600160a01b031691636feaa966916004808301926020929190829003018186803b1580156113a657600080fd5b505afa1580156113ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113de9190613c17565b90508061142d5760405162461bcd60e51b815260206004820152601e60248201527f4d696e742077697468202447454e48414c4c206e6f7420616c6c6f77656400006044820152606401610ccf565b6007546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b15801561148157600080fd5b505afa158015611495573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b99190613cbc565b90506114cb33858584600160006120b6565b6114d784846001612643565b6114e185856126e8565b6114ef3385600160006127fa565b5050505050565b6000818152600b60205260408120546001600160a01b031680610bc25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ccf565b6000546001600160a01b031633146115975760405162461bcd60e51b8152600401610ccf90613f87565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166116245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ccf565b506001600160a01b03166000908152600c602052604090205490565b600061164b60065490565b905090565b600754604051637dd346a960e01b8152600481018390526000916001600160a01b031690637dd346a99060240160206040518083038186803b15801561169557600080fd5b505afa1580156116a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc29190613cbc565b6116dc338484348560016120b6565b6116e7838383612643565b6116f2848483612ec7565b6116ff33848360016127fa565b50505050565b60008181526003602090815260408083203384528252808320548484526001909252822060040154610bc291906140ad565b6000818152600160209081526040808320338452600c0190915290205481906117c85760405162461bcd60e51b815260206004820152603c60248201527f47656e48616c6c436f6c6c656374696f6e3a206f6e6c7920636f6c6c61626f7260448201527f61746f72732063616e2063616c6c20746869732066756e6374696f6e000000006064820152608401610ccf565b600082815260016020908152604080832033808552600d909101909252822080549290555b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156116ff573d6000803e3d6000fd5b60008060008061184c856000908152600b60205260409020546001600160a01b0316151590565b5060008581526004602090815260408083205460059092528220549091611872886114f6565b97989197965091945092505050565b606060098054610bd7906140f0565b6000546001600160a01b031633146118ba5760405162461bcd60e51b8152600401610ccf90613f87565b60009182526001602052604090912060040155565b6001600160a01b0382163314156119285760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ccf565b336000818152600e602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146119be5760405162461bcd60e51b8152600401610ccf90613f87565b60008281526001602090815260409091208251610e05926006909201918401906136cd565b6119ed3383612c29565b611a095760405162461bcd60e51b8152600401610ccf90613fbc565b6116ff84848484613002565b6000546001600160a01b03163314611a3f5760405162461bcd60e51b8152600401610ccf90613f87565b6000611a4a60065490565b600081815260016020818152604092839020805460ff1916815580830183905583519182019093528181529293509091611a8991600f84019190613740565b5060006002820155600381018890556004810187905560058101805460ff1916871515179055600781018a905560088101899055600981018b9055600b810180546001600160a01b0319166001600160a01b038e161790558451611af690600e8301906020880190613780565b50601081018390558a60005b600e830154811015611ba157858181518110611b2057611b2061419c565b602002602001015182611b339190614062565b9150858181518110611b4757611b4761419c565b602002602001015183600c01600085600e018481548110611b6a57611b6a61419c565b60009182526020808320909101546001600160a01b0316835282019290925260400190205580611b998161412b565b915050611b02565b5080606414611c235760405162461bcd60e51b815260206004820152604260248201527f546865207368617265732070657263656e74616765732028617274697374202b60448201527f20636f6c6c61626f7261746f727329206d7573742061646420757020746f2031606482015261030360f41b608482015260a401610ccf565b611c31600680546001019055565b50505050505050505050505050565b6000828152600260209081526040808320848452909152812054611c648484611dbc565b611c6e91906140ad565b9392505050565b6000828152600160205260409020600b015482906001600160a01b03163314611cb05760405162461bcd60e51b8152600401610ccf90613ee0565b50600091825260016020526040909120600b0180546001600160a01b0319166001600160a01b03909216919091179055565b6000818152600b60205260409020546060906001600160a01b0316611d615760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ccf565b6000611d6b613035565b90506000815111611d8b5760405180602001604052806000815250611c6e565b80611d9584613044565b604051602001611da6929190613e1d565b6040516020818303038152906040529392505050565b600754604051637dd346a960e01b81526004810183905260009182916001600160a01b0390911690637dd346a99060240160206040518083038186803b158015611e0557600080fd5b505afa158015611e19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e3d9190613cbc565b6000858152600160205260409020600f01549091508110611e99576000848152600160208190526040909120600f0180549091611e79916140ad565b81548110611e8957611e8961419c565b9060005260206000200154611ec8565b6000848152600160205260409020600f01805482908110611ebc57611ebc61419c565b90600052602060002001545b949350505050565b6000546001600160a01b03163314611efa5760405162461bcd60e51b8152600401610ccf90613f87565b600091825260016020819052604090922090910155565b6000818152600160205260409020600b015481906001600160a01b03163314611f4c5760405162461bcd60e51b8152600401610ccf90613ee0565b6000828152600160205260408120600a018054919055336117ed565b6000546001600160a01b03163314611f925760405162461bcd60e51b8152600401610ccf90613f87565b6001600160a01b038116611ff75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ccf565b6111ee81613142565b6000546001600160a01b0316331461202a5760405162461bcd60e51b8152600401610ccf90613f87565b60009182526001602052604090912060030155565b80546001019055565b6000818152600d6020526040902080546001600160a01b0319166001600160a01b038416908117909155819061207d826114f6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008581526001602081905260409091205460ff161515146121595760405162461bcd60e51b815260206004820152605060248201527f47656e48616c6c436f6c6c656374696f6e3a2074686520636f6c6c656374696f60448201527f6e206973207374696c6c206e6f74206163746976652c20616e6420746875732060648201526f18d85b9b9bdd081899481b5a5b9d195960821b608482015260a401610ccf565b60008581526001602052604090206003810154600290910154106121d65760405162461bcd60e51b815260206004820152602e60248201527f47656e48616c6c436f6c6c656374696f6e3a206d617820696e766f636174696f60448201526d1b9cc81dd85cc81c995858da195960921b6064820152608401610ccf565b60008581526001602052604090206010015482111561225d5760405162461bcd60e51b815260206004820152603f60248201527f47656e48616c6c436f6c6c656374696f6e3a206d696e7420616d6f756e74206960448201527f73206f766572206d6178206d696e7420706572207472616e73616374696f6e006064820152608401610ccf565b6000858152600160205260409020600481015460059091015460ff161561247d576007546040516331a9108f60e11b8152600481018790526000916001600160a01b031690636352211e9060240160206040518083038186803b1580156122c357600080fd5b505afa1580156122d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122fb9190613975565b9050876001600160a01b0316816001600160a01b0316146123795760405162461bcd60e51b815260206004820152603260248201527f47656e48616c6c436f6c6c656374696f6e3a2073656e646572206d7573742062604482015271329036b2b6b132b939b434b81037bbb732b960711b6064820152608401610ccf565b600754604051637dd346a960e01b8152600481018890526000916001600160a01b031690637dd346a99060240160206040518083038186803b1580156123be57600080fd5b505afa1580156123d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f69190613cbc565b6000898152600160208190526040909120015490915081101561246a5760405162461bcd60e51b815260206004820152602660248201527f47656e48616c6c436f6c6c656374696f6e3a206e6f2076616c6964206d656d6260448201526506572736869760d41b6064820152608401610ccf565b6124748888611c40565b925050506124b3565b60008681526003602090815260408083203384528252808320548984526001909252909120600401546124b091906140ad565b90505b8281101561252b576040805162461bcd60e51b81526020600482015260248101919091527f47656e48616c6c436f6c6c656374696f6e3a206e6f7420656e6f756768206d6960448201527f6e7473206176616c6961626c6520666f7220796f757220616c6c6f77616e63656064820152608401610ccf565b81156125b457600086815260016020526040902060070154849061255090859061408e565b11156125af5760405162461bcd60e51b815260206004820152602860248201527f47656e48616c6c436f6c6c656374696f6e3a20696e636f727265637420616d6f6044820152671d5b9d081cd95b9d60c21b6064820152608401610ccf565b61263a565b60008681526001602052604090206008015484906125d390859061408e565b111561263a5760405162461bcd60e51b815260206004820152603060248201527f47656e48616c6c436f6c6c656374696f6e3a20696e73756666696369656e742060448201526f2447454e48414c4c2062616c616e636560801b6064820152608401610ccf565b50505050505050565b60008381526001602052604090206005015460ff16156126a1576000838152600260209081526040808320858452909152902054612682908290614062565b6000848152600260209081526040808320868452909152902055505050565b60008381526003602090815260408083203384529091529020546126c6908290614062565b6000938452600360209081526040808620338752909152909320929092555050565b600081815260016020819052604082206002015461270591614062565b905060008161271784620186a061408e565b6127219190614062565b6000848152600160209081526040808320600201869055805180830187905243818301524460608083019190915289901b6bffffffffffffffffffffffff1916608082015281518082036074018152609490910182528051908301208484526004835281842081905560059092529091208590559091506127a28583613192565b604080516001600160a01b038716815260208101869052908101839052606081018290527fcf6fbb9dcea7d07263ab4f5c3a92f53af33dffc421d9d121e1c74b307e68189d9060800160405180910390a15050505050565b6000816128235760008481526001602052604090206008015461281e90849061408e565b612840565b60008481526001602052604090206007015461284090849061408e565b905060006128566000546001600160a01b031690565b60008681526001602052604081206009015491925090606490612879908561408e565b612883919061407a565b905083156129b8576000868152600160205260408120600a0180548392906128ac908490614062565b90915550600090505b6000878152600160205260409020600e01548110156129b2576000878152600160205260408120600e81018054606492600c01918491869081106128fb576128fb61419c565b60009182526020808320909101546001600160a01b0316835282019290925260400190205461292a908761408e565b612934919061407a565b6000898152600160205260408120600e810180549394508493600d9092019291869081106129645761296461419c565b60009182526020808320909101546001600160a01b0316835282019290925260400181208054909190612998908490614062565b909155508291506129aa90508161412b565b9150506128b5565b5061263a565b6000805b6000888152600160205260409020600e0154811015612b0d576000888152600160205260408120600e81018054606492600c0191849186908110612a0257612a0261419c565b60009182526020808320909101546001600160a01b03168352820192909252604001902054612a31908861408e565b612a3b919061407a565b60075460008b8152600160205260409020600e0180549293506001600160a01b03909116916323b872dd918d9186908110612a7857612a7861419c565b60009182526020909120015460405160e084901b6001600160e01b03191681526001600160a01b0392831660048201529116602482015260448101849052606401600060405180830381600087803b158015612ad357600080fd5b505af1158015612ae7573d6000803e3d6000fd5b505050508083612af79190614062565b9250508080612b059061412b565b9150506129bc565b5060075460008881526001602052604090819020600b015490516323b872dd60e01b81526001600160a01b038b811660048301529182166024820152604481018590529116906323b872dd90606401600060405180830381600087803b158015612b7657600080fd5b505af1158015612b8a573d6000803e3d6000fd5b50506007546001600160a01b031691506323b872dd9050898584612bae878a6140ad565b612bb891906140ad565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b158015612c0757600080fd5b505af1158015612c1b573d6000803e3d6000fd5b505050505050505050505050565b6000818152600b60205260408120546001600160a01b0316612ca25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ccf565b6000612cad836114f6565b9050806001600160a01b0316846001600160a01b03161480612ce85750836001600160a01b0316612cdd84610c5a565b6001600160a01b0316145b80611ec857506001600160a01b038082166000908152600e602090815260408083209388168352929052205460ff16611ec8565b826001600160a01b0316612d2f826114f6565b6001600160a01b031614612d975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ccf565b6001600160a01b038216612df95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ccf565b612e048383836131ac565b612e0f600082612048565b6001600160a01b0383166000908152600c60205260408120805460019290612e389084906140ad565b90915550506001600160a01b0382166000908152600c60205260408120805460019290612e66908490614062565b90915550506000818152600b602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b818110156116ff57612edc84846126e8565b80612ee68161412b565b915050612eca565b6000612ef9826114f6565b9050336001600160a01b03821614612f685760405162461bcd60e51b815260206004820152602c60248201527f47656e48616c6c436f6c6c656374696f6e3a206f6e6c7920746f6b656e206f7760448201526b3732b91031b0b710313ab93760a11b6064820152608401610ccf565b612f74816000846131ac565b612f7f600083612048565b6001600160a01b0381166000908152600c60205260408120805460019290612fa89084906140ad565b90915550506000828152600b602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61300d848484612d1c565b61301984848484613264565b6116ff5760405162461bcd60e51b8152600401610ccf90613f35565b6060600a8054610bd7906140f0565b6060816130685750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613092578061307c8161412b565b915061308b9050600a8361407a565b915061306c565b60008167ffffffffffffffff8111156130ad576130ad6141b2565b6040519080825280601f01601f1916602001820160405280156130d7576020820181803683370190505b5090505b8415611ec8576130ec6001836140ad565b91506130f9600a86614146565b613104906030614062565b60f81b8183815181106131195761311961419c565b60200101906001600160f81b031916908160001a90535061313b600a8661407a565b94506130db565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61135d828260405180602001604052806000815250613371565b6001600160a01b0383166132075761320281601180546000838152601260205260408120829055600182018355919091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680155565b61322a565b816001600160a01b0316836001600160a01b03161461322a5761322a83826133a4565b6001600160a01b03821661324157610e0581613441565b826001600160a01b0316826001600160a01b031614610e0557610e0582826134f0565b60006001600160a01b0384163b1561336657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906132a8903390899088908890600401613e4c565b602060405180830381600087803b1580156132c257600080fd5b505af19250505080156132f2575060408051601f3d908101601f191682019092526132ef91810190613c51565b60015b61334c573d808015613320576040519150601f19603f3d011682016040523d82523d6000602084013e613325565b606091505b5080516133445760405162461bcd60e51b8152600401610ccf90613f35565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ec8565b506001949350505050565b61337b8383613534565b6133886000848484613264565b610e055760405162461bcd60e51b8152600401610ccf90613f35565b600060016133b1846115b9565b6133bb91906140ad565b60008381526010602052604090205490915080821461340e576001600160a01b0384166000908152600f602090815260408083208584528252808320548484528184208190558352601090915290208190555b5060009182526010602090815260408084208490556001600160a01b039094168352600f81528383209183525290812055565b601154600090613453906001906140ad565b6000838152601260205260408120546011805493945090928490811061347b5761347b61419c565b90600052602060002001549050806011838154811061349c5761349c61419c565b60009182526020808320909101929092558281526012909152604080822084905585825281205560118054806134d4576134d4614186565b6001900381819060005260206000200160009055905550505050565b60006134fb836115b9565b6001600160a01b039093166000908152600f60209081526040808320868452825280832085905593825260109052919091209190915550565b6001600160a01b03821661358a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ccf565b6000818152600b60205260409020546001600160a01b0316156135ef5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ccf565b6135fb600083836131ac565b6001600160a01b0382166000908152600c60205260408120805460019290613624908490614062565b90915550506000818152600b602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280548282559060005260206000209081019282156136bd579160200282015b828111156136bd5782518255916020019190600101906136a2565b506136c99291506137d5565b5090565b8280546136d9906140f0565b90600052602060002090601f0160209004810192826136fb57600085556136bd565b82601f1061371457805160ff19168380011785556136bd565b828001600101855582156136bd57918201828111156136bd5782518255916020019190600101906136a2565b8280548282559060005260206000209081019282156136bd579160200282015b828111156136bd578251829060ff16905591602001919060010190613760565b8280548282559060005260206000209081019282156136bd579160200282015b828111156136bd57825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906137a0565b5b808211156136c957600081556001016137d6565b600067ffffffffffffffff831115613804576138046141b2565b613817601f8401601f191660200161400d565b905082815283838301111561382b57600080fd5b828260208301376000602084830101529392505050565b803561384d816141c8565b919050565b600082601f83011261386357600080fd5b813560206138786138738361403e565b61400d565b80838252828201915082860187848660051b890101111561389857600080fd5b60005b858110156138c05781356138ae816141c8565b8452928401929084019060010161389b565b5090979650505050505050565b600082601f8301126138de57600080fd5b813560206138ee6138738361403e565b80838252828201915082860187848660051b890101111561390e57600080fd5b60005b858110156138c057813584529284019290840190600101613911565b803561384d816141dd565b600082601f83011261394957600080fd5b611c6e838335602085016137ea565b60006020828403121561396a57600080fd5b8135611c6e816141c8565b60006020828403121561398757600080fd5b8151611c6e816141c8565b600080604083850312156139a557600080fd5b82356139b0816141c8565b915060208301356139c0816141c8565b809150509250929050565b6000806000606084860312156139e057600080fd5b83356139eb816141c8565b925060208401356139fb816141c8565b929592945050506040919091013590565b60008060008060808587031215613a2257600080fd5b8435613a2d816141c8565b93506020850135613a3d816141c8565b925060408501359150606085013567ffffffffffffffff811115613a6057600080fd5b8501601f81018713613a7157600080fd5b613a80878235602084016137ea565b91505092959194509250565b60008060408385031215613a9f57600080fd5b8235613aaa816141c8565b915060208301356139c0816141dd565b60008060408385031215613acd57600080fd5b8235613ad8816141c8565b946020939093013593505050565b600080600060608486031215613afb57600080fd5b8335613b06816141c8565b95602085013595506040909401359392505050565b60008060008060808587031215613b3157600080fd5b8435613b3c816141c8565b966020860135965060408601359560600135945092505050565b6000806000806000806000806000806101408b8d031215613b7657600080fd5b613b7f8b613842565b995060208b0135985060408b0135975060608b0135965060808b0135955060a08b01359450613bb060c08c0161392d565b935060e08b013567ffffffffffffffff80821115613bcd57600080fd5b613bd98e838f01613852565b94506101008d0135915080821115613bf057600080fd5b50613bfd8d828e016138cd565b9250506101208b013590509295989b9194979a5092959850565b600060208284031215613c2957600080fd5b8151611c6e816141dd565b600060208284031215613c4657600080fd5b8135611c6e816141eb565b600060208284031215613c6357600080fd5b8151611c6e816141eb565b600060208284031215613c8057600080fd5b813567ffffffffffffffff811115613c9757600080fd5b611ec884828501613938565b600060208284031215613cb557600080fd5b5035919050565b600060208284031215613cce57600080fd5b5051919050565b60008060408385031215613ce857600080fd5b8235915060208301356139c0816141c8565b60008060408385031215613d0d57600080fd5b82359150602083013567ffffffffffffffff811115613d2b57600080fd5b613d37858286016138cd565b9150509250929050565b60008060408385031215613d5457600080fd5b8235915060208301356139c0816141dd565b60008060408385031215613d7957600080fd5b82359150602083013567ffffffffffffffff811115613d9757600080fd5b613d3785828601613938565b60008060408385031215613db657600080fd5b50508035926020909101359150565b600080600060608486031215613dda57600080fd5b505081359360208301359350604090920135919050565b60008151808452613e098160208601602086016140c4565b601f01601f19169290920160200192915050565b60008351613e2f8184602088016140c4565b835190830190613e438183602088016140c4565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613e7f90830184613df1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613ec157835183529284019291840191600101613ea5565b50909695505050505050565b602081526000611c6e6020830184613df1565b60208082526035908201527f47656e48616c6c436f6c6c656374696f6e3a206f6e6c7920617274697374206360408201527430b71031b0b636103a3434b990333ab731ba34b7b760591b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715614036576140366141b2565b604052919050565b600067ffffffffffffffff821115614058576140586141b2565b5060051b60200190565b600082198211156140755761407561415a565b500190565b60008261408957614089614170565b500490565b60008160001904831182151516156140a8576140a861415a565b500290565b6000828210156140bf576140bf61415a565b500390565b60005b838110156140df5781810151838201526020016140c7565b838111156116ff5750506000910152565b600181811c9082168061410457607f821691505b6020821081141561412557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561413f5761413f61415a565b5060010190565b60008261415557614155614170565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146111ee57600080fd5b80151581146111ee57600080fd5b6001600160e01b0319811681146111ee57600080fdfea2646970667358221220f14c97d87bd95983bf1a605664ee556fcce812f1559e6ee9557677169206ff7b64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000747656e48616c6c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000747454e48414c4c00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): GenHall
Arg [1] : symbol_ (string): GENHALL

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 47656e48616c6c00000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 47454e48414c4c00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

26235:39335:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46535:422;;;;;;;;;;-1:-1:-1;46535:422:0;;;;;:::i;:::-;;:::i;:::-;;;14175:14:1;;14168:22;14150:41;;14138:2;14123:18;46535:422:0;;;;;;;;47771:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49811:308::-;;;;;;;;;;-1:-1:-1;49811:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;12034:32:1;;;12016:51;;12004:2;11989:18;49811:308:0;11870:203:1;49323:422:0;;;;;;;;;;-1:-1:-1;49323:422:0;;;;;:::i;:::-;;:::i;:::-;;30135:147;;;;;;;;;;-1:-1:-1;30135:147:0;;;;;:::i;:::-;;:::i;44545:256::-;;;;;;;;;;-1:-1:-1;44545:256:0;;;;;:::i;:::-;;:::i;36343:371::-;;;;;;:::i;:::-;;:::i;60009:113::-;;;;;;;;;;-1:-1:-1;60097:10:0;:17;60009:113;;;27298:25:1;;;27286:2;27271:18;60009:113:0;27152:177:1;31051:210:0;;;;;;;;;;-1:-1:-1;31051:210:0;;;;;:::i;:::-;31155:7;31182:30;;;:15;:30;;;;;;;;-1:-1:-1;;;;;31182:71:0;;;;:49;;:71;;;;;;31051:210;;;;;50870:376;;;;;;;;;;-1:-1:-1;50870:376:0;;;;;:::i;:::-;;:::i;59579:354::-;;;;;;;;;;-1:-1:-1;59579:354:0;;;;;:::i;:::-;;:::i;30290:139::-;;;;;;;;;;-1:-1:-1;30290:139:0;;;;;:::i;:::-;30361:4;30384:30;;;:15;:30;;;;;:37;;;;30290:139;37817:708;;;;;;;;;;-1:-1:-1;37817:708:0;;;;;:::i;:::-;;:::i;46083:380::-;;;;;;;;;;-1:-1:-1;46083:380:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51317:185::-;;;;;;;;;;-1:-1:-1;51317:185:0;;;;;:::i;:::-;;:::i;41554:73::-;;;;;;;;;;-1:-1:-1;41554:73:0;;;;;:::i;:::-;;:::i;60199:321::-;;;;;;;;;;-1:-1:-1;60199:321:0;;;;;:::i;:::-;;:::i;29780:185::-;;;;;;;;;;-1:-1:-1;29780:185:0;;;;;:::i;:::-;;:::i;33805:226::-;;;;;;;;;;-1:-1:-1;33805:226:0;;;;;:::i;:::-;;:::i;49162:99::-;;;;;;;;;;-1:-1:-1;49162:99:0;;;;;:::i;:::-;;:::i;31269:219::-;;;;;;;;;;-1:-1:-1;31269:219:0;;;;;:::i;:::-;31377:7;31404:30;;;:15;:30;;;;;;;;-1:-1:-1;;;;;31404:76:0;;;;:54;;:76;;;;;;31269:219;;;;;36722:561;;;;;;;;;;-1:-1:-1;36722:561:0;;;;;:::i;:::-;;:::i;47378:326::-;;;;;;;;;;-1:-1:-1;47378:326:0;;;;;:::i;:::-;;:::i;44340:197::-;;;;;;;;;;-1:-1:-1;44340:197:0;;;;;:::i;:::-;;:::i;47021:295::-;;;;;;;;;;-1:-1:-1;47021:295:0;;;;;:::i;:::-;;:::i;27782:114::-;;;;;;;;;;;;;:::i;42340:155::-;;;;;;;;;;-1:-1:-1;42340:155:0;;;;;:::i;:::-;;:::i;37291:518::-;;;;;;:::i;:::-;;:::i;42950:203::-;;;;;;;;;;-1:-1:-1;42950:203:0;;;;;:::i;:::-;;:::i;31496:338::-;;;;;;;;;;-1:-1:-1;31496:338:0;;;;;:::i;:::-;;:::i;29973:154::-;;;;;;;;;;-1:-1:-1;29973:154:0;;;;;:::i;:::-;30047:4;30070:30;;;:15;:30;;;;;:49;;;;;;29973:154;45604:471;;;;;;;;;;-1:-1:-1;45604:471:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;27565:25:1;;;27621:2;27606:18;;27599:34;;;;-1:-1:-1;;;;;27669:32:1;27664:2;27649:18;;27642:60;27733:2;27718:18;;27711:34;27552:3;27537:19;;27334:417;2992:87:0;;;;;;;;;;-1:-1:-1;3038:7:0;3065:6;-1:-1:-1;;;;;3065:6:0;2992:87;;47940:104;;;;;;;;;;;;;:::i;33503:149::-;;;;;;;;;;-1:-1:-1;33503:149:0;;;;;:::i;:::-;;:::i;42790:152::-;;;;;;;;;;-1:-1:-1;42790:152:0;;;;;:::i;:::-;42869:7;42896:30;;;:15;:30;;;;;:38;;;;42790:152;50191:327;;;;;;;;;;-1:-1:-1;50191:327:0;;;;;:::i;:::-;;:::i;44158:174::-;;;;;;;;;;-1:-1:-1;44158:174:0;;;;;:::i;:::-;;:::i;51573:365::-;;;;;;;;;;-1:-1:-1;51573:365:0;;;;;:::i;:::-;;:::i;31842:1653::-;;;;;;;;;;-1:-1:-1;31842:1653:0;;;;;:::i;:::-;;:::i;42503:279::-;;;;;;;;;;-1:-1:-1;42503:279:0;;;;;:::i;:::-;;:::i;43749:191::-;;;;;;;;;;-1:-1:-1;43749:191:0;;;;;:::i;:::-;;:::i;48115:470::-;;;;;;;;;;-1:-1:-1;48115:470:0;;;;;:::i;:::-;;:::i;41806:526::-;;;;;;;;;;-1:-1:-1;41806:526:0;;;;;:::i;:::-;;:::i;30593:154::-;;;;;;;;;;-1:-1:-1;30593:154:0;;;;;:::i;:::-;30665:7;30692:30;;;:15;:30;;;;;:47;;;;30593:154;41635:163;;;;;;;;;;-1:-1:-1;41635:163:0;;;;;:::i;:::-;41712:7;41738:30;;;:15;:30;;;;;:52;;;;41635:163;44809:787;;;;;;;;;;-1:-1:-1;44809:787:0;;;;;:::i;:::-;44921:19;45192:30;;;:15;:30;;;;;:42;;;;45249:45;;;;45309:36;;;;45360:39;;;;45414:37;;;;45466:47;;;;45528:49;;;;;45192:42;;45249:45;;45309:36;;45360:39;;-1:-1:-1;;;;;45414:37:0;;;;45466:47;45528:49;;;44809:787;;;;;28065:25:1;;;28121:2;28106:18;;28099:34;;;;28149:18;;;28142:34;;;;28207:2;28192:18;;28185:34;;;;-1:-1:-1;;;;;28256:32:1;28250:3;28235:19;;28228:61;28276:3;28305:19;;28298:35;28377:14;28370:22;28364:3;28349:19;;28342:51;28052:3;28037:19;44809:787:0;27756:643:1;33660:137:0;;;;;;;;;;-1:-1:-1;33660:137:0;;;;;:::i;:::-;;:::i;50589:214::-;;;;;;;;;;-1:-1:-1;50589:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;50760:25:0;;;50731:4;50760:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50589:214;30755:288;;;;;;;;;;-1:-1:-1;30755:288:0;;;;;:::i;:::-;;:::i;30437:148::-;;;;;;;;;;-1:-1:-1;30437:148:0;;;;;:::i;:::-;30506:7;30533:30;;;:15;:30;;;;;:44;;;;30437:148;3447:229;;;;;;;;;;-1:-1:-1;3447:229:0;;;;;:::i;:::-;;:::i;43948:202::-;;;;;;;;;;-1:-1:-1;43948:202:0;;;;;:::i;:::-;;:::i;46535:422::-;46682:4;-1:-1:-1;;;;;;46724:40:0;;-1:-1:-1;;;46724:40:0;;:105;;-1:-1:-1;;;;;;;46781:48:0;;-1:-1:-1;;;46781:48:0;46724:105;:172;;;-1:-1:-1;;;;;;;46846:50:0;;-1:-1:-1;;;46846:50:0;46724:172;:225;;;-1:-1:-1;;;;;;;;;;19540:40:0;;;46913:36;46704:245;46535:422;-1:-1:-1;;46535:422:0:o;47771:100::-;47825:13;47858:5;47851:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47771:100;:::o;49811:308::-;49932:7;53574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;53574:16:0;49957:110;;;;-1:-1:-1;;;49957:110:0;;21585:2:1;49957:110:0;;;21567:21:1;21624:2;21604:18;;;21597:30;21663:34;21643:18;;;21636:62;-1:-1:-1;;;21714:18:1;;;21707:42;21766:19;;49957:110:0;;;;;;;;;-1:-1:-1;50087:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;50087:24:0;;49811:308::o;49323:422::-;49404:13;49420:34;49446:7;49420:25;:34::i;:::-;49404:50;;49479:5;-1:-1:-1;;;;;49473:11:0;:2;-1:-1:-1;;;;;49473:11:0;;;49465:57;;;;-1:-1:-1;;;49465:57:0;;24033:2:1;49465:57:0;;;24015:21:1;24072:2;24052:18;;;24045:30;24111:34;24091:18;;;24084:62;-1:-1:-1;;;24162:18:1;;;24155:31;24203:19;;49465:57:0;23831:397:1;49465:57:0;1923:10;-1:-1:-1;;;;;49557:21:0;;;;:62;;-1:-1:-1;49582:37:0;49599:5;1923:10;50589:214;:::i;49582:37::-;49535:168;;;;-1:-1:-1;;;49535:168:0;;19072:2:1;49535:168:0;;;19054:21:1;19111:2;19091:18;;;19084:30;19150:34;19130:18;;;19123:62;19221:26;19201:18;;;19194:54;19265:19;;49535:168:0;18870:420:1;49535:168:0;49716:21;49725:2;49729:7;49716:8;:21::i;:::-;49393:352;49323:422;;:::o;30135:147::-;3038:7;3065:6;-1:-1:-1;;;;;3065:6:0;1923:10;3212:23;3204:68;;;;-1:-1:-1;;;3204:68:0;;;;;;;:::i;:::-;30228:30:::1;::::0;;;:15:::1;:30;::::0;;;;;:46;;-1:-1:-1;;30228:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30135:147::o;44545:256::-;3038:7;3065:6;-1:-1:-1;;;;;3065:6:0;1923:10;3212:23;3204:68;;;;-1:-1:-1;;;3204:68:0;;;;;;;:::i;:::-;44686:30:::1;::::0;;;:15:::1;:30;::::0;;;;;:36:::1;::::0;::::1;:45:::0;;;;44742:39:::1;;:51:::0;44545:256::o;36343:371::-;36476:73;1923:10;36500:13;36515;36530:9;36541:1;36544:4;36476:9;:73::i;:::-;36560:48;36576:13;36591;36606:1;36560:15;:48::i;:::-;36619:28;36628:3;36633:13;36619:8;:28::i;:::-;36658:48;1923:10;36683:13;36698:1;36701:4;36658:10;:48::i;50870:376::-;51079:41;1923:10;51112:7;51079:18;:41::i;:::-;51057:140;;;;-1:-1:-1;;;51057:140:0;;;;;;;:::i;:::-;51210:28;51220:4;51226:2;51230:7;51210:9;:28::i;59579:354::-;59721:7;59776:34;59804:5;59776:27;:34::i;:::-;59768:5;:42;59746:135;;;;-1:-1:-1;;;59746:135:0;;15479:2:1;59746:135:0;;;15461:21:1;15518:2;15498:18;;;15491:30;15557:34;15537:18;;;15530:62;-1:-1:-1;;;15608:18:1;;;15601:41;15659:19;;59746:135:0;15277:407:1;59746:135:0;-1:-1:-1;;;;;;59899:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;59579:354::o;37817:708::-;37994:17;;:30;;;-1:-1:-1;;;37994:30:0;;;;37975:16;;-1:-1:-1;;;;;37994:17:0;;:28;;:30;;;;;;;;;;;;;;:17;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37975:49;;38043:11;38035:54;;;;-1:-1:-1;;;38035:54:0;;26582:2:1;38035:54:0;;;26564:21:1;26621:2;26601:18;;;26594:30;26660:32;26640:18;;;26633:60;26710:18;;38035:54:0;26380:354:1;38035:54:0;38118:17;;38100:15;;-1:-1:-1;;;;;38118:17:0;:27;1923:10;38118:41;;-1:-1:-1;;;;;;38118:41:0;;;;;;;-1:-1:-1;;;;;12034:32:1;;;38118:41:0;;;12016:51:1;11989:18;;38118:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38100:59;-1:-1:-1;38170:167:0;1923:10;38221:13;38249;38277:7;38299;38321:5;38170:9;:167::i;:::-;38348:54;38364:13;38379;38394:7;38348:15;:54::i;:::-;38413:38;38423:3;38428:13;38443:7;38413:9;:38::i;:::-;38462:55;1923:10;38487:13;38502:7;38511:5;38462:10;:55::i;:::-;37964:561;;37817:708;;;;:::o;46083:380::-;46173:16;46207:18;46228:17;46238:6;46228:9;:17::i;:::-;46207:38;;46256:25;46298:10;46284:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46284:25:0;;46256:53;;46325:9;46320:108;46340:10;46336:1;:14;46320:108;;;46386:30;46406:6;46414:1;46386:19;:30::i;:::-;46372:8;46381:1;46372:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;46352:3;;;;:::i;:::-;;;;46320:108;;;-1:-1:-1;46447:8:0;46083:380;-1:-1:-1;;;46083:380:0:o;51317:185::-;51455:39;51472:4;51478:2;51482:7;51455:39;;;;;;;;;;;;:16;:39::i;41554:73::-;41604:15;41610:8;41604:5;:15::i;:::-;41554:73;:::o;60199:321::-;60319:7;60374:31;60097:10;:17;;60009:113;60374:31;60366:5;:39;60344:133;;;;-1:-1:-1;;;60344:133:0;;25694:2:1;60344:133:0;;;25676:21:1;25733:2;25713:18;;;25706:30;25772:34;25752:18;;;25745:62;-1:-1:-1;;;25823:18:1;;;25816:42;25875:19;;60344:133:0;25492:408:1;60344:133:0;60495:10;60506:5;60495:17;;;;;;;;:::i;:::-;;;;;;;;;60488:24;;60199:321;;;:::o;29780:185::-;3038:7;3065:6;-1:-1:-1;;;;;3065:6:0;1923:10;3212:23;3204:68;;;;-1:-1:-1;;;3204:68:0;;;;;;;:::i;:::-;29887:30:::1;::::0;;;:15:::1;:30;::::0;;;;;:49:::1;;:70:::0;;-1:-1:-1;;29887:70:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29780:185::o;33805:226::-;3038:7;3065:6;-1:-1:-1;;;;;3065:6:0;1923:10;3212:23;3204:68;;;;-1:-1:-1;;;3204:68:0;;;;;;;:::i;:::-;33940:30:::1;::::0;;;:15:::1;:30;::::0;;;;;;;:83;;::::1;::::0;:55:::1;::::0;;::::1;::::0;:83;::::1;::::0;::::1;:::i;49162:99::-:0;3038:7;3065:6;-1:-1:-1;;;;;3065:6:0;1923:10;3212:23;3204:68;;;;-1:-1:-1;;;3204:68:0;;;;;;;:::i;:::-;49234:19;;::::1;::::0;:8:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49162:99:::0;:::o;36722:561::-;36869:17;;:30;;;-1:-1:-1;;;36869:30:0;;;;36850:16;;-1:-1:-1;;;;;36869:17:0;;:28;;:30;;;;;;;;;;;;;;:17;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36850:49;;36918:11;36910:54;;;;-1:-1:-1;;;36910:54:0;;26582:2:1;36910:54:0;;;26564:21:1;26621:2;26601:18;;;26594:30;26660:32;26640:18;;;26633:60;26710:18;;36910:54:0;26380:354:1;36910:54:0;36993:17;;36975:15;;-1:-1:-1;;;;;36993:17:0;:27;1923:10;36993:41;;-1:-1:-1;;;;;;36993:41:0;;;;;;;-1:-1:-1;;;;;12034:32:1;;;36993:41:0;;;12016:51:1;11989:18;;36993:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36975:59;-1:-1:-1;37045:72:0;1923:10;37069:13;37084;37099:7;37108:1;37111:5;37045:9;:72::i;:::-;37128:48;37144:13;37159;37174:1;37128:15;:48::i;:::-;37187:28;37196:3;37201:13;37187:8;:28::i;:::-;37226:49;1923:10;37251:13;37266:1;37269:5;37226:10;:49::i;:::-;36839:444;;36722:561;;;:::o;47378:326::-;47495:7;47536:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47536:16:0;47585:19;47563:110;;;;-1:-1:-1;;;47563:110:0;;20325:2:1;47563:110:0;;;20307:21:1;20364:2;20344:18;;;20337:30;20403:34;20383:18;;;20376:62;-1:-1:-1;;;20454:18:1;;;20447:39;20503:19;;47563:110:0;20123:405:1;44340:197:0;3038:7;3065:6;-1:-1:-1;;;;;3065:6:0;1923:10;3212:23;3204:68;;;;-1:-1:-1;;;3204:68:0;;;;;;;:::i;:::-;44466:17:::1;:63:::0;;-1:-1:-1;;;;;;44466:63:0::1;-1:-1:-1::0;;;;;44466:63:0;;;::::1;::::0;;;::::1;::::0;;44340:197::o;47021:295::-;47138:7;-1:-1:-1;;;;;47185:19:0;;47163:111;;;;-1:-1:-1;;;47163:111:0;;19914:2:1;47163:111:0;;;19896:21:1;19953:2;19933:18;;;19926:30;19992:34;19972:18;;;19965:62;-1:-1:-1;;;20043:18:1;;;20036:40;20093:19;;47163:111:0;19712:406:1;47163:111:0;-1:-1:-1;;;;;;47292:16:0;;;;;:9;:16;;;;;;;47021:295::o;27782:114::-;27831:7;27858:30;:20;4687:14;;4595:114;27858:30;27851:37;;27782:114;:::o;42340:155::-;42437:17;;:50;;-1:-1:-1;;;42437:50:0;;;;;27298:25:1;;;42410:7:0;;-1:-1:-1;;;;;42437:17:0;;:35;;27271:18:1;;42437:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;37291:518::-;37454:168;1923:10;37505:13;37533;37561:9;37585:7;37607:4;37454:9;:168::i;:::-;37633:54;37649:13;37664;37679:7;37633:15;:54::i;:::-;37698:38;37708:3;37713:13;37728:7;37698:9;:38::i;:::-;37747:54;1923:10;37772:13;37787:7;37796:4;37747:10;:54::i;:::-;37291:518;;;;:::o;42950:203::-;43029:7;43097:34;;;:19;:34;;;;;;;;1923:10;43097:48;;;;;;;;43056:30;;;:15;:30;;;;;:38;;;:89;;43097:48;43056:89;:::i;31496:338::-;29663:1;29592:30;;;:15;:30;;;;;;;;1923:10;29592:68;;:54;;:68;;;;;;:30;;29570:182;;;;-1:-1:-1;;;29570:182:0;;14628:2:1;29570:182:0;;;14610:21:1;14667:2;14647:18;;;14640:30;14706:34;14686:18;;;14679:62;14777:30;14757:18;;;14750:58;14825:19;;29570:182:0;14426:424:1;29570:182:0;31599:22:::1;31624:30:::0;;;:15:::1;:30;::::0;;;;;;;1923:10;31624:63;;;:49:::1;::::0;;::::1;:63:::0;;;;;;;31700:67;;;31788:12:::1;-1:-1:-1::0;;;;;31780:30:0::1;:46;31811:14;31780:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;45604:471:::0;45706:7;45728;45750;45772;45807:17;45815:8;53550:4;53574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;53574:16:0;:30;;;53485:127;45807:17;-1:-1:-1;45835:12:0;45850:27;;;:17;:27;;;;;;;;;45912:25;:35;;;;;;45850:27;;45974:35;45868:8;45974:25;:35::i;:::-;46030:8;;46040:13;;;-1:-1:-1;46062:4:0;;-1:-1:-1;45604:471:0;-1:-1:-1;;;45604:471:0:o;47940:104::-;47996:13;48029:7;48022:14;;;;;:::i;33503:149::-;3038:7;3065:6;-1:-1:-1;;;;;3065:6:0;1923:10;3212:23;3204:68;;;;-1:-1:-1;;;3204:68:0;;;;;;;:::i;:::-;33595:30:::1;::::0;;;:15:::1;:30;::::0;;;;;:38:::1;;:49:::0;33503:149::o;50191:327::-;-1:-1:-1;;;;;50326:24:0;;1923:10;50326:24;;50318:62;;;;-1:-1:-1;;;50318:62:0;;17479:2:1;50318:62:0;;;17461:21:1;17518:2;17498:18;;;17491:30;17557:27;17537:18;;;17530:55;17602:18;;50318:62:0;17277:349:1;50318:62:0;1923:10;50393:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;50393:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;50393:53:0;;;;;;;;;;50462:48;;14150:41:1;;;50393:42:0;;1923:10;50462:48;;14123:18:1;50462:48:0;;;;;;;50191:327;;:::o;44158:174::-;3038:7;3065:6;-1:-1:-1;;;;;3065:6:0;1923:10;3212:23;3204:68;;;;-1:-1:-1;;;3204:68:0;;;;;;;:::i;:::-;44277:30:::1;::::0;;;:15:::1;:30;::::0;;;;;;;:47;;::::1;::::0;:37:::1;::::0;;::::1;::::0;:47;::::1;::::0;::::1;:::i;51573:365::-:0;51762:41;1923:10;51795:7;51762:18;:41::i;:::-;51740:140;;;;-1:-1:-1;;;51740:140:0;;;;;;;:::i;:::-;51891:39;51905:4;51911:2;51915:7;51924:5;51891:13;:39::i;31842:1653::-;3038:7;3065:6;-1:-1:-1;;;;;3065:6:0;1923:10;3212:23;3204:68;;;;-1:-1:-1;;;3204:68:0;;;;;;;:::i;:::-;32249:21:::1;32273:30;:20;4687:14:::0;;4595:114;32273:30:::1;32316:29;32348:30:::0;;;:15:::1;:30;::::0;;;;;;;;32391:25;;-1:-1:-1;;32391:25:0::1;::::0;;32427:15;;::::1;:19:::0;;;32457:41;;;;::::1;::::0;;;;;;32249:54;;-1:-1:-1;32348:30:0;;32457:41:::1;::::0;:35:::1;::::0;::::1;::::0;:41;::::1;:::i;:::-;-1:-1:-1::0;32534:1:0::1;32509:22;::::0;::::1;:26:::0;32546:25:::1;::::0;::::1;:43:::0;;;32600:18:::1;::::0;::::1;:29:::0;;;32640::::1;::::0;::::1;:51:::0;;-1:-1:-1;;32640:51:0::1;::::0;::::1;;;::::0;;32702:16:::1;::::0;::::1;:25:::0;;;32738:19:::1;::::0;::::1;:31:::0;;;32780:27:::1;::::0;::::1;:47:::0;;;32838:17:::1;::::0;::::1;:27:::0;;-1:-1:-1;;;;;;32838:27:0::1;-1:-1:-1::0;;;;;32838:27:0;::::1;;::::0;;32876:41;;::::1;::::0;:24:::1;::::0;::::1;::::0;:41:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;32928:32:0::1;::::0;::::1;:57:::0;;;33030:17;32998:29:::1;33060:263;33081:24;::::0;::::1;:31:::0;33077:35;::::1;33060:263;;;33159:24;33184:1;33159:27;;;;;;;;:::i;:::-;;;;;;;33134:52;;;;;:::i;:::-;;;33284:24;33309:1;33284:27;;;;;;;;:::i;:::-;;;;;;;33201:10;:34;;:63;33236:10;:24;;33261:1;33236:27;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;33236:27:0::1;33201:63:::0;;;::::1;::::0;;;;;;;;:110;33114:3;::::1;::::0;::::1;:::i;:::-;;;;33060:263;;;;33343:21;33368:3;33343:28;33335:107;;;::::0;-1:-1:-1;;;33335:107:0;;26107:2:1;33335:107:0::1;::::0;::::1;26089:21:1::0;26146:2;26126:18;;;26119:30;26185:34;26165:18;;;26158:62;26256:34;26236:18;;;26229:62;-1:-1:-1;;;26307:19:1;;;26300:33;26350:19;;33335:107:0::1;25905:470:1::0;33335:107:0::1;33455:32;:20;4806:19:::0;;4824:1;4806:19;;;4717:127;33455:32:::1;32238:1257;;;31842:1653:::0;;;;;;;;;;:::o;42503:279::-;42632:7;42715:44;;;:29;:44;;;;;;;;:59;;;;;;;;;42659:53;42745:13;42760;42659:23;:53::i;:::-;:115;;;;:::i;:::-;42652:122;42503:279;-1:-1:-1;;;42503:279:0:o;43749:191::-;29348:30;;;;:15;:30;;;;;:37;;;43854:13;;-1:-1:-1;;;;;29348:37:0;1923:10;29348:53;29326:156;;;;-1:-1:-1;;;29326:156:0;;;;;;;:::i;:::-;-1:-1:-1;43885:30:0::1;::::0;;;:15:::1;:30;::::0;;;;;:37:::1;;:47:::0;;-1:-1:-1;;;;;;43885:47:0::1;-1:-1:-1::0;;;;;43885:47:0;;::::1;::::0;;;::::1;::::0;;43749:191::o;48115:470::-;53550:4;53574:16;;;:7;:16;;;;;;48233:13;;-1:-1:-1;;;;;53574:16:0;48264:113;;;;-1:-1:-1;;;48264:113:0;;23617:2:1;48264:113:0;;;23599:21:1;23656:2;23636:18;;;23629:30;23695:34;23675:18;;;23668:62;-1:-1:-1;;;23746:18:1;;;23739:45;23801:19;;48264:113:0;23415:411:1;48264:113:0;48390:22;48415:9;:7;:9::i;:::-;48390:34;;48480:1;48461:8;48455:22;:26;:122;;;;;;;;;;;;;;;;;48525:8;48535:18;:7;:16;:18::i;:::-;48508:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48435:142;48115:470;-1:-1:-1;;;48115:470:0:o;41806:526::-;41967:17;;:50;;-1:-1:-1;;;41967:50:0;;;;;27298:25:1;;;41931:7:0;;;;-1:-1:-1;;;;;41967:17:0;;;;:35;;27271:18:1;;41967:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42045:30;;;;:15;:30;;;;;:55;;:62;41951:66;;-1:-1:-1;42037:70:0;;:287;;42201:30;;;;:15;:30;;;;;;;;:55;;42257:62;;42201:55;;42257:66;;;:::i;:::-;42201:123;;;;;;;;:::i;:::-;;;;;;;;;42037:287;;;42123:30;;;;:15;:30;;;;;:55;;:62;;42179:5;;42123:62;;;;;;:::i;:::-;;;;;;;;;42037:287;42030:294;41806:526;-1:-1:-1;;;;41806:526:0:o;33660:137::-;3038:7;3065:6;-1:-1:-1;;;;;3065:6:0;1923:10;3212:23;3204:68;;;;-1:-1:-1;;;3204:68:0;;;;;;;:::i;:::-;33746:30:::1;::::0;;;:15:::1;:30;::::0;;;;;;;:35;;::::1;:43:::0;33660:137::o;30755:288::-;29348:30;;;;:15;:30;;;;;:37;;;30820:13;;-1:-1:-1;;;;;29348:37:0;1923:10;29348:53;29326:156;;;;-1:-1:-1;;;29326:156:0;;;;;;;:::i;:::-;30846:22:::1;30871:30:::0;;;:15:::1;:30;::::0;;;;:44:::1;;::::0;;30928:48;;;1923:10;30997:12:::1;1843:98:::0;3447:229;3038:7;3065:6;-1:-1:-1;;;;;3065:6:0;1923:10;3212:23;3204:68;;;;-1:-1:-1;;;3204:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3550:22:0;::::1;3528:110;;;::::0;-1:-1:-1;;;3528:110:0;;16310:2:1;3528:110:0::1;::::0;::::1;16292:21:1::0;16349:2;16329:18;;;16322:30;16388:34;16368:18;;;16361:62;-1:-1:-1;;;16439:18:1;;;16432:36;16485:19;;3528:110:0::1;16108:402:1::0;3528:110:0::1;3649:19;3659:8;3649:9;:19::i;43948:202::-:0;3038:7;3065:6;-1:-1:-1;;;;;3065:6:0;1923:10;3212:23;3204:68;;;;-1:-1:-1;;;3204:68:0;;;;;;;:::i;:::-;44079:30:::1;::::0;;;:15:::1;:30;::::0;;;;;:45:::1;;:63:::0;43948:202::o;4717:127::-;4806:19;;4824:1;4806:19;;;4717:127::o;57765:185::-;57840:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;57840:29:0;-1:-1:-1;;;;;57840:29:0;;;;;;;;:24;;57894:34;57840:24;57894:25;:34::i;:::-;-1:-1:-1;;;;;57885:57:0;;;;;;;;;;;57765:185;;:::o;34039:2296::-;34285:30;;;;:15;:30;;;;;;;;:37;;;:45;;;34263:175;;;;-1:-1:-1;;;34263:175:0;;20735:2:1;34263:175:0;;;20717:21:1;20774:2;20754:18;;;20747:30;20813:34;20793:18;;;20786:62;20884:34;20864:18;;;20857:62;-1:-1:-1;;;20935:19:1;;;20928:47;20992:19;;34263:175:0;20533:484:1;34263:175:0;34535:30;;;;:15;:30;;;;;:45;;;;34473:42;;;;;:107;34451:203;;;;-1:-1:-1;;;34451:203:0;;23202:2:1;34451:203:0;;;23184:21:1;23241:2;23221:18;;;23214:30;23280:34;23260:18;;;23253:62;-1:-1:-1;;;23331:18:1;;;23324:44;23385:19;;34451:203:0;23000:410:1;34451:203:0;34700:30;;;;:15;:30;;;;;:52;;;34689:63;;;34667:176;;;;-1:-1:-1;;;34667:176:0;;24435:2:1;34667:176:0;;;24417:21:1;24474:2;24454:18;;;24447:30;24513:34;24493:18;;;24486:62;24584:33;24564:18;;;24557:61;24635:19;;34667:176:0;24233:427:1;34667:176:0;34856:22;34881:30;;;:15;:30;;;;;:38;;;;34936:49;;;;;;;34932:828;;;35029:17;;:40;;-1:-1:-1;;;35029:40:0;;;;;27298:25:1;;;35002:24:0;;-1:-1:-1;;;;;35029:17:0;;:25;;27271:18:1;;35029:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35002:67;;35130:7;-1:-1:-1;;;;;35110:27:0;:16;-1:-1:-1;;;;;35110:27:0;;35084:139;;;;-1:-1:-1;;;35084:139:0;;17833:2:1;35084:139:0;;;17815:21:1;17872:2;17852:18;;;17845:30;17911:34;17891:18;;;17884:62;-1:-1:-1;;;17962:18:1;;;17955:48;18020:19;;35084:139:0;17631:414:1;35084:139:0;35254:17;;:50;;-1:-1:-1;;;35254:50:0;;;;;27298:25:1;;;35238:13:0;;-1:-1:-1;;;;;35254:17:0;;:35;;27271:18:1;;35254:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35354:30;;;;:15;:30;;;;;;;;:35;;35238:66;;-1:-1:-1;35345:44:0;;;35319:144;;;;-1:-1:-1;;;35319:144:0;;18665:2:1;35319:144:0;;;18647:21:1;18704:2;18684:18;;;18677:30;18743:34;18723:18;;;18716:62;-1:-1:-1;;;18794:18:1;;;18787:36;18840:19;;35319:144:0;18463:402:1;35319:144:0;35495:106;35541:13;35573;35495:27;:106::i;:::-;35478:123;;34987:626;;34932:828;;;35700:34;;;;:19;:34;;;;;;;;1923:10;35700:48;;;;;;;;35659:30;;;:15;:30;;;;;;:38;;;:89;;35700:48;35659:89;:::i;:::-;35642:106;;34932:828;35812:7;35794:14;:25;;35772:139;;;;;-1:-1:-1;;;35772:139:0;;22769:2:1;35772:139:0;;;22751:21:1;22788:18;;;22781:30;;;;22847:34;22827:18;;;22820:62;22918:34;22898:18;;;22891:62;22970:19;;35772:139:0;22567:428:1;35772:139:0;35926:13;35922:406;;;35982:30;;;;:15;:30;;;;;:36;;;36032:6;;35982:46;;36021:7;;35982:46;:::i;:::-;:56;;35956:158;;;;-1:-1:-1;;;35956:158:0;;25285:2:1;35956:158:0;;;25267:21:1;25324:2;25304:18;;;25297:30;25363:34;25343:18;;;25336:62;-1:-1:-1;;;25414:18:1;;;25407:38;25462:19;;35956:158:0;25083:404:1;35956:158:0;35922:406;;;36173:30;;;;:15;:30;;;;;:39;;;36226:6;;36173:49;;36215:7;;36173:49;:::i;:::-;:59;;36147:169;;;;-1:-1:-1;;;36147:169:0;;19497:2:1;36147:169:0;;;19479:21:1;19536:2;19516:18;;;19509:30;19575:34;19555:18;;;19548:62;-1:-1:-1;;;19626:18:1;;;19619:46;19682:19;;36147:169:0;19295:412:1;36147:169:0;34252:2083;34039:2296;;;;;;:::o;43161:580::-;43315:30;;;;:15;:30;;;;;:49;;;;;43311:423;;;43460:44;;;;:29;:44;;;;;;;;:59;;;;;;;;;:86;;43539:7;;43460:86;:::i;:::-;43381:44;;;;:29;:44;;;;;;;;:59;;;;;;;;:165;49393:352;49323:422;;:::o;43311:423::-;43647:34;;;;:19;:34;;;;;;;;1923:10;43647:48;;;;;;;;:75;;43715:7;;43647:75;:::i;:::-;43579:34;;;;:19;:34;;;;;;;;1923:10;43579:48;;;;;;;;:143;;;;-1:-1:-1;;43161:580:0:o;38775:618::-;38857:18;38878:30;;;:15;:30;;;;;;;:42;;;:46;;;:::i;:::-;38857:67;-1:-1:-1;38935:16:0;38857:67;38954:22;:13;38970:6;38954:22;:::i;:::-;:35;;;;:::i;:::-;39000:30;;;;:15;:30;;;;;;;;:42;;:55;;;39107:65;;;;;11653:19:1;;;39136:12:0;11688::1;;;11681:28;39150:16:0;11725:12:1;;;;11718:28;;;;11780:15;;;-1:-1:-1;;11776:53:1;11762:12;;;11755:75;39107:65:0;;;;;;;;;11846:13:1;;;;39107:65:0;;39083:100;;;;;;39194:27;;;:17;:27;;;;;:34;;;39239:25;:35;;;;;;:51;;;39194:27;;-1:-1:-1;39303:24:0;11780:15:1;39194:27:0;39303:9;:24::i;:::-;39345:40;;;-1:-1:-1;;;;;13200:32:1;;13182:51;;13264:2;13249:18;;13242:34;;;13292:18;;;13285:34;;;13350:2;13335:18;;13328:34;;;39345:40:0;;13169:3:1;13154:19;39345:40:0;;;;;;;38846:547;;;38775:618;;:::o;39401:2145::-;39569:13;39585;:140;;39676:30;;;;:15;:30;;;;;:39;;;:49;;39718:7;;39676:49;:::i;:::-;39585:140;;;39614:30;;;;:15;:30;;;;;:36;;;:46;;39653:7;;39614:46;:::i;:::-;39569:156;;39736:14;39753:7;3038;3065:6;-1:-1:-1;;;;;3065:6:0;;2992:87;39753:7;39771:20;39816:30;;;:15;:30;;;;;:47;;;39736:24;;-1:-1:-1;39771:20:0;39867:3;;39795:68;;:5;:68;:::i;:::-;39794:76;;;;:::i;:::-;39771:99;;39887:13;39883:1656;;;39917:30;;;;:15;:30;;;;;:44;;:60;;39965:12;;39917:30;:60;;39965:12;;39917:60;:::i;:::-;;;;-1:-1:-1;39999:6:0;;-1:-1:-1;39994:422:0;40015:30;;;;:15;:30;;;;;:44;;:51;40011:55;;39994:422;;;40092:25;40150:30;;;:15;:30;;;;;40205:44;;;:47;;40257:3;;40150:54;;;40092:25;;40250:1;;40205:47;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;40205:47:0;40150:103;;;;;;;;;;;;;40121:132;;:5;:132;:::i;:::-;40120:140;;;;:::i;:::-;40281:30;;;;:15;:30;;;;;40331:44;;;:47;;40092:168;;-1:-1:-1;40092:168:0;;40281:49;;;;;:30;40376:1;;40331:47;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;40331:47:0;40281:98;;;;;;;;;;;;:119;;:98;;40331:47;40281:119;;;;;:::i;:::-;;;;-1:-1:-1;40068:3:0;;-1:-1:-1;40068:3:0;;-1:-1:-1;40068:3:0;;:::i;:::-;;;;39994:422;;;;39883:1656;;;40485:31;40540:6;40535:553;40556:30;;;;:15;:30;;;;;:44;;:51;40552:55;;40535:553;;;40633:25;40691:30;;;:15;:30;;;;;40746:44;;;:47;;40798:3;;40691:54;;;40633:25;;40791:1;;40746:47;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;40746:47:0;40691:103;;;;;;;;;;;;;40662:132;;:5;:132;:::i;:::-;40661:140;;;;:::i;:::-;40820:17;;;40903:30;;;40820:17;40903:30;;;;;:44;;:47;;40633:168;;-1:-1:-1;;;;;;40820:17:0;;;;:30;;40873:7;;40948:1;;40903:47;;;;;;:::i;:::-;;;;;;;;;;;40820:189;;;;;;-1:-1:-1;;;;;;40820:189:0;;;-1:-1:-1;;;;;12336:15:1;;;40820:189:0;;;12318:34:1;40903:47:0;;12368:18:1;;;12361:43;12420:18;;;12413:34;;;12253:18;;40820:189:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41055:17;41028:44;;;;;:::i;:::-;;;40614:474;40609:3;;;;;:::i;:::-;;;;40535:553;;;-1:-1:-1;41134:17:0;;;41209:30;;;41134:17;41209:30;;;;;;;:37;;;41134:158;;-1:-1:-1;;;41134:158:0;;-1:-1:-1;;;;;12336:15:1;;;41134:158:0;;;12318:34:1;41209:37:0;;;12368:18:1;;;12361:43;12420:18;;;12413:34;;;41134:17:0;;;:30;;12253:18:1;;41134:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41366:17:0;;-1:-1:-1;;;;;41366:17:0;;-1:-1:-1;41366:30:0;;-1:-1:-1;41415:7:0;41441:6;41489:23;41466:20;41474:12;41466:5;:20;:::i;:::-;:46;;;;:::i;:::-;41366:161;;-1:-1:-1;;;;;;41366:161:0;;;;;;;-1:-1:-1;;;;;12336:15:1;;;41366:161:0;;;12318:34:1;12388:15;;;;12368:18;;;12361:43;12420:18;;;12413:34;12253:18;;41366:161:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40433:1106;39558:1988;;;39401:2145;;;;:::o;53779:463::-;53908:4;53574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;53574:16:0;53930:110;;;;-1:-1:-1;;;53930:110:0;;18252:2:1;53930:110:0;;;18234:21:1;18291:2;18271:18;;;18264:30;18330:34;18310:18;;;18303:62;-1:-1:-1;;;18381:18:1;;;18374:42;18433:19;;53930:110:0;18050:408:1;53930:110:0;54051:13;54067:34;54093:7;54067:25;:34::i;:::-;54051:50;;54131:5;-1:-1:-1;;;;;54120:16:0;:7;-1:-1:-1;;;;;54120:16:0;;:64;;;;54177:7;-1:-1:-1;;;;;54153:31:0;:20;54165:7;54153:11;:20::i;:::-;-1:-1:-1;;;;;54153:31:0;;54120:64;:113;;;-1:-1:-1;;;;;;50760:25:0;;;50731:4;50760:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;54201:32;50589:214;57021:626;57205:4;-1:-1:-1;;;;;57167:42:0;:34;57193:7;57167:25;:34::i;:::-;-1:-1:-1;;;;;57167:42:0;;57145:133;;;;-1:-1:-1;;;57145:133:0;;22359:2:1;57145:133:0;;;22341:21:1;22398:2;22378:18;;;22371:30;22437:34;22417:18;;;22410:62;-1:-1:-1;;;22488:18:1;;;22481:39;22537:19;;57145:133:0;22157:405:1;57145:133:0;-1:-1:-1;;;;;57297:16:0;;57289:65;;;;-1:-1:-1;;;57289:65:0;;17074:2:1;57289:65:0;;;17056:21:1;17113:2;17093:18;;;17086:30;17152:34;17132:18;;;17125:62;-1:-1:-1;;;17203:18:1;;;17196:34;17247:19;;57289:65:0;16872:400:1;57289:65:0;57367:39;57388:4;57394:2;57398:7;57367:20;:39::i;:::-;57471:29;57488:1;57492:7;57471:8;:29::i;:::-;-1:-1:-1;;;;;57513:15:0;;;;;;:9;:15;;;;;:20;;57532:1;;57513:15;:20;;57532:1;;57513:20;:::i;:::-;;;;-1:-1:-1;;;;;;;57544:13:0;;;;;;:9;:13;;;;;:18;;57561:1;;57544:13;:18;;57561:1;;57544:18;:::i;:::-;;;;-1:-1:-1;;57573:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;57573:21:0;-1:-1:-1;;;;;57573:21:0;;;;;;;;;57612:27;;57573:16;;57612:27;;;;;;;57021:626;;;:::o;38533:234::-;38672:9;38667:93;38691:7;38687:1;:11;38667:93;;;38720:28;38729:3;38734:13;38720:8;:28::i;:::-;38700:3;;;;:::i;:::-;;;;38667:93;;56189:493;56249:13;56265:34;56291:7;56265:25;:34::i;:::-;56249:50;-1:-1:-1;1923:10:0;-1:-1:-1;;;;;56332:21:0;;;56310:115;;;;-1:-1:-1;;;56310:115:0;;26941:2:1;56310:115:0;;;26923:21:1;26980:2;26960:18;;;26953:30;27019:34;26999:18;;;26992:62;-1:-1:-1;;;27070:18:1;;;27063:42;27122:19;;56310:115:0;26739:408:1;56310:115:0;56436:48;56457:5;56472:1;56476:7;56436:20;:48::i;:::-;56523:29;56540:1;56544:7;56523:8;:29::i;:::-;-1:-1:-1;;;;;56565:16:0;;;;;;:9;:16;;;;;:21;;56585:1;;56565:16;:21;;56585:1;;56565:21;:::i;:::-;;;;-1:-1:-1;;56604:16:0;;;;:7;:16;;;;;;56597:23;;-1:-1:-1;;;;;;56597:23:0;;;56638:36;56612:7;;56604:16;-1:-1:-1;;;;;56638:36:0;;;;;56604:16;;56638:36;56238:444;56189:493;:::o;52820:352::-;52977:28;52987:4;52993:2;52997:7;52977:9;:28::i;:::-;53038:48;53061:4;53067:2;53071:7;53080:5;53038:22;:48::i;:::-;53016:148;;;;-1:-1:-1;;;53016:148:0;;;;;;;:::i;48833:99::-;48883:13;48916:8;48909:15;;;;;:::i;5414:723::-;5470:13;5691:10;5687:53;;-1:-1:-1;;5718:10:0;;;;;;;;;;;;-1:-1:-1;;;5718:10:0;;;;;5414:723::o;5687:53::-;5765:5;5750:12;5806:78;5813:9;;5806:78;;5839:8;;;;:::i;:::-;;-1:-1:-1;5862:10:0;;-1:-1:-1;5870:2:0;5862:10;;:::i;:::-;;;5806:78;;;5894:19;5926:6;5916:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5916:17:0;;5894:39;;5944:154;5951:10;;5944:154;;5978:11;5988:1;5978:11;;:::i;:::-;;-1:-1:-1;6047:10:0;6055:2;6047:5;:10;:::i;:::-;6034:24;;:2;:24;:::i;:::-;6021:39;;6004:6;6011;6004:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6004:56:0;;;;;;;;-1:-1:-1;6075:11:0;6084:2;6075:11;;:::i;:::-;;;5944:154;;3684:173;3740:16;3759:6;;-1:-1:-1;;;;;3776:17:0;;;-1:-1:-1;;;;;;3776:17:0;;;;;;3809:40;;3759:6;;;;;;;3809:40;;3740:16;3809:40;3729:128;3684:173;:::o;54584:110::-;54660:26;54670:2;54674:7;54660:26;;;;;;;;;;;;:9;:26::i;61133:522::-;-1:-1:-1;;;;;61272:18:0;;61268:187;;61307:40;61339:7;62493:10;:17;;62466:24;;;;:15;:24;;;;;:44;;;62521:24;;;;;;;;;;;;62389:164;61307:40;61268:187;;;61377:2;-1:-1:-1;;;;;61369:10:0;:4;-1:-1:-1;;;;;61369:10:0;;61365:90;;61396:47;61429:4;61435:7;61396:32;:47::i;:::-;-1:-1:-1;;;;;61469:16:0;;61465:183;;61502:45;61539:7;61502:36;:45::i;61465:183::-;61575:4;-1:-1:-1;;;;;61569:10:0;:2;-1:-1:-1;;;;;61569:10:0;;61565:83;;61596:40;61624:2;61628:7;61596:27;:40::i;58515:980::-;58670:4;-1:-1:-1;;;;;58691:13:0;;7148:20;7196:8;58687:801;;58744:175;;-1:-1:-1;;;58744:175:0;;-1:-1:-1;;;;;58744:36:0;;;;;:175;;1923:10;;58838:4;;58865:7;;58895:5;;58744:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58744:175:0;;;;;;;;-1:-1:-1;;58744:175:0;;;;;;;;;;;;:::i;:::-;;;58723:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59102:13:0;;59098:320;;59145:108;;-1:-1:-1;;;59145:108:0;;;;;;;:::i;59098:320::-;59368:6;59362:13;59353:6;59349:2;59345:15;59338:38;58723:710;-1:-1:-1;;;;;;58983:51:0;-1:-1:-1;;;58983:51:0;;-1:-1:-1;58976:58:0;;58687:801;-1:-1:-1;59472:4:0;58515:980;;;;;;:::o;54921:321::-;55051:18;55057:2;55061:7;55051:5;:18::i;:::-;55102:54;55133:1;55137:2;55141:7;55150:5;55102:22;:54::i;:::-;55080:154;;;;-1:-1:-1;;;55080:154:0;;;;;;;:::i;63180:1013::-;63460:22;63521:1;63485:33;63513:4;63485:27;:33::i;:::-;:37;;;;:::i;:::-;63533:18;63554:26;;;:17;:26;;;;;;63460:62;;-1:-1:-1;63687:28:0;;;63683:328;;-1:-1:-1;;;;;63754:18:0;;63732:19;63754:18;;;:12;:18;;;;;;;;:34;;;;;;;;;63805:30;;;;;;:44;;;63922:30;;:17;:30;;;;;:43;;;63683:328;-1:-1:-1;64107:26:0;;;;:17;:26;;;;;;;;64100:33;;;-1:-1:-1;;;;;64151:18:0;;;;;:12;:18;;;;;:34;;;;;;;64144:41;63180:1013::o;64488:1079::-;64766:10;:17;64741:22;;64766:21;;64786:1;;64766:21;:::i;:::-;64798:18;64819:24;;;:15;:24;;;;;;65192:10;:26;;64741:46;;-1:-1:-1;64819:24:0;;64741:46;;65192:26;;;;;;:::i;:::-;;;;;;;;;65170:48;;65256:11;65231:10;65242;65231:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;65336:28;;;:15;:28;;;;;;;:41;;;65508:24;;;;;65501:31;65543:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;64559:1008;;;64488:1079;:::o;61956:232::-;62041:14;62058:31;62086:2;62058:27;:31::i;:::-;-1:-1:-1;;;;;62100:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;62145:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;61956:232:0:o;55578:382::-;-1:-1:-1;;;;;55658:16:0;;55650:61;;;;-1:-1:-1;;;55650:61:0;;21224:2:1;55650:61:0;;;21206:21:1;;;21243:18;;;21236:30;21302:34;21282:18;;;21275:62;21354:18;;55650:61:0;21022:356:1;55650:61:0;53550:4;53574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;53574:16:0;:30;55722:58;;;;-1:-1:-1;;;55722:58:0;;16717:2:1;55722:58:0;;;16699:21:1;16756:2;16736:18;;;16729:30;16795;16775:18;;;16768:58;16843:18;;55722:58:0;16515:352:1;55722:58:0;55793:45;55822:1;55826:2;55830:7;55793:20;:45::i;:::-;-1:-1:-1;;;;;55851:13:0;;;;;;:9;:13;;;;;:18;;55868:1;;55851:13;:18;;55868:1;;55851:18;:::i;:::-;;;;-1:-1:-1;;55880:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;55880:21:0;-1:-1:-1;;;;;55880:21:0;;;;;;;;55919:33;;55880:16;;;55919:33;;55880:16;;55919:33;55578:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:134::-;493:20;;522:31;493:20;522:31;:::i;:::-;425:134;;;:::o;564:748::-;618:5;671:3;664:4;656:6;652:17;648:27;638:55;;689:1;686;679:12;638:55;725:6;712:20;751:4;775:60;791:43;831:2;791:43;:::i;:::-;775:60;:::i;:::-;857:3;881:2;876:3;869:15;909:2;904:3;900:12;893:19;;944:2;936:6;932:15;996:3;991:2;985;982:1;978:10;970:6;966:23;962:32;959:41;956:61;;;1013:1;1010;1003:12;956:61;1035:1;1045:238;1059:2;1056:1;1053:9;1045:238;;;1130:3;1117:17;1147:31;1172:5;1147:31;:::i;:::-;1191:18;;1229:12;;;;1261;;;;1077:1;1070:9;1045:238;;;-1:-1:-1;1301:5:1;;564:748;-1:-1:-1;;;;;;;564:748:1:o;1317:673::-;1371:5;1424:3;1417:4;1409:6;1405:17;1401:27;1391:55;;1442:1;1439;1432:12;1391:55;1478:6;1465:20;1504:4;1528:60;1544:43;1584:2;1544:43;:::i;1528:60::-;1610:3;1634:2;1629:3;1622:15;1662:2;1657:3;1653:12;1646:19;;1697:2;1689:6;1685:15;1749:3;1744:2;1738;1735:1;1731:10;1723:6;1719:23;1715:32;1712:41;1709:61;;;1766:1;1763;1756:12;1709:61;1788:1;1798:163;1812:2;1809:1;1806:9;1798:163;;;1869:17;;1857:30;;1907:12;;;;1939;;;;1830:1;1823:9;1798:163;;1995:128;2060:20;;2089:28;2060:20;2089:28;:::i;2128:221::-;2171:5;2224:3;2217:4;2209:6;2205:17;2201:27;2191:55;;2242:1;2239;2232:12;2191:55;2264:79;2339:3;2330:6;2317:20;2310:4;2302:6;2298:17;2264:79;:::i;2354:247::-;2413:6;2466:2;2454:9;2445:7;2441:23;2437:32;2434:52;;;2482:1;2479;2472:12;2434:52;2521:9;2508:23;2540:31;2565:5;2540:31;:::i;2606:251::-;2676:6;2729:2;2717:9;2708:7;2704:23;2700:32;2697:52;;;2745:1;2742;2735:12;2697:52;2777:9;2771:16;2796:31;2821:5;2796:31;:::i;2862:388::-;2930:6;2938;2991:2;2979:9;2970:7;2966:23;2962:32;2959:52;;;3007:1;3004;2997:12;2959:52;3046:9;3033:23;3065:31;3090:5;3065:31;:::i;:::-;3115:5;-1:-1:-1;3172:2:1;3157:18;;3144:32;3185:33;3144:32;3185:33;:::i;:::-;3237:7;3227:17;;;2862:388;;;;;:::o;3255:456::-;3332:6;3340;3348;3401:2;3389:9;3380:7;3376:23;3372:32;3369:52;;;3417:1;3414;3407:12;3369:52;3456:9;3443:23;3475:31;3500:5;3475:31;:::i;:::-;3525:5;-1:-1:-1;3582:2:1;3567:18;;3554:32;3595:33;3554:32;3595:33;:::i;:::-;3255:456;;3647:7;;-1:-1:-1;;;3701:2:1;3686:18;;;;3673:32;;3255:456::o;3716:794::-;3811:6;3819;3827;3835;3888:3;3876:9;3867:7;3863:23;3859:33;3856:53;;;3905:1;3902;3895:12;3856:53;3944:9;3931:23;3963:31;3988:5;3963:31;:::i;:::-;4013:5;-1:-1:-1;4070:2:1;4055:18;;4042:32;4083:33;4042:32;4083:33;:::i;:::-;4135:7;-1:-1:-1;4189:2:1;4174:18;;4161:32;;-1:-1:-1;4244:2:1;4229:18;;4216:32;4271:18;4260:30;;4257:50;;;4303:1;4300;4293:12;4257:50;4326:22;;4379:4;4371:13;;4367:27;-1:-1:-1;4357:55:1;;4408:1;4405;4398:12;4357:55;4431:73;4496:7;4491:2;4478:16;4473:2;4469;4465:11;4431:73;:::i;:::-;4421:83;;;3716:794;;;;;;;:::o;4515:382::-;4580:6;4588;4641:2;4629:9;4620:7;4616:23;4612:32;4609:52;;;4657:1;4654;4647:12;4609:52;4696:9;4683:23;4715:31;4740:5;4715:31;:::i;:::-;4765:5;-1:-1:-1;4822:2:1;4807:18;;4794:32;4835:30;4794:32;4835:30;:::i;4902:315::-;4970:6;4978;5031:2;5019:9;5010:7;5006:23;5002:32;4999:52;;;5047:1;5044;5037:12;4999:52;5086:9;5073:23;5105:31;5130:5;5105:31;:::i;:::-;5155:5;5207:2;5192:18;;;;5179:32;;-1:-1:-1;;;4902:315:1:o;5222:383::-;5299:6;5307;5315;5368:2;5356:9;5347:7;5343:23;5339:32;5336:52;;;5384:1;5381;5374:12;5336:52;5423:9;5410:23;5442:31;5467:5;5442:31;:::i;:::-;5492:5;5544:2;5529:18;;5516:32;;-1:-1:-1;5595:2:1;5580:18;;;5567:32;;5222:383;-1:-1:-1;;;5222:383:1:o;5610:452::-;5696:6;5704;5712;5720;5773:3;5761:9;5752:7;5748:23;5744:33;5741:53;;;5790:1;5787;5780:12;5741:53;5829:9;5816:23;5848:31;5873:5;5848:31;:::i;:::-;5898:5;5950:2;5935:18;;5922:32;;-1:-1:-1;6001:2:1;5986:18;;5973:32;;6052:2;6037:18;6024:32;;-1:-1:-1;5610:452:1;-1:-1:-1;;;5610:452:1:o;6067:1152::-;6254:6;6262;6270;6278;6286;6294;6302;6310;6318;6326;6379:3;6367:9;6358:7;6354:23;6350:33;6347:53;;;6396:1;6393;6386:12;6347:53;6419:29;6438:9;6419:29;:::i;:::-;6409:39;;6495:2;6484:9;6480:18;6467:32;6457:42;;6546:2;6535:9;6531:18;6518:32;6508:42;;6597:2;6586:9;6582:18;6569:32;6559:42;;6648:3;6637:9;6633:19;6620:33;6610:43;;6700:3;6689:9;6685:19;6672:33;6662:43;;6724:36;6755:3;6744:9;6740:19;6724:36;:::i;:::-;6714:46;;6811:3;6800:9;6796:19;6783:33;6835:18;6876:2;6868:6;6865:14;6862:34;;;6892:1;6889;6882:12;6862:34;6915:61;6968:7;6959:6;6948:9;6944:22;6915:61;:::i;:::-;6905:71;;7029:3;7018:9;7014:19;7001:33;6985:49;;7059:2;7049:8;7046:16;7043:36;;;7075:1;7072;7065:12;7043:36;;7098:63;7153:7;7142:8;7131:9;7127:24;7098:63;:::i;:::-;7088:73;;;7208:3;7197:9;7193:19;7180:33;7170:43;;6067:1152;;;;;;;;;;;;;:::o;7224:245::-;7291:6;7344:2;7332:9;7323:7;7319:23;7315:32;7312:52;;;7360:1;7357;7350:12;7312:52;7392:9;7386:16;7411:28;7433:5;7411:28;:::i;7474:245::-;7532:6;7585:2;7573:9;7564:7;7560:23;7556:32;7553:52;;;7601:1;7598;7591:12;7553:52;7640:9;7627:23;7659:30;7683:5;7659:30;:::i;7724:249::-;7793:6;7846:2;7834:9;7825:7;7821:23;7817:32;7814:52;;;7862:1;7859;7852:12;7814:52;7894:9;7888:16;7913:30;7937:5;7913:30;:::i;7978:322::-;8047:6;8100:2;8088:9;8079:7;8075:23;8071:32;8068:52;;;8116:1;8113;8106:12;8068:52;8156:9;8143:23;8189:18;8181:6;8178:30;8175:50;;;8221:1;8218;8211:12;8175:50;8244;8286:7;8277:6;8266:9;8262:22;8244:50;:::i;8305:180::-;8364:6;8417:2;8405:9;8396:7;8392:23;8388:32;8385:52;;;8433:1;8430;8423:12;8385:52;-1:-1:-1;8456:23:1;;8305:180;-1:-1:-1;8305:180:1:o;8490:184::-;8560:6;8613:2;8601:9;8592:7;8588:23;8584:32;8581:52;;;8629:1;8626;8619:12;8581:52;-1:-1:-1;8652:16:1;;8490:184;-1:-1:-1;8490:184:1:o;8679:315::-;8747:6;8755;8808:2;8796:9;8787:7;8783:23;8779:32;8776:52;;;8824:1;8821;8814:12;8776:52;8860:9;8847:23;8837:33;;8920:2;8909:9;8905:18;8892:32;8933:31;8958:5;8933:31;:::i;8999:416::-;9092:6;9100;9153:2;9141:9;9132:7;9128:23;9124:32;9121:52;;;9169:1;9166;9159:12;9121:52;9205:9;9192:23;9182:33;;9266:2;9255:9;9251:18;9238:32;9293:18;9285:6;9282:30;9279:50;;;9325:1;9322;9315:12;9279:50;9348:61;9401:7;9392:6;9381:9;9377:22;9348:61;:::i;:::-;9338:71;;;8999:416;;;;;:::o;9420:309::-;9485:6;9493;9546:2;9534:9;9525:7;9521:23;9517:32;9514:52;;;9562:1;9559;9552:12;9514:52;9598:9;9585:23;9575:33;;9658:2;9647:9;9643:18;9630:32;9671:28;9693:5;9671:28;:::i;9734:390::-;9812:6;9820;9873:2;9861:9;9852:7;9848:23;9844:32;9841:52;;;9889:1;9886;9879:12;9841:52;9925:9;9912:23;9902:33;;9986:2;9975:9;9971:18;9958:32;10013:18;10005:6;10002:30;9999:50;;;10045:1;10042;10035:12;9999:50;10068;10110:7;10101:6;10090:9;10086:22;10068:50;:::i;10129:248::-;10197:6;10205;10258:2;10246:9;10237:7;10233:23;10229:32;10226:52;;;10274:1;10271;10264:12;10226:52;-1:-1:-1;;10297:23:1;;;10367:2;10352:18;;;10339:32;;-1:-1:-1;10129:248:1:o;10382:316::-;10459:6;10467;10475;10528:2;10516:9;10507:7;10503:23;10499:32;10496:52;;;10544:1;10541;10534:12;10496:52;-1:-1:-1;;10567:23:1;;;10637:2;10622:18;;10609:32;;-1:-1:-1;10688:2:1;10673:18;;;10660:32;;10382:316;-1:-1:-1;10382:316:1:o;10703:257::-;10744:3;10782:5;10776:12;10809:6;10804:3;10797:19;10825:63;10881:6;10874:4;10869:3;10865:14;10858:4;10851:5;10847:16;10825:63;:::i;:::-;10942:2;10921:15;-1:-1:-1;;10917:29:1;10908:39;;;;10949:4;10904:50;;10703:257;-1:-1:-1;;10703:257:1:o;10965:470::-;11144:3;11182:6;11176:13;11198:53;11244:6;11239:3;11232:4;11224:6;11220:17;11198:53;:::i;:::-;11314:13;;11273:16;;;;11336:57;11314:13;11273:16;11370:4;11358:17;;11336:57;:::i;:::-;11409:20;;10965:470;-1:-1:-1;;;;10965:470:1:o;12458:488::-;-1:-1:-1;;;;;12727:15:1;;;12709:34;;12779:15;;12774:2;12759:18;;12752:43;12826:2;12811:18;;12804:34;;;12874:3;12869:2;12854:18;;12847:31;;;12652:4;;12895:45;;12920:19;;12912:6;12895:45;:::i;:::-;12887:53;12458:488;-1:-1:-1;;;;;;12458:488:1:o;13373:632::-;13544:2;13596:21;;;13666:13;;13569:18;;;13688:22;;;13515:4;;13544:2;13767:15;;;;13741:2;13726:18;;;13515:4;13810:169;13824:6;13821:1;13818:13;13810:169;;;13885:13;;13873:26;;13954:15;;;;13919:12;;;;13846:1;13839:9;13810:169;;;-1:-1:-1;13996:3:1;;13373:632;-1:-1:-1;;;;;;13373:632:1:o;14202:219::-;14351:2;14340:9;14333:21;14314:4;14371:44;14411:2;14400:9;14396:18;14388:6;14371:44;:::i;14855:417::-;15057:2;15039:21;;;15096:2;15076:18;;;15069:30;15135:34;15130:2;15115:18;;15108:62;-1:-1:-1;;;15201:2:1;15186:18;;15179:51;15262:3;15247:19;;14855:417::o;15689:414::-;15891:2;15873:21;;;15930:2;15910:18;;;15903:30;15969:34;15964:2;15949:18;;15942:62;-1:-1:-1;;;16035:2:1;16020:18;;16013:48;16093:3;16078:19;;15689:414::o;21796:356::-;21998:2;21980:21;;;22017:18;;;22010:30;22076:34;22071:2;22056:18;;22049:62;22143:2;22128:18;;21796:356::o;24665:413::-;24867:2;24849:21;;;24906:2;24886:18;;;24879:30;24945:34;24940:2;24925:18;;24918:62;-1:-1:-1;;;25011:2:1;24996:18;;24989:47;25068:3;25053:19;;24665:413::o;28404:275::-;28475:2;28469:9;28540:2;28521:13;;-1:-1:-1;;28517:27:1;28505:40;;28575:18;28560:34;;28596:22;;;28557:62;28554:88;;;28622:18;;:::i;:::-;28658:2;28651:22;28404:275;;-1:-1:-1;28404:275:1:o;28684:183::-;28744:4;28777:18;28769:6;28766:30;28763:56;;;28799:18;;:::i;:::-;-1:-1:-1;28844:1:1;28840:14;28856:4;28836:25;;28684:183::o;28872:128::-;28912:3;28943:1;28939:6;28936:1;28933:13;28930:39;;;28949:18;;:::i;:::-;-1:-1:-1;28985:9:1;;28872:128::o;29005:120::-;29045:1;29071;29061:35;;29076:18;;:::i;:::-;-1:-1:-1;29110:9:1;;29005:120::o;29130:168::-;29170:7;29236:1;29232;29228:6;29224:14;29221:1;29218:21;29213:1;29206:9;29199:17;29195:45;29192:71;;;29243:18;;:::i;:::-;-1:-1:-1;29283:9:1;;29130:168::o;29303:125::-;29343:4;29371:1;29368;29365:8;29362:34;;;29376:18;;:::i;:::-;-1:-1:-1;29413:9:1;;29303:125::o;29433:258::-;29505:1;29515:113;29529:6;29526:1;29523:13;29515:113;;;29605:11;;;29599:18;29586:11;;;29579:39;29551:2;29544:10;29515:113;;;29646:6;29643:1;29640:13;29637:48;;;-1:-1:-1;;29681:1:1;29663:16;;29656:27;29433:258::o;29696:380::-;29775:1;29771:12;;;;29818;;;29839:61;;29893:4;29885:6;29881:17;29871:27;;29839:61;29946:2;29938:6;29935:14;29915:18;29912:38;29909:161;;;29992:10;29987:3;29983:20;29980:1;29973:31;30027:4;30024:1;30017:15;30055:4;30052:1;30045:15;29909:161;;29696:380;;;:::o;30081:135::-;30120:3;-1:-1:-1;;30141:17:1;;30138:43;;;30161:18;;:::i;:::-;-1:-1:-1;30208:1:1;30197:13;;30081:135::o;30221:112::-;30253:1;30279;30269:35;;30284:18;;:::i;:::-;-1:-1:-1;30318:9:1;;30221:112::o;30338:127::-;30399:10;30394:3;30390:20;30387:1;30380:31;30430:4;30427:1;30420:15;30454:4;30451:1;30444:15;30470:127;30531:10;30526:3;30522:20;30519:1;30512:31;30562:4;30559:1;30552:15;30586:4;30583:1;30576:15;30602:127;30663:10;30658:3;30654:20;30651:1;30644:31;30694:4;30691:1;30684:15;30718:4;30715:1;30708:15;30734:127;30795:10;30790:3;30786:20;30783:1;30776:31;30826:4;30823:1;30816:15;30850:4;30847:1;30840:15;30866:127;30927:10;30922:3;30918:20;30915:1;30908:31;30958:4;30955:1;30948:15;30982:4;30979:1;30972:15;30998:131;-1:-1:-1;;;;;31073:31:1;;31063:42;;31053:70;;31119:1;31116;31109:12;31134:118;31220:5;31213:13;31206:21;31199:5;31196:32;31186:60;;31242:1;31239;31232:12;31257:131;-1:-1:-1;;;;;;31331:32:1;;31321:43;;31311:71;;31378:1;31375;31368:12

Swarm Source

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