ETH Price: $3,356.88 (-2.82%)
Gas: 2 Gwei

Token

 

Overview

Max Total Supply

0

Holders

639

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xe3743d35afdc44df45c3885b865bd9743841f5f2
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:
ChonkNFT

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-17
*/

// File: contracts/IERC165.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;

/**
 * @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.
     */
     /*
     It is possible to cause an arithmetic underflow. 
     Prevent the underflow by constraining inputs using the require() statement or use the OpenZeppelin SafeMath library for integer arithmetic operations. 
     Refer to the transaction trace generated for this issue to reproduce the underflow.
     https://swcregistry.io/docs/SWC-101
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: contracts/IERC1155.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values);

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external;
}

// File: contracts/IERC1155MetadataURI.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: contracts/IERC1155Receiver.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;


/**
 * _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {

    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    )
        external
        returns(bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    )
        external
        returns(bytes4);
}

// File: contracts/Context.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;

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

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

// File: contracts/ERC165.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;


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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
     /*
     It is possible to cause an arithmetic underflow. 
     Prevent the underflow by constraining inputs using the require() statement or use the OpenZeppelin SafeMath library for integer arithmetic operations. 
     Refer to the transaction trace generated for this issue to reproduce the underflow.
     https://swcregistry.io/docs/SWC-101
     */
    function supportsInterface(bytes4 interfaceId) public view override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

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

// File: contracts/SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: contracts/Address.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;

/**
 * @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 in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: contracts/Strings.sol

pragma solidity 0.6.2;

library Strings {
  // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol
  function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) {
      bytes memory _ba = bytes(_a);
      bytes memory _bb = bytes(_b);
      bytes memory _bc = bytes(_c);
      bytes memory _bd = bytes(_d);
      bytes memory _be = bytes(_e);
      string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length);
      bytes memory babcde = bytes(abcde);
      uint k = 0;
      for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i];
      for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i];
      for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i];
      for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i];
      for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i];
      return string(babcde);
    }

    function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, _d, "");
    }

    function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, "", "");
    }

    function strConcat(string memory _a, string memory _b) internal pure returns (string memory) {
        return strConcat(_a, _b, "", "", "");
    }

    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len - 1;
        while (_i != 0) {
            bstr[k--] = byte(uint8(48 + _i % 10));
            _i /= 10;
        }
        return string(bstr);
    }
}

// File: contracts/ERC1155.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;









/**
 *
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using SafeMath for uint256;
    using Address for address;

    // Mapping from token ID to account balances
    mapping (uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /*
     *     bytes4(keccak256('balanceOf(address,uint256)')) == 0x00fdd58e
     *     bytes4(keccak256('balanceOfBatch(address[],uint256[])')) == 0x4e1273f4
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,uint256,bytes)')) == 0xf242432a
     *     bytes4(keccak256('safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)')) == 0x2eb2c2d6
     *
     *     => 0x00fdd58e ^ 0x4e1273f4 ^ 0xa22cb465 ^
     *        0xe985e9c5 ^ 0xf242432a ^ 0x2eb2c2d6 == 0xd9b67a26
     */
    bytes4 private constant _INTERFACE_ID_ERC1155 = 0xd9b67a26;

    /*
     *     bytes4(keccak256('uri(uint256)')) == 0x0e89341c
     */
    bytes4 private constant _INTERFACE_ID_ERC1155_METADATA_URI = 0x0e89341c;

    /**
     * @dev See {_setURI}.
     */
    constructor (string memory uri) public {
        _setURI(uri);

        // register the supported interfaces to conform to ERC1155 via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155);

        // register the supported interfaces to conform to ERC1155MetadataURI via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155_METADATA_URI);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     * --- MODIFIED TO CONCAT THE _ID TO THE END OF THE URL
     */
    function uri(uint256 _id) external view override returns (string memory) {
        return Strings.strConcat(_uri, Strings.uint2str(_id));
    }
    function tokenURI(uint256 _tokenId) public view returns (string memory) {
        return Strings.strConcat(_uri, Strings.uint2str(_tokenId));
    }
    string private constant _contractURI = "https://farm.chonker.finance/api/CHONK.json";
    function contractURI() public pure returns (string memory) {
        return _contractURI;
    }


    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] memory accounts,
        uint256[] memory ids
    )
        public
        view
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            require(accounts[i] != address(0), "ERC1155: batch balance query for the zero address");
            batchBalances[i] = _balances[ids[i]][accounts[i]];
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view override returns (bool) {
        address _account = account;
        return _operatorApprovals[_account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][from] = _balances[id][from].sub(amount, "ERC1155: insufficient balance for transfer");
        _balances[id][to] = _balances[id][to].add(amount);

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            _balances[id][from] = _balances[id][from].sub(
                amount,
                "ERC1155: insufficient balance for transfer"
            );
            _balances[id][to] = _balances[id][to].add(amount);
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] = _balances[id][account].add(amount);
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] = amounts[i].add(_balances[ids[i]][to]);
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(address account, uint256 id, uint256 amount) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        _balances[id][account] = _balances[id][account].sub(
            amount,
            "ERC1155: burn amount exceeds balance"
        );

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][account] = _balances[ids[i]][account].sub(
                amounts[i],
                "ERC1155: burn amount exceeds balance"
            );
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        internal virtual
    { }

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: contracts/EnumerableSet.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

// File: contracts/AccessControl.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: contracts/ChonkNFT.sol

// Brain ERC1155 NFT
// https://nobrainer.finance/
// SPDX-License-Identifier: MIT
pragma solidity 0.6.2;



