ETH Price: $2,392.18 (-0.91%)
Gas: 1.5 Gwei

Token

PearlDAO (PEARLDAO)
 

Overview

Max Total Supply

10,000,000,000,000 PEARLDAO

Holders

81

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
934,160,199.471048 PEARLDAO

Value
$0.00
0x434df135fe3b2c58d3bdf16f61d8675a22a4333f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PearlDAO

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-14
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.11;


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

    function min(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = x < y ? x : y;
    }

    // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
    function sqrt(uint256 y) internal pure returns (uint256 z) {
        if (y > 3) {
            z = y;
            uint256 x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
    }
}

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

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external view returns (uint8);

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the token name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the bep token owner.
     */
    function getOwner() external view returns (address);

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

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

// 
/*
 * @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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor() {}

    function _msgSender() internal view returns (address payable) {
        return payable(msg.sender);
    }

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

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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() external 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// 
/**
 * @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 {_createInitialSupply}.
 * 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, Ownable {
    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_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @dev Returns the bep token owner.
     */
    function getOwner() external override view returns (address) {
        return owner();
    }

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

    /**
     * @dev Returns the token decimals.
     */
    function decimals() public override view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the token symbol.
     */
    function symbol() public override view returns (string memory) {
        return _symbol;
    }

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

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

    /**
     * @dev See {ERC20-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 override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

    /**
     * @dev See {ERC20-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 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 {ERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public 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 {ERC20-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 returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(subtractedValue, 'ERC20: decreased allowance below zero')
        );
        return true;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
     * the total supply.
     *
     * Requirements
     *
     * - `msg.sender` must be the token owner
     */
    function mint(uint256 amount) public onlyOwner returns (bool) {
        _createInitialSupply(_msgSender(), amount);
        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');

        _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 _createInitialSupply(address account, uint256 amount) internal {
        require(account != address(0), 'ERC20: mint to the zero address');

        _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 {
        require(account != address(0), 'ERC20: burn from the zero address');

        _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 {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(
            account,
            _msgSender(),
            _allowances[account][_msgSender()].sub(amount, 'ERC20: burn amount exceeds allowance')
        );
    }
}

interface IDexRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );
}

interface IDexFactory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

