ETH Price: $3,268.97 (+0.69%)
Gas: 2 Gwei

Token

FLOKI2.0 (FLOKI2)
 

Overview

Max Total Supply

100,000,000 FLOKI2

Holders

127

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
257,994.02614328 FLOKI2

Value
$0.00
0x0Ae856415Ad838C7E8525f05e0164455511d8B6D
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:
FLOKI2

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-22
*/

pragma solidity 0.8.11;
// SPDX-License-Identifier: Unlicensed

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

interface IBEP20 {
    /**
     * @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 Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

interface IPancakeFactory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IPancakePair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IPancakeRouter01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IPancakeRouter02 is IPancakeRouter01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract FLOKI2 is Context, IBEP20, Ownable {
    using SafeMath for uint256;
    using Address for address;
    
    address private marketingWallet;
    address private devWallet1;
    address private devWallet2;
    address private devWallet3;
    address private liquidityWallet;
    address private deadAddress;
    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) marketMakerPair;

    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private _isExcludedFromMaxTx;
    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 100000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "FLOKI2.0";
    string private _symbol = "FLOKI2";
    uint8 private _decimals = 9;

    uint256 private _taxFee = 2;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 private _liquidityFee = 2;
    uint256 private _previousLiquidityFee = _liquidityFee;
    
    uint256 private _marketingFee = 3;
    uint256 private _previousMarketingFee = _marketingFee;

    uint256 private _devFee = 1;
    uint256 private _previousDevFee = _devFee;
    
    uint256 public _maxTxAmount = 2000000 * 10**9;      // Max Buy/Sell: 2.0%
    uint256 public _maxWalletAmount = 2000000 * 10**9; // Max Wallet:    2.0%
    uint256 private minimumTokensBeforeSwap = 250000 * 10**9; 

    IPancakeRouter02 public immutable pcsV2Router;
    address public immutable pcsV2Pair;
    
    bool inSwapAndLiquify;
	    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor () {
        _rOwned[_msgSender()] = _rTotal;
		
        IPancakeRouter02 _pancakeswapV2Router = IPancakeRouter02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        liquidityWallet = owner();
		marketingWallet = payable(0x58980a889308FCcC01bFDD6B4Edc25e72af3329A);
        devWallet1 = payable(0x8d9b518C9B59480fe5a875BbefEF9C3115699a91);
        devWallet2 = payable(0x1280Faf6C34b0F39823ef0Edbf4c6064674C4b1B);
        devWallet3 = payable(0xf9A546CcA2587df50f0d2bb1f42315251098058D);
        deadAddress = payable(0x000000000000000000000000000000000000dEaD);

         // Create a pancakeswap pair for this new token
        pcsV2Pair = IPancakeFactory(_pancakeswapV2Router.factory()).createPair(address(this), _pancakeswapV2Router.WETH());
        pcsV2Router = _pancakeswapV2Router;
        marketMakerPair[pcsV2Pair] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);

        _isExcludedFromFee[deadAddress] = true;
        _isExcludedFromFee[address(this)] = true;

        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        _isExcludedFromMaxTx[deadAddress] = true;
        _isExcludedFromMaxTx[address(0)] = true;

        excludeFromReward(address(this));
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public override view returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
	
    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
	
    function minimumTokensBeforeSwapAmount() public view returns (uint256) {
        return minimumTokensBeforeSwap;
	}

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeFromReward(address account) public onlyOwner() {

        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }
	
    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if (!_isExcludedFromMaxTx[from] && !_isExcludedFromMaxTx[to] && to != pcsV2Pair) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

            uint256 contractBalanceRecepient = balanceOf(to);
            require(contractBalanceRecepient + amount <= _maxWalletAmount, "Exceeds maximum wallet token amount.");

        }
        uint256 contractTokenBalance = balanceOf(address(this));
			if(contractTokenBalance >= _maxTxAmount) {
            contractTokenBalance = _maxTxAmount;
        }

        bool overMinimumTokenBalance = contractTokenBalance >= minimumTokensBeforeSwap;
        
        if (!inSwapAndLiquify && to == pcsV2Pair) {
            if (overMinimumTokenBalance) {
                contractTokenBalance = minimumTokensBeforeSwap;
                swapTokens(contractTokenBalance);    
            }
        }
		
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }

        if(!marketMakerPair[to] && !marketMakerPair[from]) {
        takeFee = false;
        }
        
        _tokenTransfer(from,to,amount,takeFee);	
    }

    function swapTokens(uint256 contractTokenBalance) private lockTheSwap {
        
        uint256 liquidityAmount = contractTokenBalance.mul(_liquidityFee).div(10**2);
        uint256 half = liquidityAmount.div(2);
        contractTokenBalance = contractTokenBalance.sub(half);
       
        swapTokensForBNB(contractTokenBalance);

        if (_liquidityFee > 0) {
			    
        uint256 newBalance = address(this).balance.mul(_liquidityFee).div(10**2);

        addLiquidity(half, newBalance);
        }

        if (_marketingFee > 0) {
        uint256 marketingAmount = address(this).balance.mul(_marketingFee).div(10**2);

        (bool success, ) = marketingWallet.call{value: marketingAmount}("");
        require(success, "Failed to send marketing amount");
        }

        if (_devFee > 0) {
        uint256 devAmount = address(this).balance.div(3);

        (bool success, ) = devWallet1.call{value: devAmount}("");
        require(success, "Failed to send dev amount");
        (success, ) = devWallet2.call{value: devAmount}("");
        require(success, "Failed to send dev amount");
        (success, ) = devWallet3.call{value: devAmount}("");
        require(success, "Failed to send dev amount");
        }
    }
	
    function swapTokensForBNB(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = pcsV2Router.WETH();

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

        pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(pcsV2Router), tokenAmount);
        pcsV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }
	
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
	    _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
    	_tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
    	_tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateReflectionsFee(tAmount);
        uint256 tLiquidity = calculateFees(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        return _rTotal.div(_tTotal);
    }
	
    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
		if(_isExcluded[address(this)])
			_tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }

    function calculateReflectionsFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }
    
    function calculateFees(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee.add(_marketingFee).add(_devFee)).div(
            10**2
        );
    }
	
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0 && _devFee ==0 && _marketingFee == 0) return;
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousDevFee = _devFee;
        _previousMarketingFee = _marketingFee;
        _taxFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        _devFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _devFee = _previousDevFee;
        _marketingFee = _previousMarketingFee;
    }
	
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

    receive() external payable {}
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumTokensBeforeSwapAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pcsV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pcsV2Router","outputs":[{"internalType":"contract IPancakeRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405267016345785d8a0000600f819055620000209060001962000802565b6200002e9060001962000819565b601055604080518082019091526008808252670464c4f4b49322e360c41b6020909201918252620000629160129162000746565b5060408051808201909152600680825265232627a5a49960d11b6020909201918252620000929160139162000746565b506014805460ff19166009179055600260158190556016819055601781905560185560036019819055601a556001601b819055601c5566071afd498d0000601d819055601e5565e35fa931a000601f55348015620000ef57600080fd5b50620000fb3362000491565b6010543360009081526007602052604081209190915554737a250d5630b4cf539739df2c5dacb4c659f2488d906001600160a01b0316600580546001600160a01b039283166001600160a01b0319918216179091556001805482167358980a889308fccc01bfdd6b4edc25e72af3329a179055600280548216738d9b518c9b59480fe5a875bbefef9c3115699a91179055600380548216731280faf6c34b0f39823ef0edbf4c6064674c4b1b17905560048054821673f9a546cca2587df50f0d2bb1f42315251098058d1781556006805490921661dead179091556040805163c45a015560e01b815290519284169263c45a0155928281019260209291908290030181865afa15801562000213573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023991906200083f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000287573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ad91906200083f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032191906200083f565b6001600160a01b0390811660a08190529082166080526000908152600a60205260409020805460ff19166001179055620003583390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600f54604051620003a091815260200190565b60405180910390a36006546001600160a01b03166000908152600b60205260408082208054600160ff1991821681179092553084529183208054909216811790915590600c90620003f96000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530808252600c909452828120805486166001908117909155600654909216815291822080548516821790559080527f13649b2456f1b42fef0f0040b3aaeabcd21a76a0f3f5defd4f583839455116e88054909316179091556200048a90620004e1565b50620008be565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620004eb6200061d565b6001600160a01b0381166000908152600d602052604090205460ff16156200055a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064015b60405180910390fd5b6001600160a01b03811660009081526007602052604090205415620005b7576001600160a01b0381166000908152600760205260409020546200059d906200067b565b6001600160a01b0382166000908152600860205260409020555b6001600160a01b03166000818152600d60205260408120805460ff19166001908117909155600e805491820181559091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319169091179055565b6000546001600160a01b03163314620006795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000551565b565b6000601054821115620006e45760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840162000551565b6000620006f062000713565b90506200070c81846200073860201b620009b31790919060201c565b9392505050565b600062000733600f546010546200073860201b620009b31790919060201c565b905090565b60006200070c82846200086a565b828054620007549062000881565b90600052602060002090601f016020900481019282620007785760008555620007c3565b82601f106200079357805160ff1916838001178555620007c3565b82800160010185558215620007c3579182015b82811115620007c3578251825591602001919060010190620007a6565b50620007d1929150620007d5565b5090565b5b80821115620007d15760008155600101620007d6565b634e487b7160e01b600052601260045260246000fd5b600082620008145762000814620007ec565b500690565b6000828210156200083a57634e487b7160e01b600052601160045260246000fd5b500390565b6000602082840312156200085257600080fd5b81516001600160a01b03811681146200070c57600080fd5b6000826200087c576200087c620007ec565b500490565b600181811c908216806200089657607f821691505b60208210811415620008b857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611ed9620009156000396000818161030501528181610c560152610d9d015260008181610237015281816114f6015281816115af015281816115eb0152818161165d01526116c50152611ed96000f3fe60806040526004361061016a5760003560e01c80635342acb4116100d15780638da5cb5b1161008a578063a457c2d711610064578063a457c2d714610464578063a9059cbb14610484578063dd62ed3e146104a4578063f2fde38b146104ea57600080fd5b80638da5cb5b1461041c57806395d89b411461043a578063a073d37f1461044f57600080fd5b80635342acb4146103495780636c0a24eb1461038257806370a0823114610398578063715018a6146103b85780637d1db4a5146103cd57806388f82020146103e357600080fd5b80632d838119116101235780632d83811914610271578063313ce5671461029157806339509351146102b35780634549b039146102d357806352143290146102f357806352390c021461032757600080fd5b806306fdde0314610176578063095ea7b3146101a157806313114a9d146101d157806318160ddd146101f057806323b872dd146102055780632d6abf871461022557600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b61050a565b6040516101989190611b1c565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc366004611b86565b61059c565b6040519015158152602001610198565b3480156101dd57600080fd5b506011545b604051908152602001610198565b3480156101fc57600080fd5b50600f546101e2565b34801561021157600080fd5b506101c1610220366004611bb2565b6105b3565b34801561023157600080fd5b506102597f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610198565b34801561027d57600080fd5b506101e261028c366004611bf3565b61061c565b34801561029d57600080fd5b5060145460405160ff9091168152602001610198565b3480156102bf57600080fd5b506101c16102ce366004611b86565b6106a5565b3480156102df57600080fd5b506101e26102ee366004611c0c565b6106db565b3480156102ff57600080fd5b506102597f000000000000000000000000000000000000000000000000000000000000000081565b34801561033357600080fd5b50610347610342366004611c41565b610768565b005b34801561035557600080fd5b506101c1610364366004611c41565b6001600160a01b03166000908152600b602052604090205460ff1690565b34801561038e57600080fd5b506101e2601e5481565b3480156103a457600080fd5b506101e26103b3366004611c41565b610899565b3480156103c457600080fd5b506103476108bb565b3480156103d957600080fd5b506101e2601d5481565b3480156103ef57600080fd5b506101c16103fe366004611c41565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561042857600080fd5b506000546001600160a01b0316610259565b34801561044657600080fd5b5061018b6108cf565b34801561045b57600080fd5b50601f546101e2565b34801561047057600080fd5b506101c161047f366004611b86565b6108de565b34801561049057600080fd5b506101c161049f366004611b86565b61092d565b3480156104b057600080fd5b506101e26104bf366004611c5e565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b3480156104f657600080fd5b50610347610505366004611c41565b61093a565b60606012805461051990611c8c565b80601f016020809104026020016040519081016040528092919081815260200182805461054590611c8c565b80156105925780601f1061056757610100808354040283529160200191610592565b820191906000526020600020905b81548152906001019060200180831161057557829003601f168201915b5050505050905090565b60006105a93384846109bf565b5060015b92915050565b60006105c0848484610ae3565b610612843361060d85604051806060016040528060288152602001611e57602891396001600160a01b038a1660009081526009602090815260408083203384529091529020549190610e94565b6109bf565b5060019392505050565b60006010548211156106885760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b6000610692610ec0565b905061069e83826109b3565b9392505050565b3360008181526009602090815260408083206001600160a01b038716845290915281205490916105a991859061060d9086610ede565b6000600f5483111561072f5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161067f565b8161074e57600061073f84610eea565b509395506105ad945050505050565b600061075984610eea565b509295506105ad945050505050565b610770610f39565b6001600160a01b0381166000908152600d602052604090205460ff16156107d95760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161067f565b6001600160a01b03811660009081526007602052604090205415610833576001600160a01b0381166000908152600760205260409020546108199061061c565b6001600160a01b0382166000908152600860205260409020555b6001600160a01b03166000818152600d60205260408120805460ff19166001908117909155600e805491820181559091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319169091179055565b6001600160a01b0381166000908152600760205260408120546105ad9061061c565b6108c3610f39565b6108cd6000610f93565b565b60606013805461051990611c8c565b60006105a9338461060d85604051806060016040528060258152602001611e7f602591393360009081526009602090815260408083206001600160a01b038d1684529091529020549190610e94565b60006105a9338484610ae3565b610942610f39565b6001600160a01b0381166109a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067f565b6109b081610f93565b50565b600061069e8284611cdd565b6001600160a01b038316610a215760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161067f565b6001600160a01b038216610a825760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161067f565b6001600160a01b0383811660008181526009602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b475760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161067f565b6001600160a01b038216610ba95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161067f565b60008111610c0b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161067f565b6001600160a01b0383166000908152600c602052604090205460ff16158015610c4d57506001600160a01b0382166000908152600c602052604090205460ff16155b8015610c8b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15610d6a57601d54811115610cf35760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161067f565b6000610cfe83610899565b601e54909150610d0e8383611cff565b1115610d685760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b606482015260840161067f565b505b6000610d7530610899565b9050601d548110610d855750601d545b601f54602054908210159060ff16158015610dd157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b15610dea578015610dea57601f549150610dea82610fe3565b6001600160a01b0385166000908152600b602052604090205460019060ff1680610e2c57506001600160a01b0385166000908152600b602052604090205460ff165b15610e35575060005b6001600160a01b0385166000908152600a602052604090205460ff16158015610e7757506001600160a01b0386166000908152600a602052604090205460ff16155b15610e80575060005b610e8c868686846112be565b505050505050565b60008184841115610eb85760405162461bcd60e51b815260040161067f9190611b1c565b505050900390565b6000610ed9600f546010546109b390919063ffffffff16565b905090565b600061069e8284611cff565b6000806000806000806000806000610f018a6113f5565b9250925092506000806000610f1f8d8686610f1a610ec0565b611437565b919f909e50909c50959a5093985091965092945050505050565b6000546001600160a01b031633146108cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161067f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6020805460ff1916600117905560175460009061100e90606490611008908590611487565b906109b3565b9050600061101d8260026109b3565b90506110298382611493565b92506110348361149f565b6017541561106657600061105860646110086017544761148790919063ffffffff16565b90506110648282611657565b505b6019541561113557600061108a60646110086019544761148790919063ffffffff16565b6001546040519192506000916001600160a01b039091169083908381818185875af1925050503d80600081146110dc576040519150601f19603f3d011682016040523d82523d6000602084013e6110e1565b606091505b50509050806111325760405162461bcd60e51b815260206004820152601f60248201527f4661696c656420746f2073656e64206d61726b6574696e6720616d6f756e7400604482015260640161067f565b50505b601b54156112af57600061114a4760036109b3565b6002546040519192506000916001600160a01b039091169083908381818185875af1925050503d806000811461119c576040519150601f19603f3d011682016040523d82523d6000602084013e6111a1565b606091505b50509050806111c25760405162461bcd60e51b815260040161067f90611d17565b6003546040516001600160a01b03909116908390600081818185875af1925050503d806000811461120f576040519150601f19603f3d011682016040523d82523d6000602084013e611214565b606091505b505080915050806112375760405162461bcd60e51b815260040161067f90611d17565b6004546040516001600160a01b03909116908390600081818185875af1925050503d8060008114611284576040519150601f19603f3d011682016040523d82523d6000602084013e611289565b606091505b505080915050806112ac5760405162461bcd60e51b815260040161067f90611d17565b50505b50506020805460ff1916905550565b806112cb576112cb61173d565b6001600160a01b0384166000908152600d602052604090205460ff16801561130c57506001600160a01b0383166000908152600d602052604090205460ff16155b156113215761131c848484611799565b6113cd565b6001600160a01b0384166000908152600d602052604090205460ff1615801561136257506001600160a01b0383166000908152600d602052604090205460ff165b156113725761131c8484846118bf565b6001600160a01b0384166000908152600d602052604090205460ff1680156113b257506001600160a01b0383166000908152600d602052604090205460ff165b156113c25761131c848484611968565b6113cd8484846119db565b806113ef576113ef601654601555601854601755601c54601b55601a54601955565b50505050565b60008060008061140485611a1f565b9050600061141186611a3b565b90506000611429826114238986611493565b90611493565b979296509094509092505050565b60008080806114468886611487565b905060006114548887611487565b905060006114628888611487565b90506000611474826114238686611493565b939b939a50919850919650505050505050565b600061069e8284611d4e565b600061069e8284611d6d565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106114d4576114d4611d84565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611552573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115769190611d9a565b8160018151811061158957611589611d84565b60200260200101906001600160a01b031690816001600160a01b0316815250506115d4307f0000000000000000000000000000000000000000000000000000000000000000846109bf565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611629908590600090869030904290600401611db7565b600060405180830381600087803b15801561164357600080fd5b505af1158015610e8c573d6000803e3d6000fd5b611682307f0000000000000000000000000000000000000000000000000000000000000000846109bf565b60055460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015611711573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117369190611e28565b5050505050565b60155415801561174d5750601754155b80156117595750601b54155b80156117655750601954155b1561176c57565b6015805460165560178054601855601b8054601c5560198054601a55600093849055918390559082905555565b6000806000806000806117ab87610eea565b6001600160a01b038f16600090815260086020526040902054959b509399509197509550935091506117dd9088611493565b6001600160a01b038a1660009081526008602090815260408083209390935560079052205461180c9087611493565b6001600160a01b03808b1660009081526007602052604080822093909355908a168152205461183b9086610ede565b6001600160a01b03891660009081526007602052604090205561185d81611a6f565b6118678483611af8565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516118ac91815260200190565b60405180910390a3505050505050505050565b6000806000806000806118d187610eea565b6001600160a01b038f16600090815260076020526040902054959b509399509197509550935091506119039087611493565b6001600160a01b03808b16600090815260076020908152604080832094909455918b168152600890915220546119399084610ede565b6001600160a01b03891660009081526008602090815260408083209390935560079052205461183b9086610ede565b60008060008060008061197a87610eea565b6001600160a01b038f16600090815260086020526040902054959b509399509197509550935091506119ac9088611493565b6001600160a01b038a166000908152600860209081526040808320939093556007905220546119039087611493565b6000806000806000806119ed87610eea565b6001600160a01b038f16600090815260076020526040902054959b5093995091975095509350915061180c9087611493565b60006105ad60646110086015548561148790919063ffffffff16565b60006105ad6064611008611a68601b54611a62601954601754610ede90919063ffffffff16565b90610ede565b8590611487565b6000611a79610ec0565b90506000611a878383611487565b30600090815260076020526040902054909150611aa49082610ede565b30600090815260076020908152604080832093909355600d9052205460ff1615611af35730600090815260086020526040902054611ae29084610ede565b306000908152600860205260409020555b505050565b601054611b059083611493565b601055601154611b159082610ede565b6011555050565b600060208083528351808285015260005b81811015611b4957858101830151858201604001528201611b2d565b81811115611b5b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146109b057600080fd5b60008060408385031215611b9957600080fd5b8235611ba481611b71565b946020939093013593505050565b600080600060608486031215611bc757600080fd5b8335611bd281611b71565b92506020840135611be281611b71565b929592945050506040919091013590565b600060208284031215611c0557600080fd5b5035919050565b60008060408385031215611c1f57600080fd5b8235915060208301358015158114611c3657600080fd5b809150509250929050565b600060208284031215611c5357600080fd5b813561069e81611b71565b60008060408385031215611c7157600080fd5b8235611c7c81611b71565b91506020830135611c3681611b71565b600181811c90821680611ca057607f821691505b60208210811415611cc157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082611cfa57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611d1257611d12611cc7565b500190565b60208082526019908201527f4661696c656420746f2073656e642064657620616d6f756e7400000000000000604082015260600190565b6000816000190483118215151615611d6857611d68611cc7565b500290565b600082821015611d7f57611d7f611cc7565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611dac57600080fd5b815161069e81611b71565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e075784516001600160a01b031683529383019391830191600101611de2565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611e3d57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a0853dd82fdcc4e0ff4b16521c03d34a86853772fc8f8ab196eee5d38f92c07564736f6c634300080b0033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c80635342acb4116100d15780638da5cb5b1161008a578063a457c2d711610064578063a457c2d714610464578063a9059cbb14610484578063dd62ed3e146104a4578063f2fde38b146104ea57600080fd5b80638da5cb5b1461041c57806395d89b411461043a578063a073d37f1461044f57600080fd5b80635342acb4146103495780636c0a24eb1461038257806370a0823114610398578063715018a6146103b85780637d1db4a5146103cd57806388f82020146103e357600080fd5b80632d838119116101235780632d83811914610271578063313ce5671461029157806339509351146102b35780634549b039146102d357806352143290146102f357806352390c021461032757600080fd5b806306fdde0314610176578063095ea7b3146101a157806313114a9d146101d157806318160ddd146101f057806323b872dd146102055780632d6abf871461022557600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b61050a565b6040516101989190611b1c565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc366004611b86565b61059c565b6040519015158152602001610198565b3480156101dd57600080fd5b506011545b604051908152602001610198565b3480156101fc57600080fd5b50600f546101e2565b34801561021157600080fd5b506101c1610220366004611bb2565b6105b3565b34801561023157600080fd5b506102597f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610198565b34801561027d57600080fd5b506101e261028c366004611bf3565b61061c565b34801561029d57600080fd5b5060145460405160ff9091168152602001610198565b3480156102bf57600080fd5b506101c16102ce366004611b86565b6106a5565b3480156102df57600080fd5b506101e26102ee366004611c0c565b6106db565b3480156102ff57600080fd5b506102597f00000000000000000000000045f13cad91bb532742fd87f3a7f988d4df288eaa81565b34801561033357600080fd5b50610347610342366004611c41565b610768565b005b34801561035557600080fd5b506101c1610364366004611c41565b6001600160a01b03166000908152600b602052604090205460ff1690565b34801561038e57600080fd5b506101e2601e5481565b3480156103a457600080fd5b506101e26103b3366004611c41565b610899565b3480156103c457600080fd5b506103476108bb565b3480156103d957600080fd5b506101e2601d5481565b3480156103ef57600080fd5b506101c16103fe366004611c41565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561042857600080fd5b506000546001600160a01b0316610259565b34801561044657600080fd5b5061018b6108cf565b34801561045b57600080fd5b50601f546101e2565b34801561047057600080fd5b506101c161047f366004611b86565b6108de565b34801561049057600080fd5b506101c161049f366004611b86565b61092d565b3480156104b057600080fd5b506101e26104bf366004611c5e565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b3480156104f657600080fd5b50610347610505366004611c41565b61093a565b60606012805461051990611c8c565b80601f016020809104026020016040519081016040528092919081815260200182805461054590611c8c565b80156105925780601f1061056757610100808354040283529160200191610592565b820191906000526020600020905b81548152906001019060200180831161057557829003601f168201915b5050505050905090565b60006105a93384846109bf565b5060015b92915050565b60006105c0848484610ae3565b610612843361060d85604051806060016040528060288152602001611e57602891396001600160a01b038a1660009081526009602090815260408083203384529091529020549190610e94565b6109bf565b5060019392505050565b60006010548211156106885760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b6000610692610ec0565b905061069e83826109b3565b9392505050565b3360008181526009602090815260408083206001600160a01b038716845290915281205490916105a991859061060d9086610ede565b6000600f5483111561072f5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161067f565b8161074e57600061073f84610eea565b509395506105ad945050505050565b600061075984610eea565b509295506105ad945050505050565b610770610f39565b6001600160a01b0381166000908152600d602052604090205460ff16156107d95760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161067f565b6001600160a01b03811660009081526007602052604090205415610833576001600160a01b0381166000908152600760205260409020546108199061061c565b6001600160a01b0382166000908152600860205260409020555b6001600160a01b03166000818152600d60205260408120805460ff19166001908117909155600e805491820181559091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319169091179055565b6001600160a01b0381166000908152600760205260408120546105ad9061061c565b6108c3610f39565b6108cd6000610f93565b565b60606013805461051990611c8c565b60006105a9338461060d85604051806060016040528060258152602001611e7f602591393360009081526009602090815260408083206001600160a01b038d1684529091529020549190610e94565b60006105a9338484610ae3565b610942610f39565b6001600160a01b0381166109a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067f565b6109b081610f93565b50565b600061069e8284611cdd565b6001600160a01b038316610a215760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161067f565b6001600160a01b038216610a825760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161067f565b6001600160a01b0383811660008181526009602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b475760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161067f565b6001600160a01b038216610ba95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161067f565b60008111610c0b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161067f565b6001600160a01b0383166000908152600c602052604090205460ff16158015610c4d57506001600160a01b0382166000908152600c602052604090205460ff16155b8015610c8b57507f00000000000000000000000045f13cad91bb532742fd87f3a7f988d4df288eaa6001600160a01b0316826001600160a01b031614155b15610d6a57601d54811115610cf35760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161067f565b6000610cfe83610899565b601e54909150610d0e8383611cff565b1115610d685760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b606482015260840161067f565b505b6000610d7530610899565b9050601d548110610d855750601d545b601f54602054908210159060ff16158015610dd157507f00000000000000000000000045f13cad91bb532742fd87f3a7f988d4df288eaa6001600160a01b0316846001600160a01b0316145b15610dea578015610dea57601f549150610dea82610fe3565b6001600160a01b0385166000908152600b602052604090205460019060ff1680610e2c57506001600160a01b0385166000908152600b602052604090205460ff165b15610e35575060005b6001600160a01b0385166000908152600a602052604090205460ff16158015610e7757506001600160a01b0386166000908152600a602052604090205460ff16155b15610e80575060005b610e8c868686846112be565b505050505050565b60008184841115610eb85760405162461bcd60e51b815260040161067f9190611b1c565b505050900390565b6000610ed9600f546010546109b390919063ffffffff16565b905090565b600061069e8284611cff565b6000806000806000806000806000610f018a6113f5565b9250925092506000806000610f1f8d8686610f1a610ec0565b611437565b919f909e50909c50959a5093985091965092945050505050565b6000546001600160a01b031633146108cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161067f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6020805460ff1916600117905560175460009061100e90606490611008908590611487565b906109b3565b9050600061101d8260026109b3565b90506110298382611493565b92506110348361149f565b6017541561106657600061105860646110086017544761148790919063ffffffff16565b90506110648282611657565b505b6019541561113557600061108a60646110086019544761148790919063ffffffff16565b6001546040519192506000916001600160a01b039091169083908381818185875af1925050503d80600081146110dc576040519150601f19603f3d011682016040523d82523d6000602084013e6110e1565b606091505b50509050806111325760405162461bcd60e51b815260206004820152601f60248201527f4661696c656420746f2073656e64206d61726b6574696e6720616d6f756e7400604482015260640161067f565b50505b601b54156112af57600061114a4760036109b3565b6002546040519192506000916001600160a01b039091169083908381818185875af1925050503d806000811461119c576040519150601f19603f3d011682016040523d82523d6000602084013e6111a1565b606091505b50509050806111c25760405162461bcd60e51b815260040161067f90611d17565b6003546040516001600160a01b03909116908390600081818185875af1925050503d806000811461120f576040519150601f19603f3d011682016040523d82523d6000602084013e611214565b606091505b505080915050806112375760405162461bcd60e51b815260040161067f90611d17565b6004546040516001600160a01b03909116908390600081818185875af1925050503d8060008114611284576040519150601f19603f3d011682016040523d82523d6000602084013e611289565b606091505b505080915050806112ac5760405162461bcd60e51b815260040161067f90611d17565b50505b50506020805460ff1916905550565b806112cb576112cb61173d565b6001600160a01b0384166000908152600d602052604090205460ff16801561130c57506001600160a01b0383166000908152600d602052604090205460ff16155b156113215761131c848484611799565b6113cd565b6001600160a01b0384166000908152600d602052604090205460ff1615801561136257506001600160a01b0383166000908152600d602052604090205460ff165b156113725761131c8484846118bf565b6001600160a01b0384166000908152600d602052604090205460ff1680156113b257506001600160a01b0383166000908152600d602052604090205460ff165b156113c25761131c848484611968565b6113cd8484846119db565b806113ef576113ef601654601555601854601755601c54601b55601a54601955565b50505050565b60008060008061140485611a1f565b9050600061141186611a3b565b90506000611429826114238986611493565b90611493565b979296509094509092505050565b60008080806114468886611487565b905060006114548887611487565b905060006114628888611487565b90506000611474826114238686611493565b939b939a50919850919650505050505050565b600061069e8284611d4e565b600061069e8284611d6d565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106114d4576114d4611d84565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611552573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115769190611d9a565b8160018151811061158957611589611d84565b60200260200101906001600160a01b031690816001600160a01b0316815250506115d4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846109bf565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611629908590600090869030904290600401611db7565b600060405180830381600087803b15801561164357600080fd5b505af1158015610e8c573d6000803e3d6000fd5b611682307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846109bf565b60055460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015611711573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117369190611e28565b5050505050565b60155415801561174d5750601754155b80156117595750601b54155b80156117655750601954155b1561176c57565b6015805460165560178054601855601b8054601c5560198054601a55600093849055918390559082905555565b6000806000806000806117ab87610eea565b6001600160a01b038f16600090815260086020526040902054959b509399509197509550935091506117dd9088611493565b6001600160a01b038a1660009081526008602090815260408083209390935560079052205461180c9087611493565b6001600160a01b03808b1660009081526007602052604080822093909355908a168152205461183b9086610ede565b6001600160a01b03891660009081526007602052604090205561185d81611a6f565b6118678483611af8565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516118ac91815260200190565b60405180910390a3505050505050505050565b6000806000806000806118d187610eea565b6001600160a01b038f16600090815260076020526040902054959b509399509197509550935091506119039087611493565b6001600160a01b03808b16600090815260076020908152604080832094909455918b168152600890915220546119399084610ede565b6001600160a01b03891660009081526008602090815260408083209390935560079052205461183b9086610ede565b60008060008060008061197a87610eea565b6001600160a01b038f16600090815260086020526040902054959b509399509197509550935091506119ac9088611493565b6001600160a01b038a166000908152600860209081526040808320939093556007905220546119039087611493565b6000806000806000806119ed87610eea565b6001600160a01b038f16600090815260076020526040902054959b5093995091975095509350915061180c9087611493565b60006105ad60646110086015548561148790919063ffffffff16565b60006105ad6064611008611a68601b54611a62601954601754610ede90919063ffffffff16565b90610ede565b8590611487565b6000611a79610ec0565b90506000611a878383611487565b30600090815260076020526040902054909150611aa49082610ede565b30600090815260076020908152604080832093909355600d9052205460ff1615611af35730600090815260086020526040902054611ae29084610ede565b306000908152600860205260409020555b505050565b601054611b059083611493565b601055601154611b159082610ede565b6011555050565b600060208083528351808285015260005b81811015611b4957858101830151858201604001528201611b2d565b81811115611b5b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146109b057600080fd5b60008060408385031215611b9957600080fd5b8235611ba481611b71565b946020939093013593505050565b600080600060608486031215611bc757600080fd5b8335611bd281611b71565b92506020840135611be281611b71565b929592945050506040919091013590565b600060208284031215611c0557600080fd5b5035919050565b60008060408385031215611c1f57600080fd5b8235915060208301358015158114611c3657600080fd5b809150509250929050565b600060208284031215611c5357600080fd5b813561069e81611b71565b60008060408385031215611c7157600080fd5b8235611c7c81611b71565b91506020830135611c3681611b71565b600181811c90821680611ca057607f821691505b60208210811415611cc157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082611cfa57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611d1257611d12611cc7565b500190565b60208082526019908201527f4661696c656420746f2073656e642064657620616d6f756e7400000000000000604082015260600190565b6000816000190483118215151615611d6857611d68611cc7565b500290565b600082821015611d7f57611d7f611cc7565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611dac57600080fd5b815161069e81611b71565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e075784516001600160a01b031683529383019391830191600101611de2565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611e3d57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a0853dd82fdcc4e0ff4b16521c03d34a86853772fc8f8ab196eee5d38f92c07564736f6c634300080b0033

Deployed Bytecode Sourcemap

27786:17118:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31016:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31868:161;;;;;;;;;;-1:-1:-1;31868:161:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;31868:161:0;1072:187:1;32990:87:0;;;;;;;;;;-1:-1:-1;33059:10:0;;32990:87;;;1410:25:1;;;1398:2;1383:18;32990:87:0;1264:177:1;31293:95:0;;;;;;;;;;-1:-1:-1;31373:7:0;;31293:95;;32037:313;;;;;;;;;;-1:-1:-1;32037:313:0;;;;;:::i;:::-;;:::i;29470:45::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2096:32:1;;;2078:51;;2066:2;2051:18;29470:45:0;1907:228:1;33655:253:0;;;;;;;;;;-1:-1:-1;33655:253:0;;;;;:::i;:::-;;:::i;31202:83::-;;;;;;;;;;-1:-1:-1;31268:9:0;;31202:83;;31268:9;;;;2467:36:1;;2455:2;2440:18;31202:83:0;2325:184:1;32358:218:0;;;;;;;;;;-1:-1:-1;32358:218:0;;;;;:::i;:::-;;:::i;33211:436::-;;;;;;;;;;-1:-1:-1;33211:436:0;;;;;:::i;:::-;;:::i;29522:34::-;;;;;;;;;;;;;;;33916:335;;;;;;;;;;-1:-1:-1;33916:335:0;;;;;:::i;:::-;;:::i;:::-;;44735:123;;;;;;;;;;-1:-1:-1;44735:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;44823:27:0;44799:4;44823:27;;;:18;:27;;;;;;;;;44735:123;29325:49;;;;;;;;;;;;;;;;31396:138;;;;;;;;;;-1:-1:-1;31396:138:0;;;;;:::i;:::-;;:::i;19016:103::-;;;;;;;;;;;;;:::i;29246:45::-;;;;;;;;;;;;;;;;32862:120;;;;;;;;;;-1:-1:-1;32862:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;32954:20:0;32930:4;32954:20;;;:11;:20;;;;;;;;;32862:120;18368:87;;;;;;;;;;-1:-1:-1;18414:7:0;18441:6;-1:-1:-1;;;;;18441:6:0;18368:87;;31107;;;;;;;;;;;;;:::i;33086:117::-;;;;;;;;;;-1:-1:-1;33175:23:0;;33086:117;;32584:269;;;;;;;;;;-1:-1:-1;32584:269:0;;;;;:::i;:::-;;:::i;31542:167::-;;;;;;;;;;-1:-1:-1;31542:167:0;;;;;:::i;:::-;;:::i;31717:143::-;;;;;;;;;;-1:-1:-1;31717:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;31825:18:0;;;31798:7;31825:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;31717:143;19274:201;;;;;;;;;;-1:-1:-1;19274:201:0;;;;;:::i;:::-;;:::i;31016:83::-;31053:13;31086:5;31079:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31016:83;:::o;31868:161::-;31943:4;31960:39;180:10;31983:7;31992:6;31960:8;:39::i;:::-;-1:-1:-1;32017:4:0;31868:161;;;;;:::o;32037:313::-;32135:4;32152:36;32162:6;32170:9;32181:6;32152:9;:36::i;:::-;32199:121;32208:6;180:10;32230:89;32268:6;32230:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32230:19:0;;;;;;:11;:19;;;;;;;;180:10;32230:33;;;;;;;;;;:37;:89::i;:::-;32199:8;:121::i;:::-;-1:-1:-1;32338:4:0;32037:313;;;;;:::o;33655:253::-;33721:7;33760;;33749;:18;;33741:73;;;;-1:-1:-1;;;33741:73:0;;4300:2:1;33741:73:0;;;4282:21:1;4339:2;4319:18;;;4312:30;4378:34;4358:18;;;4351:62;-1:-1:-1;;;4429:18:1;;;4422:40;4479:19;;33741:73:0;;;;;;;;;33825:19;33848:10;:8;:10::i;:::-;33825:33;-1:-1:-1;33876:24:0;:7;33825:33;33876:11;:24::i;:::-;33869:31;33655:253;-1:-1:-1;;;33655:253:0:o;32358:218::-;180:10;32446:4;32495:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;32495:34:0;;;;;;;;;;32446:4;;32463:83;;32486:7;;32495:50;;32534:10;32495:38;:50::i;33211:436::-;33301:7;33340;;33329;:18;;33321:62;;;;-1:-1:-1;;;33321:62:0;;4711:2:1;33321:62:0;;;4693:21:1;4750:2;4730:18;;;4723:30;4789:33;4769:18;;;4762:61;4840:18;;33321:62:0;4509:355:1;33321:62:0;33399:17;33394:246;;33434:15;33458:19;33469:7;33458:10;:19::i;:::-;-1:-1:-1;33433:44:0;;-1:-1:-1;33492:14:0;;-1:-1:-1;;;;;33492:14:0;33394:246;33541:23;33572:19;33583:7;33572:10;:19::i;:::-;-1:-1:-1;33539:52:0;;-1:-1:-1;33606:22:0;;-1:-1:-1;;;;;33606:22:0;33916:335;18254:13;:11;:13::i;:::-;-1:-1:-1;;;;;34001:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34000:21;33992:61;;;::::0;-1:-1:-1;;;33992:61:0;;5071:2:1;33992:61:0::1;::::0;::::1;5053:21:1::0;5110:2;5090:18;;;5083:30;5149:29;5129:18;;;5122:57;5196:18;;33992:61:0::1;4869:351:1::0;33992:61:0::1;-1:-1:-1::0;;;;;34067:16:0;::::1;34086:1;34067:16:::0;;;:7:::1;:16;::::0;;;;;:20;34064:108:::1;;-1:-1:-1::0;;;;;34143:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;34123:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;34104:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;34064:108:::1;-1:-1:-1::0;;;;;34182:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;34182:27:0::1;34205:4;34182:27:::0;;::::1;::::0;;;34220:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;34220:23:0::1;::::0;;::::1;::::0;;33916:335::o;31396:138::-;-1:-1:-1;;;;;31509:16:0;;31462:7;31509:16;;;:7;:16;;;;;;31489:37;;:19;:37::i;19016:103::-;18254:13;:11;:13::i;:::-;19081:30:::1;19108:1;19081:18;:30::i;:::-;19016:103::o:0;31107:87::-;31146:13;31179:7;31172:14;;;;;:::i;32584:269::-;32677:4;32694:129;180:10;32717:7;32726:96;32765:15;32726:96;;;;;;;;;;;;;;;;;180:10;32726:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;32726:34:0;;;;;;;;;;;;:38;:96::i;31542:167::-;31620:4;31637:42;180:10;31661:9;31672:6;31637:9;:42::i;19274:201::-;18254:13;:11;:13::i;:::-;-1:-1:-1;;;;;19363:22:0;::::1;19355:73;;;::::0;-1:-1:-1;;;19355:73:0;;5427:2:1;19355:73:0::1;::::0;::::1;5409:21:1::0;5466:2;5446:18;;;5439:30;5505:34;5485:18;;;5478:62;-1:-1:-1;;;5556:18:1;;;5549:36;5602:19;;19355:73:0::1;5225:402:1::0;19355:73:0::1;19439:28;19458:8;19439:18;:28::i;:::-;19274:201:::0;:::o;6442:98::-;6500:7;6527:5;6531:1;6527;:5;:::i;34260:335::-;-1:-1:-1;;;;;34353:19:0;;34345:68;;;;-1:-1:-1;;;34345:68:0;;6188:2:1;34345:68:0;;;6170:21:1;6227:2;6207:18;;;6200:30;6266:34;6246:18;;;6239:62;-1:-1:-1;;;6317:18:1;;;6310:34;6361:19;;34345:68:0;5986:400:1;34345:68:0;-1:-1:-1;;;;;34432:21:0;;34424:68;;;;-1:-1:-1;;;34424:68:0;;6593:2:1;34424:68:0;;;6575:21:1;6632:2;6612:18;;;6605:30;6671:34;6651:18;;;6644:62;-1:-1:-1;;;6722:18:1;;;6715:32;6764:19;;34424:68:0;6391:398:1;34424:68:0;-1:-1:-1;;;;;34503:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;34555:32;;1410:25:1;;;34555:32:0;;1383:18:1;34555:32:0;;;;;;;34260:335;;;:::o;34603:1596::-;-1:-1:-1;;;;;34691:18:0;;34683:68;;;;-1:-1:-1;;;34683:68:0;;6996:2:1;34683:68:0;;;6978:21:1;7035:2;7015:18;;;7008:30;7074:34;7054:18;;;7047:62;-1:-1:-1;;;7125:18:1;;;7118:35;7170:19;;34683:68:0;6794:401:1;34683:68:0;-1:-1:-1;;;;;34770:16:0;;34762:64;;;;-1:-1:-1;;;34762:64:0;;7402:2:1;34762:64:0;;;7384:21:1;7441:2;7421:18;;;7414:30;7480:34;7460:18;;;7453:62;-1:-1:-1;;;7531:18:1;;;7524:33;7574:19;;34762:64:0;7200:399:1;34762:64:0;34854:1;34845:6;:10;34837:64;;;;-1:-1:-1;;;34837:64:0;;7806:2:1;34837:64:0;;;7788:21:1;7845:2;7825:18;;;7818:30;7884:34;7864:18;;;7857:62;-1:-1:-1;;;7935:18:1;;;7928:39;7984:19;;34837:64:0;7604:405:1;34837:64:0;-1:-1:-1;;;;;34917:26:0;;;;;;:20;:26;;;;;;;;34916:27;:56;;;;-1:-1:-1;;;;;;34948:24:0;;;;;;:20;:24;;;;;;;;34947:25;34916:56;:75;;;;;34982:9;-1:-1:-1;;;;;34976:15:0;:2;-1:-1:-1;;;;;34976:15:0;;;34916:75;34912:367;;;35026:12;;35016:6;:22;;35008:75;;;;-1:-1:-1;;;35008:75:0;;8216:2:1;35008:75:0;;;8198:21:1;8255:2;8235:18;;;8228:30;8294:34;8274:18;;;8267:62;-1:-1:-1;;;8345:18:1;;;8338:38;8393:19;;35008:75:0;8014:404:1;35008:75:0;35100:32;35135:13;35145:2;35135:9;:13::i;:::-;35208:16;;35100:48;;-1:-1:-1;35171:33:0;35198:6;35100:48;35171:33;:::i;:::-;:53;;35163:102;;;;-1:-1:-1;;;35163:102:0;;8758:2:1;35163:102:0;;;8740:21:1;8797:2;8777:18;;;8770:30;8836:34;8816:18;;;8809:62;-1:-1:-1;;;8887:18:1;;;8880:34;8931:19;;35163:102:0;8556:400:1;35163:102:0;34993:286;34912:367;35289:28;35320:24;35338:4;35320:9;:24::i;:::-;35289:55;;35377:12;;35353:20;:36;35350:103;;-1:-1:-1;35429:12:0;;35350:103;35520:23;;35569:16;;35496:47;;;;;35569:16;;35568:17;:36;;;;;35595:9;-1:-1:-1;;;;;35589:15:0;:2;-1:-1:-1;;;;;35589:15:0;;35568:36;35564:233;;;35625:23;35621:165;;;35692:23;;35669:46;;35734:32;35745:20;35734:10;:32::i;:::-;-1:-1:-1;;;;;35938:24:0;;35811:12;35938:24;;;:18;:24;;;;;;35826:4;;35938:24;;;:50;;-1:-1:-1;;;;;;35966:22:0;;;;;;:18;:22;;;;;;;;35938:50;35935:96;;;-1:-1:-1;36014:5:0;35935:96;-1:-1:-1;;;;;36047:19:0;;;;;;:15;:19;;;;;;;;36046:20;:46;;;;-1:-1:-1;;;;;;36071:21:0;;;;;;:15;:21;;;;;;;;36070:22;36046:46;36043:89;;;-1:-1:-1;36115:5:0;36043:89;36152:38;36167:4;36172:2;36175:6;36182:7;36152:14;:38::i;:::-;34672:1527;;;34603:1596;;;:::o;7584:240::-;7704:7;7765:12;7757:6;;;;7749:29;;;;-1:-1:-1;;;7749:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;7800:5:0;;;7584:240::o;42709:96::-;42750:7;42777:20;42789:7;;42777;;:11;;:20;;;;:::i;:::-;42770:27;;42709:96;:::o;5305:98::-;5363:7;5390:5;5394:1;5390;:5;:::i;41507:419::-;41566:7;41575;41584;41593;41602;41611;41632:23;41657:12;41671:18;41693:20;41705:7;41693:11;:20::i;:::-;41631:82;;;;;;41725:15;41742:23;41767:12;41783:50;41795:7;41804:4;41810:10;41822;:8;:10::i;:::-;41783:11;:50::i;:::-;41724:109;;;;-1:-1:-1;41724:109:0;;-1:-1:-1;41884:15:0;;-1:-1:-1;41901:4:0;;-1:-1:-1;41907:10:0;;-1:-1:-1;41507:419:0;;-1:-1:-1;;;;;41507:419:0:o;18533:132::-;18414:7;18441:6;-1:-1:-1;;;;;18441:6:0;180:10;18597:23;18589:68;;;;-1:-1:-1;;;18589:68:0;;9163:2:1;18589:68:0;;;9145:21:1;;;9182:18;;;9175:30;9241:34;9221:18;;;9214:62;9293:18;;18589:68:0;8961:356:1;19635:191:0;19709:16;19728:6;;-1:-1:-1;;;;;19745:17:0;;;-1:-1:-1;;;;;;19745:17:0;;;;;;19778:40;;19728:6;;;;;;;19778:40;;19709:16;19778:40;19698:128;19635:191;:::o;36207:1265::-;29636:16;:23;;-1:-1:-1;;29636:23:0;29655:4;29636:23;;;36349:13:::1;::::0;29636:16;;36324:50:::1;::::0;36368:5:::1;::::0;36324:39:::1;::::0;:20;;:24:::1;:39::i;:::-;:43:::0;::::1;:50::i;:::-;36298:76:::0;-1:-1:-1;36385:12:0::1;36400:22;36298:76:::0;36420:1:::1;36400:19;:22::i;:::-;36385:37:::0;-1:-1:-1;36456:30:0::1;:20:::0;36385:37;36456:24:::1;:30::i;:::-;36433:53;;36506:38;36523:20;36506:16;:38::i;:::-;36561:13;::::0;:17;36557:170:::1;;36600:18;36621:51;36666:5;36621:40;36647:13;;36621:21;:25;;:40;;;;:::i;:51::-;36600:72;;36685:30;36698:4;36704:10;36685:12;:30::i;:::-;36580:147;36557:170;36743:13;::::0;:17;36739:265:::1;;36773:23;36799:51;36844:5;36799:40;36825:13;;36799:21;:25;;:40;;;;:::i;:51::-;36882:15;::::0;:48:::1;::::0;36773:77;;-1:-1:-1;36864:12:0::1;::::0;-1:-1:-1;;;;;36882:15:0;;::::1;::::0;36773:77;;36864:12;36882:48;36864:12;36882:48;36773:77;36882:15;:48:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36863:67;;;36949:7;36941:51;;;::::0;-1:-1:-1;;;36941:51:0;;9734:2:1;36941:51:0::1;::::0;::::1;9716:21:1::0;9773:2;9753:18;;;9746:30;9812:33;9792:18;;;9785:61;9863:18;;36941:51:0::1;9532:355:1::0;36941:51:0::1;36762:242;;36739:265;37020:7;::::0;:11;37016:449:::1;;37044:17;37064:28;:21;37090:1;37064:25;:28::i;:::-;37124:10;::::0;:37:::1;::::0;37044:48;;-1:-1:-1;37106:12:0::1;::::0;-1:-1:-1;;;;;37124:10:0;;::::1;::::0;37044:48;;37106:12;37124:37;37106:12;37124:37;37044:48;37124:10;:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37105:56;;;37180:7;37172:45;;;;-1:-1:-1::0;;;37172:45:0::1;;;;;;;:::i;:::-;37242:10;::::0;:37:::1;::::0;-1:-1:-1;;;;;37242:10:0;;::::1;::::0;37265:9;;37242:37:::1;::::0;;;37265:9;37242:10;:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37228:51;;;;;37298:7;37290:45;;;;-1:-1:-1::0;;;37290:45:0::1;;;;;;;:::i;:::-;37360:10;::::0;:37:::1;::::0;-1:-1:-1;;;;;37360:10:0;;::::1;::::0;37383:9;;37360:37:::1;::::0;;;37383:9;37360:10;:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37346:51;;;;;37416:7;37408:45;;;;-1:-1:-1::0;;;37408:45:0::1;;;;;;;:::i;:::-;37033:432;;37016:449;-1:-1:-1::0;;29682:16:0;:24;;-1:-1:-1;;29682:24:0;;;-1:-1:-1;36207:1265:0:o;38321:704::-;38432:7;38428:40;;38454:14;:12;:14::i;:::-;-1:-1:-1;;;;;38493:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;38517:22:0;;;;;;:11;:22;;;;;;;;38516:23;38493:46;38489:467;;;38556:48;38578:6;38586:9;38597:6;38556:21;:48::i;:::-;38489:467;;;-1:-1:-1;;;;;38627:19:0;;;;;;:11;:19;;;;;;;;38626:20;:46;;;;-1:-1:-1;;;;;;38650:22:0;;;;;;:11;:22;;;;;;;;38626:46;38622:334;;;38689:46;38709:6;38717:9;38728:6;38689:19;:46::i;38622:334::-;-1:-1:-1;;;;;38757:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;38780:22:0;;;;;;:11;:22;;;;;;;;38757:45;38753:203;;;38819:48;38841:6;38849:9;38860:6;38819:21;:48::i;38753:203::-;38900:44;38918:6;38926:9;38937:6;38900:17;:44::i;:::-;38980:7;38976:41;;39002:15;44571;;44561:7;:25;44613:21;;44597:13;:37;44655:15;;44645:7;:25;44697:21;;44681:13;:37;44517:209;39002:15;38321:704;;;;:::o;41934:330::-;41994:7;42003;42012;42032:12;42047:32;42071:7;42047:23;:32::i;:::-;42032:47;;42090:18;42111:22;42125:7;42111:13;:22::i;:::-;42090:43;-1:-1:-1;42144:23:0;42170:33;42090:43;42170:17;:7;42182:4;42170:11;:17::i;:::-;:21;;:33::i;:::-;42144:59;42239:4;;-1:-1:-1;42245:10:0;;-1:-1:-1;41934:330:0;;-1:-1:-1;;;41934:330:0:o;42272:429::-;42387:7;;;;42443:24;:7;42455:11;42443;:24::i;:::-;42425:42;-1:-1:-1;42478:12:0;42493:21;:4;42502:11;42493:8;:21::i;:::-;42478:36;-1:-1:-1;42525:18:0;42546:27;:10;42561:11;42546:14;:27::i;:::-;42525:48;-1:-1:-1;42584:23:0;42610:33;42525:48;42610:17;:7;42622:4;42610:11;:17::i;:33::-;42662:7;;;;-1:-1:-1;42688:4:0;;-1:-1:-1;42272:429:0;;-1:-1:-1;;;;;;;42272:429:0:o;6043:98::-;6101:7;6128:5;6132:1;6128;:5;:::i;5686:98::-;5744:7;5771:5;5775:1;5771;:5;:::i;37481:463::-;37571:16;;;37585:1;37571:16;;;;;;;;37547:21;;37571:16;;;;;;;;;;-1:-1:-1;37571:16:0;37547:40;;37616:4;37598;37603:1;37598:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;37598:23:0;;;-1:-1:-1;;;;;37598:23:0;;;;;37642:11;-1:-1:-1;;;;;37642:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37632:4;37637:1;37632:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;37632:28:0;;;-1:-1:-1;;;;;37632:28:0;;;;;37673:58;37690:4;37705:11;37719;37673:8;:58::i;:::-;37744:192;;-1:-1:-1;;;37744:192:0;;-1:-1:-1;;;;;37744:11:0;:62;;;;:192;;37821:11;;37847:1;;37863:4;;37890;;37910:15;;37744:192;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37952:360;38033:58;38050:4;38065:11;38079;38033:8;:58::i;:::-;38248:15;;38102:202;;-1:-1:-1;;;38102:202:0;;38170:4;38102:202;;;12395:34:1;12445:18;;;12438:34;;;38216:1:0;12488:18:1;;;12481:34;;;12531:18;;;12524:34;-1:-1:-1;;;;;38248:15:0;;;12574:19:1;;;12567:44;38278:15:0;12627:19:1;;;12620:35;38102:11:0;:27;;;;;;38137:9;;12329:19:1;;38102:202:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;37952:360;;:::o;44104:401::-;44150:7;;:12;:34;;;;-1:-1:-1;44166:13:0;;:18;44150:34;:49;;;;-1:-1:-1;44188:7:0;;:11;44150:49;:71;;;;-1:-1:-1;44203:13:0;;:18;44150:71;44147:83;;;44104:401::o;44147:83::-;44258:7;;;44240:15;:25;44300:13;;;44276:21;:37;44342:7;;;44324:15;:25;44384:13;;;44360:21;:37;-1:-1:-1;44408:11:0;;;;44430:17;;;;44458;;;;44486:11;44104:401::o;40134:563::-;40237:15;40254:23;40279:12;40293:23;40318:12;40332:18;40354:19;40365:7;40354:10;:19::i;:::-;-1:-1:-1;;;;;40399:15:0;;;;;;:7;:15;;;;;;40236:137;;-1:-1:-1;40236:137:0;;-1:-1:-1;40236:137:0;;-1:-1:-1;40236:137:0;-1:-1:-1;40236:137:0;-1:-1:-1;40236:137:0;-1:-1:-1;40399:28:0;;40419:7;40399:19;:28::i;:::-;-1:-1:-1;;;;;40381:15:0;;;;;;:7;:15;;;;;;;;:46;;;;40456:7;:15;;;;:28;;40476:7;40456:19;:28::i;:::-;-1:-1:-1;;;;;40438:15:0;;;;;;;:7;:15;;;;;;:46;;;;40516:18;;;;;;;:39;;40539:15;40516:22;:39::i;:::-;-1:-1:-1;;;;;40495:18:0;;;;;;:7;:18;;;;;:60;40569:26;40584:10;40569:14;:26::i;:::-;40606:23;40618:4;40624;40606:11;:23::i;:::-;40662:9;-1:-1:-1;;;;;40645:44:0;40654:6;-1:-1:-1;;;;;40645:44:0;;40673:15;40645:44;;;;1410:25:1;;1398:2;1383:18;;1264:177;40645:44:0;;;;;;;;40225:472;;;;;;40134:563;;;:::o;39543:583::-;39644:15;39661:23;39686:12;39700:23;39725:12;39739:18;39761:19;39772:7;39761:10;:19::i;:::-;-1:-1:-1;;;;;39806:15:0;;;;;;:7;:15;;;;;;39643:137;;-1:-1:-1;39643:137:0;;-1:-1:-1;39643:137:0;;-1:-1:-1;39643:137:0;-1:-1:-1;39643:137:0;-1:-1:-1;39643:137:0;-1:-1:-1;39806:28:0;;39643:137;39806:19;:28::i;:::-;-1:-1:-1;;;;;39788:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;39866:18;;;;;:7;:18;;;;;:39;;39889:15;39866:22;:39::i;:::-;-1:-1:-1;;;;;39845:18:0;;;;;;:7;:18;;;;;;;;:60;;;;39937:7;:18;;;;:39;;39960:15;39937:22;:39::i;40705:639::-;40808:15;40825:23;40850:12;40864:23;40889:12;40903:18;40925:19;40936:7;40925:10;:19::i;:::-;-1:-1:-1;;;;;40970:15:0;;;;;;:7;:15;;;;;;40807:137;;-1:-1:-1;40807:137:0;;-1:-1:-1;40807:137:0;;-1:-1:-1;40807:137:0;-1:-1:-1;40807:137:0;-1:-1:-1;40807:137:0;-1:-1:-1;40970:28:0;;40990:7;40970:19;:28::i;:::-;-1:-1:-1;;;;;40952:15:0;;;;;;:7;:15;;;;;;;;:46;;;;41027:7;:15;;;;:28;;41047:7;41027:19;:28::i;39033:502::-;39132:15;39149:23;39174:12;39188:23;39213:12;39227:18;39249:19;39260:7;39249:10;:19::i;:::-;-1:-1:-1;;;;;39297:15:0;;;;;;:7;:15;;;;;;39131:137;;-1:-1:-1;39131:137:0;;-1:-1:-1;39131:137:0;;-1:-1:-1;39131:137:0;-1:-1:-1;39131:137:0;-1:-1:-1;39131:137:0;-1:-1:-1;39297:28:0;;39131:137;39297:19;:28::i;43731:162::-;43803:7;43830:55;43869:5;43830:20;43842:7;;43830;:11;;:20;;;;:::i;43905:190::-;43967:7;43994:93;44071:5;43994:58;44006:45;44043:7;;44006:32;44024:13;;44006;;:17;;:32;;;;:::i;:::-;:36;;:45::i;:::-;43994:7;;:11;:58::i;43383:340::-;43446:19;43469:10;:8;:10::i;:::-;43446:33;-1:-1:-1;43490:18:0;43511:27;:10;43446:33;43511:14;:27::i;:::-;43590:4;43574:22;;;;:7;:22;;;;;;43490:48;;-1:-1:-1;43574:38:0;;43490:48;43574:26;:38::i;:::-;43565:4;43549:22;;;;:7;:22;;;;;;;;:63;;;;43620:11;:26;;;;;;43617:98;;;43693:4;43677:22;;;;:7;:22;;;;;;:38;;43704:10;43677:26;:38::i;:::-;43668:4;43652:22;;;;:7;:22;;;;;:63;43617:98;43435:288;;43383:340;:::o;41352:147::-;41430:7;;:17;;41442:4;41430:11;:17::i;:::-;41420:7;:27;41471:10;;:20;;41486:4;41471:14;:20::i;:::-;41458:10;:33;-1:-1:-1;;41352:147:0: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;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1446:456::-;1523:6;1531;1539;1592:2;1580:9;1571:7;1567:23;1563:32;1560:52;;;1608:1;1605;1598:12;1560:52;1647:9;1634:23;1666:31;1691:5;1666:31;:::i;:::-;1716:5;-1:-1:-1;1773:2:1;1758:18;;1745:32;1786:33;1745:32;1786:33;:::i;:::-;1446:456;;1838:7;;-1:-1:-1;;;1892:2:1;1877:18;;;;1864:32;;1446:456::o;2140:180::-;2199:6;2252:2;2240:9;2231:7;2227:23;2223:32;2220:52;;;2268:1;2265;2258:12;2220:52;-1:-1:-1;2291:23:1;;2140:180;-1:-1:-1;2140:180:1:o;2514:341::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2692:9;2679:23;2669:33;;2752:2;2741:9;2737:18;2724:32;2799:5;2792:13;2785:21;2778:5;2775:32;2765:60;;2821:1;2818;2811:12;2765:60;2844:5;2834:15;;;2514:341;;;;;:::o;3068:247::-;3127:6;3180:2;3168:9;3159:7;3155:23;3151:32;3148:52;;;3196:1;3193;3186:12;3148:52;3235:9;3222:23;3254:31;3279:5;3254:31;:::i;3320:388::-;3388:6;3396;3449:2;3437:9;3428:7;3424:23;3420:32;3417:52;;;3465:1;3462;3455:12;3417:52;3504:9;3491:23;3523:31;3548:5;3523:31;:::i;:::-;3573:5;-1:-1:-1;3630:2:1;3615:18;;3602:32;3643:33;3602:32;3643:33;:::i;3713:380::-;3792:1;3788:12;;;;3835;;;3856:61;;3910:4;3902:6;3898:17;3888:27;;3856:61;3963:2;3955:6;3952:14;3932:18;3929:38;3926:161;;;4009:10;4004:3;4000:20;3997:1;3990:31;4044:4;4041:1;4034:15;4072:4;4069:1;4062:15;3926:161;;3713:380;;;:::o;5632:127::-;5693:10;5688:3;5684:20;5681:1;5674:31;5724:4;5721:1;5714:15;5748:4;5745:1;5738:15;5764:217;5804:1;5830;5820:132;;5874:10;5869:3;5865:20;5862:1;5855:31;5909:4;5906:1;5899:15;5937:4;5934:1;5927:15;5820:132;-1:-1:-1;5966:9:1;;5764:217::o;8423:128::-;8463:3;8494:1;8490:6;8487:1;8484:13;8481:39;;;8500:18;;:::i;:::-;-1:-1:-1;8536:9:1;;8423:128::o;9892:349::-;10094:2;10076:21;;;10133:2;10113:18;;;10106:30;10172:27;10167:2;10152:18;;10145:55;10232:2;10217:18;;9892:349::o;10246:168::-;10286:7;10352:1;10348;10344:6;10340:14;10337:1;10334:21;10329:1;10322:9;10315:17;10311:45;10308:71;;;10359:18;;:::i;:::-;-1:-1:-1;10399:9:1;;10246:168::o;10419:125::-;10459:4;10487:1;10484;10481:8;10478:34;;;10492:18;;:::i;:::-;-1:-1:-1;10529:9:1;;10419:125::o;10681:127::-;10742:10;10737:3;10733:20;10730:1;10723:31;10773:4;10770:1;10763:15;10797:4;10794:1;10787:15;10813:251;10883:6;10936:2;10924:9;10915:7;10911:23;10907:32;10904:52;;;10952:1;10949;10942:12;10904:52;10984:9;10978:16;11003:31;11028:5;11003:31;:::i;11069:980::-;11331:4;11379:3;11368:9;11364:19;11410:6;11399:9;11392:25;11436:2;11474:6;11469:2;11458:9;11454:18;11447:34;11517:3;11512:2;11501:9;11497:18;11490:31;11541:6;11576;11570:13;11607:6;11599;11592:22;11645:3;11634:9;11630:19;11623:26;;11684:2;11676:6;11672:15;11658:29;;11705:1;11715:195;11729:6;11726:1;11723:13;11715:195;;;11794:13;;-1:-1:-1;;;;;11790:39:1;11778:52;;11885:15;;;;11850:12;;;;11826:1;11744:9;11715:195;;;-1:-1:-1;;;;;;;11966:32:1;;;;11961:2;11946:18;;11939:60;-1:-1:-1;;;12030:3:1;12015:19;12008:35;11927:3;11069:980;-1:-1:-1;;;11069:980:1:o;12666:306::-;12754:6;12762;12770;12823:2;12811:9;12802:7;12798:23;12794:32;12791:52;;;12839:1;12836;12829:12;12791:52;12868:9;12862:16;12852:26;;12918:2;12907:9;12903:18;12897:25;12887:35;;12962:2;12951:9;12947:18;12941:25;12931:35;;12666:306;;;;;:::o

Swarm Source

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