ETH Price: $3,420.26 (-1.83%)
Gas: 6 Gwei

Token

Chicken (KFC)
 

Overview

Max Total Supply

203,513.421147170965289043 KFC

Holders

2,056 (0.00%)

Market

Price

$4.67 @ 0.001365 ETH (+0.01%)

Onchain Market Cap

$950,446.95

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.05 KFC

Value
$0.23 ( ~6.72462866847847E-05 Eth) [0.0000%]
0x8f4dbbe11f4bd65e5a4aa5bb01bf75849f7d3d8e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ChickenSwap provides simple staking platform whereby user can deposit asset into ChickenSwap and get rewarded with KFC token.

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 KFC
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
Gate.io
KFC-USDT$4.61
0.0013467 Eth
$104.60
22.700 KFC
80.1699%
2
Uniswap V2 (Ethereum)
0XE63684BCF2987892CEFB4CAA79BD21B34E98A291-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$4.71
0.0013889 Eth
$26.43
5.615 0XE63684BCF2987892CEFB4CAA79BD21B34E98A291
19.8301%

Contract Source Code Verified (Exact Match)

Contract Name:
CHIFI

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-21
*/

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



pragma solidity ^0.6.0;

/**
 * @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: @openzeppelin/contracts/GSN/Context.sol



pragma solidity ^0.6.0;

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

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

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



pragma solidity ^0.6.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity ^0.6.0;

/**
 * @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: @openzeppelin/contracts/utils/Address.sol



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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.6.0;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol



pragma solidity ^0.6.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

// File: contracts/governance.sol

pragma solidity ^0.6.0;
pragma experimental ABIEncoderV2;



abstract contract DeligateERC20 is ERC20Burnable {
    /// @notice A record of each accounts delegate
    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;


    // support delegates mint
    function _mint(address account, uint256 amount) internal override virtual {
        super._mint(account, amount);

        // add delegates to the minter
        _moveDelegates(address(0), _delegates[account], amount);
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override virtual {
        super._transfer(sender, recipient, amount);
        _moveDelegates(_delegates[sender], _delegates[recipient], amount);
    }


    // support delegates burn
    function burn(uint256 amount) public override virtual {
        super.burn(amount);

        // del delegates to backhole
        _moveDelegates(_delegates[_msgSender()], address(0), amount);
    }

    function burnFrom(address account, uint256 amount) public override virtual {
        super.burnFrom(account, amount);

        // del delegates to the backhole
        _moveDelegates(_delegates[account], address(0), amount);
    }
    
    /**
    * @notice Delegate votes from `msg.sender` to `delegatee`
    * @param delegatee The address to delegate votes to
    */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        external
    {
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name())),
                getChainId(),
                address(this)
            )
        );

        bytes32 structHash = keccak256(
            abi.encode(
                DELEGATION_TYPEHASH,
                delegatee,
                nonce,
                expiry
            )
        );

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                structHash
            )
        );

        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "Governance::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "Governance::delegateBySig: invalid nonce");
        require(now <= expiry, "Governance::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account)
        external
        view
        returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        require(blockNumber < block.number, "Governance::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee)
        internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator); // balance of underlying balances (not scaled);
        _delegates[delegator] = delegatee;

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);

        emit DelegateChanged(delegator, currentDelegate, delegatee);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
        internal
    {
        uint32 blockNumber = safe32(block.number, "Governance::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        
        return chainId;
    }

    

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

}

// File: contracts/chifi.sol

// SPDX-License-Identifier: Chicken.Finance

/**
 * @author  Chicken.Finance
 *
 * @dev     Contract for Chicken.Finance token with burn support
 */

pragma solidity ^0.6.0;