contract PearlDAO is ERC20('PearlDAO', 'PEARLDAO') {

    IDexRouter public immutable dexRouter;
    address public immutable lpPair;

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;

    address public operationsAddress;
    address public charityAddress;

    bool private swapping;
    uint256 public swapTokensAtAmount;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    
    uint256 public tradingActiveBlock = 0; // 0 means trading is not active
    uint256 public earlyBuyPenaltyEnd; // determines when snipers/bots can sell without extra penalty
    
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyOperationsFee;
    uint256 public buyLiquidityFee;
    uint256 public buyCharityFee;

    uint256 public sellTotalFees;
    uint256 public sellOperationsFee;
    uint256 public sellLiquidityFee;
    uint256 public sellCharityFee;

    uint256 public tokensForOperations;
    uint256 public tokensForLiquidity;
    uint256 public tokensForCharity;
    
    /******************/

    // exlcude from fees and max transaction amount
    mapping (address => bool) public _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event EnabledTrading();

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event UpdatedMaxBuyAmount(uint256 newAmount);

    event UpdatedMaxSellAmount(uint256 newAmount);

    event UpdatedOperationsAddress(address indexed newWallet);

    event UpdatedCharityAddress(address indexed newWallet);

    event MaxTransactionExclusion(address _address, bool excluded);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event TransferForeignToken(address token, uint256 amount);

    event OwnerForcedSwapBack(uint256 timestamp);

    constructor() {
        
        address newOwner = msg.sender; // can leave alone if owner is deployer.
        
        IDexRouter _dexRouter = IDexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        _excludeFromMaxTransaction(address(_dexRouter), true);
        dexRouter = _dexRouter;
        
        lpPair = IDexFactory(_dexRouter.factory()).createPair(address(this), _dexRouter.WETH());
        _setAutomatedMarketMakerPair(address(lpPair), true);
 
        uint256 totalSupply = 10* 1e12 * 1e18;
        
        maxBuyAmount = totalSupply * 1 / 1000;
        maxSellAmount = totalSupply * 1 / 1000; 
        swapTokensAtAmount = totalSupply * 1 / 10000; // 0.01% swap amount

        buyOperationsFee = 5;
        buyLiquidityFee = 5;
        buyCharityFee = 0;
        buyTotalFees = buyOperationsFee + buyLiquidityFee + buyCharityFee;

        sellOperationsFee = 7;
        sellLiquidityFee = 7;
        sellCharityFee = 0;
        sellTotalFees = sellOperationsFee + sellLiquidityFee + sellCharityFee;

        _excludeFromMaxTransaction(newOwner, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);

        excludeFromFees(newOwner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        operationsAddress = address(0x5bFf5d0a17d48dCb3EeCa101eE758cBe5dB68A44);
        charityAddress = address(0x5bFf5d0a17d48dCb3EeCa101eE758cBe5dB68A44);
        
        _createInitialSupply(newOwner, totalSupply);
        transferOwnership(newOwner);
    }

    receive() external payable {
  	}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        require(!tradingActive, "Cannot reenable trading");
        tradingActive = true;
        swapEnabled = true;
        tradingActiveBlock = block.number;
        emit EnabledTrading();
    }
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        transferDelayEnabled = false;
    }
    
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner {
        transferDelayEnabled = false;
    }
    
    function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set max buy amount lower than 0.1%");
        maxBuyAmount = newNum * (10**18);
        emit UpdatedMaxBuyAmount(maxBuyAmount);
    }
    
    function updateMaxSellAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set max sell amount lower than 0.1%");
        maxSellAmount = newNum * (10**18);
        emit UpdatedMaxSellAmount(maxSellAmount);
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
  	    require(newAmount*1e18 >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
  	    require(newAmount*1e18 <= totalSupply() * 1 / 1000, "Swap amount cannot be higher than 0.1% total supply.");
  	    swapTokensAtAmount = newAmount*1e18;
  	}
    
    function _excludeFromMaxTransaction(address updAds, bool isExcluded) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }

    function airdropToWallets(address[] memory airdropWallets, uint256[] memory amounts) external onlyOwner returns (bool){
        require(airdropWallets.length == amounts.length, "arrays must be the same length");
        require(airdropWallets.length < 200, "Can only airdrop 200 wallets per txn due to gas limits"); // allows for airdrop + launch at the same exact time, reducing delays and reducing sniper input.
        for(uint256 i = 0; i < airdropWallets.length; i++){
            address wallet = airdropWallets[i];
            uint256 amount = amounts[i];
            super._transfer(msg.sender, wallet, amount);
        }
        return true;
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) external onlyOwner {
        if(!isEx){
            require(updAds != lpPair, "Cannot remove uniswap pair from max txn");
        }
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != lpPair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
        
        _excludeFromMaxTransaction(pair, value);

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateBuyFees(uint256 _operationsFee, uint256 _liquidityFee, uint256 _charityFee) external onlyOwner {
        buyOperationsFee = _operationsFee;
        buyLiquidityFee = _liquidityFee;
        buyCharityFee = _charityFee;
        buyTotalFees = buyOperationsFee + buyLiquidityFee + buyCharityFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(uint256 _operationsFee, uint256 _liquidityFee, uint256 _charityFee) external onlyOwner {
        sellOperationsFee = _operationsFee;
        sellLiquidityFee = _liquidityFee;
        sellCharityFee = _charityFee;
        sellTotalFees = sellOperationsFee + sellLiquidityFee + sellCharityFee;
        require(sellTotalFees <= 20, "Must keep fees at 20% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function _transfer(address from, address to, uint256 amount) internal override {

        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        if(amount == 0){
            super._transfer(from, to, 0);
            return;
        }

        if(!tradingActive){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
        }
        
        if(limitsInEffect){
            if (from != owner() && to != owner() && to != address(0) && to != address(0xdead)){
                
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != address(dexRouter) && to != address(lpPair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxBuyAmount, "Buy transfer amount exceeds the max buy.");
                } 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxSellAmount, "Sell transfer amount exceeds the max sell.");
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if(canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = true;
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount * sellTotalFees / 100;
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForOperations += fees * sellOperationsFee / sellTotalFees;
                tokensForCharity += fees * sellCharityFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount * buyTotalFees / 100;
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForOperations += fees * buyOperationsFee / buyTotalFees;
                tokensForCharity += fees * buyCharityFee / buyTotalFees;
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

        _approve(address(this), address(dexRouter), tokenAmount);

        // make the swap
        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(dexRouter), tokenAmount);

        // add the liquidity
        dexRouter.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(0xdead),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForOperations + tokensForCharity;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 5){
            contractBalance = swapTokensAtAmount * 5;
        }

        bool success;
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        
        swapTokensForEth(contractBalance - liquidityTokens);
        
        uint256 ethBalance = address(this).balance;
        uint256 ethForLiquidity = ethBalance;

        uint256 ethForOperations = ethBalance * tokensForOperations / (totalTokensToSwap - (tokensForLiquidity/2));
        uint256 ethForCharity = ethBalance * tokensForCharity / (totalTokensToSwap - (tokensForLiquidity/2));

        ethForLiquidity -= ethForOperations + ethForCharity;
            
        tokensForLiquidity = 0;
        tokensForOperations = 0;
        tokensForCharity = 0;
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
        }
        
        (success,) = address(charityAddress).call{value: ethForCharity}("");
        (success,) = address(operationsAddress).call{value: address(this).balance}("");
    }

    // force Swap back if slippage above 49% for launch.
    function forceSwapBack() external onlyOwner {
        require(balanceOf(address(this)) >= swapTokensAtAmount, "Can only swap when token amount is at or higher than restriction");
        swapping = true;
        swapBack();
        swapping = false;
        emit OwnerForcedSwapBack(block.timestamp);
    }

    function transferForeignToken(address _token, address _to) external onlyOwner returns (bool _sent) {
        require(_token != address(0), "_token address cannot be 0");
        require(_token != address(this), "Can't withdraw native tokens");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        _sent = IERC20(_token).transfer(_to, _contractBalance);
        emit TransferForeignToken(_token, _contractBalance);
    }

    // withdraw ETH if stuck or someone sends to the address
    function withdrawStuckETH() external onlyOwner {
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }

    function setOperationsAddress(address _operationsAddress) external onlyOwner {
        require(_operationsAddress != address(0), "_operationsAddress address cannot be 0");
        _isExcludedFromFees[operationsAddress] = false;
        operationsAddress = payable(_operationsAddress);
        _isExcludedFromFees[operationsAddress] = true;
        emit UpdatedOperationsAddress(_operationsAddress);
    }

    function setCharityAddress(address _charityAddress) external onlyOwner {
        require(_charityAddress != address(0), "_operationsAddress address cannot be 0");
        charityAddress = payable(_charityAddress);
        emit UpdatedCharityAddress(_charityAddress);
    }
}

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":[],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferForeignToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedCharityAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedOperationsAddress","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"airdropWallets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropToWallets","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"dexRouter","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyBuyPenaltyEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"operationsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_charityAddress","type":"address"}],"name":"setCharityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsAddress","type":"address"}],"name":"setOperationsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferForeignToken","outputs":[{"internalType":"bool","name":"_sent","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"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_charityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_charityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c805462ffffff191660019081179091556000600d556010805460ff191690911790553480156200003557600080fd5b5060405180604001604052806008815260200167506561726c44414f60c01b81525060405180604001604052806008815260200167504541524c44414f60c01b81525060006200008a6200040660201b60201c565b600080546001600160a01b0319166001600160a01b03831690811782556040519293509160008051602062003e02833981519152908290a3508151620000d890600490602085019062000802565b508051620000ee90600590602084019062000802565b50506006805460ff191660121790555033737a250d5630b4cf539739df2c5dacb4c659f2488d620001218160016200040a565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200016c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001929190620008a8565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002069190620008a8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000254573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027a9190620008a8565b6001600160a01b031660a0819052620002959060016200046d565b6c7e37be2022c0914b26800000006103e8620002b3826001620008e9565b620002bf91906200090b565b6007556103e8620002d2826001620008e9565b620002de91906200090b565b600855612710620002f1826001620008e9565b620002fd91906200090b565b600b5560056012819055601381905560006014819055906200032090806200092e565b6200032c91906200092e565b60115560076016819055601781905560006018819055906200034f90806200092e565b6200035b91906200092e565b6015556200036b8360016200040a565b620003783060016200040a565b6200038761dead60016200040a565b62000394836001620004d9565b620003a1306001620004d9565b620003b061dead6001620004d9565b60098054735bff5d0a17d48dcb3eeca101ee758cbe5db68a446001600160a01b03199182168117909255600a80549091169091179055620003f2838262000587565b620003fd836200068e565b50505062000986565b3390565b6001600160a01b0382166000818152601d6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6001600160a01b0382166000908152601e60205260409020805460ff19168215151790556200049d82826200040a565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000546001600160a01b03163314620005285760405162461bcd60e51b8152602060048201819052602482015260008051602062003de283398151915260448201526064015b60405180910390fd5b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005df5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200051f565b620005fb81600354620006e760201b62001c2f1790919060201c565b6003556001600160a01b0382166000908152600160209081526040909120546200063091839062001c2f620006e7821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620006829085815260200190565b60405180910390a35050565b6000546001600160a01b03163314620006d95760405162461bcd60e51b8152602060048201819052602482015260008051602062003de283398151915260448201526064016200051f565b620006e48162000751565b50565b600080620006f683856200092e565b9050838110156200074a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200051f565b9392505050565b6001600160a01b038116620007b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200051f565b600080546040516001600160a01b038085169392169160008051602062003e0283398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b828054620008109062000949565b90600052602060002090601f0160209004810192826200083457600085556200087f565b82601f106200084f57805160ff19168380011785556200087f565b828001600101855582156200087f579182015b828111156200087f57825182559160200191906001019062000862565b506200088d92915062000891565b5090565b5b808211156200088d576000815560010162000892565b600060208284031215620008bb57600080fd5b81516001600160a01b03811681146200074a57600080fd5b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620009065762000906620008d3565b500290565b6000826200092957634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620009445762000944620008d3565b500190565b600181811c908216806200095e57607f821691505b602082108114156200098057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516133f7620009eb600039600081816105cf015281816111e40152818161164c01526120670152600081816103e40152818161202a01528181612a7401528181612b2d01528181612b6901528181612be30152612c4001526133f76000f3fe60806040526004361061039b5760003560e01c806388e765ff116101dc578063c876d0b911610102578063e884f260116100a0578063f2fde38b1161006f578063f2fde38b14610a78578063f5648a4f14610a98578063f637434214610aad578063fb002c9714610ac357600080fd5b8063e884f26014610a17578063ea4cfe1214610a2c578063ee40166e14610a4c578063f11a24d314610a6257600080fd5b8063dc3f0d0f116100dc578063dc3f0d0f1461096b578063dd62ed3e1461098b578063e0bf7fd1146109d1578063e2f4560514610a0157600080fd5b8063c876d0b91461091b578063d257b34f14610935578063d85ba0631461095557600080fd5b8063a1dc92bc1161017a578063b62496f511610149578063b62496f51461088c578063bbc0c742146108bc578063c0246668146108db578063c17b5b8c146108fb57600080fd5b8063a1dc92bc14610816578063a457c2d71461082c578063a9059cbb1461084c578063afcf2fc41461086c57600080fd5b80638da5cb5b116101b65780638da5cb5b1461078e57806395d89b41146107c15780639a7a23d6146107d6578063a0712d68146107f657600080fd5b806388e765ff14610778578063893d20e81461078e5780638a8c523c146107ac57600080fd5b8063452ed4f1116102c15780636a486a8e1161025f578063751039fc1161022e578063751039fc146107035780637571336a146107185780638095d564146107385780638366e79a1461075857600080fd5b80636a486a8e146106825780636ddd17131461069857806370a08231146106b8578063715018a6146106ee57600080fd5b80634f77f6c01161029b5780634f77f6c01461062b57806351f205e4146106415780635a139dd41461065657806366d602ae1461066c57600080fd5b8063452ed4f1146105bd578063499b8394146105f15780634a62bb651461061157600080fd5b80631a8145bb116103395780632be32b61116103085780632be32b6114610545578063313ce56714610565578063395093511461058757806344249f04146105a757600080fd5b80631a8145bb146104d95780631fc851bd146104ef5780632307b4411461050557806323b872dd1461052557600080fd5b80630c9be46d116103755780630c9be46d1461044e5780630d7f14411461047057806310d5de531461049457806318160ddd146104c457600080fd5b806306fdde03146103a75780630758d924146103d2578063095ea7b31461041e57600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610ad9565b6040516103c99190612d21565b60405180910390f35b3480156103de57600080fd5b506104067f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103c9565b34801561042a57600080fd5b5061043e610439366004612d8b565b610b6b565b60405190151581526020016103c9565b34801561045a57600080fd5b5061046e610469366004612db7565b610b81565b005b34801561047c57600080fd5b5061048660185481565b6040519081526020016103c9565b3480156104a057600080fd5b5061043e6104af366004612db7565b601d6020526000908152604090205460ff1681565b3480156104d057600080fd5b50600354610486565b3480156104e557600080fd5b50610486601a5481565b3480156104fb57600080fd5b50610486600e5481565b34801561051157600080fd5b5061043e610520366004612eaa565b610c24565b34801561053157600080fd5b5061043e610540366004612f6c565b610d82565b34801561055157600080fd5b5061046e610560366004612fad565b610de1565b34801561057157600080fd5b5060065460405160ff90911681526020016103c9565b34801561059357600080fd5b5061043e6105a2366004612d8b565b610eee565b3480156105b357600080fd5b50610486601b5481565b3480156105c957600080fd5b506104067f000000000000000000000000000000000000000000000000000000000000000081565b3480156105fd57600080fd5b5061046e61060c366004612db7565b610f24565b34801561061d57600080fd5b50600c5461043e9060ff1681565b34801561063757600080fd5b5061048660165481565b34801561064d57600080fd5b5061046e610fed565b34801561066257600080fd5b5061048660125481565b34801561067857600080fd5b5061048660085481565b34801561068e57600080fd5b5061048660155481565b3480156106a457600080fd5b50600c5461043e9062010000900460ff1681565b3480156106c457600080fd5b506104866106d3366004612db7565b6001600160a01b031660009081526001602052604090205490565b3480156106fa57600080fd5b5061046e6110fd565b34801561070f57600080fd5b5061046e611171565b34801561072457600080fd5b5061046e610733366004612fd4565b6111b3565b34801561074457600080fd5b5061046e61075336600461300d565b61129f565b34801561076457600080fd5b5061043e610773366004613039565b611347565b34801561078457600080fd5b5061048660075481565b34801561079a57600080fd5b506000546001600160a01b0316610406565b3480156107b857600080fd5b5061046e61154f565b3480156107cd57600080fd5b506103bc611611565b3480156107e257600080fd5b5061046e6107f1366004612fd4565b611620565b34801561080257600080fd5b5061043e610811366004612fad565b611700565b34801561082257600080fd5b5061048660145481565b34801561083857600080fd5b5061043e610847366004612d8b565b61173d565b34801561085857600080fd5b5061043e610867366004612d8b565b61178c565b34801561087857600080fd5b50600a54610406906001600160a01b031681565b34801561089857600080fd5b5061043e6108a7366004612db7565b601e6020526000908152604090205460ff1681565b3480156108c857600080fd5b50600c5461043e90610100900460ff1681565b3480156108e757600080fd5b5061046e6108f6366004612fd4565b611799565b34801561090757600080fd5b5061046e61091636600461300d565b611822565b34801561092757600080fd5b5060105461043e9060ff1681565b34801561094157600080fd5b5061046e610950366004612fad565b6118c5565b34801561096157600080fd5b5061048660115481565b34801561097757600080fd5b5061046e610986366004612fad565b611a45565b34801561099757600080fd5b506104866109a6366004613039565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156109dd57600080fd5b5061043e6109ec366004612db7565b601c6020526000908152604090205460ff1681565b348015610a0d57600080fd5b50610486600b5481565b348015610a2357600080fd5b5061046e611b4c565b348015610a3857600080fd5b50600954610406906001600160a01b031681565b348015610a5857600080fd5b50610486600d5481565b348015610a6e57600080fd5b5061048660135481565b348015610a8457600080fd5b5061046e610a93366004612db7565b611b82565b348015610aa457600080fd5b5061046e611bb8565b348015610ab957600080fd5b5061048660175481565b348015610acf57600080fd5b5061048660195481565b606060048054610ae890613067565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1490613067565b8015610b615780601f10610b3657610100808354040283529160200191610b61565b820191906000526020600020905b815481529060010190602001808311610b4457829003601f168201915b5050505050905090565b6000610b78338484611c95565b50600192915050565b6000546001600160a01b03163314610bb45760405162461bcd60e51b8152600401610bab906130a2565b60405180910390fd5b6001600160a01b038116610bda5760405162461bcd60e51b8152600401610bab906130d7565b600a80546001600160a01b0319166001600160a01b0383169081179091556040517fff6a822e9e2c4fe74d4f27fcde00b94c5abb41dd24b73e718952279715fa663290600090a250565b600080546001600160a01b03163314610c4f5760405162461bcd60e51b8152600401610bab906130a2565b8151835114610ca05760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610bab565b60c8835110610d105760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610bab565b60005b8351811015610d78576000848281518110610d3057610d3061311d565b602002602001015190506000848381518110610d4e57610d4e61311d565b60200260200101519050610d63338383611dba565b50508080610d7090613149565b915050610d13565b5060019392505050565b6000610d8f848484611ec6565b610d788433610ddc85604051806060016040528060288152602001613375602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906125c6565b611c95565b6000546001600160a01b03163314610e0b5760405162461bcd60e51b8152600401610bab906130a2565b670de0b6b3a76400006103e8610e2060035490565b610e2b906001613164565b610e359190613183565b610e3f9190613183565b811015610ea05760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e312560b81b6064820152608401610bab565b610eb281670de0b6b3a7640000613164565b60078190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610b78918590610ddc9086611c2f565b6000546001600160a01b03163314610f4e5760405162461bcd60e51b8152600401610bab906130a2565b6001600160a01b038116610f745760405162461bcd60e51b8152600401610bab906130d7565b600980546001600160a01b039081166000908152601c6020526040808220805460ff1990811690915584546001600160a01b0319169386169384179094558282528082208054909416600117909355915190917f4efa56652237561d0f1fd31311aeaaa41f3b754a461545ed3cf6ced5876d298291a250565b6000546001600160a01b031633146110175760405162461bcd60e51b8152600401610bab906130a2565b600b543060009081526001602052604090205410156110a0576040805162461bcd60e51b81526020600482015260248101919091527f43616e206f6e6c792073776170207768656e20746f6b656e20616d6f756e742060448201527f6973206174206f7220686967686572207468616e207265737472696374696f6e6064820152608401610bab565b600a805460ff60a01b1916600160a01b1790556110bb612600565b600a805460ff60a01b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b6000546001600160a01b031633146111275760405162461bcd60e51b8152600401610bab906130a2565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461119b5760405162461bcd60e51b8152600401610bab906130a2565b600c805460ff19908116909155601080549091169055565b6000546001600160a01b031633146111dd5760405162461bcd60e51b8152600401610bab906130a2565b80611274577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156112745760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610bab565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146112c95760405162461bcd60e51b8152600401610bab906130a2565b601283905560138290556014819055806112e383856131a5565b6112ed91906131a5565b6011819055600a10156113425760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610bab565b505050565b600080546001600160a01b031633146113725760405162461bcd60e51b8152600401610bab906130a2565b6001600160a01b0383166113c85760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bab565b6001600160a01b0383163014156114215760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610bab565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015611468573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148c91906131bd565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af11580156114df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150391906131d6565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b6000546001600160a01b031633146115795760405162461bcd60e51b8152600401610bab906130a2565b600c54610100900460ff16156115d15760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610bab565b600c805462ffff0019166201010017905543600d556040517fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb790600090a1565b606060058054610ae890613067565b6000546001600160a01b0316331461164a5760405162461bcd60e51b8152600401610bab906130a2565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156116f25760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bab565b6116fc828261280d565b5050565b600080546001600160a01b0316331461172b5760405162461bcd60e51b8152600401610bab906130a2565b6117353383612877565b506001919050565b6000610b783384610ddc8560405180606001604052806025815260200161339d602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906125c6565b6000610b78338484611ec6565b6000546001600160a01b031633146117c35760405162461bcd60e51b8152600401610bab906130a2565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6000546001600160a01b0316331461184c5760405162461bcd60e51b8152600401610bab906130a2565b6016839055601782905560188190558061186683856131a5565b61187091906131a5565b6015819055601410156113425760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610bab565b6000546001600160a01b031633146118ef5760405162461bcd60e51b8152600401610bab906130a2565b620186a06118fc60035490565b611907906001613164565b6119119190613183565b61192382670de0b6b3a7640000613164565b101561198f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bab565b6103e861199b60035490565b6119a6906001613164565b6119b09190613183565b6119c282670de0b6b3a7640000613164565b1115611a2d5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610bab565b611a3f81670de0b6b3a7640000613164565b600b5550565b6000546001600160a01b03163314611a6f5760405162461bcd60e51b8152600401610bab906130a2565b670de0b6b3a76400006103e8611a8460035490565b611a8f906001613164565b611a999190613183565b611aa39190613183565b811015611b055760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e312560b01b6064820152608401610bab565b611b1781670de0b6b3a7640000613164565b60088190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610ee3565b6000546001600160a01b03163314611b765760405162461bcd60e51b8152600401610bab906130a2565b6010805460ff19169055565b6000546001600160a01b03163314611bac5760405162461bcd60e51b8152600401610bab906130a2565b611bb58161295d565b50565b6000546001600160a01b03163314611be25760405162461bcd60e51b8152600401610bab906130a2565b604051600090339047908381818185875af1925050503d8060008114611c24576040519150601f19603f3d011682016040523d82523d6000602084013e611c29565b606091505b50505050565b600080611c3c83856131a5565b905083811015611c8e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610bab565b9392505050565b6001600160a01b038316611cf75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bab565b6001600160a01b038216611d585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bab565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611de05760405162461bcd60e51b8152600401610bab906131f3565b6001600160a01b038216611e065760405162461bcd60e51b8152600401610bab90613238565b611e438160405180606001604052806026815260200161334f602691396001600160a01b03861660009081526001602052604090205491906125c6565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611e729082611c2f565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611dad9085815260200190565b6001600160a01b038316611eec5760405162461bcd60e51b8152600401610bab906131f3565b6001600160a01b038216611f125760405162461bcd60e51b8152600401610bab90613238565b80611f235761134283836000611dba565b600c54610100900460ff16611fb6576001600160a01b0383166000908152601c602052604090205460ff1680611f7157506001600160a01b0382166000908152601c602052604090205460ff165b611fb65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bab565b600c5460ff16156122a3576000546001600160a01b03848116911614801590611fed57506000546001600160a01b03838116911614155b801561200157506001600160a01b03821615155b801561201857506001600160a01b03821661dead14155b156122a35760105460ff161561214a577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415801561209c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561214a57326000908152600f602052604090205443116121375760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bab565b326000908152600f602052604090204390555b6001600160a01b0383166000908152601e602052604090205460ff16801561218b57506001600160a01b0382166000908152601d602052604090205460ff16155b156121f8576007548111156121f35760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610bab565b6122a3565b6001600160a01b0382166000908152601e602052604090205460ff16801561223957506001600160a01b0383166000908152601d602052604090205460ff16155b156122a3576008548111156122a35760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610bab565b30600090815260016020526040902054600b54811080159081906122cf5750600c5462010000900460ff165b80156122e55750600a54600160a01b900460ff16155b801561230a57506001600160a01b0385166000908152601e602052604090205460ff16155b801561232f57506001600160a01b0385166000908152601c602052604090205460ff16155b801561235457506001600160a01b0384166000908152601c602052604090205460ff16155b1561238257600a805460ff60a01b1916600160a01b179055612374612600565b600a805460ff60a01b191690555b6001600160a01b0385166000908152601c602052604090205460019060ff16806123c457506001600160a01b0385166000908152601c602052604090205460ff165b156123cd575060005b600081156125b2576001600160a01b0386166000908152601e602052604090205460ff1680156123ff57506000601554115b156124b7576064601554866124149190613164565b61241e9190613183565b9050601554601754826124319190613164565b61243b9190613183565b601a600082825461244c91906131a5565b90915550506015546016546124619083613164565b61246b9190613183565b6019600082825461247c91906131a5565b90915550506015546018546124919083613164565b61249b9190613183565b601b60008282546124ac91906131a5565b909155506125949050565b6001600160a01b0387166000908152601e602052604090205460ff1680156124e157506000601154115b15612594576064601154866124f69190613164565b6125009190613183565b9050601154601354826125139190613164565b61251d9190613183565b601a600082825461252e91906131a5565b90915550506011546012546125439083613164565b61254d9190613183565b6019600082825461255e91906131a5565b90915550506011546014546125739083613164565b61257d9190613183565b601b600082825461258e91906131a5565b90915550505b80156125a5576125a5873083611dba565b6125af818661327b565b94505b6125bd878787611dba565b50505050505050565b600081848411156125ea5760405162461bcd60e51b8152600401610bab9190612d21565b5060006125f7848661327b565b95945050505050565b3060009081526001602052604081205490506000601b54601954601a5461262791906131a5565b61263191906131a5565b905081158061263e575080155b15612647575050565b600b54612655906005613164565b82111561266d57600b5461266a906005613164565b91505b600080600283601a54866126819190613164565b61268b9190613183565b6126959190613183565b90506126a96126a4828661327b565b612a1d565b601a54479081906000906126bf90600290613183565b6126c9908761327b565b6019546126d69085613164565b6126e09190613183565b905060006002601a546126f39190613183565b6126fd908861327b565b601b5461270a9086613164565b6127149190613183565b905061272081836131a5565b61272a908461327b565b6000601a8190556019819055601b559250841580159061274a5750600083115b15612759576127598584612bdd565b600a546040516001600160a01b03909116908290600081818185875af1925050503d80600081146127a6576040519150601f19603f3d011682016040523d82523d6000602084013e6127ab565b606091505b50506009546040519197506001600160a01b0316904790600081818185875af1925050503d80600081146127fb576040519150601f19603f3d011682016040523d82523d6000602084013e612800565b606091505b5050505050505050505050565b6001600160a01b0382166000908152601e60205260409020805460ff191682151517905561283b8282612cbe565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0382166128cd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610bab565b6003546128da9082611c2f565b6003556001600160a01b0382166000908152600160205260409020546129009082611c2f565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906129519085815260200190565b60405180910390a35050565b6001600160a01b0381166129c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bab565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a5257612a5261311d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ad0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af49190613292565b81600181518110612b0757612b0761311d565b60200260200101906001600160a01b031690816001600160a01b031681525050612b52307f000000000000000000000000000000000000000000000000000000000000000084611c95565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612ba79085906000908690309042906004016132af565b600060405180830381600087803b158015612bc157600080fd5b505af1158015612bd5573d6000803e3d6000fd5b505050505050565b612c08307f000000000000000000000000000000000000000000000000000000000000000084611c95565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c92573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612cb79190613320565b5050505050565b6001600160a01b0382166000818152601d6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b600060208083528351808285015260005b81811015612d4e57858101830151858201604001528201612d32565b81811115612d60576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611bb557600080fd5b60008060408385031215612d9e57600080fd5b8235612da981612d76565b946020939093013593505050565b600060208284031215612dc957600080fd5b8135611c8e81612d76565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612e1357612e13612dd4565b604052919050565b600067ffffffffffffffff821115612e3557612e35612dd4565b5060051b60200190565b600082601f830112612e5057600080fd5b81356020612e65612e6083612e1b565b612dea565b82815260059290921b84018101918181019086841115612e8457600080fd5b8286015b84811015612e9f5780358352918301918301612e88565b509695505050505050565b60008060408385031215612ebd57600080fd5b823567ffffffffffffffff80821115612ed557600080fd5b818501915085601f830112612ee957600080fd5b81356020612ef9612e6083612e1b565b82815260059290921b84018101918181019089841115612f1857600080fd5b948201945b83861015612f3f578535612f3081612d76565b82529482019490820190612f1d565b96505086013592505080821115612f5557600080fd5b50612f6285828601612e3f565b9150509250929050565b600080600060608486031215612f8157600080fd5b8335612f8c81612d76565b92506020840135612f9c81612d76565b929592945050506040919091013590565b600060208284031215612fbf57600080fd5b5035919050565b8015158114611bb557600080fd5b60008060408385031215612fe757600080fd5b8235612ff281612d76565b9150602083013561300281612fc6565b809150509250929050565b60008060006060848603121561302257600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561304c57600080fd5b823561305781612d76565b9150602083013561300281612d76565b600181811c9082168061307b57607f821691505b6020821081141561309c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5f6f7065726174696f6e734164647265737320616464726573732063616e6e6f60408201526507420626520360d41b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561315d5761315d613133565b5060010190565b600081600019048311821515161561317e5761317e613133565b500290565b6000826131a057634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156131b8576131b8613133565b500190565b6000602082840312156131cf57600080fd5b5051919050565b6000602082840312156131e857600080fd5b8151611c8e81612fc6565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561328d5761328d613133565b500390565b6000602082840312156132a457600080fd5b8151611c8e81612d76565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156132ff5784516001600160a01b0316835293830193918301916001016132da565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561333557600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122080a96f790d6efb1a02cc9e51b9e622f55c99379eaae717c0b5837dbc31600d6964736f6c634300080b00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0