contract ChonkNFT is ERC1155, AccessControl {
  bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");


  constructor() public ERC1155("https://farm.chonker.finance/api/NFT/") {
    _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
  }

  uint256 public cards;
  mapping(uint256 => uint256) public totalSupply;
  mapping(uint256 => uint256) public circulatingSupply;

  event CardAdded(uint256 id, uint256 maxSupply);

  function addCard(uint256 maxSupply) public returns (uint256) {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not admin");
    require(maxSupply > 0, "Maximum supply can not be 0");
    cards = cards.add(1);
    totalSupply[cards] = maxSupply;
    emit CardAdded(cards, maxSupply);
    return cards;
  }

  function mint(address to, uint256 id, uint256 amount) public {
    require(hasRole(MINTER_ROLE, _msgSender()), "Caller is not a minter");
    require(circulatingSupply[id].add(amount) <= totalSupply[id], "Total supply reached.");
    circulatingSupply[id] = circulatingSupply[id].add(amount);
    _mint(to, id, amount, "");
  }
    
  function burn(uint256 id, uint256 amount) public {
    _burn(_msgSender(), id, amount);
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"CardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"addCard","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051806060016040528060258152602001620040b460259139620000446301ffc9a760e01b620000b060201b60201c565b6200005581620001b960201b60201c565b6200006d63d9b67a2660e01b620000b060201b60201c565b62000085630e89341c60e01b620000b060201b60201c565b50620000aa6000801b6200009e620001d560201b60201c565b620001dd60201b60201c565b6200041b565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156200014d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b8060039080519060200190620001d19291906200036c565b5050565b600033905090565b620001ef8282620001f360201b60201c565b5050565b6200022281600460008581526020019081526020016000206000016200029760201b620036c51790919060201c565b15620002935762000238620001d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620002c7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620002cf60201b60201c565b905092915050565b6000620002e383836200034960201b60201c565b6200033e57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000343565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003af57805160ff1916838001178555620003e0565b82800160010185558215620003e0579182015b82811115620003df578251825591602001919060010190620003c2565b5b509050620003ef9190620003f3565b5090565b6200041891905b8082111562000414576000816000905550600101620003fa565b5090565b90565b613c89806200042b6000396000f3fe608060405234801561001057600080fd5b50600436106101725760003560e01c806392ff6aea116100de578063ca15c87311610097578063e8a3d48511610071578063e8a3d48514610b5a578063e985e9c514610bdd578063f242432a14610c59578063f9e5375514610d6857610172565b8063ca15c87314610aac578063d539139314610aee578063d547741f14610b0c57610172565b806392ff6aea146108db578063a217fddf1461091d578063a22cb4651461093b578063b390c0ab1461098b578063bd85b039146109c3578063c87b56dd14610a0557610172565b80632f2ff15d116101305780632f2ff15d146105a257806336568abe146105f05780634e1273f41461063e57806358a4903f146107df5780639010d07c146107fd57806391d148541461087557610172565b8062fdd58e1461017757806301ffc9a7146101d95780630e89341c1461023e578063156e29f6146102e5578063248a9ca31461033d5780632eb2c2d61461037f575b600080fd5b6101c36004803603604081101561018d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610daa565b6040518082815260200191505060405180910390f35b610224600480360360208110156101ef57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610e8a565b604051808215151515815260200191505060405180910390f35b61026a6004803603602081101561025457600080fd5b8101908080359060200190929190505050610ef1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102aa57808201518184015260208101905061028f565b50505050905090810190601f1680156102d75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61033b600480360360608110156102fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050610fa6565b005b6103696004803603602081101561035357600080fd5b8101908080359060200190929190505050611169565b6040518082815260200191505060405180910390f35b6105a0600480360360a081101561039557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156103f257600080fd5b82018360208201111561040457600080fd5b8035906020019184602083028401116401000000008311171561042657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561048657600080fd5b82018360208201111561049857600080fd5b803590602001918460208302840111640100000000831117156104ba57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561051a57600080fd5b82018360208201111561052c57600080fd5b8035906020019184600183028401116401000000008311171561054e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611189565b005b6105ee600480360360408110156105b857600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611617565b005b61063c6004803603604081101561060657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116a1565b005b6107886004803603604081101561065457600080fd5b810190808035906020019064010000000081111561067157600080fd5b82018360208201111561068357600080fd5b803590602001918460208302840111640100000000831117156106a557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561070557600080fd5b82018360208201111561071757600080fd5b8035906020019184602083028401116401000000008311171561073957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929050505061173a565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156107cb5780820151818401526020810190506107b0565b505050509050019250505060405180910390f35b6107e7611918565b6040518082815260200191505060405180910390f35b6108336004803603604081101561081357600080fd5b81019080803590602001909291908035906020019092919050505061191e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108c16004803603604081101561088b57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611950565b604051808215151515815260200191505060405180910390f35b610907600480360360208110156108f157600080fd5b8101908080359060200190929190505050611982565b6040518082815260200191505060405180910390f35b61092561199a565b6040518082815260200191505060405180910390f35b6109896004803603604081101561095157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506119a1565b005b6109c1600480360360408110156109a157600080fd5b810190808035906020019092919080359060200190929190505050611b3c565b005b6109ef600480360360208110156109d957600080fd5b8101908080359060200190929190505050611b52565b6040518082815260200191505060405180910390f35b610a3160048036036020811015610a1b57600080fd5b8101908080359060200190929190505050611b6a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a71578082015181840152602081019050610a56565b50505050905090810190601f168015610a9e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ad860048036036020811015610ac257600080fd5b8101908080359060200190929190505050611c1f565b6040518082815260200191505060405180910390f35b610af6611c46565b6040518082815260200191505060405180910390f35b610b5860048036036040811015610b2257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c7f565b005b610b62611d09565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ba2578082015181840152602081019050610b87565b50505050905090810190601f168015610bcf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c3f60048036036040811015610bf357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d29565b604051808215151515815260200191505060405180910390f35b610d66600480360360a0811015610c6f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610ce057600080fd5b820183602082011115610cf257600080fd5b80359060200191846001830284011164010000000083111715610d1457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611dc2565b005b610d9460048036036020811015610d7e57600080fd5b8101908080359060200190929190505050612137565b6040518082815260200191505060405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806139e2602b913960400191505060405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060610f9f60038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f8c5780601f10610f6157610100808354040283529160200191610f8c565b820191906000526020600020905b815481529060010190602001808311610f6f57829003601f168201915b5050505050610f9a846122b6565b6123e3565b9050919050565b610fec60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020610fe7612427565b611950565b61105e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616c6c6572206973206e6f742061206d696e7465720000000000000000000081525060200191505060405180910390fd5b600660008381526020019081526020016000205461109882600760008681526020019081526020016000205461242f90919063ffffffff16565b111561110c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f546f74616c20737570706c7920726561636865642e000000000000000000000081525060200191505060405180910390fd5b61113281600760008581526020019081526020016000205461242f90919063ffffffff16565b6007600084815260200190815260200160002081905550611164838383604051806020016040528060008152506124b7565b505050565b600060046000838152602001908152602001600020600201549050919050565b81518351146111e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613bdc6028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613abb6025913960400191505060405180910390fd5b611271612427565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806112b757506112b6856112b1612427565b611d29565b5b61130c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613ae06032913960400191505060405180910390fd5b6000611316612427565b90506113268187878787876126ba565b60008090505b84518110156114fa57600085828151811061134357fe5b60200260200101519050600085838151811061135b57fe5b602002602001015190506113e2816040518060600160405280602a8152602001613b60602a91396001600086815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c29092919063ffffffff16565b6001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611499816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242f90919063ffffffff16565b6001600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505080600101905061132c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156115aa57808201518184015260208101905061158f565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156115ec5780820151818401526020810190506115d1565b5050505090500194505050505060405180910390a461160f818787878787612782565b505050505050565b61163e6004600084815260200190815260200160002060020154611639612427565b611950565b611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806139b3602f913960400191505060405180910390fd5b61169d8282612bfa565b5050565b6116a9612427565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613c25602f913960400191505060405180910390fd5b6117368282612c8e565b5050565b60608151835114611796576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613bb36029913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156117c85781602001602082028038833980820191505090505b50905060008090505b845181101561190d57600073ffffffffffffffffffffffffffffffffffffffff168582815181106117fe57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161415611873576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613a0d6031913960400191505060405180910390fd5b6001600085838151811061188357fe5b6020026020010151815260200190815260200160002060008683815181106118a757fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548282815181106118f657fe5b6020026020010181815250508060010190506117d1565b508091505092915050565b60055481565b60006119488260046000868152602001908152602001600020600001612d2290919063ffffffff16565b905092915050565b600061197a8260046000868152602001908152602001600020600001612d3c90919063ffffffff16565b905092915050565b60076020528060005260406000206000915090505481565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff166119c0612427565b73ffffffffffffffffffffffffffffffffffffffff161415611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613b8a6029913960400191505060405180910390fd5b8060026000611a3a612427565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ae7612427565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b611b4e611b47612427565b8383612d6c565b5050565b60066020528060005260406000206000915090505481565b6060611c1860038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c055780601f10611bda57610100808354040283529160200191611c05565b820191906000526020600020905b815481529060010190602001808311611be857829003601f168201915b5050505050611c13846122b6565b6123e3565b9050919050565b6000611c3f60046000848152602001908152602001600020600001612f88565b9050919050565b60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902081565b611ca66004600084815260200190815260200160002060020154611ca1612427565b611950565b611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613a8b6030913960400191505060405180910390fd5b611d058282612c8e565b5050565b60606040518060600160405280602b8152602001613b12602b9139905090565b600080839050600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1691505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613abb6025913960400191505060405180910390fd5b611e50612427565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611e965750611e9585611e90612427565b611d29565b5b611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613a626029913960400191505060405180910390fd5b6000611ef5612427565b9050611f15818787611f0688612f9d565b611f0f88612f9d565b876126ba565b611f92836040518060600160405280602a8152602001613b60602a91396001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c29092919063ffffffff16565b6001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612049836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242f90919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a461212f818787878787612ff6565b505050505050565b600061214d6000801b612148612427565b611950565b6121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f43616c6c6572206973206e6f742061646d696e0000000000000000000000000081525060200191505060405180910390fd5b60008211612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4d6178696d756d20737570706c792063616e206e6f742062652030000000000081525060200191505060405180910390fd5b61224b600160055461242f90919063ffffffff16565b60058190555081600660006005548152602001908152602001600020819055507f62399d91d89d6e694d41e47f3e6010c0e0b4ec78ecdddb1c02d0e321780859b060055483604051808381526020018281526020019250505060405180910390a16005549050919050565b606060008214156122fe576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123de565b600082905060005b60008214612328578080600101915050600a828161232057fe5b049150612306565b6060816040519080825280601f01601f19166020018201604052801561235d5781602001600182028038833980820191505090505b50905060006001830390505b600086146123d657600a868161237b57fe5b0660300160f81b8282806001900393508151811061239557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a86816123ce57fe5b049550612369565b819450505050505b919050565b606061241f83836040518060200160405280600081525060405180602001604052806000815250604051806020016040528060008152506133ec565b905092915050565b600033905090565b6000808284019050838110156124ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561253d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613c046021913960400191505060405180910390fd5b6000612547612427565b90506125688160008761255988612f9d565b61256288612f9d565b876126ba565b6125cb836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242f90919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a46126b381600087878787612ff6565b5050505050565b505050505050565b600083831115829061276f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612734578082015181840152602081019050612719565b50505050905090810190601f1680156127615780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6127a18473ffffffffffffffffffffffffffffffffffffffff166136b2565b15612bf2578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b8381101561288557808201518184015260208101905061286a565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156128c75780820151818401526020810190506128ac565b50505050905001848103825285818151815260200191508051906020019080838360005b838110156129065780820151818401526020810190506128eb565b50505050905090810190601f1680156129335780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b15801561295857600080fd5b505af192505050801561298c57506040513d602081101561297857600080fd5b810190808051906020019092919050505060015b612b53576000604051905060008152600115612a555760443d10156129b45760009050612a55565b60046000803e60005160e01c6308c379a081146129d5576000915050612a55565b60043d036004833e81513d602482011167ffffffffffffffff82111715612a0157600092505050612a55565b808301805167ffffffffffffffff811115612a23576000945050505050612a55565b8060208301013d8601811115612a4157600095505050505050612a55565b601f19601f82011660405282955050505050505b80612a605750612b02565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ac7578082015181840152602081019050612aac565b50505050905090810190601f168015612af45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806139356034913960400191505060405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612bf0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061398b6028913960400191505060405180910390fd5b505b505050505050565b612c2281600460008581526020019081526020016000206000016136c590919063ffffffff16565b15612c8a57612c2f612427565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612cb681600460008581526020019081526020016000206000016136f590919063ffffffff16565b15612d1e57612cc3612427565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612d318360000183613725565b60001c905092915050565b6000612d64836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6137a8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b3d6023913960400191505060405180910390fd5b6000612dfc612427565b9050612e2c81856000612e0e87612f9d565b612e1787612f9d565b604051806020016040528060008152506126ba565b612ea982604051806060016040528060248152602001613a3e602491396001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c29092919063ffffffff16565b6001600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a450505050565b6000612f96826000016137cb565b9050919050565b6060806001604051908082528060200260200182016040528015612fd05781602001602082028038833980820191505090505b5090508281600081518110612fe157fe5b60200260200101818152505080915050919050565b6130158473ffffffffffffffffffffffffffffffffffffffff166136b2565b156133e4578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156130fa5780820151818401526020810190506130df565b50505050905090810190601f1680156131275780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561314a57600080fd5b505af192505050801561317e57506040513d602081101561316a57600080fd5b810190808051906020019092919050505060015b6133455760006040519050600081526001156132475760443d10156131a65760009050613247565b60046000803e60005160e01c6308c379a081146131c7576000915050613247565b60043d036004833e81513d602482011167ffffffffffffffff821117156131f357600092505050613247565b808301805167ffffffffffffffff811115613215576000945050505050613247565b8060208301013d860181111561323357600095505050505050613247565b601f19601f82011660405282955050505050505b8061325257506132f4565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156132b957808201518184015260208101905061329e565b50505050905090810190601f1680156132e65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806139356034913960400191505060405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146133e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061398b6028913960400191505060405180910390fd5b505b505050505050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156134485781602001600182028038833980820191505090505b5090506060819050600080905060008090505b88518110156134c95788818151811061347057fe5b602001015160f81c60f81b83838060010194508151811061348d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061345b565b5060008090505b875181101561353e578781815181106134e557fe5b602001015160f81c60f81b83838060010194508151811061350257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506134d0565b5060008090505b86518110156135b35786818151811061355a57fe5b602001015160f81c60f81b83838060010194508151811061357757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613545565b5060008090505b8551811015613628578581815181106135cf57fe5b602001015160f81c60f81b8383806001019450815181106135ec57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506135ba565b5060008090505b845181101561369d5784818151811061364457fe5b602001015160f81c60f81b83838060010194508151811061366157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061362f565b50819850505050505050505095945050505050565b600080823b905060008111915050919050565b60006136ed836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6137dc565b905092915050565b600061371d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61384c565b905092915050565b600081836000018054905011613786576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806139696022913960400191505060405180910390fd5b82600001828154811061379557fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b60006137e883836137a8565b613841578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613846565b600090505b92915050565b60008083600101600084815260200190815260200160002054905060008114613928576000600182039050600060018660000180549050039050600086600001828154811061389757fe5b90600052602060002001549050808760000184815481106138b457fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806138ec57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061392e565b60009150505b9291505056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a2062617463682062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656468747470733a2f2f6661726d2e63686f6e6b65722e66696e616e63652f6170692f43484f4e4b2e6a736f6e455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212200297d394d3e6bd3c90daf2aa34382c826a707683a667d3eae12d5a1e4a51307a64736f6c6343000602003368747470733a2f2f6661726d2e63686f6e6b65722e66696e616e63652f6170692f4e46542f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101725760003560e01c806392ff6aea116100de578063ca15c87311610097578063e8a3d48511610071578063e8a3d48514610b5a578063e985e9c514610bdd578063f242432a14610c59578063f9e5375514610d6857610172565b8063ca15c87314610aac578063d539139314610aee578063d547741f14610b0c57610172565b806392ff6aea146108db578063a217fddf1461091d578063a22cb4651461093b578063b390c0ab1461098b578063bd85b039146109c3578063c87b56dd14610a0557610172565b80632f2ff15d116101305780632f2ff15d146105a257806336568abe146105f05780634e1273f41461063e57806358a4903f146107df5780639010d07c146107fd57806391d148541461087557610172565b8062fdd58e1461017757806301ffc9a7146101d95780630e89341c1461023e578063156e29f6146102e5578063248a9ca31461033d5780632eb2c2d61461037f575b600080fd5b6101c36004803603604081101561018d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610daa565b6040518082815260200191505060405180910390f35b610224600480360360208110156101ef57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610e8a565b604051808215151515815260200191505060405180910390f35b61026a6004803603602081101561025457600080fd5b8101908080359060200190929190505050610ef1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102aa57808201518184015260208101905061028f565b50505050905090810190601f1680156102d75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61033b600480360360608110156102fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050610fa6565b005b6103696004803603602081101561035357600080fd5b8101908080359060200190929190505050611169565b6040518082815260200191505060405180910390f35b6105a0600480360360a081101561039557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156103f257600080fd5b82018360208201111561040457600080fd5b8035906020019184602083028401116401000000008311171561042657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561048657600080fd5b82018360208201111561049857600080fd5b803590602001918460208302840111640100000000831117156104ba57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561051a57600080fd5b82018360208201111561052c57600080fd5b8035906020019184600183028401116401000000008311171561054e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611189565b005b6105ee600480360360408110156105b857600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611617565b005b61063c6004803603604081101561060657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116a1565b005b6107886004803603604081101561065457600080fd5b810190808035906020019064010000000081111561067157600080fd5b82018360208201111561068357600080fd5b803590602001918460208302840111640100000000831117156106a557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561070557600080fd5b82018360208201111561071757600080fd5b8035906020019184602083028401116401000000008311171561073957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929050505061173a565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156107cb5780820151818401526020810190506107b0565b505050509050019250505060405180910390f35b6107e7611918565b6040518082815260200191505060405180910390f35b6108336004803603604081101561081357600080fd5b81019080803590602001909291908035906020019092919050505061191e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108c16004803603604081101561088b57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611950565b604051808215151515815260200191505060405180910390f35b610907600480360360208110156108f157600080fd5b8101908080359060200190929190505050611982565b6040518082815260200191505060405180910390f35b61092561199a565b6040518082815260200191505060405180910390f35b6109896004803603604081101561095157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506119a1565b005b6109c1600480360360408110156109a157600080fd5b810190808035906020019092919080359060200190929190505050611b3c565b005b6109ef600480360360208110156109d957600080fd5b8101908080359060200190929190505050611b52565b6040518082815260200191505060405180910390f35b610a3160048036036020811015610a1b57600080fd5b8101908080359060200190929190505050611b6a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a71578082015181840152602081019050610a56565b50505050905090810190601f168015610a9e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ad860048036036020811015610ac257600080fd5b8101908080359060200190929190505050611c1f565b6040518082815260200191505060405180910390f35b610af6611c46565b6040518082815260200191505060405180910390f35b610b5860048036036040811015610b2257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c7f565b005b610b62611d09565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ba2578082015181840152602081019050610b87565b50505050905090810190601f168015610bcf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c3f60048036036040811015610bf357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d29565b604051808215151515815260200191505060405180910390f35b610d66600480360360a0811015610c6f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610ce057600080fd5b820183602082011115610cf257600080fd5b80359060200191846001830284011164010000000083111715610d1457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611dc2565b005b610d9460048036036020811015610d7e57600080fd5b8101908080359060200190929190505050612137565b6040518082815260200191505060405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806139e2602b913960400191505060405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060610f9f60038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f8c5780601f10610f6157610100808354040283529160200191610f8c565b820191906000526020600020905b815481529060010190602001808311610f6f57829003601f168201915b5050505050610f9a846122b6565b6123e3565b9050919050565b610fec60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020610fe7612427565b611950565b61105e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616c6c6572206973206e6f742061206d696e7465720000000000000000000081525060200191505060405180910390fd5b600660008381526020019081526020016000205461109882600760008681526020019081526020016000205461242f90919063ffffffff16565b111561110c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f546f74616c20737570706c7920726561636865642e000000000000000000000081525060200191505060405180910390fd5b61113281600760008581526020019081526020016000205461242f90919063ffffffff16565b6007600084815260200190815260200160002081905550611164838383604051806020016040528060008152506124b7565b505050565b600060046000838152602001908152602001600020600201549050919050565b81518351146111e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613bdc6028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613abb6025913960400191505060405180910390fd5b611271612427565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806112b757506112b6856112b1612427565b611d29565b5b61130c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613ae06032913960400191505060405180910390fd5b6000611316612427565b90506113268187878787876126ba565b60008090505b84518110156114fa57600085828151811061134357fe5b60200260200101519050600085838151811061135b57fe5b602002602001015190506113e2816040518060600160405280602a8152602001613b60602a91396001600086815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c29092919063ffffffff16565b6001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611499816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242f90919063ffffffff16565b6001600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505080600101905061132c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156115aa57808201518184015260208101905061158f565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156115ec5780820151818401526020810190506115d1565b5050505090500194505050505060405180910390a461160f818787878787612782565b505050505050565b61163e6004600084815260200190815260200160002060020154611639612427565b611950565b611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806139b3602f913960400191505060405180910390fd5b61169d8282612bfa565b5050565b6116a9612427565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613c25602f913960400191505060405180910390fd5b6117368282612c8e565b5050565b60608151835114611796576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613bb36029913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156117c85781602001602082028038833980820191505090505b50905060008090505b845181101561190d57600073ffffffffffffffffffffffffffffffffffffffff168582815181106117fe57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161415611873576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613a0d6031913960400191505060405180910390fd5b6001600085838151811061188357fe5b6020026020010151815260200190815260200160002060008683815181106118a757fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548282815181106118f657fe5b6020026020010181815250508060010190506117d1565b508091505092915050565b60055481565b60006119488260046000868152602001908152602001600020600001612d2290919063ffffffff16565b905092915050565b600061197a8260046000868152602001908152602001600020600001612d3c90919063ffffffff16565b905092915050565b60076020528060005260406000206000915090505481565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff166119c0612427565b73ffffffffffffffffffffffffffffffffffffffff161415611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613b8a6029913960400191505060405180910390fd5b8060026000611a3a612427565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ae7612427565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b611b4e611b47612427565b8383612d6c565b5050565b60066020528060005260406000206000915090505481565b6060611c1860038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c055780601f10611bda57610100808354040283529160200191611c05565b820191906000526020600020905b815481529060010190602001808311611be857829003601f168201915b5050505050611c13846122b6565b6123e3565b9050919050565b6000611c3f60046000848152602001908152602001600020600001612f88565b9050919050565b60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902081565b611ca66004600084815260200190815260200160002060020154611ca1612427565b611950565b611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613a8b6030913960400191505060405180910390fd5b611d058282612c8e565b5050565b60606040518060600160405280602b8152602001613b12602b9139905090565b600080839050600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1691505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613abb6025913960400191505060405180910390fd5b611e50612427565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611e965750611e9585611e90612427565b611d29565b5b611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613a626029913960400191505060405180910390fd5b6000611ef5612427565b9050611f15818787611f0688612f9d565b611f0f88612f9d565b876126ba565b611f92836040518060600160405280602a8152602001613b60602a91396001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c29092919063ffffffff16565b6001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612049836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242f90919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a461212f818787878787612ff6565b505050505050565b600061214d6000801b612148612427565b611950565b6121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f43616c6c6572206973206e6f742061646d696e0000000000000000000000000081525060200191505060405180910390fd5b60008211612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4d6178696d756d20737570706c792063616e206e6f742062652030000000000081525060200191505060405180910390fd5b61224b600160055461242f90919063ffffffff16565b60058190555081600660006005548152602001908152602001600020819055507f62399d91d89d6e694d41e47f3e6010c0e0b4ec78ecdddb1c02d0e321780859b060055483604051808381526020018281526020019250505060405180910390a16005549050919050565b606060008214156122fe576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123de565b600082905060005b60008214612328578080600101915050600a828161232057fe5b049150612306565b6060816040519080825280601f01601f19166020018201604052801561235d5781602001600182028038833980820191505090505b50905060006001830390505b600086146123d657600a868161237b57fe5b0660300160f81b8282806001900393508151811061239557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a86816123ce57fe5b049550612369565b819450505050505b919050565b606061241f83836040518060200160405280600081525060405180602001604052806000815250604051806020016040528060008152506133ec565b905092915050565b600033905090565b6000808284019050838110156124ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561253d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613c046021913960400191505060405180910390fd5b6000612547612427565b90506125688160008761255988612f9d565b61256288612f9d565b876126ba565b6125cb836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242f90919063ffffffff16565b6001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a46126b381600087878787612ff6565b5050505050565b505050505050565b600083831115829061276f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612734578082015181840152602081019050612719565b50505050905090810190601f1680156127615780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6127a18473ffffffffffffffffffffffffffffffffffffffff166136b2565b15612bf2578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b8381101561288557808201518184015260208101905061286a565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156128c75780820151818401526020810190506128ac565b50505050905001848103825285818151815260200191508051906020019080838360005b838110156129065780820151818401526020810190506128eb565b50505050905090810190601f1680156129335780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b15801561295857600080fd5b505af192505050801561298c57506040513d602081101561297857600080fd5b810190808051906020019092919050505060015b612b53576000604051905060008152600115612a555760443d10156129b45760009050612a55565b60046000803e60005160e01c6308c379a081146129d5576000915050612a55565b60043d036004833e81513d602482011167ffffffffffffffff82111715612a0157600092505050612a55565b808301805167ffffffffffffffff811115612a23576000945050505050612a55565b8060208301013d8601811115612a4157600095505050505050612a55565b601f19601f82011660405282955050505050505b80612a605750612b02565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ac7578082015181840152602081019050612aac565b50505050905090810190601f168015612af45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806139356034913960400191505060405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612bf0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061398b6028913960400191505060405180910390fd5b505b505050505050565b612c2281600460008581526020019081526020016000206000016136c590919063ffffffff16565b15612c8a57612c2f612427565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612cb681600460008581526020019081526020016000206000016136f590919063ffffffff16565b15612d1e57612cc3612427565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612d318360000183613725565b60001c905092915050565b6000612d64836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6137a8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b3d6023913960400191505060405180910390fd5b6000612dfc612427565b9050612e2c81856000612e0e87612f9d565b612e1787612f9d565b604051806020016040528060008152506126ba565b612ea982604051806060016040528060248152602001613a3e602491396001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c29092919063ffffffff16565b6001600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a450505050565b6000612f96826000016137cb565b9050919050565b6060806001604051908082528060200260200182016040528015612fd05781602001602082028038833980820191505090505b5090508281600081518110612fe157fe5b60200260200101818152505080915050919050565b6130158473ffffffffffffffffffffffffffffffffffffffff166136b2565b156133e4578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156130fa5780820151818401526020810190506130df565b50505050905090810190601f1680156131275780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561314a57600080fd5b505af192505050801561317e57506040513d602081101561316a57600080fd5b810190808051906020019092919050505060015b6133455760006040519050600081526001156132475760443d10156131a65760009050613247565b60046000803e60005160e01c6308c379a081146131c7576000915050613247565b60043d036004833e81513d602482011167ffffffffffffffff821117156131f357600092505050613247565b808301805167ffffffffffffffff811115613215576000945050505050613247565b8060208301013d860181111561323357600095505050505050613247565b601f19601f82011660405282955050505050505b8061325257506132f4565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156132b957808201518184015260208101905061329e565b50505050905090810190601f1680156132e65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806139356034913960400191505060405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146133e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061398b6028913960400191505060405180910390fd5b505b505050505050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156134485781602001600182028038833980820191505090505b5090506060819050600080905060008090505b88518110156134c95788818151811061347057fe5b602001015160f81c60f81b83838060010194508151811061348d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061345b565b5060008090505b875181101561353e578781815181106134e557fe5b602001015160f81c60f81b83838060010194508151811061350257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506134d0565b5060008090505b86518110156135b35786818151811061355a57fe5b602001015160f81c60f81b83838060010194508151811061357757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613545565b5060008090505b8551811015613628578581815181106135cf57fe5b602001015160f81c60f81b8383806001019450815181106135ec57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506135ba565b5060008090505b845181101561369d5784818151811061364457fe5b602001015160f81c60f81b83838060010194508151811061366157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061362f565b50819850505050505050505095945050505050565b600080823b905060008111915050919050565b60006136ed836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6137dc565b905092915050565b600061371d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61384c565b905092915050565b600081836000018054905011613786576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806139696022913960400191505060405180910390fd5b82600001828154811061379557fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b60006137e883836137a8565b613841578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613846565b600090505b92915050565b60008083600101600084815260200190815260200160002054905060008114613928576000600182039050600060018660000180549050039050600086600001828154811061389757fe5b90600052602060002001549050808760000184815481106138b457fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806138ec57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061392e565b60009150505b9291505056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a2062617463682062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656468747470733a2f2f6661726d2e63686f6e6b65722e66696e616e63652f6170692f43484f4e4b2e6a736f6e455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212200297d394d3e6bd3c90daf2aa34382c826a707683a667d3eae12d5a1e4a51307a64736f6c63430006020033

Deployed Bytecode Sourcemap

55599:1216:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55599:1216:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28151:223;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28151:223:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10582:142;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10582:142:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27504:145;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27504:145:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;27504:145:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56375:332;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56375:332:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52225:114;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;52225:114:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30901:1220;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;30901:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;30901:1220:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;30901:1220:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;30901:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;30901:1220:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;30901:1220:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;30901:1220:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;30901:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;30901:1220:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;30901:1220:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;30901:1220:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;30901:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;30901:1220:0;;;;;;;;;;;;;;;:::i;:::-;;52601:227;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;52601:227:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53810:209;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;53810:209:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28540:634;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28540:634:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;28540:634:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28540:634:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;28540:634:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;28540:634:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;28540:634:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28540:634:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;28540:634:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;28540:634:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28540:634:0;;;;;;;;;;;;;;;;;55852:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51898:138;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51898:138:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;50859:139;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50859:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;55928:52;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;55928:52:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49604:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29247:311;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29247:311:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56717:93;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56717:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55877:46;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;55877:46:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27655:149;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27655:149:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;27655:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51172:127;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51172:127:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55648:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53073:230;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;53073:230:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27901:97;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;27901:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29630:198;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29630:198:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29900:924;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;29900:924:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;29900:924:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29900:924:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;29900:924:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;29900:924:0;;;;;;;;;;;;;;;:::i;:::-;;56040:329;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56040:329:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28151:223;28229:7;28276:1;28257:21;;:7;:21;;;;28249:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28344:9;:13;28354:2;28344:13;;;;;;;;;;;:22;28358:7;28344:22;;;;;;;;;;;;;;;;28337:29;;28151:223;;;;:::o;10582:142::-;10659:4;10683:20;:33;10704:11;10683:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10676:40;;10582:142;;;:::o;27504:145::-;27562:13;27595:46;27613:4;27595:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27619:21;27636:3;27619:16;:21::i;:::-;27595:17;:46::i;:::-;27588:53;;27504:145;;;:::o;56375:332::-;56451:34;55686:24;;;;;;;;;;;;;;;;;;;56472:12;:10;:12::i;:::-;56451:7;:34::i;:::-;56443:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56564:11;:15;56576:2;56564:15;;;;;;;;;;;;56527:33;56553:6;56527:17;:21;56545:2;56527:21;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;:52;;56519:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56636:33;56662:6;56636:17;:21;56654:2;56636:21;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;56612:17;:21;56630:2;56612:21;;;;;;;;;;;:57;;;;56676:25;56682:2;56686;56690:6;56676:25;;;;;;;;;;;;:5;:25::i;:::-;56375:332;;;:::o;52225:114::-;52282:7;52309:6;:12;52316:4;52309:12;;;;;;;;;;;:22;;;52302:29;;52225:114;;;:::o;30901:1220::-;31166:7;:14;31152:3;:10;:28;31144:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31258:1;31244:16;;:2;:16;;;;31236:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31343:12;:10;:12::i;:::-;31335:20;;:4;:20;;;:60;;;;31359:36;31376:4;31382:12;:10;:12::i;:::-;31359:16;:36::i;:::-;31335:60;31313:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31486:16;31505:12;:10;:12::i;:::-;31486:31;;31530:60;31551:8;31561:4;31567:2;31571:3;31576:7;31585:4;31530:20;:60::i;:::-;31608:9;31620:1;31608:13;;31603:358;31627:3;:10;31623:1;:14;31603:358;;;31659:10;31672:3;31676:1;31672:6;;;;;;;;;;;;;;31659:19;;31693:14;31710:7;31718:1;31710:10;;;;;;;;;;;;;;31693:27;;31759:126;31801:6;31759:126;;;;;;;;;;;;;;;;;:9;:13;31769:2;31759:13;;;;;;;;;;;:19;31773:4;31759:19;;;;;;;;;;;;;;;;:23;;:126;;;;;:::i;:::-;31737:9;:13;31747:2;31737:13;;;;;;;;;;;:19;31751:4;31737:19;;;;;;;;;;;;;;;:148;;;;31920:29;31942:6;31920:9;:13;31930:2;31920:13;;;;;;;;;;;:17;31934:2;31920:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;31900:9;:13;31910:2;31900:13;;;;;;;;;;;:17;31914:2;31900:17;;;;;;;;;;;;;;;:49;;;;31603:358;;31639:3;;;;;31603:358;;;;32008:2;31978:47;;32002:4;31978:47;;31992:8;31978:47;;;32012:3;32017:7;31978:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;31978:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;31978:47:0;;;;;;;;;;;;;;;;;;;32038:75;32074:8;32084:4;32090:2;32094:3;32099:7;32108:4;32038:35;:75::i;:::-;30901:1220;;;;;;:::o;52601:227::-;52685:45;52693:6;:12;52700:4;52693:12;;;;;;;;;;;:22;;;52717:12;:10;:12::i;:::-;52685:7;:45::i;:::-;52677:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52795:25;52806:4;52812:7;52795:10;:25::i;:::-;52601:227;;:::o;53810:209::-;53908:12;:10;:12::i;:::-;53897:23;;:7;:23;;;53889:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53985:26;53997:4;54003:7;53985:11;:26::i;:::-;53810:209;;:::o;28540:634::-;28704:16;28765:3;:10;28746:8;:15;:29;28738:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28834:30;28881:8;:15;28867:30;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;28867:30:0;;;;28834:63;;28915:9;28927:1;28915:13;;28910:224;28934:8;:15;28930:1;:19;28910:224;;;29002:1;28979:25;;:8;28988:1;28979:11;;;;;;;;;;;;;;:25;;;;28971:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29092:9;:17;29102:3;29106:1;29102:6;;;;;;;;;;;;;;29092:17;;;;;;;;;;;:30;29110:8;29119:1;29110:11;;;;;;;;;;;;;;29092:30;;;;;;;;;;;;;;;;29073:13;29087:1;29073:16;;;;;;;;;;;;;:49;;;;;28951:3;;;;;28910:224;;;;29153:13;29146:20;;;28540:634;;;;:::o;55852:20::-;;;;:::o;51898:138::-;51971:7;51998:30;52022:5;51998:6;:12;52005:4;51998:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;51991:37;;51898:138;;;;:::o;50859:139::-;50928:4;50952:38;50982:7;50952:6;:12;50959:4;50952:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;50945:45;;50859:139;;;;:::o;55928:52::-;;;;;;;;;;;;;;;;;:::o;49604:49::-;49649:4;49604:49;;;:::o;29247:311::-;29366:8;29350:24;;:12;:10;:12::i;:::-;:24;;;;29342:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29478:8;29433:18;:32;29452:12;:10;:12::i;:::-;29433:32;;;;;;;;;;;;;;;:42;29466:8;29433:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29531:8;29502:48;;29517:12;:10;:12::i;:::-;29502:48;;;29541:8;29502:48;;;;;;;;;;;;;;;;;;;;;;29247:311;;:::o;56717:93::-;56773:31;56779:12;:10;:12::i;:::-;56793:2;56797:6;56773:5;:31::i;:::-;56717:93;;:::o;55877:46::-;;;;;;;;;;;;;;;;;:::o;27655:149::-;27712:13;27745:51;27763:4;27745:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27769:26;27786:8;27769:16;:26::i;:::-;27745:17;:51::i;:::-;27738:58;;27655:149;;;:::o;51172:127::-;51235:7;51262:29;:6;:12;51269:4;51262:12;;;;;;;;;;;:20;;:27;:29::i;:::-;51255:36;;51172:127;;;:::o;55648:62::-;55686:24;;;;;;;;;;;;;;;;;;;55648:62;:::o;53073:230::-;53158:45;53166:6;:12;53173:4;53166:12;;;;;;;;;;;:22;;;53190:12;:10;:12::i;:::-;53158:7;:45::i;:::-;53150:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53269:26;53281:4;53287:7;53269:11;:26::i;:::-;53073:230;;:::o;27901:97::-;27945:13;27978:12;;;;;;;;;;;;;;;;;27971:19;;27901:97;:::o;29630:198::-;29721:4;29738:16;29757:7;29738:26;;29782:18;:28;29801:8;29782:28;;;;;;;;;;;;;;;:38;29811:8;29782:38;;;;;;;;;;;;;;;;;;;;;;;;;29775:45;;;29630:198;;;;:::o;29900:924::-;30140:1;30126:16;;:2;:16;;;;30118:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30225:12;:10;:12::i;:::-;30217:20;;:4;:20;;;:60;;;;30241:36;30258:4;30264:12;:10;:12::i;:::-;30241:16;:36::i;:::-;30217:60;30195:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30359:16;30378:12;:10;:12::i;:::-;30359:31;;30403:96;30424:8;30434:4;30440:2;30444:21;30462:2;30444:17;:21::i;:::-;30467:25;30485:6;30467:17;:25::i;:::-;30494:4;30403:20;:96::i;:::-;30534:77;30558:6;30534:77;;;;;;;;;;;;;;;;;:9;:13;30544:2;30534:13;;;;;;;;;;;:19;30548:4;30534:19;;;;;;;;;;;;;;;;:23;;:77;;;;;:::i;:::-;30512:9;:13;30522:2;30512:13;;;;;;;;;;;:19;30526:4;30512:19;;;;;;;;;;;;;;;:99;;;;30642:29;30664:6;30642:9;:13;30652:2;30642:13;;;;;;;;;;;:17;30656:2;30642:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;30622:9;:13;30632:2;30622:13;;;;;;;;;;;:17;30636:2;30622:17;;;;;;;;;;;;;;;:49;;;;30720:2;30689:46;;30714:4;30689:46;;30704:8;30689:46;;;30724:2;30728:6;30689:46;;;;;;;;;;;;;;;;;;;;;;;;30748:68;30779:8;30789:4;30795:2;30799;30803:6;30811:4;30748:30;:68::i;:::-;29900:924;;;;;;:::o;56040:329::-;56092:7;56116:41;49649:4;56124:18;;56144:12;:10;:12::i;:::-;56116:7;:41::i;:::-;56108:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56208:1;56196:9;:13;56188:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56256:12;56266:1;56256:5;;:9;;:12;;;;:::i;:::-;56248:5;:20;;;;56296:9;56275:11;:18;56287:5;;56275:18;;;;;;;;;;;:30;;;;56317:27;56327:5;;56334:9;56317:27;;;;;;;;;;;;;;;;;;;;;;;;56358:5;;56351:12;;56040:329;;;:::o;24358:482::-;24408:27;24458:1;24452:2;:7;24448:50;;;24476:10;;;;;;;;;;;;;;;;;;;;;24448:50;24508:6;24517:2;24508:11;;24530:8;24549:69;24561:1;24556;:6;24549:69;;24579:5;;;;;;;24604:2;24599:7;;;;;;;;;24549:69;;;24628:17;24658:3;24648:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;24648:14:0;;;;24628:34;;24673:6;24688:1;24682:3;:7;24673:16;;24700:103;24713:1;24707:2;:7;24700:103;;24764:2;24759;:7;;;;;;24754:2;:12;24743:25;;24731:4;24736:3;;;;;;;24731:9;;;;;;;;;;;:37;;;;;;;;;;;24789:2;24783:8;;;;;;;;;24700:103;;;24827:4;24813:19;;;;;;24358:482;;;;:::o;24202:148::-;24280:13;24313:29;24323:2;24327;24313:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;:::-;24306:36;;24202:148;;;;:::o;8875:106::-;8928:15;8963:10;8956:17;;8875:106;:::o;12275:181::-;12333:7;12353:9;12369:1;12365;:5;12353:17;;12394:1;12389;:6;;12381:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12447:1;12440:8;;;12275:181;;;;:::o;33449:583::-;33583:1;33564:21;;:7;:21;;;;33556:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33636:16;33655:12;:10;:12::i;:::-;33636:31;;33680:107;33701:8;33719:1;33723:7;33732:21;33750:2;33732:17;:21::i;:::-;33755:25;33773:6;33755:17;:25::i;:::-;33782:4;33680:20;:107::i;:::-;33825:34;33852:6;33825:9;:13;33835:2;33825:13;;;;;;;;;;;:22;33839:7;33825:22;;;;;;;;;;;;;;;;:26;;:34;;;;:::i;:::-;33800:9;:13;33810:2;33800:13;;;;;;;;;;;:22;33814:7;33800:22;;;;;;;;;;;;;;;:59;;;;33912:7;33875:57;;33908:1;33875:57;;33890:8;33875:57;;;33921:2;33925:6;33875:57;;;;;;;;;;;;;;;;;;;;;;;;33945:79;33976:8;33994:1;33998:7;34007:2;34011:6;34019:4;33945:30;:79::i;:::-;33449:583;;;;;:::o;37793:236::-;;;;;;;:::o;13178:192::-;13264:7;13297:1;13292;:6;;13300:12;13284:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13284:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13324:9;13340:1;13336;:5;13324:17;;13361:1;13354:8;;;13178:192;;;;;:::o;38807:799::-;39061:15;:2;:13;;;:15::i;:::-;39057:542;;;39114:2;39097:43;;;39141:8;39151:4;39157:3;39162:7;39171:4;39097:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;39097:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;39097:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;39097:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39097:79:0;;;;;;;;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39097:79:0;;;;;;;;;;;;;;;;;;39093:495;;;20:4:-1;14:11;6:19;;43:1;37:4;30:15;57:1;50:730;;;93:4;75:16;72:26;69:2;;;109:1;101:9;;111:5;;69:2;145:1;142;139;124:23;179:1;173:8;168:3;164:18;206:10;201:3;198:19;188:2;;229:1;221:9;;231:5;;;188:2;290:1;272:16;268:24;265:1;259:4;244:49;319:4;313:11;403:16;396:4;388:6;384:17;381:39;354:18;346:6;343:30;333:94;330:2;;;444:1;436:9;;452:5;;;;330:2;491:6;485:4;481:17;524:3;518:10;548:18;540:6;537:30;534:2;;;578:1;570:9;;580:5;;;;;;534:2;624:6;617:4;612:3;608:14;604:27;658:16;652:4;648:27;643:3;640:36;637:2;;;687:1;679:9;;689:5;;;;;;;637:2;739:4;735:9;728:4;723:3;719:14;715:30;709:4;702:44;760:3;752:11;;769:5;;;;;50:730;39093:495:0;;;;;;;39461:6;39454:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;39454::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39093:495;39510:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39093:495;39238:52;;;39226:64;;;:8;:64;;;;39222:163;;39315:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39222:163;39177:223;39057:542;38807:799;;;;;;:::o;55053:188::-;55127:33;55152:7;55127:6;:12;55134:4;55127:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;55123:111;;;55209:12;:10;:12::i;:::-;55182:40;;55200:7;55182:40;;55194:4;55182:40;;;;;;;;;;55123:111;55053:188;;:::o;55249:192::-;55324:36;55352:7;55324:6;:12;55331:4;55324:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;55320:114;;;55409:12;:10;:12::i;:::-;55382:40;;55400:7;55382:40;;55394:4;55382:40;;;;;;;;;;55320:114;55249:192;;:::o;46127:149::-;46201:7;46244:22;46248:3;:10;;46260:5;46244:3;:22::i;:::-;46236:31;;46221:47;;46127:149;;;;:::o;45422:158::-;45502:4;45526:46;45536:3;:10;;45564:5;45556:14;;45548:23;;45526:9;:46::i;:::-;45519:53;;45422:158;;;;:::o;35362:551::-;35477:1;35458:21;;:7;:21;;;;35450:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35532:16;35551:12;:10;:12::i;:::-;35532:31;;35576:105;35597:8;35607:7;35624:1;35628:21;35646:2;35628:17;:21::i;:::-;35651:25;35669:6;35651:17;:25::i;:::-;35576:105;;;;;;;;;;;;:20;:105::i;:::-;35719:111;35760:6;35719:111;;;;;;;;;;;;;;;;;:9;:13;35729:2;35719:13;;;;;;;;;;;:22;35733:7;35719:22;;;;;;;;;;;;;;;;:26;;:111;;;;;:::i;:::-;35694:9;:13;35704:2;35694:13;;;;;;;;;;;:22;35708:7;35694:22;;;;;;;;;;;;;;;:136;;;;35890:1;35848:57;;35873:7;35848:57;;35863:8;35848:57;;;35894:2;35898:6;35848:57;;;;;;;;;;;;;;;;;;;;;;;;35362:551;;;;:::o;45666:117::-;45729:7;45756:19;45764:3;:10;;45756:7;:19::i;:::-;45749:26;;45666:117;;;:::o;39614:198::-;39680:16;39709:22;39748:1;39734:16;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;39734:16:0;;;;39709:41;;39772:7;39761:5;39767:1;39761:8;;;;;;;;;;;;;:18;;;;;39799:5;39792:12;;;39614:198;;;:::o;38037:762::-;38266:15;:2;:13;;;:15::i;:::-;38262:530;;;38319:2;38302:38;;;38341:8;38351:4;38357:2;38361:6;38369:4;38302:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;38302:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38302:72:0;;;;;;;;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38302:72:0;;;;;;;;;;;;;;;;;;38298:483;;;20:4:-1;14:11;6:19;;43:1;37:4;30:15;57:1;50:730;;;93:4;75:16;72:26;69:2;;;109:1;101:9;;111:5;;69:2;145:1;142;139;124:23;179:1;173:8;168:3;164:18;206:10;201:3;198:19;188:2;;229:1;221:9;;231:5;;;188:2;290:1;272:16;268:24;265:1;259:4;244:49;319:4;313:11;403:16;396:4;388:6;384:17;381:39;354:18;346:6;343:30;333:94;330:2;;;444:1;436:9;;452:5;;;;330:2;491:6;485:4;481:17;524:3;518:10;548:18;540:6;537:30;534:2;;;578:1;570:9;;580:5;;;;;;534:2;624:6;617:4;612:3;608:14;604:27;658:16;652:4;648:27;643:3;640:36;637:2;;;687:1;679:9;;689:5;;;;;;;637:2;739:4;735:9;728:4;723:3;719:14;715:30;709:4;702:44;760:3;752:11;;769:5;;;;;50:730;38298:483:0;;;;;;;38654:6;38647:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;38647::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38298:483;38703:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38298:483;38436:47;;;38424:59;;;:8;:59;;;;38420:158;;38508:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38420:158;38375:218;38262:530;38037:762;;;;;;:::o;22956:872::-;23088:13;23112:16;23137:2;23112:28;;23149:16;23174:2;23149:28;;23186:16;23211:2;23186:28;;23223:16;23248:2;23223:28;;23260:16;23285:2;23260:28;;23297:19;23382:3;:10;23369:3;:10;23356:3;:10;23343:3;:10;23330:3;:10;:23;:36;:49;:62;23319:74;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;23319:74:0;;;;23297:96;;23402:19;23430:5;23402:34;;23445:6;23454:1;23445:10;;23469:6;23478:1;23469:10;;23464:58;23485:3;:10;23481:1;:14;23464:58;;;23516:3;23520:1;23516:6;;;;;;;;;;;;;;;;23502;23509:3;;;;;;23502:11;;;;;;;;;;;:20;;;;;;;;;;;23497:3;;;;;;;23464:58;;;;23536:6;23545:1;23536:10;;23531:58;23552:3;:10;23548:1;:14;23531:58;;;23583:3;23587:1;23583:6;;;;;;;;;;;;;;;;23569;23576:3;;;;;;23569:11;;;;;;;;;;;:20;;;;;;;;;;;23564:3;;;;;;;23531:58;;;;23603:6;23612:1;23603:10;;23598:58;23619:3;:10;23615:1;:14;23598:58;;;23650:3;23654:1;23650:6;;;;;;;;;;;;;;;;23636;23643:3;;;;;;23636:11;;;;;;;;;;;:20;;;;;;;;;;;23631:3;;;;;;;23598:58;;;;23670:6;23679:1;23670:10;;23665:58;23686:3;:10;23682:1;:14;23665:58;;;23717:3;23721:1;23717:6;;;;;;;;;;;;;;;;23703;23710:3;;;;;;23703:11;;;;;;;;;;;:20;;;;;;;;;;;23698:3;;;;;;;23665:58;;;;23737:6;23746:1;23737:10;;23732:58;23753:3;:10;23749:1;:14;23732:58;;;23784:3;23788:1;23784:6;;;;;;;;;;;;;;;;23770;23777:3;;;;;;23770:11;;;;;;;;;;;:20;;;;;;;;;;;23765:3;;;;;;;23732:58;;;;23813:6;23799:21;;;;;;;;;;22956:872;;;;;;;:::o;17511:422::-;17571:4;17779:12;17890:7;17878:20;17870:28;;17924:1;17917:4;:8;17910:15;;;17511:422;;;:::o;44868:143::-;44938:4;44962:41;44967:3;:10;;44995:5;44987:14;;44979:23;;44962:4;:41::i;:::-;44955:48;;44868:143;;;;:::o;45187:149::-;45260:4;45284:44;45292:3;:10;;45320:5;45312:14;;45304:23;;45284:7;:44::i;:::-;45277:51;;45187:149;;;;:::o;44410:204::-;44477:7;44526:5;44505:3;:11;;:18;;;;:26;44497:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44588:3;:11;;44600:5;44588:18;;;;;;;;;;;;;;;;44581:25;;44410:204;;;;:::o;43742:129::-;43815:4;43862:1;43839:3;:12;;:19;43852:5;43839:19;;;;;;;;;;;;:24;;43832:31;;43742:129;;;;:::o;43957:109::-;44013:7;44040:3;:11;;:18;;;;44033:25;;43957:109;;;:::o;41522:414::-;41585:4;41607:21;41617:3;41622:5;41607:9;:21::i;:::-;41602:327;;41645:3;:11;;41662:5;41645:23;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;41645:23:0;;;;;;;;;;;;;;;;;;;41828:3;:11;;:18;;;;41806:3;:12;;:19;41819:5;41806:19;;;;;;;;;;;:40;;;;41868:4;41861:11;;;;41602:327;41912:5;41905:12;;41522:414;;;;;:::o;42112:1544::-;42178:4;42296:18;42317:3;:12;;:19;42330:5;42317:19;;;;;;;;;;;;42296:40;;42367:1;42353:10;:15;42349:1300;;42715:21;42752:1;42739:10;:14;42715:38;;42768:17;42809:1;42788:3;:11;;:18;;;;:22;42768:42;;43055:17;43075:3;:11;;43087:9;43075:22;;;;;;;;;;;;;;;;43055:42;;43221:9;43192:3;:11;;43204:13;43192:26;;;;;;;;;;;;;;;:38;;;;43340:1;43324:13;:17;43298:3;:12;;:23;43311:9;43298:23;;;;;;;;;;;:43;;;;43450:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;43545:3;:12;;:19;43558:5;43545:19;;;;;;;;;;;43538:26;;;43588:4;43581:11;;;;;;;;42349:1300;43632:5;43625:12;;;42112:1544;;;;;:::o

Swarm Source

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