// Chicken.Finance erc20 Token Contract.
contract CHIFI is DeligateERC20, Ownable {
    uint256 private constant maxSupply      = 1 * 1e6 * 1e18;     // the total supply

    // for minters
    using EnumerableSet for EnumerableSet.AddressSet;
    EnumerableSet.AddressSet private _minters;


    constructor() public ERC20("Chicken", "KFC") { }


    // mint with max supply
    function mint(address _to, uint256 _amount) public onlyMinter returns (bool) {
        if(_amount.add(totalSupply()) > maxSupply) {
            return false;
        }

        _mint(_to, _amount);
        return true;
    }


    function addMinter(address _addMinter) public onlyOwner returns (bool) {
        require(_addMinter != address(0), "Chicken.Finance: _addMinter is the zero address");
        
        return EnumerableSet.add(_minters, _addMinter);
    }

    function delMinter(address _delMinter) public onlyOwner returns (bool) {
        require(_delMinter != address(0), "Chicken.Finance: _delMinter is the zero address");
        
        return EnumerableSet.remove(_minters, _delMinter);
    }

    function getMinterLength() public view returns (uint256) {
        return EnumerableSet.length(_minters);
    }

    function isMinter(address account) public view returns (bool) {
        return EnumerableSet.contains(_minters, account);
    }

    // modifier for mint function
    modifier onlyMinter() {
        require(isMinter(msg.sender), "Chicken.Finance: caller is not the minter");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addMinter","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_delMinter","type":"address"}],"name":"delMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020016621b434b1b5b2b760c91b815250604051806040016040528060038152602001624b464360e81b815250816003908051906020019062000066929190620000fa565b5080516200007c906004906020840190620000fa565b50506005805460ff19166012179055506000620000a16001600160e01b03620000f516565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200019c565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200013d57805160ff19168380011785556200016d565b828001600101855582156200016d579182015b828111156200016d57825182559160200191906001019062000150565b506200017b9291506200017f565b5090565b620000f791905b808211156200017b576000815560010162000186565b61219380620001ac6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063782d6fe111610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103ce578063e7a324dc146103e1578063f1127ed8146103e9578063f2fde38b1461040a576101da565b8063a9059cbb14610382578063aa271e1a14610395578063b4b5ea57146103a8578063c3cda520146103bb576101da565b80638da5cb5b116100de5780638da5cb5b1461033f57806395d89b4114610354578063983b2d561461035c578063a457c2d71461036f576101da565b8063782d6fe11461030657806379cc6790146103195780637ecebe001461032c576101da565b8063313ce5671161017c5780635c19a95c1161014b5780635c19a95c146102b85780636fcfff45146102cb57806370a08231146102eb578063715018a6146102fe576101da565b8063313ce56714610268578063395093511461027d57806340c10f191461029057806342966c68146102a3576101da565b806318160ddd116101b857806318160ddd1461023257806320606b701461023a57806323338b881461024257806323b872dd14610255576101da565b80630323aac7146101df57806306fdde03146101fd578063095ea7b314610212575b600080fd5b6101e761041d565b6040516101f49190611b04565b60405180910390f35b61020561042e565b6040516101f49190611b73565b610225610220366004611940565b6104c4565b6040516101f49190611af9565b6101e76104e2565b6101e76104e8565b6102256102503660046118b1565b6104ff565b610225610263366004611900565b610570565b6102706105fd565b6040516101f49190612047565b61022561028b366004611940565b610606565b61022561029e366004611940565b61065a565b6102b66102b1366004611a08565b6106bc565b005b6102b66102c63660046118b1565b6106ff565b6102de6102d93660046118b1565b610709565b6040516101f49190612020565b6101e76102f93660046118b1565b610721565b6102b661073c565b6101e7610314366004611940565b6107bb565b6102b6610327366004611940565b6109a4565b6101e761033a3660046118b1565b6109d8565b6103476109ea565b6040516101f49190611ae5565b6102056109f9565b61022561036a3660046118b1565b610a5a565b61022561037d366004611940565b610ac2565b610225610390366004611940565b610b30565b6102256103a33660046118b1565b610b44565b6101e76103b63660046118b1565b610b51565b6102b66103c936600461196a565b610bb5565b6101e76103dc3660046118cc565b610d6c565b6101e7610d97565b6103fc6103f73660046119c9565b610da3565b6040516101f4929190612031565b6102b66104183660046118b1565b610dd0565b6000610429600b610e87565b905090565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d86104d1610e92565b8484610e96565b5060015b92915050565b60025490565b6040516104f490611a3b565b604051809103902081565b6000610509610e92565b600a546001600160a01b0390811691161461053f5760405162461bcd60e51b815260040161053690611d64565b60405180910390fd5b6001600160a01b0382166105655760405162461bcd60e51b815260040161053690611ef8565b6104dc600b83610f4a565b600061057d848484610f5f565b6105f384610589610e92565b6105ee856040518060600160405280602881526020016120ed602891396001600160a01b038a166000908152600160205260408120906105c7610e92565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610fa116565b610e96565b5060019392505050565b60055460ff1690565b60006104d8610613610e92565b846105ee8560016000610624610e92565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610fcd16565b600061066533610b44565b6106815760405162461bcd60e51b815260040161053690611e63565b69d3c21bcecceda10000006106a46106976104e2565b849063ffffffff610fcd16565b11156106b2575060006104dc565b6104d88383610ff2565b6106c581611021565b6106fc600660006106d4610e92565b6001600160a01b03908116825260208201929092526040016000908120549091169083611032565b50565b6106fc338261117b565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b610744610e92565b600a546001600160a01b039081169116146107715760405162461bcd60e51b815260040161053690611d64565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60004382106107dc5760405162461bcd60e51b815260040161053690611bc6565b6001600160a01b03831660009081526008602052604090205463ffffffff168061080a5760009150506104dc565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310610879576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506104dc565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156108b45760009150506104dc565b600060001982015b8163ffffffff168163ffffffff16111561096d57600282820363ffffffff160481036108e6611883565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610948576020015194506104dc9350505050565b805163ffffffff1687111561095f57819350610966565b6001820392505b50506108bc565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b6109ae828261122d565b6001600160a01b038083166000908152600660205260408120546109d492169083611032565b5050565b60096020526000908152604090205481565b600a546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b6000610a64610e92565b600a546001600160a01b03908116911614610a915760405162461bcd60e51b815260040161053690611d64565b6001600160a01b038216610ab75760405162461bcd60e51b815260040161053690611d15565b6104dc600b83611283565b60006104d8610acf610e92565b846105ee856040518060600160405280602581526020016121396025913960016000610af9610e92565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610fa116565b60006104d8610b3d610e92565b8484610f5f565b60006104dc600b83611298565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610b7c576000610bae565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b6000604051610bc390611a3b565b6040518091039020610bd361042e565b80519060200120610be26112ad565b30604051602001610bf69493929190611b31565b6040516020818303038152906040528051906020012090506000604051610c1c90611a96565b604051908190038120610c37918a908a908a90602001611b0d565b60405160208183030381529060405280519060200120905060008282604051602001610c64929190611a20565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610ca19493929190611b55565b6020604051602081039080840390855afa158015610cc3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610cf65760405162461bcd60e51b815260040161053690611eac565b6001600160a01b03811660009081526009602052604090208054600181019091558914610d355760405162461bcd60e51b815260040161053690611f47565b87421115610d555760405162461bcd60e51b815260040161053690611fc6565b610d5f818b61117b565b505050505b505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6040516104f490611a96565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b610dd8610e92565b600a546001600160a01b03908116911614610e055760405162461bcd60e51b815260040161053690611d64565b6001600160a01b038116610e2b5760405162461bcd60e51b815260040161053690611c56565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006104dc826112b1565b3390565b6001600160a01b038316610ebc5760405162461bcd60e51b815260040161053690611e1f565b6001600160a01b038216610ee25760405162461bcd60e51b815260040161053690611c9c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610f3d908590611b04565b60405180910390a3505050565b6000610bae836001600160a01b0384166112b5565b610f6a83838361137b565b6001600160a01b03808416600090815260066020526040808220548584168352912054610f9c92918216911683611032565b505050565b60008184841115610fc55760405162461bcd60e51b81526004016105369190611b73565b505050900390565b600082820183811015610bae5760405162461bcd60e51b815260040161053690611cde565b610ffc828261149c565b6001600160a01b038083166000908152600660205260408120546109d4921683611032565b6106fc61102c610e92565b82611568565b816001600160a01b0316836001600160a01b0316141580156110545750600081115b15610f9c576001600160a01b038316156110ec576001600160a01b03831660009081526008602052604081205463ffffffff1690816110945760006110c6565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006110da828563ffffffff61164a16565b90506110e88684848461168c565b5050505b6001600160a01b03821615610f9c576001600160a01b03821660009081526008602052604081205463ffffffff169081611127576000611159565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050600061116d828563ffffffff610fcd16565b9050610d648584848461168c565b6001600160a01b03808316600090815260066020526040812054909116906111a284610721565b6001600160a01b03858116600090815260066020526040902080546001600160a01b03191691861691909117905590506111dd828483611032565b826001600160a01b0316826001600160a01b0316856001600160a01b03167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b60006112658260405180606001604052806024815260200161211560249139611258866103dc610e92565b919063ffffffff610fa116565b905061127983611273610e92565b83610e96565b610f9c8383611568565b6000610bae836001600160a01b0384166117f1565b6000610bae836001600160a01b03841661183b565b4690565b5490565b6000818152600183016020526040812054801561137157835460001980830191908101906000908790839081106112e857fe5b906000526020600020015490508087600001848154811061130557fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061133557fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506104dc565b60009150506104dc565b6001600160a01b0383166113a15760405162461bcd60e51b815260040161053690611dda565b6001600160a01b0382166113c75760405162461bcd60e51b815260040161053690611c13565b6113d2838383610f9c565b6114158160405180606001604052806026815260200161208d602691396001600160a01b038616600090815260208190526040902054919063ffffffff610fa116565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461144a908263ffffffff610fcd16565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f3d908590611b04565b6001600160a01b0382166114c25760405162461bcd60e51b815260040161053690611f8f565b6114ce60008383610f9c565b6002546114e1908263ffffffff610fcd16565b6002556001600160a01b03821660009081526020819052604090205461150d908263ffffffff610fcd16565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061155c908590611b04565b60405180910390a35050565b6001600160a01b03821661158e5760405162461bcd60e51b815260040161053690611d99565b61159a82600083610f9c565b6115dd8160405180606001604052806022815260200161206b602291396001600160a01b038516600090815260208190526040902054919063ffffffff610fa116565b6001600160a01b038316600090815260208190526040902055600254611609908263ffffffff61164a16565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061155c908590611b04565b6000610bae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fa1565b60006116b0436040518060600160405280603a81526020016120b3603a9139611853565b905060008463ffffffff161180156116f957506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611736576001600160a01b038516600090815260076020908152604080832063ffffffff600019890116845290915290206001018290556117a7565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516117e2929190612012565b60405180910390a25050505050565b60006117fd838361183b565b611833575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104dc565b5060006104dc565b60009081526001919091016020526040902054151590565b600081640100000000841061187b5760405162461bcd60e51b81526004016105369190611b73565b509192915050565b604080518082019091526000808252602082015290565b80356001600160a01b03811681146104dc57600080fd5b6000602082840312156118c2578081fd5b610bae838361189a565b600080604083850312156118de578081fd5b6118e8848461189a565b91506118f7846020850161189a565b90509250929050565b600080600060608486031215611914578081fd5b833561191f81612055565b9250602084013561192f81612055565b929592945050506040919091013590565b60008060408385031215611952578182fd5b61195c848461189a565b946020939093013593505050565b60008060008060008060c08789031215611982578182fd5b61198c888861189a565b95506020870135945060408701359350606087013560ff811681146119af578283fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156119db578182fd5b6119e5848461189a565b9150602083013563ffffffff811681146119fd578182fd5b809150509250929050565b600060208284031215611a19578081fd5b5035919050565b61190160f01b81526002810192909252602282015260420190565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430190565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611b9f57858101830151858201604001528201611b83565b81811115611bb05783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602d908201527f476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207960408201526c195d0819195d195c9b5a5b9959609a1b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252602f908201527f436869636b656e2e46696e616e63653a205f6164644d696e746572206973207460408201526e6865207a65726f206164647265737360881b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526029908201527f436869636b656e2e46696e616e63653a2063616c6c6572206973206e6f74207460408201526834329036b4b73a32b960b91b606082015260800190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c60408201526b6964207369676e617475726560a01b606082015260800190565b6020808252602f908201527f436869636b656e2e46696e616e63653a205f64656c4d696e746572206973207460408201526e6865207a65726f206164647265737360881b606082015260800190565b60208082526028908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6040820152676964206e6f6e636560c01b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a207369676e6160408201526b1d1d5c9948195e1c1a5c995960a21b606082015260800190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b6001600160a01b03811681146106fc57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205fd0a8721dd226f1681304cb90317316c699f27fb59b21c56c9027c75826342b64736f6c63430006060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063782d6fe111610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103ce578063e7a324dc146103e1578063f1127ed8146103e9578063f2fde38b1461040a576101da565b8063a9059cbb14610382578063aa271e1a14610395578063b4b5ea57146103a8578063c3cda520146103bb576101da565b80638da5cb5b116100de5780638da5cb5b1461033f57806395d89b4114610354578063983b2d561461035c578063a457c2d71461036f576101da565b8063782d6fe11461030657806379cc6790146103195780637ecebe001461032c576101da565b8063313ce5671161017c5780635c19a95c1161014b5780635c19a95c146102b85780636fcfff45146102cb57806370a08231146102eb578063715018a6146102fe576101da565b8063313ce56714610268578063395093511461027d57806340c10f191461029057806342966c68146102a3576101da565b806318160ddd116101b857806318160ddd1461023257806320606b701461023a57806323338b881461024257806323b872dd14610255576101da565b80630323aac7146101df57806306fdde03146101fd578063095ea7b314610212575b600080fd5b6101e761041d565b6040516101f49190611b04565b60405180910390f35b61020561042e565b6040516101f49190611b73565b610225610220366004611940565b6104c4565b6040516101f49190611af9565b6101e76104e2565b6101e76104e8565b6102256102503660046118b1565b6104ff565b610225610263366004611900565b610570565b6102706105fd565b6040516101f49190612047565b61022561028b366004611940565b610606565b61022561029e366004611940565b61065a565b6102b66102b1366004611a08565b6106bc565b005b6102b66102c63660046118b1565b6106ff565b6102de6102d93660046118b1565b610709565b6040516101f49190612020565b6101e76102f93660046118b1565b610721565b6102b661073c565b6101e7610314366004611940565b6107bb565b6102b6610327366004611940565b6109a4565b6101e761033a3660046118b1565b6109d8565b6103476109ea565b6040516101f49190611ae5565b6102056109f9565b61022561036a3660046118b1565b610a5a565b61022561037d366004611940565b610ac2565b610225610390366004611940565b610b30565b6102256103a33660046118b1565b610b44565b6101e76103b63660046118b1565b610b51565b6102b66103c936600461196a565b610bb5565b6101e76103dc3660046118cc565b610d6c565b6101e7610d97565b6103fc6103f73660046119c9565b610da3565b6040516101f4929190612031565b6102b66104183660046118b1565b610dd0565b6000610429600b610e87565b905090565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d86104d1610e92565b8484610e96565b5060015b92915050565b60025490565b6040516104f490611a3b565b604051809103902081565b6000610509610e92565b600a546001600160a01b0390811691161461053f5760405162461bcd60e51b815260040161053690611d64565b60405180910390fd5b6001600160a01b0382166105655760405162461bcd60e51b815260040161053690611ef8565b6104dc600b83610f4a565b600061057d848484610f5f565b6105f384610589610e92565b6105ee856040518060600160405280602881526020016120ed602891396001600160a01b038a166000908152600160205260408120906105c7610e92565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610fa116565b610e96565b5060019392505050565b60055460ff1690565b60006104d8610613610e92565b846105ee8560016000610624610e92565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610fcd16565b600061066533610b44565b6106815760405162461bcd60e51b815260040161053690611e63565b69d3c21bcecceda10000006106a46106976104e2565b849063ffffffff610fcd16565b11156106b2575060006104dc565b6104d88383610ff2565b6106c581611021565b6106fc600660006106d4610e92565b6001600160a01b03908116825260208201929092526040016000908120549091169083611032565b50565b6106fc338261117b565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b610744610e92565b600a546001600160a01b039081169116146107715760405162461bcd60e51b815260040161053690611d64565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60004382106107dc5760405162461bcd60e51b815260040161053690611bc6565b6001600160a01b03831660009081526008602052604090205463ffffffff168061080a5760009150506104dc565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310610879576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506104dc565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156108b45760009150506104dc565b600060001982015b8163ffffffff168163ffffffff16111561096d57600282820363ffffffff160481036108e6611883565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610948576020015194506104dc9350505050565b805163ffffffff1687111561095f57819350610966565b6001820392505b50506108bc565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b6109ae828261122d565b6001600160a01b038083166000908152600660205260408120546109d492169083611032565b5050565b60096020526000908152604090205481565b600a546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b6000610a64610e92565b600a546001600160a01b03908116911614610a915760405162461bcd60e51b815260040161053690611d64565b6001600160a01b038216610ab75760405162461bcd60e51b815260040161053690611d15565b6104dc600b83611283565b60006104d8610acf610e92565b846105ee856040518060600160405280602581526020016121396025913960016000610af9610e92565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610fa116565b60006104d8610b3d610e92565b8484610f5f565b60006104dc600b83611298565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610b7c576000610bae565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b6000604051610bc390611a3b565b6040518091039020610bd361042e565b80519060200120610be26112ad565b30604051602001610bf69493929190611b31565b6040516020818303038152906040528051906020012090506000604051610c1c90611a96565b604051908190038120610c37918a908a908a90602001611b0d565b60405160208183030381529060405280519060200120905060008282604051602001610c64929190611a20565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610ca19493929190611b55565b6020604051602081039080840390855afa158015610cc3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610cf65760405162461bcd60e51b815260040161053690611eac565b6001600160a01b03811660009081526009602052604090208054600181019091558914610d355760405162461bcd60e51b815260040161053690611f47565b87421115610d555760405162461bcd60e51b815260040161053690611fc6565b610d5f818b61117b565b505050505b505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6040516104f490611a96565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b610dd8610e92565b600a546001600160a01b03908116911614610e055760405162461bcd60e51b815260040161053690611d64565b6001600160a01b038116610e2b5760405162461bcd60e51b815260040161053690611c56565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006104dc826112b1565b3390565b6001600160a01b038316610ebc5760405162461bcd60e51b815260040161053690611e1f565b6001600160a01b038216610ee25760405162461bcd60e51b815260040161053690611c9c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610f3d908590611b04565b60405180910390a3505050565b6000610bae836001600160a01b0384166112b5565b610f6a83838361137b565b6001600160a01b03808416600090815260066020526040808220548584168352912054610f9c92918216911683611032565b505050565b60008184841115610fc55760405162461bcd60e51b81526004016105369190611b73565b505050900390565b600082820183811015610bae5760405162461bcd60e51b815260040161053690611cde565b610ffc828261149c565b6001600160a01b038083166000908152600660205260408120546109d4921683611032565b6106fc61102c610e92565b82611568565b816001600160a01b0316836001600160a01b0316141580156110545750600081115b15610f9c576001600160a01b038316156110ec576001600160a01b03831660009081526008602052604081205463ffffffff1690816110945760006110c6565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006110da828563ffffffff61164a16565b90506110e88684848461168c565b5050505b6001600160a01b03821615610f9c576001600160a01b03821660009081526008602052604081205463ffffffff169081611127576000611159565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050600061116d828563ffffffff610fcd16565b9050610d648584848461168c565b6001600160a01b03808316600090815260066020526040812054909116906111a284610721565b6001600160a01b03858116600090815260066020526040902080546001600160a01b03191691861691909117905590506111dd828483611032565b826001600160a01b0316826001600160a01b0316856001600160a01b03167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b60006112658260405180606001604052806024815260200161211560249139611258866103dc610e92565b919063ffffffff610fa116565b905061127983611273610e92565b83610e96565b610f9c8383611568565b6000610bae836001600160a01b0384166117f1565b6000610bae836001600160a01b03841661183b565b4690565b5490565b6000818152600183016020526040812054801561137157835460001980830191908101906000908790839081106112e857fe5b906000526020600020015490508087600001848154811061130557fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061133557fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506104dc565b60009150506104dc565b6001600160a01b0383166113a15760405162461bcd60e51b815260040161053690611dda565b6001600160a01b0382166113c75760405162461bcd60e51b815260040161053690611c13565b6113d2838383610f9c565b6114158160405180606001604052806026815260200161208d602691396001600160a01b038616600090815260208190526040902054919063ffffffff610fa116565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461144a908263ffffffff610fcd16565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f3d908590611b04565b6001600160a01b0382166114c25760405162461bcd60e51b815260040161053690611f8f565b6114ce60008383610f9c565b6002546114e1908263ffffffff610fcd16565b6002556001600160a01b03821660009081526020819052604090205461150d908263ffffffff610fcd16565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061155c908590611b04565b60405180910390a35050565b6001600160a01b03821661158e5760405162461bcd60e51b815260040161053690611d99565b61159a82600083610f9c565b6115dd8160405180606001604052806022815260200161206b602291396001600160a01b038516600090815260208190526040902054919063ffffffff610fa116565b6001600160a01b038316600090815260208190526040902055600254611609908263ffffffff61164a16565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061155c908590611b04565b6000610bae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fa1565b60006116b0436040518060600160405280603a81526020016120b3603a9139611853565b905060008463ffffffff161180156116f957506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611736576001600160a01b038516600090815260076020908152604080832063ffffffff600019890116845290915290206001018290556117a7565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516117e2929190612012565b60405180910390a25050505050565b60006117fd838361183b565b611833575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104dc565b5060006104dc565b60009081526001919091016020526040902054151590565b600081640100000000841061187b5760405162461bcd60e51b81526004016105369190611b73565b509192915050565b604080518082019091526000808252602082015290565b80356001600160a01b03811681146104dc57600080fd5b6000602082840312156118c2578081fd5b610bae838361189a565b600080604083850312156118de578081fd5b6118e8848461189a565b91506118f7846020850161189a565b90509250929050565b600080600060608486031215611914578081fd5b833561191f81612055565b9250602084013561192f81612055565b929592945050506040919091013590565b60008060408385031215611952578182fd5b61195c848461189a565b946020939093013593505050565b60008060008060008060c08789031215611982578182fd5b61198c888861189a565b95506020870135945060408701359350606087013560ff811681146119af578283fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156119db578182fd5b6119e5848461189a565b9150602083013563ffffffff811681146119fd578182fd5b809150509250929050565b600060208284031215611a19578081fd5b5035919050565b61190160f01b81526002810192909252602282015260420190565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430190565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611b9f57858101830151858201604001528201611b83565b81811115611bb05783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602d908201527f476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207960408201526c195d0819195d195c9b5a5b9959609a1b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252602f908201527f436869636b656e2e46696e616e63653a205f6164644d696e746572206973207460408201526e6865207a65726f206164647265737360881b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526029908201527f436869636b656e2e46696e616e63653a2063616c6c6572206973206e6f74207460408201526834329036b4b73a32b960b91b606082015260800190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c60408201526b6964207369676e617475726560a01b606082015260800190565b6020808252602f908201527f436869636b656e2e46696e616e63653a205f64656c4d696e746572206973207460408201526e6865207a65726f206164647265737360881b606082015260800190565b60208082526028908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6040820152676964206e6f6e636560c01b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a207369676e6160408201526b1d1d5c9948195e1c1a5c995960a21b606082015260800190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b6001600160a01b03811681146106fc57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205fd0a8721dd226f1681304cb90317316c699f27fb59b21c56c9027c75826342b64736f6c63430006060033

Deployed Bytecode Sourcemap

47330:1516:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47330:1516:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;48423:113:0;;;:::i;:::-;;;;;;;;;;;;;;;;27953:83;;;:::i;:::-;;;;;;;;30059:169;;;;;;;;;:::i;:::-;;;;;;;;29028:100;;;:::i;38727:122::-;;;:::i;48171:244::-;;;;;;;;;:::i;30702:321::-;;;;;;;;;:::i;28880:83::-;;;:::i;:::-;;;;;;;;31432:218;;;;;;;;;:::i;47681:231::-;;;;;;;;;:::i;39733:202::-;;;;;;;;;:::i;:::-;;40327:104;;;;;;;;;:::i;38605:49::-;;;;;;;;;:::i;:::-;;;;;;;;29191:119;;;;;;;;;:::i;10777:148::-;;;:::i;42948:1259::-;;;;;;;;;:::i;39943:235::-;;;;;;;;;:::i;39141:39::-;;;;;;;;;:::i;10135:79::-;;;:::i;:::-;;;;;;;;28155:87;;;:::i;47922:241::-;;;;;;;;;:::i;32153:269::-;;;;;;;;;:::i;29523:175::-;;;;;;;;;:::i;48544:129::-;;;;;;;;;:::i;42262:255::-;;;;;;;;;:::i;40865:1196::-;;;;;;;;;:::i;29761:151::-;;;;;;;;;:::i;38943:117::-;;;:::i;38466:70::-;;;;;;;;;:::i;:::-;;;;;;;;;11080:244;;;;;;;;;:::i;48423:113::-;48471:7;48498:30;48519:8;48498:20;:30::i;:::-;48491:37;;48423:113;:::o;27953:83::-;28023:5;28016:12;;;;;;;;-1:-1:-1;;28016:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27990:13;;28016:12;;28023:5;;28016:12;;28023:5;28016:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27953:83;:::o;30059:169::-;30142:4;30159:39;30168:12;:10;:12::i;:::-;30182:7;30191:6;30159:8;:39::i;:::-;-1:-1:-1;30216:4:0;30059:169;;;;;:::o;29028:100::-;29108:12;;29028:100;:::o;38727:122::-;38769:80;;;;;;;;;;;;;;38727:122;:::o;48171:244::-;48236:4;10357:12;:10;:12::i;:::-;10347:6;;-1:-1:-1;;;;;10347:6:0;;;:22;;;10339:67;;;;-1:-1:-1;;;10339:67:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48261:24:0;::::1;48253:84;;;;-1:-1:-1::0;;;48253:84:0::1;;;;;;;;;48365:42;48386:8;48396:10;48365:20;:42::i;30702:321::-:0;30808:4;30825:36;30835:6;30843:9;30854:6;30825:9;:36::i;:::-;30872:121;30881:6;30889:12;:10;:12::i;:::-;30903:89;30941:6;30903:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30903:19:0;;;;;;:11;:19;;;;;;30923:12;:10;:12::i;:::-;-1:-1:-1;;;;;30903:33:0;;;;;;;;;;;;-1:-1:-1;30903:33:0;;;:89;;:37;:89;:::i;:::-;30872:8;:121::i;:::-;-1:-1:-1;31011:4:0;30702:321;;;;;:::o;28880:83::-;28946:9;;;;28880:83;:::o;31432:218::-;31520:4;31537:83;31546:12;:10;:12::i;:::-;31560:7;31569:50;31608:10;31569:11;:25;31581:12;:10;:12::i;:::-;-1:-1:-1;;;;;31569:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31569:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;47681:231::-;47752:4;48757:20;48766:10;48757:8;:20::i;:::-;48749:74;;;;-1:-1:-1;;;48749:74:0;;;;;;;;;47420:14:::1;47772:26;47784:13;:11;:13::i;:::-;47772:7:::0;;:26:::1;:11;:26;:::i;:::-;:38;47769:82;;;-1:-1:-1::0;47834:5:0::1;47827:12;;47769:82;47863:19;47869:3;47874:7;47863:5;:19::i;39733:202::-:0;39798:18;39809:6;39798:10;:18::i;:::-;39867:60;39882:10;:24;39893:12;:10;:12::i;:::-;-1:-1:-1;;;;;39882:24:0;;;;;;;;;;;;;;-1:-1:-1;39882:24:0;;;;;;;;39920:6;39867:14;:60::i;:::-;39733:202;:::o;40327:104::-;40391:32;40401:10;40413:9;40391;:32::i;38605:49::-;;;;;;;;;;;;;;;:::o;29191:119::-;-1:-1:-1;;;;;29284:18:0;29257:7;29284:18;;;;;;;;;;;;29191:119::o;10777:148::-;10357:12;:10;:12::i;:::-;10347:6;;-1:-1:-1;;;;;10347:6:0;;;:22;;;10339:67;;;;-1:-1:-1;;;10339:67:0;;;;;;;;;10868:6:::1;::::0;10847:40:::1;::::0;10884:1:::1;::::0;-1:-1:-1;;;;;10868:6:0::1;::::0;10847:40:::1;::::0;10884:1;;10847:40:::1;10898:6;:19:::0;;-1:-1:-1;;;;;;10898:19:0::1;::::0;;10777:148::o;42948:1259::-;43056:7;43103:12;43089:11;:26;43081:84;;;;-1:-1:-1;;;43081:84:0;;;;;;;;;-1:-1:-1;;;;;43200:23:0;;43178:19;43200:23;;;:14;:23;;;;;;;;43238:17;43234:58;;43279:1;43272:8;;;;;43234:58;-1:-1:-1;;;;;43352:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;43373:16:0;;43352:38;;;;;;;;;:48;;:63;-1:-1:-1;43348:147:0;;-1:-1:-1;;;;;43439:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;43460:16:0;;;;43439:38;;;;;;;;43475:1;43439:44;;;-1:-1:-1;43432:51:0;;43348:147;-1:-1:-1;;;;;43556:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;43552:88:0;;;43627:1;43620:8;;;;;43552:88;43652:12;-1:-1:-1;;43694:16:0;;43721:428;43736:5;43728:13;;:5;:13;;;43721:428;;;43800:1;43783:13;;;43782:19;;;43774:27;;43843:20;;:::i;:::-;-1:-1:-1;;;;;;43866:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;43843:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43913:27;;43909:229;;;43968:8;;;;-1:-1:-1;43961:15:0;;-1:-1:-1;;;;43961:15:0;43909:229;44002:12;;:26;;;-1:-1:-1;43998:140:0;;;44057:6;44049:14;;43998:140;;;44121:1;44112:6;:10;44104:18;;43998:140;43721:428;;;;;-1:-1:-1;;;;;;44166:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;42948:1259:0;;;;:::o;39943:235::-;40029:31;40044:7;40053:6;40029:14;:31::i;:::-;-1:-1:-1;;;;;40130:19:0;;;;;;;:10;:19;;;;;;40115:55;;40130:19;;40163:6;40115:14;:55::i;:::-;39943:235;;:::o;39141:39::-;;;;;;;;;;;;;:::o;10135:79::-;10200:6;;-1:-1:-1;;;;;10200:6:0;10135:79;:::o;28155:87::-;28227:7;28220:14;;;;;;;;-1:-1:-1;;28220:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28194:13;;28220:14;;28227:7;;28220:14;;28227:7;28220:14;;;;;;;;;;;;;;;;;;;;;;;;47922:241;47987:4;10357:12;:10;:12::i;:::-;10347:6;;-1:-1:-1;;;;;10347:6:0;;;:22;;;10339:67;;;;-1:-1:-1;;;10339:67:0;;;;;;;;;-1:-1:-1;;;;;48012:24:0;::::1;48004:84;;;;-1:-1:-1::0;;;48004:84:0::1;;;;;;;;;48116:39;48134:8;48144:10;48116:17;:39::i;32153:269::-:0;32246:4;32263:129;32272:12;:10;:12::i;:::-;32286:7;32295:96;32334:15;32295:96;;;;;;;;;;;;;;;;;:11;:25;32307:12;:10;:12::i;:::-;-1:-1:-1;;;;;32295:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32295:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;29523:175::-;29609:4;29626:42;29636:12;:10;:12::i;:::-;29650:9;29661:6;29626:9;:42::i;48544:129::-;48600:4;48624:41;48647:8;48657:7;48624:22;:41::i;42262:255::-;-1:-1:-1;;;;;42401:23:0;;42354:7;42401:23;;;:14;:23;;;;;;;;42442:16;:67;;42508:1;42442:67;;;-1:-1:-1;;;;;42461:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;42482:16:0;;42461:38;;;;;;;;42497:1;42461:44;;42442:67;42435:74;42262:255;-1:-1:-1;;;42262:255:0:o;40865:1196::-;41058:23;38769:80;;;;;;;;;;;;;;41187:6;:4;:6::i;:::-;41171:24;;;;;;41214:12;:10;:12::i;:::-;41253:4;41108:165;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;41108:165:0;;;41084:200;;;;;;41058:226;;41297:18;38989:71;;;;;;;;;;;;;;;41342:140;;41409:9;;41437:5;;41461:6;;41342:140;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;41342:140:0;;;41318:175;;;;;;41297:196;;41506:14;41611:15;41645:10;41547:123;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;41547:123:0;;;41523:158;;;;;;41506:175;;41694:17;41714:26;41724:6;41732:1;41735;41738;41714:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;41714:26:0;;-1:-1:-1;;41714:26:0;;;-1:-1:-1;;;;;;;41759:23:0;;41751:80;;;;-1:-1:-1;;;41751:80:0;;;;;;;;;-1:-1:-1;;;;;41859:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;41850:28;;41842:81;;;;-1:-1:-1;;;41842:81:0;;;;;;;;;41949:6;41942:3;:13;;41934:70;;;;-1:-1:-1;;;41934:70:0;;;;;;;;;42022:31;42032:9;42043;42022;:31::i;:::-;42015:38;;;;40865:1196;;;;;;;:::o;29761:151::-;-1:-1:-1;;;;;29877:18:0;;;29850:7;29877:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29761:151::o;38943:117::-;38989:71;;;;;;38466:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11080:244::-;10357:12;:10;:12::i;:::-;10347:6;;-1:-1:-1;;;;;10347:6:0;;;:22;;;10339:67;;;;-1:-1:-1;;;10339:67:0;;;;;;;;;-1:-1:-1;;;;;11169:22:0;::::1;11161:73;;;;-1:-1:-1::0;;;11161:73:0::1;;;;;;;;;11271:6;::::0;11250:38:::1;::::0;-1:-1:-1;;;;;11250:38:0;;::::1;::::0;11271:6:::1;::::0;11250:38:::1;::::0;11271:6:::1;::::0;11250:38:::1;11299:6;:17:::0;;-1:-1:-1;;;;;;11299:17:0::1;-1:-1:-1::0;;;;;11299:17:0;;;::::1;::::0;;;::::1;::::0;;11080:244::o;5837:117::-;5900:7;5927:19;5935:3;5927:7;:19::i;8687:106::-;8775:10;8687:106;:::o;35300:346::-;-1:-1:-1;;;;;35402:19:0;;35394:68;;;;-1:-1:-1;;;35394:68:0;;;;;;;;;-1:-1:-1;;;;;35481:21:0;;35473:68;;;;-1:-1:-1;;;35473:68:0;;;;;;;;;-1:-1:-1;;;;;35554:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;35606:32;;;;;35584:6;;35606:32;;;;;;;;;;35300:346;;;:::o;5358:149::-;5431:4;5455:44;5463:3;-1:-1:-1;;;;;5483:14:0;;5455:7;:44::i;39459:233::-;39566:42;39582:6;39590:9;39601:6;39566:15;:42::i;:::-;-1:-1:-1;;;;;39634:18:0;;;;;;;:10;:18;;;;;;;39654:21;;;;;;;;39619:65;;39634:18;;;;39654:21;39677:6;39619:14;:65::i;:::-;39459:233;;;:::o;15962:192::-;16048:7;16084:12;16076:6;;;;16068:29;;;;-1:-1:-1;;;16068:29:0;;;;;;;;;;-1:-1:-1;;;16120:5:0;;;15962:192::o;15059:181::-;15117:7;15149:5;;;15173:6;;;;15165:46;;;;-1:-1:-1;;;15165:46:0;;;;;;;;39222:229;39307:28;39319:7;39328:6;39307:11;:28::i;:::-;-1:-1:-1;;;;;39415:19:0;;;39411:1;39415:19;;;:10;:19;;;;;;39388:55;;39415:19;39436:6;39388:14;:55::i;37250:91::-;37306:27;37312:12;:10;:12::i;:::-;37326:6;37306:5;:27::i;44664:947::-;44770:6;-1:-1:-1;;;;;44760:16:0;:6;-1:-1:-1;;;;;44760:16:0;;;:30;;;;;44789:1;44780:6;:10;44760:30;44756:848;;;-1:-1:-1;;;;;44811:20:0;;;44807:385;;-1:-1:-1;;;;;44919:22:0;;44900:16;44919:22;;;:14;:22;;;;;;;;;44980:13;:60;;45039:1;44980:60;;;-1:-1:-1;;;;;44996:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;45016:13:0;;44996:34;;;;;;;;45028:1;44996:40;;44980:60;44960:80;-1:-1:-1;45059:17:0;45079:21;44960:80;45093:6;45079:21;:13;:21;:::i;:::-;45059:41;;45119:57;45136:6;45144:9;45155;45166;45119:16;:57::i;:::-;44807:385;;;;-1:-1:-1;;;;;45212:20:0;;;45208:385;;-1:-1:-1;;;;;45320:22:0;;45301:16;45320:22;;;:14;:22;;;;;;;;;45381:13;:60;;45440:1;45381:60;;;-1:-1:-1;;;;;45397:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;45417:13:0;;45397:34;;;;;;;;45429:1;45397:40;;45381:60;45361:80;-1:-1:-1;45460:17:0;45480:21;45361:80;45494:6;45480:21;:13;:21;:::i;:::-;45460:41;;45520:57;45537:6;45545:9;45556;45567;45520:16;:57::i;44215:441::-;-1:-1:-1;;;;;44332:21:0;;;44306:23;44332:21;;;:10;:21;;;;;;;;;;44391:20;44343:9;44391;:20::i;:::-;-1:-1:-1;;;;;44470:21:0;;;;;;;:10;:21;;;;;:33;;-1:-1:-1;;;;;;44470:33:0;;;;;;;;;;44364:47;-1:-1:-1;44516:60:0;44531:15;44470:33;44364:47;44516:14;:60::i;:::-;44638:9;-1:-1:-1;;;;;44594:54:0;44621:15;-1:-1:-1;;;;;44594:54:0;44610:9;-1:-1:-1;;;;;44594:54:0;;;;;;;;;;;44215:441;;;;:::o;37660:295::-;37737:26;37766:84;37803:6;37766:84;;;;;;;;;;;;;;;;;:32;37776:7;37785:12;:10;:12::i;37766:32::-;:36;:84;;:36;:84;:::i;:::-;37737:113;;37863:51;37872:7;37881:12;:10;:12::i;:::-;37895:18;37863:8;:51::i;:::-;37925:22;37931:7;37940:6;37925:5;:22::i;5039:143::-;5109:4;5133:41;5138:3;-1:-1:-1;;;;;5158:14:0;;5133:4;:41::i;5593:158::-;5673:4;5697:46;5707:3;-1:-1:-1;;;;;5727:14:0;;5697:9;:46::i;46506:163::-;46616:9;46506:163;:::o;4128:109::-;4211:18;;4128:109::o;2283:1544::-;2349:4;2488:19;;;:12;;;:19;;;;;;2524:15;;2520:1300;;2959:18;;-1:-1:-1;;2910:14:0;;;;2959:22;;;;2886:21;;2959:3;;:22;;3246;;;;;;;;;;;;;;3226:42;;3392:9;3363:3;:11;;3375:13;3363:26;;;;;;;;;;;;;;;;;;;:38;;;;3469:23;;;3511:1;3469:12;;;:23;;;;;;3495:17;;;3469:43;;3621:17;;3469:3;;3621:17;;;;;;;;;;;;;;;;;;;;;;3716:3;:12;;:19;3729:5;3716:19;;;;;;;;;;;3709:26;;;3759:4;3752:11;;;;;;;;2520:1300;3803:5;3796:12;;;;;32912:539;-1:-1:-1;;;;;33018:20:0;;33010:70;;;;-1:-1:-1;;;33010:70:0;;;;;;;;;-1:-1:-1;;;;;33099:23:0;;33091:71;;;;-1:-1:-1;;;33091:71:0;;;;;;;;;33175:47;33196:6;33204:9;33215:6;33175:20;:47::i;:::-;33255:71;33277:6;33255:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33255:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;33235:17:0;;;:9;:17;;;;;;;;;;;:91;;;;33360:20;;;;;;;:32;;33385:6;33360:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;33337:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;33408:35;;;;;;;;;;33436:6;;33408:35;;33732:378;-1:-1:-1;;;;;33816:21:0;;33808:65;;;;-1:-1:-1;;;33808:65:0;;;;;;;;;33886:49;33915:1;33919:7;33928:6;33886:20;:49::i;:::-;33963:12;;:24;;33980:6;33963:24;:16;:24;:::i;:::-;33948:12;:39;-1:-1:-1;;;;;34019:18:0;;:9;:18;;;;;;;;;;;:30;;34042:6;34019:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;33998:18:0;;:9;:18;;;;;;;;;;;:51;;;;34065:37;;33998:18;;:9;34065:37;;;;34095:6;;34065:37;;;;;;;;;;33732:378;;:::o;34442:418::-;-1:-1:-1;;;;;34526:21:0;;34518:67;;;;-1:-1:-1;;;34518:67:0;;;;;;;;;34598:49;34619:7;34636:1;34640:6;34598:20;:49::i;:::-;34681:68;34704:6;34681:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34681:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;34660:18:0;;:9;:18;;;;;;;;;;:89;34775:12;;:24;;34792:6;34775:24;:16;:24;:::i;:::-;34760:12;:39;34815:37;;34841:1;;-1:-1:-1;;;;;34815:37:0;;;;;;;34845:6;;34815:37;;15523:136;15581:7;15608:43;15612:1;15615;15608:43;;;;;;;;;;;;;;;;;:3;:43::i;45619:710::-;45798:18;45819:82;45826:12;45819:82;;;;;;;;;;;;;;;;;:6;:82::i;:::-;45798:103;;45933:1;45918:12;:16;;;:85;;;;-1:-1:-1;;;;;;45938:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;45961:16:0;;45938:40;;;;;;;;;:50;:65;;;:50;;:65;45918:85;45914:339;;;-1:-1:-1;;;;;46020:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;46043:16:0;;46020:40;;;;;;;;46058:1;46020:46;:57;;;45914:339;;;46149:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46110:22:0;;-1:-1:-1;46110:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;46110:72:0;;;;;;;;;;;;;46197:25;;;:14;:25;;;;;;:44;;46225:16;;;46197:44;;;;;;;;;;45914:339;46291:9;-1:-1:-1;;;;;46270:51:0;;46302:8;46312;46270:51;;;;;;;;;;;;;;;;45619:710;;;;;:::o;1693:414::-;1756:4;1778:21;1788:3;1793:5;1778:9;:21::i;:::-;1773:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;1816:11:0;:23;;;;;;;;;;;;;1999:18;;1977:19;;;:12;;;:19;;;;;;:40;;;;2032:11;;1773:327;-1:-1:-1;2083:5:0;2076:12;;3913:129;3986:4;4010:19;;;:12;;;;;:19;;;;;;:24;;;3913:129::o;46337:161::-;46412:6;46450:12;46443:5;46439:9;;46431:32;;;;-1:-1:-1;;;46431:32:0;;;;;;;;;;-1:-1:-1;46488:1:0;;46337:161;-1:-1:-1;;46337:161:0:o;47330:1516::-;;;;;;;;;;-1:-1:-1;47330:1516:0;;;;;;;;:::o;5:130:-1:-;72:20;;-1:-1;;;;;24992:54;;25842:35;;25832:2;;25891:1;;25881:12;684:241;;788:2;776:9;767:7;763:23;759:32;756:2;;;-1:-1;;794:12;756:2;856:53;901:7;877:22;856:53;;932:366;;;1053:2;1041:9;1032:7;1028:23;1024:32;1021:2;;;-1:-1;;1059:12;1021:2;1121:53;1166:7;1142:22;1121:53;;;1111:63;;1229:53;1274:7;1211:2;1254:9;1250:22;1229:53;;;1219:63;;1015:283;;;;;;1305:491;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;-1:-1;;1449:12;1411:2;85:6;72:20;97:33;124:5;97:33;;;1501:63;-1:-1;1601:2;1640:22;;72:20;97:33;72:20;97:33;;;1405:391;;1609:63;;-1:-1;;;1709:2;1748:22;;;;346:20;;1405:391;1803:366;;;1924:2;1912:9;1903:7;1899:23;1895:32;1892:2;;;-1:-1;;1930:12;1892:2;1992:53;2037:7;2013:22;1992:53;;;1982:63;2082:2;2121:22;;;;346:20;;-1:-1;;;1886:283;2176:865;;;;;;;2363:3;2351:9;2342:7;2338:23;2334:33;2331:2;;;-1:-1;;2370:12;2331:2;2432:53;2477:7;2453:22;2432:53;;;2422:63;;2522:2;2565:9;2561:22;346:20;2530:63;;2630:2;2673:9;2669:22;346:20;2638:63;;2738:2;2779:9;2775:22;616:20;25303:4;26360:5;25292:16;26337:5;26334:33;26324:2;;-1:-1;;26371:12;26324:2;2325:716;;;;-1:-1;2325:716;;2844:3;2884:22;;209:20;;2953:3;2993:22;;;209:20;;-1:-1;2325:716;-1:-1;;2325:716;3048:364;;;3168:2;3156:9;3147:7;3143:23;3139:32;3136:2;;;-1:-1;;3174:12;3136:2;3236:53;3281:7;3257:22;3236:53;;;3226:63;;3326:2;3368:9;3364:22;482:20;25209:10;26240:5;25198:22;26216:5;26213:34;26203:2;;-1:-1;;26251:12;26203:2;3334:62;;;;3130:282;;;;;;3419:241;;3523:2;3511:9;3502:7;3498:23;3494:32;3491:2;;;-1:-1;;3529:12;3491:2;-1:-1;346:20;;3485:175;-1:-1;3485:175;12251:650;-1:-1;;;6343:87;;6328:1;6449:11;;3969:37;;;;12753:12;;;3969:37;12864:12;;;12487:414;12908:372;7500:34;7480:55;;7569:34;7564:2;7555:12;;7548:56;-1:-1;;;7633:2;7624:12;;7617:27;7464:2;7663:12;;13088:192;13287:372;10248:34;10228:55;;10317:28;10312:2;10303:12;;10296:50;10212:2;10365:12;;13467:192;13666:213;-1:-1;;;;;24992:54;;;;3738:37;;13784:2;13769:18;;13755:124;13886:201;24825:13;;24818:21;3852:34;;13998:2;13983:18;;13969:118;14094:213;3969:37;;;14212:2;14197:18;;14183:124;14314:547;3969:37;;;-1:-1;;;;;24992:54;;;;14681:2;14666:18;;3738:37;14764:2;14749:18;;3969:37;14847:2;14832:18;;3969:37;14516:3;14501:19;;14487:374;14868:547;3969:37;;;15235:2;15220:18;;3969:37;;;;15318:2;15303:18;;3969:37;-1:-1;;;;;24992:54;15401:2;15386:18;;3738:37;15070:3;15055:19;;15041:374;15422:539;3969:37;;;25303:4;25292:16;;;;15781:2;15766:18;;12204:35;15864:2;15849:18;;3969:37;15947:2;15932:18;;3969:37;15620:3;15605:19;;15591:370;15968:301;;16106:2;;16127:17;16120:47;4322:5;24294:12;24451:6;16106:2;16095:9;16091:18;24439:19;-1:-1;25393:101;25407:6;25404:1;25401:13;25393:101;;;25474:11;;;;;25468:18;25455:11;;;24479:14;25455:11;25448:39;25422:10;;25393:101;;;25509:6;25506:1;25503:13;25500:2;;;-1:-1;24479:14;25565:6;16095:9;25556:16;;25549:27;25500:2;-1:-1;25762:7;25746:14;-1:-1;;25742:28;4480:39;;;;24479:14;4480:39;;16077:192;-1:-1;;;16077:192;16276:407;16467:2;16481:47;;;4756:2;16452:18;;;24439:19;4792:34;24479:14;;;4772:55;-1:-1;;;4847:12;;;4840:37;4896:12;;;16438:245;16690:407;16881:2;16895:47;;;5147:2;16866:18;;;24439:19;5183:34;24479:14;;;5163:55;-1:-1;;;5238:12;;;5231:27;5277:12;;;16852:245;17104:407;17295:2;17309:47;;;5528:2;17280:18;;;24439:19;5564:34;24479:14;;;5544:55;-1:-1;;;5619:12;;;5612:30;5661:12;;;17266:245;17518:407;17709:2;17723:47;;;5912:2;17694:18;;;24439:19;5948:34;24479:14;;;5928:55;-1:-1;;;6003:12;;;5996:26;6041:12;;;17680:245;17932:407;18123:2;18137:47;;;6699:2;18108:18;;;24439:19;6735:29;24479:14;;;6715:50;6784:12;;;18094:245;18346:407;18537:2;18551:47;;;7035:2;18522:18;;;24439:19;7071:34;24479:14;;;7051:55;-1:-1;;;7126:12;;;7119:39;7177:12;;;18508:245;18760:407;18951:2;18965:47;;;18936:18;;;24439:19;7950:34;24479:14;;;7930:55;8004:12;;;18922:245;19174:407;19365:2;19379:47;;;8255:2;19350:18;;;24439:19;8291:34;24479:14;;;8271:55;-1:-1;;;8346:12;;;8339:25;8383:12;;;19336:245;19588:407;19779:2;19793:47;;;8634:2;19764:18;;;24439:19;8670:34;24479:14;;;8650:55;-1:-1;;;8725:12;;;8718:29;8766:12;;;19750:245;20002:407;20193:2;20207:47;;;9017:2;20178:18;;;24439:19;9053:34;24479:14;;;9033:55;-1:-1;;;9108:12;;;9101:28;9148:12;;;20164:245;20416:407;20607:2;20621:47;;;9399:2;20592:18;;;24439:19;9435:34;24479:14;;;9415:55;-1:-1;;;9490:12;;;9483:33;9535:12;;;20578:245;20830:407;21021:2;21035:47;;;9786:2;21006:18;;;24439:19;9822:34;24479:14;;;9802:55;-1:-1;;;9877:12;;;9870:36;9925:12;;;20992:245;21244:407;21435:2;21449:47;;;10616:2;21420:18;;;24439:19;10652:34;24479:14;;;10632:55;-1:-1;;;10707:12;;;10700:39;10758:12;;;21406:245;21658:407;21849:2;21863:47;;;11009:2;21834:18;;;24439:19;11045:34;24479:14;;;11025:55;-1:-1;;;11100:12;;;11093:32;11144:12;;;21820:245;22072:407;22263:2;22277:47;;;11395:2;22248:18;;;24439:19;11431:33;24479:14;;;11411:54;11484:12;;;22234:245;22486:407;22677:2;22691:47;;;11735:2;22662:18;;;24439:19;11771:34;24479:14;;;11751:55;-1:-1;;;11826:12;;;11819:36;11874:12;;;22648:245;23120:324;3969:37;;;23430:2;23415:18;;3969:37;23266:2;23251:18;;23237:207;23451:209;25209:10;25198:22;;;;12089:36;;23567:2;23552:18;;23538:122;23667:320;25209:10;25198:22;;;;12089:36;;23973:2;23958:18;;3969:37;23811:2;23796:18;;23782:205;23994;25303:4;25292:16;;;;12204:35;;24108:2;24093:18;;24079:120;25783:117;-1:-1;;;;;24992:54;;25842:35;;25832:2;;25891:1;;25881:12

Swarm Source

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