Deployed Bytecode

0x60806040526004361061039b5760003560e01c806388e765ff116101dc578063c876d0b911610102578063e884f260116100a0578063f2fde38b1161006f578063f2fde38b14610a78578063f5648a4f14610a98578063f637434214610aad578063fb002c9714610ac357600080fd5b8063e884f26014610a17578063ea4cfe1214610a2c578063ee40166e14610a4c578063f11a24d314610a6257600080fd5b8063dc3f0d0f116100dc578063dc3f0d0f1461096b578063dd62ed3e1461098b578063e0bf7fd1146109d1578063e2f4560514610a0157600080fd5b8063c876d0b91461091b578063d257b34f14610935578063d85ba0631461095557600080fd5b8063a1dc92bc1161017a578063b62496f511610149578063b62496f51461088c578063bbc0c742146108bc578063c0246668146108db578063c17b5b8c146108fb57600080fd5b8063a1dc92bc14610816578063a457c2d71461082c578063a9059cbb1461084c578063afcf2fc41461086c57600080fd5b80638da5cb5b116101b65780638da5cb5b1461078e57806395d89b41146107c15780639a7a23d6146107d6578063a0712d68146107f657600080fd5b806388e765ff14610778578063893d20e81461078e5780638a8c523c146107ac57600080fd5b8063452ed4f1116102c15780636a486a8e1161025f578063751039fc1161022e578063751039fc146107035780637571336a146107185780638095d564146107385780638366e79a1461075857600080fd5b80636a486a8e146106825780636ddd17131461069857806370a08231146106b8578063715018a6146106ee57600080fd5b80634f77f6c01161029b5780634f77f6c01461062b57806351f205e4146106415780635a139dd41461065657806366d602ae1461066c57600080fd5b8063452ed4f1146105bd578063499b8394146105f15780634a62bb651461061157600080fd5b80631a8145bb116103395780632be32b61116103085780632be32b6114610545578063313ce56714610565578063395093511461058757806344249f04146105a757600080fd5b80631a8145bb146104d95780631fc851bd146104ef5780632307b4411461050557806323b872dd1461052557600080fd5b80630c9be46d116103755780630c9be46d1461044e5780630d7f14411461047057806310d5de531461049457806318160ddd146104c457600080fd5b806306fdde03146103a75780630758d924146103d2578063095ea7b31461041e57600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610ad9565b6040516103c99190612d21565b60405180910390f35b3480156103de57600080fd5b506104067f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103c9565b34801561042a57600080fd5b5061043e610439366004612d8b565b610b6b565b60405190151581526020016103c9565b34801561045a57600080fd5b5061046e610469366004612db7565b610b81565b005b34801561047c57600080fd5b5061048660185481565b6040519081526020016103c9565b3480156104a057600080fd5b5061043e6104af366004612db7565b601d6020526000908152604090205460ff1681565b3480156104d057600080fd5b50600354610486565b3480156104e557600080fd5b50610486601a5481565b3480156104fb57600080fd5b50610486600e5481565b34801561051157600080fd5b5061043e610520366004612eaa565b610c24565b34801561053157600080fd5b5061043e610540366004612f6c565b610d82565b34801561055157600080fd5b5061046e610560366004612fad565b610de1565b34801561057157600080fd5b5060065460405160ff90911681526020016103c9565b34801561059357600080fd5b5061043e6105a2366004612d8b565b610eee565b3480156105b357600080fd5b50610486601b5481565b3480156105c957600080fd5b506104067f000000000000000000000000ef3fd5aeb2c12f3b54e16c7efa6f1959d8e1c46d81565b3480156105fd57600080fd5b5061046e61060c366004612db7565b610f24565b34801561061d57600080fd5b50600c5461043e9060ff1681565b34801561063757600080fd5b5061048660165481565b34801561064d57600080fd5b5061046e610fed565b34801561066257600080fd5b5061048660125481565b34801561067857600080fd5b5061048660085481565b34801561068e57600080fd5b5061048660155481565b3480156106a457600080fd5b50600c5461043e9062010000900460ff1681565b3480156106c457600080fd5b506104866106d3366004612db7565b6001600160a01b031660009081526001602052604090205490565b3480156106fa57600080fd5b5061046e6110fd565b34801561070f57600080fd5b5061046e611171565b34801561072457600080fd5b5061046e610733366004612fd4565b6111b3565b34801561074457600080fd5b5061046e61075336600461300d565b61129f565b34801561076457600080fd5b5061043e610773366004613039565b611347565b34801561078457600080fd5b5061048660075481565b34801561079a57600080fd5b506000546001600160a01b0316610406565b3480156107b857600080fd5b5061046e61154f565b3480156107cd57600080fd5b506103bc611611565b3480156107e257600080fd5b5061046e6107f1366004612fd4565b611620565b34801561080257600080fd5b5061043e610811366004612fad565b611700565b34801561082257600080fd5b5061048660145481565b34801561083857600080fd5b5061043e610847366004612d8b565b61173d565b34801561085857600080fd5b5061043e610867366004612d8b565b61178c565b34801561087857600080fd5b50600a54610406906001600160a01b031681565b34801561089857600080fd5b5061043e6108a7366004612db7565b601e6020526000908152604090205460ff1681565b3480156108c857600080fd5b50600c5461043e90610100900460ff1681565b3480156108e757600080fd5b5061046e6108f6366004612fd4565b611799565b34801561090757600080fd5b5061046e61091636600461300d565b611822565b34801561092757600080fd5b5060105461043e9060ff1681565b34801561094157600080fd5b5061046e610950366004612fad565b6118c5565b34801561096157600080fd5b5061048660115481565b34801561097757600080fd5b5061046e610986366004612fad565b611a45565b34801561099757600080fd5b506104866109a6366004613039565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156109dd57600080fd5b5061043e6109ec366004612db7565b601c6020526000908152604090205460ff1681565b348015610a0d57600080fd5b50610486600b5481565b348015610a2357600080fd5b5061046e611b4c565b348015610a3857600080fd5b50600954610406906001600160a01b031681565b348015610a5857600080fd5b50610486600d5481565b348015610a6e57600080fd5b5061048660135481565b348015610a8457600080fd5b5061046e610a93366004612db7565b611b82565b348015610aa457600080fd5b5061046e611bb8565b348015610ab957600080fd5b5061048660175481565b348015610acf57600080fd5b5061048660195481565b606060048054610ae890613067565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1490613067565b8015610b615780601f10610b3657610100808354040283529160200191610b61565b820191906000526020600020905b815481529060010190602001808311610b4457829003601f168201915b5050505050905090565b6000610b78338484611c95565b50600192915050565b6000546001600160a01b03163314610bb45760405162461bcd60e51b8152600401610bab906130a2565b60405180910390fd5b6001600160a01b038116610bda5760405162461bcd60e51b8152600401610bab906130d7565b600a80546001600160a01b0319166001600160a01b0383169081179091556040517fff6a822e9e2c4fe74d4f27fcde00b94c5abb41dd24b73e718952279715fa663290600090a250565b600080546001600160a01b03163314610c4f5760405162461bcd60e51b8152600401610bab906130a2565b8151835114610ca05760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610bab565b60c8835110610d105760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610bab565b60005b8351811015610d78576000848281518110610d3057610d3061311d565b602002602001015190506000848381518110610d4e57610d4e61311d565b60200260200101519050610d63338383611dba565b50508080610d7090613149565b915050610d13565b5060019392505050565b6000610d8f848484611ec6565b610d788433610ddc85604051806060016040528060288152602001613375602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906125c6565b611c95565b6000546001600160a01b03163314610e0b5760405162461bcd60e51b8152600401610bab906130a2565b670de0b6b3a76400006103e8610e2060035490565b610e2b906001613164565b610e359190613183565b610e3f9190613183565b811015610ea05760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e312560b81b6064820152608401610bab565b610eb281670de0b6b3a7640000613164565b60078190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610b78918590610ddc9086611c2f565b6000546001600160a01b03163314610f4e5760405162461bcd60e51b8152600401610bab906130a2565b6001600160a01b038116610f745760405162461bcd60e51b8152600401610bab906130d7565b600980546001600160a01b039081166000908152601c6020526040808220805460ff1990811690915584546001600160a01b0319169386169384179094558282528082208054909416600117909355915190917f4efa56652237561d0f1fd31311aeaaa41f3b754a461545ed3cf6ced5876d298291a250565b6000546001600160a01b031633146110175760405162461bcd60e51b8152600401610bab906130a2565b600b543060009081526001602052604090205410156110a0576040805162461bcd60e51b81526020600482015260248101919091527f43616e206f6e6c792073776170207768656e20746f6b656e20616d6f756e742060448201527f6973206174206f7220686967686572207468616e207265737472696374696f6e6064820152608401610bab565b600a805460ff60a01b1916600160a01b1790556110bb612600565b600a805460ff60a01b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b6000546001600160a01b031633146111275760405162461bcd60e51b8152600401610bab906130a2565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461119b5760405162461bcd60e51b8152600401610bab906130a2565b600c805460ff19908116909155601080549091169055565b6000546001600160a01b031633146111dd5760405162461bcd60e51b8152600401610bab906130a2565b80611274577f000000000000000000000000ef3fd5aeb2c12f3b54e16c7efa6f1959d8e1c46d6001600160a01b0316826001600160a01b031614156112745760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610bab565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146112c95760405162461bcd60e51b8152600401610bab906130a2565b601283905560138290556014819055806112e383856131a5565b6112ed91906131a5565b6011819055600a10156113425760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610bab565b505050565b600080546001600160a01b031633146113725760405162461bcd60e51b8152600401610bab906130a2565b6001600160a01b0383166113c85760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bab565b6001600160a01b0383163014156114215760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610bab565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015611468573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148c91906131bd565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af11580156114df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150391906131d6565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b6000546001600160a01b031633146115795760405162461bcd60e51b8152600401610bab906130a2565b600c54610100900460ff16156115d15760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610bab565b600c805462ffff0019166201010017905543600d556040517fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb790600090a1565b606060058054610ae890613067565b6000546001600160a01b0316331461164a5760405162461bcd60e51b8152600401610bab906130a2565b7f000000000000000000000000ef3fd5aeb2c12f3b54e16c7efa6f1959d8e1c46d6001600160a01b0316826001600160a01b031614156116f25760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bab565b6116fc828261280d565b5050565b600080546001600160a01b0316331461172b5760405162461bcd60e51b8152600401610bab906130a2565b6117353383612877565b506001919050565b6000610b783384610ddc8560405180606001604052806025815260200161339d602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906125c6565b6000610b78338484611ec6565b6000546001600160a01b031633146117c35760405162461bcd60e51b8152600401610bab906130a2565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6000546001600160a01b0316331461184c5760405162461bcd60e51b8152600401610bab906130a2565b6016839055601782905560188190558061186683856131a5565b61187091906131a5565b6015819055601410156113425760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610bab565b6000546001600160a01b031633146118ef5760405162461bcd60e51b8152600401610bab906130a2565b620186a06118fc60035490565b611907906001613164565b6119119190613183565b61192382670de0b6b3a7640000613164565b101561198f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bab565b6103e861199b60035490565b6119a6906001613164565b6119b09190613183565b6119c282670de0b6b3a7640000613164565b1115611a2d5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610bab565b611a3f81670de0b6b3a7640000613164565b600b5550565b6000546001600160a01b03163314611a6f5760405162461bcd60e51b8152600401610bab906130a2565b670de0b6b3a76400006103e8611a8460035490565b611a8f906001613164565b611a999190613183565b611aa39190613183565b811015611b055760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e312560b01b6064820152608401610bab565b611b1781670de0b6b3a7640000613164565b60088190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610ee3565b6000546001600160a01b03163314611b765760405162461bcd60e51b8152600401610bab906130a2565b6010805460ff19169055565b6000546001600160a01b03163314611bac5760405162461bcd60e51b8152600401610bab906130a2565b611bb58161295d565b50565b6000546001600160a01b03163314611be25760405162461bcd60e51b8152600401610bab906130a2565b604051600090339047908381818185875af1925050503d8060008114611c24576040519150601f19603f3d011682016040523d82523d6000602084013e611c29565b606091505b50505050565b600080611c3c83856131a5565b905083811015611c8e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610bab565b9392505050565b6001600160a01b038316611cf75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bab565b6001600160a01b038216611d585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bab565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611de05760405162461bcd60e51b8152600401610bab906131f3565b6001600160a01b038216611e065760405162461bcd60e51b8152600401610bab90613238565b611e438160405180606001604052806026815260200161334f602691396001600160a01b03861660009081526001602052604090205491906125c6565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611e729082611c2f565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611dad9085815260200190565b6001600160a01b038316611eec5760405162461bcd60e51b8152600401610bab906131f3565b6001600160a01b038216611f125760405162461bcd60e51b8152600401610bab90613238565b80611f235761134283836000611dba565b600c54610100900460ff16611fb6576001600160a01b0383166000908152601c602052604090205460ff1680611f7157506001600160a01b0382166000908152601c602052604090205460ff165b611fb65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bab565b600c5460ff16156122a3576000546001600160a01b03848116911614801590611fed57506000546001600160a01b03838116911614155b801561200157506001600160a01b03821615155b801561201857506001600160a01b03821661dead14155b156122a35760105460ff161561214a577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b03161415801561209c57507f000000000000000000000000ef3fd5aeb2c12f3b54e16c7efa6f1959d8e1c46d6001600160a01b0316826001600160a01b031614155b1561214a57326000908152600f602052604090205443116121375760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bab565b326000908152600f602052604090204390555b6001600160a01b0383166000908152601e602052604090205460ff16801561218b57506001600160a01b0382166000908152601d602052604090205460ff16155b156121f8576007548111156121f35760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610bab565b6122a3565b6001600160a01b0382166000908152601e602052604090205460ff16801561223957506001600160a01b0383166000908152601d602052604090205460ff16155b156122a3576008548111156122a35760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610bab565b30600090815260016020526040902054600b54811080159081906122cf5750600c5462010000900460ff165b80156122e55750600a54600160a01b900460ff16155b801561230a57506001600160a01b0385166000908152601e602052604090205460ff16155b801561232f57506001600160a01b0385166000908152601c602052604090205460ff16155b801561235457506001600160a01b0384166000908152601c602052604090205460ff16155b1561238257600a805460ff60a01b1916600160a01b179055612374612600565b600a805460ff60a01b191690555b6001600160a01b0385166000908152601c602052604090205460019060ff16806123c457506001600160a01b0385166000908152601c602052604090205460ff165b156123cd575060005b600081156125b2576001600160a01b0386166000908152601e602052604090205460ff1680156123ff57506000601554115b156124b7576064601554866124149190613164565b61241e9190613183565b9050601554601754826124319190613164565b61243b9190613183565b601a600082825461244c91906131a5565b90915550506015546016546124619083613164565b61246b9190613183565b6019600082825461247c91906131a5565b90915550506015546018546124919083613164565b61249b9190613183565b601b60008282546124ac91906131a5565b909155506125949050565b6001600160a01b0387166000908152601e602052604090205460ff1680156124e157506000601154115b15612594576064601154866124f69190613164565b6125009190613183565b9050601154601354826125139190613164565b61251d9190613183565b601a600082825461252e91906131a5565b90915550506011546012546125439083613164565b61254d9190613183565b6019600082825461255e91906131a5565b90915550506011546014546125739083613164565b61257d9190613183565b601b600082825461258e91906131a5565b90915550505b80156125a5576125a5873083611dba565b6125af818661327b565b94505b6125bd878787611dba565b50505050505050565b600081848411156125ea5760405162461bcd60e51b8152600401610bab9190612d21565b5060006125f7848661327b565b95945050505050565b3060009081526001602052604081205490506000601b54601954601a5461262791906131a5565b61263191906131a5565b905081158061263e575080155b15612647575050565b600b54612655906005613164565b82111561266d57600b5461266a906005613164565b91505b600080600283601a54866126819190613164565b61268b9190613183565b6126959190613183565b90506126a96126a4828661327b565b612a1d565b601a54479081906000906126bf90600290613183565b6126c9908761327b565b6019546126d69085613164565b6126e09190613183565b905060006002601a546126f39190613183565b6126fd908861327b565b601b5461270a9086613164565b6127149190613183565b905061272081836131a5565b61272a908461327b565b6000601a8190556019819055601b559250841580159061274a5750600083115b15612759576127598584612bdd565b600a546040516001600160a01b03909116908290600081818185875af1925050503d80600081146127a6576040519150601f19603f3d011682016040523d82523d6000602084013e6127ab565b606091505b50506009546040519197506001600160a01b0316904790600081818185875af1925050503d80600081146127fb576040519150601f19603f3d011682016040523d82523d6000602084013e612800565b606091505b5050505050505050505050565b6001600160a01b0382166000908152601e60205260409020805460ff191682151517905561283b8282612cbe565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0382166128cd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610bab565b6003546128da9082611c2f565b6003556001600160a01b0382166000908152600160205260409020546129009082611c2f565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906129519085815260200190565b60405180910390a35050565b6001600160a01b0381166129c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bab565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a5257612a5261311d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ad0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af49190613292565b81600181518110612b0757612b0761311d565b60200260200101906001600160a01b031690816001600160a01b031681525050612b52307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c95565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612ba79085906000908690309042906004016132af565b600060405180830381600087803b158015612bc157600080fd5b505af1158015612bd5573d6000803e3d6000fd5b505050505050565b612c08307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c95565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c92573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612cb79190613320565b5050505050565b6001600160a01b0382166000818152601d6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b600060208083528351808285015260005b81811015612d4e57858101830151858201604001528201612d32565b81811115612d60576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611bb557600080fd5b60008060408385031215612d9e57600080fd5b8235612da981612d76565b946020939093013593505050565b600060208284031215612dc957600080fd5b8135611c8e81612d76565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612e1357612e13612dd4565b604052919050565b600067ffffffffffffffff821115612e3557612e35612dd4565b5060051b60200190565b600082601f830112612e5057600080fd5b81356020612e65612e6083612e1b565b612dea565b82815260059290921b84018101918181019086841115612e8457600080fd5b8286015b84811015612e9f5780358352918301918301612e88565b509695505050505050565b60008060408385031215612ebd57600080fd5b823567ffffffffffffffff80821115612ed557600080fd5b818501915085601f830112612ee957600080fd5b81356020612ef9612e6083612e1b565b82815260059290921b84018101918181019089841115612f1857600080fd5b948201945b83861015612f3f578535612f3081612d76565b82529482019490820190612f1d565b96505086013592505080821115612f5557600080fd5b50612f6285828601612e3f565b9150509250929050565b600080600060608486031215612f8157600080fd5b8335612f8c81612d76565b92506020840135612f9c81612d76565b929592945050506040919091013590565b600060208284031215612fbf57600080fd5b5035919050565b8015158114611bb557600080fd5b60008060408385031215612fe757600080fd5b8235612ff281612d76565b9150602083013561300281612fc6565b809150509250929050565b60008060006060848603121561302257600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561304c57600080fd5b823561305781612d76565b9150602083013561300281612d76565b600181811c9082168061307b57607f821691505b6020821081141561309c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5f6f7065726174696f6e734164647265737320616464726573732063616e6e6f60408201526507420626520360d41b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561315d5761315d613133565b5060010190565b600081600019048311821515161561317e5761317e613133565b500290565b6000826131a057634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156131b8576131b8613133565b500190565b6000602082840312156131cf57600080fd5b5051919050565b6000602082840312156131e857600080fd5b8151611c8e81612fc6565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561328d5761328d613133565b500390565b6000602082840312156132a457600080fd5b8151611c8e81612d76565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156132ff5784516001600160a01b0316835293830193918301916001016132da565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561333557600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122080a96f790d6efb1a02cc9e51b9e622f55c99379eaae717c0b5837dbc31600d6964736f6c634300080b0033

Deployed Bytecode Sourcemap

29991:16350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21235:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30051:37;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;799:32:1;;;781:51;;769:2;754:18;30051:37:0;616:222:1;22722:161:0;;;;;;;;;;-1:-1:-1;22722:161:0;;;;;:::i;:::-;;:::i;:::-;;;1464:14:1;;1457:22;1439:41;;1427:2;1412:18;22722:161:0;1299:187:1;46062:276:0;;;;;;;;;;-1:-1:-1;46062:276:0;;;;;:::i;:::-;;:::i;:::-;;31148:29;;;;;;;;;;;;;;;;;;;1889:25:1;;;1877:2;1862:18;31148:29:0;1743:177:1;31451:64:0;;;;;;;;;;-1:-1:-1;31451:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21711:100;;;;;;;;;;-1:-1:-1;21791:12:0;;21711:100;;31227:33;;;;;;;;;;;;;;;;30554;;;;;;;;;;;;;;;;36036:665;;;;;;;;;;-1:-1:-1;36036:665:0;;;;;:::i;:::-;;:::i;23354:397::-;;;;;;;;;;-1:-1:-1;23354:397:0;;;;;:::i;:::-;;:::i;34823:269::-;;;;;;;;;;-1:-1:-1;34823:269:0;;;;;:::i;:::-;;:::i;21394:92::-;;;;;;;;;;-1:-1:-1;21469:9:0;;21394:92;;21469:9;;;;5200:36:1;;5188:2;5173:18;21394:92:0;5058:184:1;24159:210:0;;;;;;;;;;-1:-1:-1;24159:210:0;;;;;:::i;:::-;;:::i;31267:31::-;;;;;;;;;;;;;;;;30095;;;;;;;;;;;;;;;45644:410;;;;;;;;;;-1:-1:-1;45644:410:0;;;;;:::i;:::-;;:::i;30353:33::-;;;;;;;;;;-1:-1:-1;30353:33:0;;;;;;;;31071:32;;;;;;;;;;;;;;;;44630:312;;;;;;;;;;;;;:::i;30924:31::-;;;;;;;;;;;;;;;;30169:28;;;;;;;;;;;;;;;;31036;;;;;;;;;;;;;;;;30433:31;;;;;;;;;;-1:-1:-1;30433:31:0;;;;;;;;;;;21873:119;;;;;;;;;;-1:-1:-1;21873:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;21966:18:0;21939:7;21966:18;;;:9;:18;;;;;;;21873:119;18217:142;;;;;;;;;;;;;:::i;34525:123::-;;;;;;;;;;;;;:::i;36713:260::-;;;;;;;;;;-1:-1:-1;36713:260:0;;;;;:::i;:::-;;:::i;37484:389::-;;;;;;;;;;-1:-1:-1;37484:389:0;;;;;:::i;:::-;;:::i;44950:456::-;;;;;;;;;;-1:-1:-1;44950:456:0;;;;;:::i;:::-;;:::i;30135:27::-;;;;;;;;;;;;;;;;21078:94;;;;;;;;;;-1:-1:-1;21130:7:0;17640:6;-1:-1:-1;;;;;17640:6:0;21078:94;;34220:249;;;;;;;;;;;;;:::i;21551:96::-;;;;;;;;;;;;;:::i;36981:239::-;;;;;;;;;;-1:-1:-1;36981:239:0;;;;;:::i;:::-;;:::i;25400:145::-;;;;;;;;;;-1:-1:-1;25400:145:0;;;;;:::i;:::-;;:::i;30999:28::-;;;;;;;;;;;;;;;;24871:311;;;;;;;;;;-1:-1:-1;24871:311:0;;;;;:::i;:::-;;:::i;22204:167::-;;;;;;;;;;-1:-1:-1;22204:167:0;;;;;:::i;:::-;;:::i;30245:29::-;;;;;;;;;;-1:-1:-1;30245:29:0;;;;-1:-1:-1;;;;;30245:29:0;;;31673:58;;;;;;;;;;-1:-1:-1;31673:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30393:33;;;;;;;;;;-1:-1:-1;30393:33:0;;;;;;;;;;;38287:182;;;;;;;;;;-1:-1:-1;38287:182:0;;;;;:::i;:::-;;:::i;37881:398::-;;;;;;;;;;-1:-1:-1;37881:398:0;;;;;:::i;:::-;;:::i;30842:39::-;;;;;;;;;;-1:-1:-1;30842:39:0;;;;;;;;35448:361;;;;;;;;;;-1:-1:-1;35448:361:0;;;;;:::i;:::-;;:::i;30890:27::-;;;;;;;;;;;;;;;;35104:274;;;;;;;;;;-1:-1:-1;35104:274:0;;;;;:::i;:::-;;:::i;22433:143::-;;;;;;;;;;-1:-1:-1;22433:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;22541:18:0;;;22514:7;22541:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22433:143;31392:52;;;;;;;;;;-1:-1:-1;31392:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30311:33;;;;;;;;;;;;;;;;34713:98;;;;;;;;;;;;;:::i;30206:32::-;;;;;;;;;;-1:-1:-1;30206:32:0;;;;-1:-1:-1;;;;;30206:32:0;;;30477:37;;;;;;;;;;;;;;;;30962:30;;;;;;;;;;;;;;;;18514:109;;;;;;;;;;-1:-1:-1;18514:109:0;;;;;:::i;:::-;;:::i;45476:160::-;;;;;;;;;;;;;:::i;31110:31::-;;;;;;;;;;;;;;;;31186:34;;;;;;;;;;;;;;;;21235:92;21281:13;21314:5;21307:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21235:92;:::o;22722:161::-;22797:4;22814:39;16313:10;22837:7;22846:6;22814:8;:39::i;:::-;-1:-1:-1;22871:4:0;22722:161;;;;:::o;46062:276::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;46152:29:0;::::1;46144:80;;;;-1:-1:-1::0;;;46144:80:0::1;;;;;;;:::i;:::-;46235:14;:41:::0;;-1:-1:-1;;;;;;46235:41:0::1;-1:-1:-1::0;;;;;46235:41:0;::::1;::::0;;::::1;::::0;;;46292:38:::1;::::0;::::1;::::0;-1:-1:-1;;46292:38:0::1;46062:276:::0;:::o;36036:665::-;36149:4;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;36198:7:::1;:14;36173;:21;:39;36165:82;;;::::0;-1:-1:-1;;;36165:82:0;;8034:2:1;36165:82:0::1;::::0;::::1;8016:21:1::0;8073:2;8053:18;;;8046:30;8112:32;8092:18;;;8085:60;8162:18;;36165:82:0::1;7832:354:1::0;36165:82:0::1;36290:3;36266:14;:21;:27;36258:94;;;::::0;-1:-1:-1;;;36258:94:0;;8393:2:1;36258:94:0::1;::::0;::::1;8375:21:1::0;8432:2;8412:18;;;8405:30;8471:34;8451:18;;;8444:62;-1:-1:-1;;;8522:18:1;;;8515:52;8584:19;;36258:94:0::1;8191:418:1::0;36258:94:0::1;36465:9;36461:211;36484:14;:21;36480:1;:25;36461:211;;;36526:14;36543;36558:1;36543:17;;;;;;;;:::i;:::-;;;;;;;36526:34;;36575:14;36592:7;36600:1;36592:10;;;;;;;;:::i;:::-;;;;;;;36575:27;;36617:43;36633:10;36645:6;36653;36617:15;:43::i;:::-;36511:161;;36507:3;;;;;:::i;:::-;;;;36461:211;;;-1:-1:-1::0;36689:4:0::1;::::0;36036:665;-1:-1:-1;;;36036:665:0:o;23354:397::-;23486:4;23503:36;23513:6;23521:9;23532:6;23503:9;:36::i;:::-;23550:171;23573:6;16313:10;23621:89;23659:6;23621:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23621:19:0;;;;;;:11;:19;;;;;;;;16313:10;23621:33;;;;;;;;;;:37;:89::i;:::-;23550:8;:171::i;34823:269::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;34942:4:::1;34936;34916:13;21791:12:::0;;;21711:100;34916:13:::1;:17;::::0;34932:1:::1;34916:17;:::i;:::-;:24;;;;:::i;:::-;34915:31;;;;:::i;:::-;34905:6;:41;;34897:95;;;::::0;-1:-1:-1;;;34897:95:0;;9615:2:1;34897:95:0::1;::::0;::::1;9597:21:1::0;9654:2;9634:18;;;9627:30;9693:34;9673:18;;;9666:62;-1:-1:-1;;;9744:18:1;;;9737:39;9793:19;;34897:95:0::1;9413:405:1::0;34897:95:0::1;35018:17;:6:::0;35028::::1;35018:17;:::i;:::-;35003:12;:32:::0;;;35051:33:::1;::::0;1889:25:1;;;35051:33:0::1;::::0;1877:2:1;1862:18;35051:33:0::1;;;;;;;;34823:269:::0;:::o;24159:210::-;16313:10;24239:4;24288:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;24288:34:0;;;;;;;;;;24239:4;;24256:83;;24279:7;;24288:50;;24327:10;24288:38;:50::i;45644:410::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45740:32:0;::::1;45732:83;;;;-1:-1:-1::0;;;45732:83:0::1;;;;;;;:::i;:::-;45846:17;::::0;;-1:-1:-1;;;;;45846:17:0;;::::1;45867:5;45826:38:::0;;;:19:::1;:38;::::0;;;;;:46;;-1:-1:-1;;45826:46:0;;::::1;::::0;;;45883:47;;-1:-1:-1;;;;;;45883:47:0::1;::::0;;::::1;::::0;;::::1;::::0;;;45941:38;;;;;;:45;;;;::::1;-1:-1:-1::0;45941:45:0::1;::::0;;;46002:44;;45883:47;;46002:44:::1;::::0;::::1;45644:410:::0;:::o;44630:312::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;44721:18:::1;::::0;44711:4:::1;21939:7:::0;21966:18;;;:9;:18;;;;;;44693:46:::1;;44685:123;;;::::0;;-1:-1:-1;;;44685:123:0;;10025:2:1;44685:123:0::1;::::0;::::1;10007:21:1::0;10044:18;;;10037:30;;;;10103:34;10083:18;;;10076:62;10174:34;10154:18;;;10147:62;10226:19;;44685:123:0::1;9823:428:1::0;44685:123:0::1;44819:8;:15:::0;;-1:-1:-1;;;;44819:15:0::1;-1:-1:-1::0;;;44819:15:0::1;::::0;;44845:10:::1;:8;:10::i;:::-;44866:8;:16:::0;;-1:-1:-1;;;;44866:16:0::1;::::0;;44898:36:::1;::::0;44918:15:::1;1889:25:1::0;;44898:36:0::1;::::0;1877:2:1;1862:18;44898:36:0::1;;;;;;;44630:312::o:0;18217:142::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;18318:1:::1;18302:6:::0;;18281:40:::1;::::0;-1:-1:-1;;;;;18302:6:0;;::::1;::::0;18281:40:::1;::::0;18318:1;;18281:40:::1;18349:1;18332:19:::0;;-1:-1:-1;;;;;;18332:19:0::1;::::0;;18217:142::o;34525:123::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;34579:14:::1;:22:::0;;-1:-1:-1;;34579:22:0;;::::1;::::0;;;34612:20:::1;:28:::0;;;;::::1;::::0;;34525:123::o;36713:260::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;36809:4:::1;36805:104;;36847:6;-1:-1:-1::0;;;;;36837:16:0::1;:6;-1:-1:-1::0;;;;;36837:16:0::1;;;36829:68;;;::::0;-1:-1:-1;;;36829:68:0;;10458:2:1;36829:68:0::1;::::0;::::1;10440:21:1::0;10497:2;10477:18;;;10470:30;10536:34;10516:18;;;10509:62;-1:-1:-1;;;10587:18:1;;;10580:37;10634:19;;36829:68:0::1;10256:403:1::0;36829:68:0::1;-1:-1:-1::0;;;;;36919:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36919:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36713:260::o;37484:389::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;37605:16:::1;:33:::0;;;37649:15:::1;:31:::0;;;37691:13:::1;:27:::0;;;37707:11;37744:34:::1;37667:13:::0;37624:14;37744:34:::1;:::i;:::-;:50;;;;:::i;:::-;37729:12;:65:::0;;;37829:2:::1;-1:-1:-1::0;37813:18:0::1;37805:60;;;::::0;-1:-1:-1;;;37805:60:0;;10999:2:1;37805:60:0::1;::::0;::::1;10981:21:1::0;11038:2;11018:18;;;11011:30;11077:31;11057:18;;;11050:59;11126:18;;37805:60:0::1;10797:353:1::0;37805:60:0::1;37484:389:::0;;;:::o;44950:456::-;45037:10;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45068:20:0;::::1;45060:59;;;::::0;-1:-1:-1;;;45060:59:0;;11357:2:1;45060:59:0::1;::::0;::::1;11339:21:1::0;11396:2;11376:18;;;11369:30;11435:28;11415:18;;;11408:56;11481:18;;45060:59:0::1;11155:350:1::0;45060:59:0::1;-1:-1:-1::0;;;;;45138:23:0;::::1;45156:4;45138:23;;45130:64;;;::::0;-1:-1:-1;;;45130:64:0;;11712:2:1;45130:64:0::1;::::0;::::1;11694:21:1::0;11751:2;11731:18;;;11724:30;11790;11770:18;;;11763:58;11838:18;;45130:64:0::1;11510:352:1::0;45130:64:0::1;45232:39;::::0;-1:-1:-1;;;45232:39:0;;45265:4:::1;45232:39;::::0;::::1;781:51:1::0;45205:24:0::1;::::0;-1:-1:-1;;;;;45232:24:0;::::1;::::0;::::1;::::0;754:18:1;;45232:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45290:46;::::0;-1:-1:-1;;;45290:46:0;;-1:-1:-1;;;;;12248:32:1;;;45290:46:0::1;::::0;::::1;12230:51:1::0;12297:18;;;12290:34;;;45205:66:0;;-1:-1:-1;45290:23:0;;::::1;::::0;::::1;::::0;12203:18:1;;45290:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45352;::::0;;-1:-1:-1;;;;;12248:32:1;;12230:51;;12312:2;12297:18;;12290:34;;;45282:54:0;;-1:-1:-1;45352:46:0::1;::::0;12203:18:1;45352:46:0::1;;;;;;;45049:357;44950:456:::0;;;;:::o;34220:249::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;34284:13:::1;::::0;::::1;::::0;::::1;;;34283:14;34275:50;;;::::0;-1:-1:-1;;;34275:50:0;;12787:2:1;34275:50:0::1;::::0;::::1;12769:21:1::0;12826:2;12806:18;;;12799:30;12865:25;12845:18;;;12838:53;12908:18;;34275:50:0::1;12585:347:1::0;34275:50:0::1;34336:13;:20:::0;;-1:-1:-1;;34367:18:0;;;;;34417:12:::1;34396:18;:33:::0;34445:16:::1;::::0;::::1;::::0;-1:-1:-1;;34445:16:0::1;34220:249::o:0;21551:96::-;21599:13;21632:7;21625:14;;;;;:::i;36981:239::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;37090:6:::1;-1:-1:-1::0;;;;;37082:14:0::1;:4;-1:-1:-1::0;;;;;37082:14:0::1;;;37074:84;;;::::0;-1:-1:-1;;;37074:84:0;;13139:2:1;37074:84:0::1;::::0;::::1;13121:21:1::0;13178:2;13158:18;;;13151:30;13217:34;13197:18;;;13190:62;13288:27;13268:18;;;13261:55;13333:19;;37074:84:0::1;12937:421:1::0;37074:84:0::1;37171:41;37200:4;37206:5;37171:28;:41::i;:::-;36981:239:::0;;:::o;25400:145::-;25456:4;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;25473:42:::1;16313:10:::0;25508:6:::1;25473:20;:42::i;:::-;-1:-1:-1::0;25533:4:0::1;25400:145:::0;;;:::o;24871:311::-;24956:4;24973:179;16313:10;25023:7;25045:96;25084:15;25045:96;;;;;;;;;;;;;;;;;16313:10;25045:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;25045:34:0;;;;;;;;;;;;:38;:96::i;22204:167::-;22282:4;22299:42;16313:10;22323:9;22334:6;22299:9;:42::i;38287:182::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38372:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38372:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38427:34;;1439:41:1;;;38427:34:0::1;::::0;1412:18:1;38427:34:0::1;;;;;;;38287:182:::0;;:::o;37881:398::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;38003:17:::1;:34:::0;;;38048:16:::1;:32:::0;;;38091:14:::1;:28:::0;;;38108:11;38146:36:::1;38067:13:::0;38023:14;38146:36:::1;:::i;:::-;:53;;;;:::i;:::-;38130:13;:69:::0;;;38235:2:::1;-1:-1:-1::0;38218:19:0::1;38210:61;;;::::0;-1:-1:-1;;;38210:61:0;;13565:2:1;38210:61:0::1;::::0;::::1;13547:21:1::0;13604:2;13584:18;;;13577:30;13643:31;13623:18;;;13616:59;13692:18;;38210:61:0::1;13363:353:1::0;35448:361:0;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;35576:6:::1;35556:13;21791:12:::0;;;21711:100;35556:13:::1;:17;::::0;35572:1:::1;35556:17;:::i;:::-;:26;;;;:::i;:::-;35538:14;:9:::0;35548:4:::1;35538:14;:::i;:::-;:44;;35530:110;;;::::0;-1:-1:-1;;;35530:110:0;;13923:2:1;35530:110:0::1;::::0;::::1;13905:21:1::0;13962:2;13942:18;;;13935:30;14001:34;13981:18;;;13974:62;-1:-1:-1;;;14052:18:1;;;14045:51;14113:19;;35530:110:0::1;13721:417:1::0;35530:110:0::1;35696:4;35676:13;21791:12:::0;;;21711:100;35676:13:::1;:17;::::0;35692:1:::1;35676:17;:::i;:::-;:24;;;;:::i;:::-;35658:14;:9:::0;35668:4:::1;35658:14;:::i;:::-;:42;;35650:107;;;::::0;-1:-1:-1;;;35650:107:0;;14345:2:1;35650:107:0::1;::::0;::::1;14327:21:1::0;14384:2;14364:18;;;14357:30;14423:34;14403:18;;;14396:62;-1:-1:-1;;;14474:18:1;;;14467:50;14534:19;;35650:107:0::1;14143:416:1::0;35650:107:0::1;35788:14;:9:::0;35798:4:::1;35788:14;:::i;:::-;35767:18;:35:::0;-1:-1:-1;35448:361:0:o;35104:274::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;35224:4:::1;35218;35198:13;21791:12:::0;;;21711:100;35198:13:::1;:17;::::0;35214:1:::1;35198:17;:::i;:::-;:24;;;;:::i;:::-;35197:31;;;;:::i;:::-;35187:6;:41;;35179:96;;;::::0;-1:-1:-1;;;35179:96:0;;14766:2:1;35179:96:0::1;::::0;::::1;14748:21:1::0;14805:2;14785:18;;;14778:30;14844:34;14824:18;;;14817:62;-1:-1:-1;;;14895:18:1;;;14888:40;14945:19;;35179:96:0::1;14564:406:1::0;35179:96:0::1;35302:17;:6:::0;35312::::1;35302:17;:::i;:::-;35286:13;:33:::0;;;35335:35:::1;::::0;1889:25:1;;;35335:35:0::1;::::0;1877:2:1;1862:18;35335:35:0::1;1743:177:1::0;34713:98:0;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;34775:20:::1;:28:::0;;-1:-1:-1;;34775:28:0::1;::::0;;34713:98::o;18514:109::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;18587:28:::1;18606:8;18587:18;:28::i;:::-;18514:109:::0;:::o;45476:160::-;17787:6;;-1:-1:-1;;;;;17787:6:0;16313:10;17787:22;17779:67;;;;-1:-1:-1;;;17779:67:0;;;;;;;:::i;:::-;45570:58:::1;::::0;45534:12:::1;::::0;45578:10:::1;::::0;45602:21:::1;::::0;45534:12;45570:58;45534:12;45570:58;45602:21;45578:10;45570:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;45476:160:0:o;909:181::-;967:7;;999:5;1003:1;999;:5;:::i;:::-;987:17;;1028:1;1023;:6;;1015:46;;;;-1:-1:-1;;;1015:46:0;;15387:2:1;1015:46:0;;;15369:21:1;15426:2;15406:18;;;15399:30;15465:29;15445:18;;;15438:57;15512:18;;1015:46:0;15185:351:1;1015:46:0;1081:1;909:181;-1:-1:-1;;;909:181:0:o;28272:372::-;-1:-1:-1;;;;;28400:19:0;;28392:68;;;;-1:-1:-1;;;28392:68:0;;15743:2:1;28392:68:0;;;15725:21:1;15782:2;15762:18;;;15755:30;15821:34;15801:18;;;15794:62;-1:-1:-1;;;15872:18:1;;;15865:34;15916:19;;28392:68:0;15541:400:1;28392:68:0;-1:-1:-1;;;;;28479:21:0;;28471:68;;;;-1:-1:-1;;;28471:68:0;;16148:2:1;28471:68:0;;;16130:21:1;16187:2;16167:18;;;16160:30;16226:34;16206:18;;;16199:62;-1:-1:-1;;;16277:18:1;;;16270:32;16319:19;;28471:68:0;15946:398:1;28471:68:0;-1:-1:-1;;;;;28552:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28604:32;;1889:25:1;;;28604:32:0;;1862:18:1;28604:32:0;;;;;;;;28272:372;;;:::o;26035:513::-;-1:-1:-1;;;;;26175:20:0;;26167:70;;;;-1:-1:-1;;;26167:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26256:23:0;;26248:71;;;;-1:-1:-1;;;26248:71:0;;;;;;;:::i;:::-;26352;26374:6;26352:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26352:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;26332:17:0;;;;;;;:9;:17;;;;;;:91;;;;26457:20;;;;;;;:32;;26482:6;26457:24;:32::i;:::-;-1:-1:-1;;;;;26434:20:0;;;;;;;:9;:20;;;;;;;:55;;;;26505:35;;;;;;;;;;26533:6;1889:25:1;;1877:2;1862:18;;1743:177;38477:3494:0;-1:-1:-1;;;;;38577:18:0;;38569:68;;;;-1:-1:-1;;;38569:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38656:16:0;;38648:64;;;;-1:-1:-1;;;38648:64:0;;;;;;;:::i;:::-;38726:11;38723:91;;38753:28;38769:4;38775:2;38779:1;38753:15;:28::i;38723:91::-;38830:13;;;;;;;38826:132;;-1:-1:-1;;;;;38867:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;38896:23:0;;;;;;:19;:23;;;;;;;;38867:52;38859:87;;;;-1:-1:-1;;;38859:87:0;;17361:2:1;38859:87:0;;;17343:21:1;17400:2;17380:18;;;17373:30;-1:-1:-1;;;17419:18:1;;;17412:52;17481:18;;38859:87:0;17159:346:1;38859:87:0;38981:14;;;;38978:1224;;;17613:7;17640:6;-1:-1:-1;;;;;39015:15:0;;;17640:6;;39015:15;;;;:32;;-1:-1:-1;17613:7:0;17640:6;-1:-1:-1;;;;;39034:13:0;;;17640:6;;39034:13;;39015:32;:52;;;;-1:-1:-1;;;;;;39051:16:0;;;;39015:52;:77;;;;-1:-1:-1;;;;;;39071:21:0;;39085:6;39071:21;;39015:77;39011:1180;;;39268:20;;;;39264:393;;;39330:9;-1:-1:-1;;;;;39316:24:0;:2;-1:-1:-1;;;;;39316:24:0;;;:49;;;;;39358:6;-1:-1:-1;;;;;39344:21:0;:2;-1:-1:-1;;;;;39344:21:0;;;39316:49;39312:326;;;39430:9;39401:39;;;;:28;:39;;;;;;39443:12;-1:-1:-1;39393:140:0;;;;-1:-1:-1;;;39393:140:0;;17712:2:1;39393:140:0;;;17694:21:1;17751:2;17731:18;;;17724:30;17790:34;17770:18;;;17763:62;17861:34;17841:18;;;17834:62;-1:-1:-1;;;17912:19:1;;;17905:40;17962:19;;39393:140:0;17510:477:1;39393:140:0;39589:9;39560:39;;;;:28;:39;;;;;39602:12;39560:54;;39312:326;-1:-1:-1;;;;;39726:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;39762:35:0;;;;;;:31;:35;;;;;;;;39761:36;39726:71;39722:454;;;39844:12;;39834:6;:22;;39826:75;;;;-1:-1:-1;;;39826:75:0;;18194:2:1;39826:75:0;;;18176:21:1;18233:2;18213:18;;;18206:30;18272:34;18252:18;;;18245:62;-1:-1:-1;;;18323:18:1;;;18316:38;18371:19;;39826:75:0;17992:404:1;39826:75:0;39722:454;;;-1:-1:-1;;;;;39978:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;40012:37:0;;;;;;:31;:37;;;;;;;;40011:38;39978:71;39974:202;;;40096:13;;40086:6;:23;;40078:78;;;;-1:-1:-1;;;40078:78:0;;18603:2:1;40078:78:0;;;18585:21:1;18642:2;18622:18;;;18615:30;18681:34;18661:18;;;18654:62;-1:-1:-1;;;18732:18:1;;;18725:40;18782:19;;40078:78:0;18401:406:1;40078:78:0;40263:4;40214:28;21966:18;;;:9;:18;;;;;;40329;;40305:42;;;;;;;40363:22;;-1:-1:-1;40374:11:0;;;;;;;40363:22;:35;;;;-1:-1:-1;40390:8:0;;-1:-1:-1;;;40390:8:0;;;;40389:9;40363:35;:71;;;;-1:-1:-1;;;;;;40403:31:0;;;;;;:25;:31;;;;;;;;40402:32;40363:71;:101;;;;-1:-1:-1;;;;;;40439:25:0;;;;;;:19;:25;;;;;;;;40438:26;40363:101;:129;;;;-1:-1:-1;;;;;;40469:23:0;;;;;;:19;:23;;;;;;;;40468:24;40363:129;40360:236;;;40509:8;:15;;-1:-1:-1;;;;40509:15:0;-1:-1:-1;;;40509:15:0;;;40541:10;:8;:10::i;:::-;40568:8;:16;;-1:-1:-1;;;;40568:16:0;;;40360:236;-1:-1:-1;;;;;40726:25:0;;40608:12;40726:25;;;:19;:25;;;;;;40623:4;;40726:25;;;:52;;-1:-1:-1;;;;;;40755:23:0;;;;;;:19;:23;;;;;;;;40726:52;40723:99;;;-1:-1:-1;40805:5:0;40723:99;40842:12;40946:7;40943:975;;;-1:-1:-1;;;;;40997:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;41046:1;41030:13;;:17;40997:50;40993:756;;;41099:3;41083:13;;41074:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;41067:35;;41169:13;;41150:16;;41143:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41121:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;41251:13:0;;41231:17;;41224:24;;:4;:24;:::i;:::-;:40;;;;:::i;:::-;41201:19;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;41327:13:0;;41310:14;;41303:21;;:4;:21;:::i;:::-;:37;;;;:::i;:::-;41283:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;40993:756:0;;-1:-1:-1;40993:756:0;;-1:-1:-1;;;;;41401:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;41451:1;41436:12;;:16;41401:51;41398:351;;;41501:3;41486:12;;41477:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;41470:34;;41567:12;;41549:15;;41542:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41520:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;41647:12:0;;41628:16;;41621:23;;:4;:23;:::i;:::-;:38;;;;:::i;:::-;41598:19;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;41721:12:0;;41705:13;;41698:20;;:4;:20;:::i;:::-;:35;;;;:::i;:::-;41678:16;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;41398:351:0;41780:8;;41777:93;;41812:42;41828:4;41842;41849;41812:15;:42::i;:::-;41892:14;41902:4;41892:14;;:::i;:::-;;;40943:975;41930:33;41946:4;41952:2;41956:6;41930:15;:33::i;:::-;38556:3415;;;;38477:3494;;;:::o;1812:226::-;1932:7;1968:12;1960:6;;;;1952:29;;;;-1:-1:-1;;;1952:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1992:9:0;2004:5;2008:1;2004;:5;:::i;:::-;1992:17;1812:226;-1:-1:-1;;;;;1812:226:0:o;43081:1483::-;43164:4;43120:23;21966:18;;;:9;:18;;;;;;43120:50;;43181:25;43252:16;;43230:19;;43209:18;;:40;;;;:::i;:::-;:59;;;;:::i;:::-;43181:87;-1:-1:-1;43292:20:0;;;:46;;-1:-1:-1;43316:22:0;;43292:46;43289:60;;;43341:7;;43081:1483::o;43289:60::-;43382:18;;:22;;43403:1;43382:22;:::i;:::-;43364:15;:40;43361:111;;;43438:18;;:22;;43459:1;43438:22;:::i;:::-;43420:40;;43361:111;43484:12;43566:23;43651:1;43631:17;43610:18;;43592:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;43566:86;-1:-1:-1;43673:51:0;43690:33;43566:86;43690:15;:33;:::i;:::-;43673:16;:51::i;:::-;43931:18;;43766:21;;;;43745:18;;43931:20;;43950:1;;43931:20;:::i;:::-;43910:42;;:17;:42;:::i;:::-;43887:19;;43874:32;;:10;:32;:::i;:::-;:79;;;;:::i;:::-;43847:106;;43964:21;44061:1;44042:18;;:20;;;;:::i;:::-;44021:42;;:17;:42;:::i;:::-;44001:16;;43988:29;;:10;:29;:::i;:::-;:76;;;;:::i;:::-;43964:100;-1:-1:-1;44096:32:0;43964:100;44096:16;:32;:::i;:::-;44077:51;;;;:::i;:::-;44174:1;44153:18;:22;;;44186:19;:23;;;44220:16;:20;44077:51;-1:-1:-1;44264:19:0;;;;;:42;;;44305:1;44287:15;:19;44264:42;44261:119;;;44322:46;44335:15;44352;44322:12;:46::i;:::-;44421:14;;44413:54;;-1:-1:-1;;;;;44421:14:0;;;;44449:13;;44413:54;;;;44449:13;44421:14;44413:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44499:17:0;;44491:65;;44400:67;;-1:-1:-1;;;;;;44499:17:0;;44530:21;;44491:65;;;;44530:21;44499:17;44491:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43081:1483:0:o;37228:248::-;-1:-1:-1;;;;;37311:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;37311:39:0;;;;;;;37371;37311:31;:39;37371:26;:39::i;:::-;37428:40;;;;;;-1:-1:-1;;;;;37428:40:0;;;;;;;;37228:248;;:::o;26829:323::-;-1:-1:-1;;;;;26920:21:0;;26912:65;;;;-1:-1:-1;;;26912:65:0;;19144:2:1;26912:65:0;;;19126:21:1;19183:2;19163:18;;;19156:30;19222:33;19202:18;;;19195:61;19273:18;;26912:65:0;18942:355:1;26912:65:0;27005:12;;:24;;27022:6;27005:16;:24::i;:::-;26990:12;:39;-1:-1:-1;;;;;27061:18:0;;;;;;:9;:18;;;;;;:30;;27084:6;27061:22;:30::i;:::-;-1:-1:-1;;;;;27040:18:0;;;;;;:9;:18;;;;;;:51;;;;27107:37;;27040:18;;;27107:37;;;;27137:6;1889:25:1;;1877:2;1862:18;;1743:177;27107:37:0;;;;;;;;26829:323;;:::o;18729:229::-;-1:-1:-1;;;;;18803:22:0;;18795:73;;;;-1:-1:-1;;;18795:73:0;;19504:2:1;18795:73:0;;;19486:21:1;19543:2;19523:18;;;19516:30;19582:34;19562:18;;;19555:62;-1:-1:-1;;;19633:18:1;;;19626:36;19679:19;;18795:73:0;19302:402:1;18795:73:0;18905:6;;;18884:38;;-1:-1:-1;;;;;18884:38:0;;;;18905:6;;;18884:38;;;18933:6;:17;;-1:-1:-1;;;;;;18933:17:0;-1:-1:-1;;;;;18933:17:0;;;;;;;;;;18729:229::o;41979:573::-;42131:16;;;42145:1;42131:16;;;;;;;;42107:21;;42131:16;;;;;;;;;;-1:-1:-1;42131:16:0;42107:40;;42176:4;42158;42163:1;42158:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42158:23:0;;;-1:-1:-1;;;;;42158:23:0;;;;;42202:9;-1:-1:-1;;;;;42202:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42192:4;42197:1;42192:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;42192:26:0;;;-1:-1:-1;;;;;42192:26:0;;;;;42231:56;42248:4;42263:9;42275:11;42231:8;:56::i;:::-;42326:218;;-1:-1:-1;;;42326:218:0;;-1:-1:-1;;;;;42326:9:0;:60;;;;:218;;42401:11;;42427:1;;42471:4;;42498;;42518:15;;42326:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42034:518;41979:573;:::o;42564:509::-;42712:56;42729:4;42744:9;42756:11;42712:8;:56::i;:::-;42811:254;;-1:-1:-1;;;42811:254:0;;42877:4;42811:254;;;21291:34:1;21341:18;;;21334:34;;;42923:1:0;21384:18:1;;;21377:34;;;21427:18;;;21420:34;43017:6:0;21470:19:1;;;21463:44;43039:15:0;21523:19:1;;;21516:35;42811:9:0;-1:-1:-1;;;;;42811:25:0;;;;42844:9;;21225:19:1;;42811:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42564:509;;:::o;35821:207::-;-1:-1:-1;;;;;35909:39:0;;;;;;:31;:39;;;;;;;;;:52;;-1:-1:-1;;35909:52:0;;;;;;;;;;35977:43;;22041:51:1;;;22108:18;;;22101:50;35977:43:0;;22014:18:1;35977:43:0;;;;;;;35821:207;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;843:131::-;-1:-1:-1;;;;;918:31:1;;908:42;;898:70;;964:1;961;954:12;979:315;1047:6;1055;1108:2;1096:9;1087:7;1083:23;1079:32;1076:52;;;1124:1;1121;1114:12;1076:52;1163:9;1150:23;1182:31;1207:5;1182:31;:::i;:::-;1232:5;1284:2;1269:18;;;;1256:32;;-1:-1:-1;;;979:315:1:o;1491:247::-;1550:6;1603:2;1591:9;1582:7;1578:23;1574:32;1571:52;;;1619:1;1616;1609:12;1571:52;1658:9;1645:23;1677:31;1702:5;1677:31;:::i;1925:127::-;1986:10;1981:3;1977:20;1974:1;1967:31;2017:4;2014:1;2007:15;2041:4;2038:1;2031:15;2057:275;2128:2;2122:9;2193:2;2174:13;;-1:-1:-1;;2170:27:1;2158:40;;2228:18;2213:34;;2249:22;;;2210:62;2207:88;;;2275:18;;:::i;:::-;2311:2;2304:22;2057:275;;-1:-1:-1;2057:275:1:o;2337:183::-;2397:4;2430:18;2422:6;2419:30;2416:56;;;2452:18;;:::i;:::-;-1:-1:-1;2497:1:1;2493:14;2509:4;2489:25;;2337:183::o;2525:662::-;2579:5;2632:3;2625:4;2617:6;2613:17;2609:27;2599:55;;2650:1;2647;2640:12;2599:55;2686:6;2673:20;2712:4;2736:60;2752:43;2792:2;2752:43;:::i;:::-;2736:60;:::i;:::-;2830:15;;;2916:1;2912:10;;;;2900:23;;2896:32;;;2861:12;;;;2940:15;;;2937:35;;;2968:1;2965;2958:12;2937:35;3004:2;2996:6;2992:15;3016:142;3032:6;3027:3;3024:15;3016:142;;;3098:17;;3086:30;;3136:12;;;;3049;;3016:142;;;-1:-1:-1;3176:5:1;2525:662;-1:-1:-1;;;;;;2525:662:1:o;3192:1215::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3654:2;3641:16;3676:4;3700:60;3716:43;3756:2;3716:43;:::i;3700:60::-;3794:15;;;3876:1;3872:10;;;;3864:19;;3860:28;;;3825:12;;;;3900:19;;;3897:39;;;3932:1;3929;3922:12;3897:39;3956:11;;;;3976:217;3992:6;3987:3;3984:15;3976:217;;;4072:3;4059:17;4089:31;4114:5;4089:31;:::i;:::-;4133:18;;4009:12;;;;4171;;;;3976:217;;;4212:5;-1:-1:-1;;4255:18:1;;4242:32;;-1:-1:-1;;4286:16:1;;;4283:36;;;4315:1;4312;4305:12;4283:36;;4338:63;4393:7;4382:8;4371:9;4367:24;4338:63;:::i;:::-;4328:73;;;3192:1215;;;;;:::o;4412:456::-;4489:6;4497;4505;4558:2;4546:9;4537:7;4533:23;4529:32;4526:52;;;4574:1;4571;4564:12;4526:52;4613:9;4600:23;4632:31;4657:5;4632:31;:::i;:::-;4682:5;-1:-1:-1;4739:2:1;4724:18;;4711:32;4752:33;4711:32;4752:33;:::i;:::-;4412:456;;4804:7;;-1:-1:-1;;;4858:2:1;4843:18;;;;4830:32;;4412:456::o;4873:180::-;4932:6;4985:2;4973:9;4964:7;4960:23;4956:32;4953:52;;;5001:1;4998;4991:12;4953:52;-1:-1:-1;5024:23:1;;4873:180;-1:-1:-1;4873:180:1:o;5455:118::-;5541:5;5534:13;5527:21;5520:5;5517:32;5507:60;;5563:1;5560;5553:12;5578:382;5643:6;5651;5704:2;5692:9;5683:7;5679:23;5675:32;5672:52;;;5720:1;5717;5710:12;5672:52;5759:9;5746:23;5778:31;5803:5;5778:31;:::i;:::-;5828:5;-1:-1:-1;5885:2:1;5870:18;;5857:32;5898:30;5857:32;5898:30;:::i;:::-;5947:7;5937:17;;;5578:382;;;;;:::o;5965:316::-;6042:6;6050;6058;6111:2;6099:9;6090:7;6086:23;6082:32;6079:52;;;6127:1;6124;6117:12;6079:52;-1:-1:-1;;6150:23:1;;;6220:2;6205:18;;6192:32;;-1:-1:-1;6271:2:1;6256:18;;;6243:32;;5965:316;-1:-1:-1;5965:316:1:o;6286:388::-;6354:6;6362;6415:2;6403:9;6394:7;6390:23;6386:32;6383:52;;;6431:1;6428;6421:12;6383:52;6470:9;6457:23;6489:31;6514:5;6489:31;:::i;:::-;6539:5;-1:-1:-1;6596:2:1;6581:18;;6568:32;6609:33;6568:32;6609:33;:::i;6679:380::-;6758:1;6754:12;;;;6801;;;6822:61;;6876:4;6868:6;6864:17;6854:27;;6822:61;6929:2;6921:6;6918:14;6898:18;6895:38;6892:161;;;6975:10;6970:3;6966:20;6963:1;6956:31;7010:4;7007:1;7000:15;7038:4;7035:1;7028:15;6892:161;;6679:380;;;:::o;7064:356::-;7266:2;7248:21;;;7285:18;;;7278:30;7344:34;7339:2;7324:18;;7317:62;7411:2;7396:18;;7064:356::o;7425:402::-;7627:2;7609:21;;;7666:2;7646:18;;;7639:30;7705:34;7700:2;7685:18;;7678:62;-1:-1:-1;;;7771:2:1;7756:18;;7749:36;7817:3;7802:19;;7425:402::o;8614:127::-;8675:10;8670:3;8666:20;8663:1;8656:31;8706:4;8703:1;8696:15;8730:4;8727:1;8720:15;8746:127;8807:10;8802:3;8798:20;8795:1;8788:31;8838:4;8835:1;8828:15;8862:4;8859:1;8852:15;8878:135;8917:3;-1:-1:-1;;8938:17:1;;8935:43;;;8958:18;;:::i;:::-;-1:-1:-1;9005:1:1;8994:13;;8878:135::o;9018:168::-;9058:7;9124:1;9120;9116:6;9112:14;9109:1;9106:21;9101:1;9094:9;9087:17;9083:45;9080:71;;;9131:18;;:::i;:::-;-1:-1:-1;9171:9:1;;9018:168::o;9191:217::-;9231:1;9257;9247:132;;9301:10;9296:3;9292:20;9289:1;9282:31;9336:4;9333:1;9326:15;9364:4;9361:1;9354:15;9247:132;-1:-1:-1;9393:9:1;;9191:217::o;10664:128::-;10704:3;10735:1;10731:6;10728:1;10725:13;10722:39;;;10741:18;;:::i;:::-;-1:-1:-1;10777:9:1;;10664:128::o;11867:184::-;11937:6;11990:2;11978:9;11969:7;11965:23;11961:32;11958:52;;;12006:1;12003;11996:12;11958:52;-1:-1:-1;12029:16:1;;11867:184;-1:-1:-1;11867:184:1:o;12335:245::-;12402:6;12455:2;12443:9;12434:7;12430:23;12426:32;12423:52;;;12471:1;12468;12461:12;12423:52;12503:9;12497:16;12522:28;12544:5;12522:28;:::i;16349:401::-;16551:2;16533:21;;;16590:2;16570:18;;;16563:30;16629:34;16624:2;16609:18;;16602:62;-1:-1:-1;;;16695:2:1;16680:18;;16673:35;16740:3;16725:19;;16349:401::o;16755:399::-;16957:2;16939:21;;;16996:2;16976:18;;;16969:30;17035:34;17030:2;17015:18;;17008:62;-1:-1:-1;;;17101:2:1;17086:18;;17079:33;17144:3;17129:19;;16755:399::o;18812:125::-;18852:4;18880:1;18877;18874:8;18871:34;;;18885:18;;:::i;:::-;-1:-1:-1;18922:9:1;;18812:125::o;19709:251::-;19779:6;19832:2;19820:9;19811:7;19807:23;19803:32;19800:52;;;19848:1;19845;19838:12;19800:52;19880:9;19874:16;19899:31;19924:5;19899:31;:::i;19965:980::-;20227:4;20275:3;20264:9;20260:19;20306:6;20295:9;20288:25;20332:2;20370:6;20365:2;20354:9;20350:18;20343:34;20413:3;20408:2;20397:9;20393:18;20386:31;20437:6;20472;20466:13;20503:6;20495;20488:22;20541:3;20530:9;20526:19;20519:26;;20580:2;20572:6;20568:15;20554:29;;20601:1;20611:195;20625:6;20622:1;20619:13;20611:195;;;20690:13;;-1:-1:-1;;;;;20686:39:1;20674:52;;20781:15;;;;20746:12;;;;20722:1;20640:9;20611:195;;;-1:-1:-1;;;;;;;20862:32:1;;;;20857:2;20842:18;;20835:60;-1:-1:-1;;;20926:3:1;20911:19;20904:35;20823:3;19965:980;-1:-1:-1;;;19965:980:1:o;21562:306::-;21650:6;21658;21666;21719:2;21707:9;21698:7;21694:23;21690:32;21687:52;;;21735:1;21732;21725:12;21687:52;21764:9;21758:16;21748:26;;21814:2;21803:9;21799:18;21793:25;21783:35;;21858:2;21847:9;21843:18;21837:25;21827:35;;21562:306;;;;;:::o

Swarm Source

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