ETH Price: $3,357.17 (+2.89%)
 

Overview

Max Total Supply

1,000,000,000 PMT

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.799606747 PMT

Value
$0.00
0x8872e559d179d6b4cb969c889259474adce32e89
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:
PlanetMetaToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-19
*/

/**

Instagram: @Planetmeta_
Facebook: Planet Meta
Website: https://planetmeta.world/




*/

pragma solidity 0.8.4;

// SPDX-License-Identifier: Apache-2.0

interface IERC20 {
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

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

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract PlanetMetaToken is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcludedFromMaxTx;

    uint256 private _totalSupply = 1000000000 * 10**9;

    string private _name = "Planet Meta Token";
    string private _symbol = "PMT";
    uint8 private _decimals = 9;

    uint256 public _devFee = 1;
    uint256 private _previousDevFee = _devFee;

    address payable private _devWalletAddress =
        payable(0xbB7cD1F0E5c7b4BBec8D4721CDA25dE66bC0D6c5);

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool currentlySwapping;
    bool public swapAndRedirectEthFeesEnabled = true;

    uint256 private tokensSoldThresholdForEthSwap = 100000000000 * 10**9;
    
    uint256 public maxTxAmount = _totalSupply.mul(50).div(1000); // 5%

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndRedirectEthFeesUpdated(bool enabled);
    event OnSwapAndRedirectEthFees(
        uint256 tokensSwapped,
        uint256 ethToDevWallet
    );

    modifier lockTheSwap() {
        currentlySwapping = true;
        _;
        currentlySwapping = false;
    }

    constructor() {
        _balances[_msgSender()] = _totalSupply;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        // exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        // internal exclude from max tx
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    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 view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[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 _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(amount > 0, "Transfer amount must be greater than zero");
        
        if (
            !_isExcludedFromMaxTx[from] &&
            !_isExcludedFromMaxTx[to] // by default false
        ) {
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount"
            );
        }

        // start swap to ETH
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >=
            tokensSoldThresholdForEthSwap;
        if (
            overMinTokenBalance &&
            !currentlySwapping &&
            from != uniswapV2Pair &&
            swapAndRedirectEthFeesEnabled
        ) {
            // add dev fee
            swapAndRedirectEthFees(contractTokenBalance);
        }

        // transfer amount
        _tokenTransfer(from, to, amount);
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) private {
        if (_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) {
            removeAllFee();
        }

        (uint256 tTransferAmount, uint256 tDev) = _getValues(amount);
        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(tTransferAmount);
        _takeDevFee(tDev);

        if (_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) {
            restoreAllFee();
        }

        emit Transfer(sender, recipient, tTransferAmount);
    }

    //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

    function _getValues(uint256 tAmount)
        private
        view
        returns (uint256, uint256)
    {
        uint256 tDev = calculateDevFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tDev);
        return (tTransferAmount, tDev);
    }

    function _takeDevFee(uint256 devFee) private {
        _balances[address(this)] = _balances[address(this)].add(devFee);
    }

    function calculateDevFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_devFee).div(100);
    }

    function removeAllFee() private {
        if (_devFee == 0) return;

        _previousDevFee = _devFee;

        _devFee = 0;
    }

    function restoreAllFee() private {
        _devFee = _previousDevFee;
    }

    function isExcludedFromFee(address account) external view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function swapAndRedirectEthFees(uint256 contractTokenBalance)
        private
        lockTheSwap
    {
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the fee events include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(contractTokenBalance);

        uint256 newBalance = address(this).balance.sub(initialBalance);

        if (newBalance > 0) {
            //
            // send to dev wallet
            //
            sendEthToDevWallet(newBalance);

            emit OnSwapAndRedirectEthFees(contractTokenBalance, newBalance);
        }
    }

    function sendEthToDevWallet(uint256 amount) private {
        _devWalletAddress.transfer(amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function manualSwap() external onlyOwner {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() external onlyOwner {
        uint256 contractEthBalance = address(this).balance;
        sendEthToDevWallet(contractEthBalance);
    }
    
    // for 0.5% input 5, for 1% input 10
    function setMaxTxPercent(uint256 newMaxTx) public onlyOwner {
        require(newMaxTx >= 5, "Max TX should be above 0.5%");
        maxTxAmount = _totalSupply.mul(newMaxTx).div(1000);
    }

    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function setDevFee(uint256 fee) external onlyOwner {
        require(fee <= 10, "Amount exceeds maximum allowed fee");
        _devFee = fee;
    }

    function _setDevWallet(address payable newDevWallet)
        external
        onlyOwner
    {
        _devWalletAddress = newDevWallet;
    }

    function setRouterAddress(address newRouter) external onlyOwner {
        IUniswapV2Router02 _newUniswapRouter = IUniswapV2Router02(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory())
            .createPair(address(this), _newUniswapRouter.WETH());
        uniswapV2Router = _newUniswapRouter;
    }

    function setSwapAndRedirectEthFeesEnabled(bool enabled) external onlyOwner {
        swapAndRedirectEthFeesEnabled = enabled;
        emit SwapAndRedirectEthFeesUpdated(enabled);
    }
}

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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethToDevWallet","type":"uint256"}],"name":"OnSwapAndRedirectEthFees","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":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndRedirectEthFeesUpdated","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":"_devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newDevWallet","type":"address"}],"name":"_setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setDevFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndRedirectEthFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndRedirectEthFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052670de0b6b3a76400006005556040518060400160405280601181526020017f506c616e6574204d65746120546f6b656e000000000000000000000000000000815250600690805190602001906200005d9291906200083a565b506040518060400160405280600381526020017f504d54000000000000000000000000000000000000000000000000000000000081525060079080519060200190620000ab9291906200083a565b506009600860006101000a81548160ff021916908360ff1602179055506001600955600954600a5573bb7cd1f0e5c7b4bbec8d4721cda25de66bc0d6c5600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60156101000a81548160ff02191690831515021790555068056bc75e2d63100000600e55620001886103e8620001746032600554620006cb60201b620019281790919060201c565b6200074f60201b620019a31790919060201c565b600f553480156200019857600080fd5b506000620001ab620007a160201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506005546001600062000260620007a160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002fe57600080fd5b505afa15801562000313573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000339919062000901565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200039c57600080fd5b505afa158015620003b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d7919062000901565b6040518363ffffffff1660e01b8152600401620003f6929190620009b7565b602060405180830381600087803b1580156200041157600080fd5b505af115801562000426573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044c919062000901565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160036000620004e3620007a960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160046000620005a2620007a960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200065b620007a160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600554604051620006bc919062000a2a565b60405180910390a35062000cad565b600080831415620006e0576000905062000749565b60008284620006f0919062000a9b565b905082848262000701919062000a63565b1462000744576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200073b9062000a08565b60405180910390fd5b809150505b92915050565b60006200079983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620007d260201b60201c565b905092915050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080831182906200081c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008139190620009e4565b60405180910390fd5b50600083856200082d919062000a63565b9050809150509392505050565b828054620008489062000b70565b90600052602060002090601f0160209004810192826200086c5760008555620008b8565b82601f106200088757805160ff1916838001178555620008b8565b82800160010185558215620008b8579182015b82811115620008b75782518255916020019190600101906200089a565b5b509050620008c79190620008cb565b5090565b5b80821115620008e6576000816000905550600101620008cc565b5090565b600081519050620008fb8162000c93565b92915050565b6000602082840312156200091457600080fd5b60006200092484828501620008ea565b91505092915050565b620009388162000afc565b82525050565b60006200094b8262000a47565b62000957818562000a52565b93506200096981856020860162000b3a565b620009748162000c33565b840191505092915050565b60006200098e60218362000a52565b91506200099b8262000c44565b604082019050919050565b620009b18162000b30565b82525050565b6000604082019050620009ce60008301856200092d565b620009dd60208301846200092d565b9392505050565b6000602082019050818103600083015262000a0081846200093e565b905092915050565b6000602082019050818103600083015262000a23816200097f565b9050919050565b600060208201905062000a416000830184620009a6565b92915050565b600081519050919050565b600082825260208201905092915050565b600062000a708262000b30565b915062000a7d8362000b30565b92508262000a905762000a8f62000bd5565b5b828204905092915050565b600062000aa88262000b30565b915062000ab58362000b30565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000af15762000af062000ba6565b5b828202905092915050565b600062000b098262000b10565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b5a57808201518184015260208101905062000b3d565b8381111562000b6a576000848401525b50505050565b6000600282049050600182168062000b8957607f821691505b6020821081141562000ba05762000b9f62000c04565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b62000c9e8162000afc565b811462000caa57600080fd5b50565b6135d18062000cbd6000396000f3fe6080604052600436106101c65760003560e01c806351bc3c85116100f7578063a457c2d711610095578063dd62ed3e11610064578063dd62ed3e1461064f578063ea2f0b371461068c578063f2fde38b146106b5578063f4293890146106de576101cd565b8063a457c2d714610581578063a9059cbb146105be578063aa45026b146105fb578063d543dbeb14610626576101cd565b8063715018a6116100d1578063715018a6146104e95780638c0b5e22146105005780638da5cb5b1461052b57806395d89b4114610556576101cd565b806351bc3c85146104585780635342acb41461046f57806370a08231146104ac576101cd565b806323b872dd11610164578063395093511161013e578063395093511461039e57806341cb87fc146103db578063437823ec1461040457806349bd5a5e1461042d576101cd565b806323b872dd1461030d57806326b6308d1461034a578063313ce56714610373576101cd565b8063113201fa116101a0578063113201fa146102635780631694505e1461028e57806318160ddd146102b95780631c75b6b2146102e4576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780630a1f8ea81461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e76106f5565b6040516101f49190612cba565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612919565b610787565b6040516102319190612c84565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612865565b6107a5565b005b34801561026f57600080fd5b5061027861087e565b6040516102859190612c84565b60405180910390f35b34801561029a57600080fd5b506102a3610891565b6040516102b09190612c9f565b60405180910390f35b3480156102c557600080fd5b506102ce6108b7565b6040516102db9190612e3c565b60405180910390f35b3480156102f057600080fd5b5061030b6004803603810190610306919061297e565b6108c1565b005b34801561031957600080fd5b50610334600480360381019061032f91906128ca565b6109a4565b6040516103419190612c84565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612955565b610a7d565b005b34801561037f57600080fd5b50610388610b66565b6040516103959190612eda565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612919565b610b7d565b6040516103d29190612c84565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190612813565b610c30565b005b34801561041057600080fd5b5061042b60048036038101906104269190612813565b610ed6565b005b34801561043957600080fd5b50610442610fc6565b60405161044f9190612c40565b60405180910390f35b34801561046457600080fd5b5061046d610fec565b005b34801561047b57600080fd5b5061049660048036038101906104919190612813565b61109a565b6040516104a39190612c84565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190612813565b6110f0565b6040516104e09190612e3c565b60405180910390f35b3480156104f557600080fd5b506104fe611139565b005b34801561050c57600080fd5b5061051561128c565b6040516105229190612e3c565b60405180910390f35b34801561053757600080fd5b50610540611292565b60405161054d9190612c40565b60405180910390f35b34801561056257600080fd5b5061056b6112bb565b6040516105789190612cba565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612919565b61134d565b6040516105b59190612c84565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190612919565b61141a565b6040516105f29190612c84565b60405180910390f35b34801561060757600080fd5b50610610611438565b60405161061d9190612e3c565b60405180910390f35b34801561063257600080fd5b5061064d6004803603810190610648919061297e565b61143e565b005b34801561065b57600080fd5b506106766004803603810190610671919061288e565b611549565b6040516106839190612e3c565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190612813565b6115d0565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190612813565b6116c0565b005b3480156106ea57600080fd5b506106f3611882565b005b6060600680546107049061312f565b80601f01602080910402602001604051908101604052809291908181526020018280546107309061312f565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b600061079b6107946119ed565b84846119f5565b6001905092915050565b6107ad6119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461083a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083190612d9c565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60159054906101000a900460ff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600554905090565b6108c96119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d90612d9c565b60405180910390fd5b600a81111561099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190612d7c565b60405180910390fd5b8060098190555050565b60006109b1848484611bc0565b610a72846109bd6119ed565b610a6d8560405180606001604052806028815260200161354f60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a236119ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e269092919063ffffffff16565b6119f5565b600190509392505050565b610a856119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990612d9c565b60405180910390fd5b80600d60156101000a81548160ff0219169083151502179055507fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b981604051610b5b9190612c84565b60405180910390a150565b6000600860009054906101000a900460ff16905090565b6000610c26610b8a6119ed565b84610c218560026000610b9b6119ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a90919063ffffffff16565b6119f5565b6001905092915050565b610c386119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90612d9c565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610d1057600080fd5b505afa158015610d24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d48919061283c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610daa57600080fd5b505afa158015610dbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de2919061283c565b6040518363ffffffff1660e01b8152600401610dff929190612c5b565b602060405180830381600087803b158015610e1957600080fd5b505af1158015610e2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e51919061283c565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b610ede6119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290612d9c565b60405180910390fd5b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ff46119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890612d9c565b60405180910390fd5b600061108c306110f0565b905061109781611ee8565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111416119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590612d9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546112ca9061312f565b80601f01602080910402602001604051908101604052809291908181526020018280546112f69061312f565b80156113435780601f1061131857610100808354040283529160200191611343565b820191906000526020600020905b81548152906001019060200180831161132657829003601f168201915b5050505050905090565b600061141061135a6119ed565b8461140b8560405180606001604052806025815260200161357760259139600260006113846119ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e269092919063ffffffff16565b6119f5565b6001905092915050565b600061142e6114276119ed565b8484611bc0565b6001905092915050565b60095481565b6114466119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90612d9c565b60405180910390fd5b6005811015611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e90612d3c565b60405180910390fd5b6115406103e86115328360055461192890919063ffffffff16565b6119a390919063ffffffff16565b600f8190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6115d86119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c90612d9c565b60405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6116c86119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90612d9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90612cdc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61188a6119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90612d9c565b60405180910390fd5b6000479050611925816121ac565b50565b60008083141561193b576000905061199d565b600082846119499190612fd1565b90508284826119589190612fa0565b14611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90612d5c565b60405180910390fd5b809150505b92915050565b60006119e583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612218565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90612dfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90612cfc565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bb39190612e3c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2790612ddc565b60405180910390fd5b60008111611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a90612dbc565b60405180910390fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611d175750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d6257600f54811115611d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5890612e1c565b60405180910390fd5b5b6000611d6d306110f0565b90506000600e548210159050808015611d935750600d60149054906101000a900460ff16155b8015611ded5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611e055750600d60159054906101000a900460ff165b15611e1457611e138261227b565b5b611e1f858585612327565b5050505050565b6000838311158290611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e659190612cba565b60405180910390fd5b5060008385611e7d919061302b565b9050809150509392505050565b6000808284611e999190612f4a565b905083811015611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed590612d1c565b60405180910390fd5b8091505092915050565b6000600267ffffffffffffffff811115611f2b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611f595781602001602082028036833780820191505090505b5090503081600081518110611f97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561203957600080fd5b505afa15801561204d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612071919061283c565b816001815181106120ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061211230600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846119f5565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612176959493929190612e57565b600060405180830381600087803b15801561219057600080fd5b505af11580156121a4573d6000803e3d6000fd5b505050505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612214573d6000803e3d6000fd5b5050565b6000808311829061225f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122569190612cba565b60405180910390fd5b506000838561226e9190612fa0565b9050809150509392505050565b6001600d60146101000a81548160ff02191690831515021790555060004790506122a482611ee8565b60006122b9824761263490919063ffffffff16565b90506000811115612307576122cd816121ac565b7f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c783826040516122fe929190612eb1565b60405180910390a15b50506000600d60146101000a81548160ff02191690831515021790555050565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123c85750600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123d6576123d561267e565b5b6000806123e2836126a2565b9150915061243883600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263490919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124cd82600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a90919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612519816126d6565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125ba5750600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156125c8576125c761276e565b5b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126259190612e3c565b60405180910390a35050505050565b600061267683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e26565b905092915050565b6000600954141561268e576126a0565b600954600a8190555060006009819055505b565b60008060006126b084612779565b905060006126c7828661263490919063ffffffff16565b90508082935093505050915091565b61272881600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600a54600981905550565b60006127a360646127956009548561192890919063ffffffff16565b6119a390919063ffffffff16565b9050919050565b6000813590506127b9816134f2565b92915050565b6000815190506127ce816134f2565b92915050565b6000813590506127e381613509565b92915050565b6000813590506127f881613520565b92915050565b60008135905061280d81613537565b92915050565b60006020828403121561282557600080fd5b6000612833848285016127aa565b91505092915050565b60006020828403121561284e57600080fd5b600061285c848285016127bf565b91505092915050565b60006020828403121561287757600080fd5b6000612885848285016127d4565b91505092915050565b600080604083850312156128a157600080fd5b60006128af858286016127aa565b92505060206128c0858286016127aa565b9150509250929050565b6000806000606084860312156128df57600080fd5b60006128ed868287016127aa565b93505060206128fe868287016127aa565b925050604061290f868287016127fe565b9150509250925092565b6000806040838503121561292c57600080fd5b600061293a858286016127aa565b925050602061294b858286016127fe565b9150509250929050565b60006020828403121561296757600080fd5b6000612975848285016127e9565b91505092915050565b60006020828403121561299057600080fd5b600061299e848285016127fe565b91505092915050565b60006129b383836129bf565b60208301905092915050565b6129c88161305f565b82525050565b6129d78161305f565b82525050565b60006129e882612f05565b6129f28185612f28565b93506129fd83612ef5565b8060005b83811015612a2e578151612a1588826129a7565b9750612a2083612f1b565b925050600181019050612a01565b5085935050505092915050565b612a4481613083565b82525050565b612a53816130c6565b82525050565b612a62816130ea565b82525050565b6000612a7382612f10565b612a7d8185612f39565b9350612a8d8185602086016130fc565b612a96816131ee565b840191505092915050565b6000612aae602683612f39565b9150612ab9826131ff565b604082019050919050565b6000612ad1602283612f39565b9150612adc8261324e565b604082019050919050565b6000612af4601b83612f39565b9150612aff8261329d565b602082019050919050565b6000612b17601b83612f39565b9150612b22826132c6565b602082019050919050565b6000612b3a602183612f39565b9150612b45826132ef565b604082019050919050565b6000612b5d602283612f39565b9150612b688261333e565b604082019050919050565b6000612b80602083612f39565b9150612b8b8261338d565b602082019050919050565b6000612ba3602983612f39565b9150612bae826133b6565b604082019050919050565b6000612bc6602583612f39565b9150612bd182613405565b604082019050919050565b6000612be9602483612f39565b9150612bf482613454565b604082019050919050565b6000612c0c602783612f39565b9150612c17826134a3565b604082019050919050565b612c2b816130af565b82525050565b612c3a816130b9565b82525050565b6000602082019050612c5560008301846129ce565b92915050565b6000604082019050612c7060008301856129ce565b612c7d60208301846129ce565b9392505050565b6000602082019050612c996000830184612a3b565b92915050565b6000602082019050612cb46000830184612a4a565b92915050565b60006020820190508181036000830152612cd48184612a68565b905092915050565b60006020820190508181036000830152612cf581612aa1565b9050919050565b60006020820190508181036000830152612d1581612ac4565b9050919050565b60006020820190508181036000830152612d3581612ae7565b9050919050565b60006020820190508181036000830152612d5581612b0a565b9050919050565b60006020820190508181036000830152612d7581612b2d565b9050919050565b60006020820190508181036000830152612d9581612b50565b9050919050565b60006020820190508181036000830152612db581612b73565b9050919050565b60006020820190508181036000830152612dd581612b96565b9050919050565b60006020820190508181036000830152612df581612bb9565b9050919050565b60006020820190508181036000830152612e1581612bdc565b9050919050565b60006020820190508181036000830152612e3581612bff565b9050919050565b6000602082019050612e516000830184612c22565b92915050565b600060a082019050612e6c6000830188612c22565b612e796020830187612a59565b8181036040830152612e8b81866129dd565b9050612e9a60608301856129ce565b612ea76080830184612c22565b9695505050505050565b6000604082019050612ec66000830185612c22565b612ed36020830184612c22565b9392505050565b6000602082019050612eef6000830184612c31565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612f55826130af565b9150612f60836130af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9557612f94613161565b5b828201905092915050565b6000612fab826130af565b9150612fb6836130af565b925082612fc657612fc5613190565b5b828204905092915050565b6000612fdc826130af565b9150612fe7836130af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130205761301f613161565b5b828202905092915050565b6000613036826130af565b9150613041836130af565b92508282101561305457613053613161565b5b828203905092915050565b600061306a8261308f565b9050919050565b600061307c8261308f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006130d1826130d8565b9050919050565b60006130e38261308f565b9050919050565b60006130f5826130af565b9050919050565b60005b8381101561311a5780820151818401526020810190506130ff565b83811115613129576000848401525b50505050565b6000600282049050600182168061314757607f821691505b6020821081141561315b5761315a6131bf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f4d61782054582073686f756c642062652061626f766520302e35250000000000600082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e742065786365656473206d6178696d756d20616c6c6f776564206660008201527f6565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e7400000000000000000000000000000000000000000000000000602082015250565b6134fb8161305f565b811461350657600080fd5b50565b61351281613071565b811461351d57600080fd5b50565b61352981613083565b811461353457600080fd5b50565b613540816130af565b811461354b57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b9d66264b48777ce0e5dff4242d89a099497b8586f580a311622cc23bcb4b55e64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806351bc3c85116100f7578063a457c2d711610095578063dd62ed3e11610064578063dd62ed3e1461064f578063ea2f0b371461068c578063f2fde38b146106b5578063f4293890146106de576101cd565b8063a457c2d714610581578063a9059cbb146105be578063aa45026b146105fb578063d543dbeb14610626576101cd565b8063715018a6116100d1578063715018a6146104e95780638c0b5e22146105005780638da5cb5b1461052b57806395d89b4114610556576101cd565b806351bc3c85146104585780635342acb41461046f57806370a08231146104ac576101cd565b806323b872dd11610164578063395093511161013e578063395093511461039e57806341cb87fc146103db578063437823ec1461040457806349bd5a5e1461042d576101cd565b806323b872dd1461030d57806326b6308d1461034a578063313ce56714610373576101cd565b8063113201fa116101a0578063113201fa146102635780631694505e1461028e57806318160ddd146102b95780631c75b6b2146102e4576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780630a1f8ea81461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e76106f5565b6040516101f49190612cba565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612919565b610787565b6040516102319190612c84565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612865565b6107a5565b005b34801561026f57600080fd5b5061027861087e565b6040516102859190612c84565b60405180910390f35b34801561029a57600080fd5b506102a3610891565b6040516102b09190612c9f565b60405180910390f35b3480156102c557600080fd5b506102ce6108b7565b6040516102db9190612e3c565b60405180910390f35b3480156102f057600080fd5b5061030b6004803603810190610306919061297e565b6108c1565b005b34801561031957600080fd5b50610334600480360381019061032f91906128ca565b6109a4565b6040516103419190612c84565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612955565b610a7d565b005b34801561037f57600080fd5b50610388610b66565b6040516103959190612eda565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612919565b610b7d565b6040516103d29190612c84565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190612813565b610c30565b005b34801561041057600080fd5b5061042b60048036038101906104269190612813565b610ed6565b005b34801561043957600080fd5b50610442610fc6565b60405161044f9190612c40565b60405180910390f35b34801561046457600080fd5b5061046d610fec565b005b34801561047b57600080fd5b5061049660048036038101906104919190612813565b61109a565b6040516104a39190612c84565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190612813565b6110f0565b6040516104e09190612e3c565b60405180910390f35b3480156104f557600080fd5b506104fe611139565b005b34801561050c57600080fd5b5061051561128c565b6040516105229190612e3c565b60405180910390f35b34801561053757600080fd5b50610540611292565b60405161054d9190612c40565b60405180910390f35b34801561056257600080fd5b5061056b6112bb565b6040516105789190612cba565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612919565b61134d565b6040516105b59190612c84565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190612919565b61141a565b6040516105f29190612c84565b60405180910390f35b34801561060757600080fd5b50610610611438565b60405161061d9190612e3c565b60405180910390f35b34801561063257600080fd5b5061064d6004803603810190610648919061297e565b61143e565b005b34801561065b57600080fd5b506106766004803603810190610671919061288e565b611549565b6040516106839190612e3c565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190612813565b6115d0565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190612813565b6116c0565b005b3480156106ea57600080fd5b506106f3611882565b005b6060600680546107049061312f565b80601f01602080910402602001604051908101604052809291908181526020018280546107309061312f565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b600061079b6107946119ed565b84846119f5565b6001905092915050565b6107ad6119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461083a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083190612d9c565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60159054906101000a900460ff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600554905090565b6108c96119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d90612d9c565b60405180910390fd5b600a81111561099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190612d7c565b60405180910390fd5b8060098190555050565b60006109b1848484611bc0565b610a72846109bd6119ed565b610a6d8560405180606001604052806028815260200161354f60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a236119ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e269092919063ffffffff16565b6119f5565b600190509392505050565b610a856119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990612d9c565b60405180910390fd5b80600d60156101000a81548160ff0219169083151502179055507fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b981604051610b5b9190612c84565b60405180910390a150565b6000600860009054906101000a900460ff16905090565b6000610c26610b8a6119ed565b84610c218560026000610b9b6119ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a90919063ffffffff16565b6119f5565b6001905092915050565b610c386119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90612d9c565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610d1057600080fd5b505afa158015610d24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d48919061283c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610daa57600080fd5b505afa158015610dbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de2919061283c565b6040518363ffffffff1660e01b8152600401610dff929190612c5b565b602060405180830381600087803b158015610e1957600080fd5b505af1158015610e2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e51919061283c565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b610ede6119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290612d9c565b60405180910390fd5b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ff46119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890612d9c565b60405180910390fd5b600061108c306110f0565b905061109781611ee8565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111416119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590612d9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546112ca9061312f565b80601f01602080910402602001604051908101604052809291908181526020018280546112f69061312f565b80156113435780601f1061131857610100808354040283529160200191611343565b820191906000526020600020905b81548152906001019060200180831161132657829003601f168201915b5050505050905090565b600061141061135a6119ed565b8461140b8560405180606001604052806025815260200161357760259139600260006113846119ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e269092919063ffffffff16565b6119f5565b6001905092915050565b600061142e6114276119ed565b8484611bc0565b6001905092915050565b60095481565b6114466119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90612d9c565b60405180910390fd5b6005811015611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e90612d3c565b60405180910390fd5b6115406103e86115328360055461192890919063ffffffff16565b6119a390919063ffffffff16565b600f8190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6115d86119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c90612d9c565b60405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6116c86119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90612d9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90612cdc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61188a6119ed565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90612d9c565b60405180910390fd5b6000479050611925816121ac565b50565b60008083141561193b576000905061199d565b600082846119499190612fd1565b90508284826119589190612fa0565b14611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90612d5c565b60405180910390fd5b809150505b92915050565b60006119e583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612218565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90612dfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90612cfc565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bb39190612e3c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2790612ddc565b60405180910390fd5b60008111611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a90612dbc565b60405180910390fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611d175750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d6257600f54811115611d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5890612e1c565b60405180910390fd5b5b6000611d6d306110f0565b90506000600e548210159050808015611d935750600d60149054906101000a900460ff16155b8015611ded5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611e055750600d60159054906101000a900460ff165b15611e1457611e138261227b565b5b611e1f858585612327565b5050505050565b6000838311158290611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e659190612cba565b60405180910390fd5b5060008385611e7d919061302b565b9050809150509392505050565b6000808284611e999190612f4a565b905083811015611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed590612d1c565b60405180910390fd5b8091505092915050565b6000600267ffffffffffffffff811115611f2b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611f595781602001602082028036833780820191505090505b5090503081600081518110611f97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561203957600080fd5b505afa15801561204d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612071919061283c565b816001815181106120ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061211230600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846119f5565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612176959493929190612e57565b600060405180830381600087803b15801561219057600080fd5b505af11580156121a4573d6000803e3d6000fd5b505050505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612214573d6000803e3d6000fd5b5050565b6000808311829061225f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122569190612cba565b60405180910390fd5b506000838561226e9190612fa0565b9050809150509392505050565b6001600d60146101000a81548160ff02191690831515021790555060004790506122a482611ee8565b60006122b9824761263490919063ffffffff16565b90506000811115612307576122cd816121ac565b7f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c783826040516122fe929190612eb1565b60405180910390a15b50506000600d60146101000a81548160ff02191690831515021790555050565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123c85750600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123d6576123d561267e565b5b6000806123e2836126a2565b9150915061243883600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263490919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124cd82600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a90919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612519816126d6565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125ba5750600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156125c8576125c761276e565b5b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126259190612e3c565b60405180910390a35050505050565b600061267683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e26565b905092915050565b6000600954141561268e576126a0565b600954600a8190555060006009819055505b565b60008060006126b084612779565b905060006126c7828661263490919063ffffffff16565b90508082935093505050915091565b61272881600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600a54600981905550565b60006127a360646127956009548561192890919063ffffffff16565b6119a390919063ffffffff16565b9050919050565b6000813590506127b9816134f2565b92915050565b6000815190506127ce816134f2565b92915050565b6000813590506127e381613509565b92915050565b6000813590506127f881613520565b92915050565b60008135905061280d81613537565b92915050565b60006020828403121561282557600080fd5b6000612833848285016127aa565b91505092915050565b60006020828403121561284e57600080fd5b600061285c848285016127bf565b91505092915050565b60006020828403121561287757600080fd5b6000612885848285016127d4565b91505092915050565b600080604083850312156128a157600080fd5b60006128af858286016127aa565b92505060206128c0858286016127aa565b9150509250929050565b6000806000606084860312156128df57600080fd5b60006128ed868287016127aa565b93505060206128fe868287016127aa565b925050604061290f868287016127fe565b9150509250925092565b6000806040838503121561292c57600080fd5b600061293a858286016127aa565b925050602061294b858286016127fe565b9150509250929050565b60006020828403121561296757600080fd5b6000612975848285016127e9565b91505092915050565b60006020828403121561299057600080fd5b600061299e848285016127fe565b91505092915050565b60006129b383836129bf565b60208301905092915050565b6129c88161305f565b82525050565b6129d78161305f565b82525050565b60006129e882612f05565b6129f28185612f28565b93506129fd83612ef5565b8060005b83811015612a2e578151612a1588826129a7565b9750612a2083612f1b565b925050600181019050612a01565b5085935050505092915050565b612a4481613083565b82525050565b612a53816130c6565b82525050565b612a62816130ea565b82525050565b6000612a7382612f10565b612a7d8185612f39565b9350612a8d8185602086016130fc565b612a96816131ee565b840191505092915050565b6000612aae602683612f39565b9150612ab9826131ff565b604082019050919050565b6000612ad1602283612f39565b9150612adc8261324e565b604082019050919050565b6000612af4601b83612f39565b9150612aff8261329d565b602082019050919050565b6000612b17601b83612f39565b9150612b22826132c6565b602082019050919050565b6000612b3a602183612f39565b9150612b45826132ef565b604082019050919050565b6000612b5d602283612f39565b9150612b688261333e565b604082019050919050565b6000612b80602083612f39565b9150612b8b8261338d565b602082019050919050565b6000612ba3602983612f39565b9150612bae826133b6565b604082019050919050565b6000612bc6602583612f39565b9150612bd182613405565b604082019050919050565b6000612be9602483612f39565b9150612bf482613454565b604082019050919050565b6000612c0c602783612f39565b9150612c17826134a3565b604082019050919050565b612c2b816130af565b82525050565b612c3a816130b9565b82525050565b6000602082019050612c5560008301846129ce565b92915050565b6000604082019050612c7060008301856129ce565b612c7d60208301846129ce565b9392505050565b6000602082019050612c996000830184612a3b565b92915050565b6000602082019050612cb46000830184612a4a565b92915050565b60006020820190508181036000830152612cd48184612a68565b905092915050565b60006020820190508181036000830152612cf581612aa1565b9050919050565b60006020820190508181036000830152612d1581612ac4565b9050919050565b60006020820190508181036000830152612d3581612ae7565b9050919050565b60006020820190508181036000830152612d5581612b0a565b9050919050565b60006020820190508181036000830152612d7581612b2d565b9050919050565b60006020820190508181036000830152612d9581612b50565b9050919050565b60006020820190508181036000830152612db581612b73565b9050919050565b60006020820190508181036000830152612dd581612b96565b9050919050565b60006020820190508181036000830152612df581612bb9565b9050919050565b60006020820190508181036000830152612e1581612bdc565b9050919050565b60006020820190508181036000830152612e3581612bff565b9050919050565b6000602082019050612e516000830184612c22565b92915050565b600060a082019050612e6c6000830188612c22565b612e796020830187612a59565b8181036040830152612e8b81866129dd565b9050612e9a60608301856129ce565b612ea76080830184612c22565b9695505050505050565b6000604082019050612ec66000830185612c22565b612ed36020830184612c22565b9392505050565b6000602082019050612eef6000830184612c31565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612f55826130af565b9150612f60836130af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9557612f94613161565b5b828201905092915050565b6000612fab826130af565b9150612fb6836130af565b925082612fc657612fc5613190565b5b828204905092915050565b6000612fdc826130af565b9150612fe7836130af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130205761301f613161565b5b828202905092915050565b6000613036826130af565b9150613041836130af565b92508282101561305457613053613161565b5b828203905092915050565b600061306a8261308f565b9050919050565b600061307c8261308f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006130d1826130d8565b9050919050565b60006130e38261308f565b9050919050565b60006130f5826130af565b9050919050565b60005b8381101561311a5780820151818401526020810190506130ff565b83811115613129576000848401525b50505050565b6000600282049050600182168061314757607f821691505b6020821081141561315b5761315a6131bf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f4d61782054582073686f756c642062652061626f766520302e35250000000000600082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e742065786365656473206d6178696d756d20616c6c6f776564206660008201527f6565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e7400000000000000000000000000000000000000000000000000602082015250565b6134fb8161305f565b811461350657600080fd5b50565b61351281613071565b811461351d57600080fd5b50565b61352981613083565b811461353457600080fd5b50565b613540816130af565b811461354b57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b9d66264b48777ce0e5dff4242d89a099497b8586f580a311622cc23bcb4b55e64736f6c63430008040033

Deployed Bytecode Sourcemap

26802:11054:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29108:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30019:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37168:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27667:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27553:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29385:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37010:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30220:446;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37666:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29294:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30674:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37322:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36769:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27601:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36193:154;;;;;;;;;;;;;:::i;:::-;;34517:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29493:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16886:150;;;;;;;;;;;;;:::i;:::-;;27805:59;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16244:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29199:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30982:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29620:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27357:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36568:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29827:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36890:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17191:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36355:159;;;;;;;;;;;;;:::i;:::-;;29108:83;29145:13;29178:5;29171:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29108:83;:::o;30019:193::-;30121:4;30143:39;30152:12;:10;:12::i;:::-;30166:7;30175:6;30143:8;:39::i;:::-;30200:4;30193:11;;30019:193;;;;:::o;37168:146::-;16466:12;:10;:12::i;:::-;16456:22;;:6;;;;;;;;;;:22;;;16448:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37294:12:::1;37274:17;;:32;;;;;;;;;;;;;;;;;;37168:146:::0;:::o;27667:48::-;;;;;;;;;;;;;:::o;27553:41::-;;;;;;;;;;;;;:::o;29385:100::-;29438:7;29465:12;;29458:19;;29385:100;:::o;37010:150::-;16466:12;:10;:12::i;:::-;16456:22;;:6;;;;;;;;;;:22;;;16448:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37087:2:::1;37080:3;:9;;37072:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;37149:3;37139:7;:13;;;;37010:150:::0;:::o;30220:446::-;30352:4;30369:36;30379:6;30387:9;30398:6;30369:9;:36::i;:::-;30416:220;30439:6;30460:12;:10;:12::i;:::-;30487:138;30543:6;30487:138;;;;;;;;;;;;;;;;;:11;:19;30499:6;30487:19;;;;;;;;;;;;;;;:33;30507:12;:10;:12::i;:::-;30487:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;30416:8;:220::i;:::-;30654:4;30647:11;;30220:446;;;;;:::o;37666:187::-;16466:12;:10;:12::i;:::-;16456:22;;:6;;;;;;;;;;:22;;;16448:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37784:7:::1;37752:29;;:39;;;;;;;;;;;;;;;;;;37807:38;37837:7;37807:38;;;;;;:::i;:::-;;;;;;;;37666:187:::0;:::o;29294:83::-;29335:5;29360:9;;;;;;;;;;;29353:16;;29294:83;:::o;30674:300::-;30789:4;30811:133;30834:12;:10;:12::i;:::-;30861:7;30883:50;30922:10;30883:11;:25;30895:12;:10;:12::i;:::-;30883:25;;;;;;;;;;;;;;;:34;30909:7;30883:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30811:8;:133::i;:::-;30962:4;30955:11;;30674:300;;;;:::o;37322:336::-;16466:12;:10;:12::i;:::-;16456:22;;:6;;;;;;;;;;:22;;;16448:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37397:36:::1;37455:9;37397:68;;37510:17;:25;;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37492:71;;;37572:4;37579:17;:22;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37492:112;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37476:13;;:128;;;;;;;;;;;;;;;;;;37633:17;37615:15;;:35;;;;;;;;;;;;;;;;;;16526:1;37322:336:::0;:::o;36769:113::-;16466:12;:10;:12::i;:::-;16456:22;;:6;;;;;;;;;;:22;;;16448:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36870:4:::1;36840:18;:27;36859:7;36840:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;36769:113:::0;:::o;27601:28::-;;;;;;;;;;;;;:::o;36193:154::-;16466:12;:10;:12::i;:::-;16456:22;;:6;;;;;;;;;;:22;;;16448:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36245:23:::1;36271:24;36289:4;36271:9;:24::i;:::-;36245:50;;36306:33;36323:15;36306:16;:33::i;:::-;16526:1;36193:154::o:0;34517:126::-;34584:4;34608:18;:27;34627:7;34608:27;;;;;;;;;;;;;;;;;;;;;;;;;34601:34;;34517:126;;;:::o;29493:119::-;29559:7;29586:9;:18;29596:7;29586:18;;;;;;;;;;;;;;;;29579:25;;29493:119;;;:::o;16886:150::-;16466:12;:10;:12::i;:::-;16456:22;;:6;;;;;;;;;;:22;;;16448:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16995:1:::1;16958:40;;16979:6;::::0;::::1;;;;;;;;16958:40;;;;;;;;;;;;17026:1;17009:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16886:150::o:0;27805:59::-;;;;:::o;16244:79::-;16282:7;16309:6;;;;;;;;;;;16302:13;;16244:79;:::o;29199:87::-;29238:13;29271:7;29264:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29199:87;:::o;30982:400::-;31102:4;31124:228;31147:12;:10;:12::i;:::-;31174:7;31196:145;31253:15;31196:145;;;;;;;;;;;;;;;;;:11;:25;31208:12;:10;:12::i;:::-;31196:25;;;;;;;;;;;;;;;:34;31222:7;31196:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;31124:8;:228::i;:::-;31370:4;31363:11;;30982:400;;;;:::o;29620:199::-;29725:4;29747:42;29757:12;:10;:12::i;:::-;29771:9;29782:6;29747:9;:42::i;:::-;29807:4;29800:11;;29620:199;;;;:::o;27357:26::-;;;;:::o;36568:193::-;16466:12;:10;:12::i;:::-;16456:22;;:6;;;;;;;;;;:22;;;16448:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36659:1:::1;36647:8;:13;;36639:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36717:36;36748:4;36717:26;36734:8;36717:12;;:16;;:26;;;;:::i;:::-;:30;;:36;;;;:::i;:::-;36703:11;:50;;;;36568:193:::0;:::o;29827:184::-;29944:7;29976:11;:18;29988:5;29976:18;;;;;;;;;;;;;;;:27;29995:7;29976:27;;;;;;;;;;;;;;;;29969:34;;29827:184;;;;:::o;36890:112::-;16466:12;:10;:12::i;:::-;16456:22;;:6;;;;;;;;;;:22;;;16448:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36989:5:::1;36959:18;:27;36978:7;36959:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;36890:112:::0;:::o;17191:283::-;16466:12;:10;:12::i;:::-;16456:22;;:6;;;;;;;;;;:22;;;16448:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17316:1:::1;17296:22;;:8;:22;;;;17274:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;17429:8;17400:38;;17421:6;::::0;::::1;;;;;;;;17400:38;;;;;;;;;;;;17458:8;17449:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;17191:283:::0;:::o;36355:159::-;16466:12;:10;:12::i;:::-;16456:22;;:6;;;;;;;;;;:22;;;16448:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36407:26:::1;36436:21;36407:50;;36468:38;36487:18;36468;:38::i;:::-;16526:1;36355:159::o:0;5081:471::-;5139:7;5389:1;5384;:6;5380:47;;;5414:1;5407:8;;;;5380:47;5439:9;5455:1;5451;:5;;;;:::i;:::-;5439:17;;5484:1;5479;5475;:5;;;;:::i;:::-;:10;5467:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;5543:1;5536:8;;;5081:471;;;;;:::o;6028:132::-;6086:7;6113:39;6117:1;6120;6113:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6106:46;;6028:132;;;;:::o;8288:98::-;8341:7;8368:10;8361:17;;8288:98;:::o;31390:371::-;31534:1;31517:19;;:5;:19;;;;31509:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31615:1;31596:21;;:7;:21;;;;31588:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31699:6;31669:11;:18;31681:5;31669:18;;;;;;;;;;;;;;;:27;31688:7;31669:27;;;;;;;;;;;;;;;:36;;;;31737:7;31721:32;;31730:5;31721:32;;;31746:6;31721:32;;;;;;:::i;:::-;;;;;;;;31390:371;;;:::o;31769:1105::-;31907:1;31891:18;;:4;:18;;;;31883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31979:1;31970:6;:10;31962:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32066:20;:26;32087:4;32066:26;;;;;;;;;;;;;;;;;;;;;;;;;32065:27;:69;;;;;32110:20;:24;32131:2;32110:24;;;;;;;;;;;;;;;;;;;;;;;;;32109:25;32065:69;32047:268;;;32217:11;;32207:6;:21;;32181:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;32047:268;32357:28;32388:24;32406:4;32388:9;:24::i;:::-;32357:55;;32423:24;32487:29;;32450:20;:66;;32423:93;;32545:19;:54;;;;;32582:17;;;;;;;;;;;32581:18;32545:54;:92;;;;;32624:13;;;;;;;;;;;32616:21;;:4;:21;;;;32545:92;:138;;;;;32654:29;;;;;;;;;;;32545:138;32527:267;;;32738:44;32761:20;32738:22;:44::i;:::-;32527:267;32834:32;32849:4;32855:2;32859:6;32834:14;:32::i;:::-;31769:1105;;;;;:::o;4596:226::-;4716:7;4749:1;4744;:6;;4752:12;4736:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4776:9;4792:1;4788;:5;;;;:::i;:::-;4776:17;;4813:1;4806:8;;;4596:226;;;;;:::o;3693:181::-;3751:7;3771:9;3787:1;3783;:5;;;;:::i;:::-;3771:17;;3812:1;3807;:6;;3799:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3865:1;3858:8;;;3693:181;;;;:::o;35596:589::-;35722:21;35760:1;35746:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35722:40;;35791:4;35773;35778:1;35773:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;35817:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35807:4;35812:1;35807:7;;;;;;;;;;;;;;;;;;;;;:32;;;;;;;;;;;35852:62;35869:4;35884:15;;;;;;;;;;;35902:11;35852:8;:62::i;:::-;35953:15;;;;;;;;;;;:66;;;36034:11;36060:1;36104:4;36131;36151:15;35953:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35596:589;;:::o;35483:105::-;35546:17;;;;;;;;;;;:26;;:34;35573:6;35546:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35483:105;:::o;6656:312::-;6776:7;6808:1;6804;:5;6811:12;6796:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6835:9;6851:1;6847;:5;;;;:::i;:::-;6835:17;;6959:1;6952:8;;;6656:312;;;;;:::o;34651:824::-;28168:4;28148:17;;:24;;;;;;;;;;;;;;;;;;35027:22:::1;35052:21;35027:46;;35118:38;35135:20;35118:16;:38::i;:::-;35169:18;35190:41;35216:14;35190:21;:25;;:41;;;;:::i;:::-;35169:62;;35261:1;35248:10;:14;35244:224;;;35346:30;35365:10;35346:18;:30::i;:::-;35398:58;35423:20;35445:10;35398:58;;;;;;;:::i;:::-;;;;;;;;35244:224;28183:1;;28215:5:::0;28195:17;;:25;;;;;;;;;;;;;;;;;;34651:824;:::o;32955:658::-;33087:18;:26;33106:6;33087:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;33117:18;:29;33136:9;33117:29;;;;;;;;;;;;;;;;;;;;;;;;;33087:59;33083:106;;;33163:14;:12;:14::i;:::-;33083:106;33202:23;33227:12;33243:18;33254:6;33243:10;:18::i;:::-;33201:60;;;;33292:29;33314:6;33292:9;:17;33302:6;33292:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;33272:9;:17;33282:6;33272:17;;;;;;;;;;;;;;;:49;;;;33355:41;33380:15;33355:9;:20;33365:9;33355:20;;;;;;;;;;;;;;;;:24;;:41;;;;:::i;:::-;33332:9;:20;33342:9;33332:20;;;;;;;;;;;;;;;:64;;;;33407:17;33419:4;33407:11;:17::i;:::-;33441:18;:26;33460:6;33441:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;33471:18;:29;33490:9;33471:29;;;;;;;;;;;;;;;;;;;;;;;;;33441:59;33437:107;;;33517:15;:13;:15::i;:::-;33437:107;33578:9;33561:44;;33570:6;33561:44;;;33589:15;33561:44;;;;;;:::i;:::-;;;;;;;;32955:658;;;;;:::o;4157:136::-;4215:7;4242:43;4246:1;4249;4242:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4235:50;;4157:136;;;;:::o;34287:137::-;34345:1;34334:7;;:12;34330:25;;;34348:7;;34330:25;34385:7;;34367:15;:25;;;;34415:1;34405:7;:11;;;;34287:137;:::o;33714:262::-;33800:7;33809;33834:12;33849:24;33865:7;33849:15;:24::i;:::-;33834:39;;33884:23;33910:17;33922:4;33910:7;:11;;:17;;;;:::i;:::-;33884:43;;33946:15;33963:4;33938:30;;;;;;33714:262;;;:::o;33984:127::-;34067:36;34096:6;34067:9;:24;34085:4;34067:24;;;;;;;;;;;;;;;;:28;;:36;;;;:::i;:::-;34040:9;:24;34058:4;34040:24;;;;;;;;;;;;;;;:63;;;;33984:127;:::o;34432:77::-;34486:15;;34476:7;:25;;;;34432:77::o;34119:160::-;34210:7;34242:29;34267:3;34242:20;34254:7;;34242;:11;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;34235:36;;34119:160;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;215:80;;;;:::o;301:155::-;355:5;393:6;380:20;371:29;;409:41;444:5;409:41;:::i;:::-;361:95;;;;:::o;462:133::-;505:5;543:6;530:20;521:29;;559:30;583:5;559:30;:::i;:::-;511:84;;;;:::o;601:139::-;647:5;685:6;672:20;663:29;;701:33;728:5;701:33;:::i;:::-;653:87;;;;:::o;746:262::-;805:6;854:2;842:9;833:7;829:23;825:32;822:2;;;870:1;867;860:12;822:2;913:1;938:53;983:7;974:6;963:9;959:22;938:53;:::i;:::-;928:63;;884:117;812:196;;;;:::o;1014:284::-;1084:6;1133:2;1121:9;1112:7;1108:23;1104:32;1101:2;;;1149:1;1146;1139:12;1101:2;1192:1;1217:64;1273:7;1264:6;1253:9;1249:22;1217:64;:::i;:::-;1207:74;;1163:128;1091:207;;;;:::o;1304:278::-;1371:6;1420:2;1408:9;1399:7;1395:23;1391:32;1388:2;;;1436:1;1433;1426:12;1388:2;1479:1;1504:61;1557:7;1548:6;1537:9;1533:22;1504:61;:::i;:::-;1494:71;;1450:125;1378:204;;;;:::o;1588:407::-;1656:6;1664;1713:2;1701:9;1692:7;1688:23;1684:32;1681:2;;;1729:1;1726;1719:12;1681:2;1772:1;1797:53;1842:7;1833:6;1822:9;1818:22;1797:53;:::i;:::-;1787:63;;1743:117;1899:2;1925:53;1970:7;1961:6;1950:9;1946:22;1925:53;:::i;:::-;1915:63;;1870:118;1671:324;;;;;:::o;2001:552::-;2078:6;2086;2094;2143:2;2131:9;2122:7;2118:23;2114:32;2111:2;;;2159:1;2156;2149:12;2111:2;2202:1;2227:53;2272:7;2263:6;2252:9;2248:22;2227:53;:::i;:::-;2217:63;;2173:117;2329:2;2355:53;2400:7;2391:6;2380:9;2376:22;2355:53;:::i;:::-;2345:63;;2300:118;2457:2;2483:53;2528:7;2519:6;2508:9;2504:22;2483:53;:::i;:::-;2473:63;;2428:118;2101:452;;;;;:::o;2559:407::-;2627:6;2635;2684:2;2672:9;2663:7;2659:23;2655:32;2652:2;;;2700:1;2697;2690:12;2652:2;2743:1;2768:53;2813:7;2804:6;2793:9;2789:22;2768:53;:::i;:::-;2758:63;;2714:117;2870:2;2896:53;2941:7;2932:6;2921:9;2917:22;2896:53;:::i;:::-;2886:63;;2841:118;2642:324;;;;;:::o;2972:256::-;3028:6;3077:2;3065:9;3056:7;3052:23;3048:32;3045:2;;;3093:1;3090;3083:12;3045:2;3136:1;3161:50;3203:7;3194:6;3183:9;3179:22;3161:50;:::i;:::-;3151:60;;3107:114;3035:193;;;;:::o;3234:262::-;3293:6;3342:2;3330:9;3321:7;3317:23;3313:32;3310:2;;;3358:1;3355;3348:12;3310:2;3401:1;3426:53;3471:7;3462:6;3451:9;3447:22;3426:53;:::i;:::-;3416:63;;3372:117;3300:196;;;;:::o;3502:179::-;3571:10;3592:46;3634:3;3626:6;3592:46;:::i;:::-;3670:4;3665:3;3661:14;3647:28;;3582:99;;;;:::o;3687:108::-;3764:24;3782:5;3764:24;:::i;:::-;3759:3;3752:37;3742:53;;:::o;3801:118::-;3888:24;3906:5;3888:24;:::i;:::-;3883:3;3876:37;3866:53;;:::o;3955:732::-;4074:3;4103:54;4151:5;4103:54;:::i;:::-;4173:86;4252:6;4247:3;4173:86;:::i;:::-;4166:93;;4283:56;4333:5;4283:56;:::i;:::-;4362:7;4393:1;4378:284;4403:6;4400:1;4397:13;4378:284;;;4479:6;4473:13;4506:63;4565:3;4550:13;4506:63;:::i;:::-;4499:70;;4592:60;4645:6;4592:60;:::i;:::-;4582:70;;4438:224;4425:1;4422;4418:9;4413:14;;4378:284;;;4382:14;4678:3;4671:10;;4079:608;;;;;;;:::o;4693:109::-;4774:21;4789:5;4774:21;:::i;:::-;4769:3;4762:34;4752:50;;:::o;4808:185::-;4922:64;4980:5;4922:64;:::i;:::-;4917:3;4910:77;4900:93;;:::o;4999:147::-;5094:45;5133:5;5094:45;:::i;:::-;5089:3;5082:58;5072:74;;:::o;5152:364::-;5240:3;5268:39;5301:5;5268:39;:::i;:::-;5323:71;5387:6;5382:3;5323:71;:::i;:::-;5316:78;;5403:52;5448:6;5443:3;5436:4;5429:5;5425:16;5403:52;:::i;:::-;5480:29;5502:6;5480:29;:::i;:::-;5475:3;5471:39;5464:46;;5244:272;;;;;:::o;5522:366::-;5664:3;5685:67;5749:2;5744:3;5685:67;:::i;:::-;5678:74;;5761:93;5850:3;5761:93;:::i;:::-;5879:2;5874:3;5870:12;5863:19;;5668:220;;;:::o;5894:366::-;6036:3;6057:67;6121:2;6116:3;6057:67;:::i;:::-;6050:74;;6133:93;6222:3;6133:93;:::i;:::-;6251:2;6246:3;6242:12;6235:19;;6040:220;;;:::o;6266:366::-;6408:3;6429:67;6493:2;6488:3;6429:67;:::i;:::-;6422:74;;6505:93;6594:3;6505:93;:::i;:::-;6623:2;6618:3;6614:12;6607:19;;6412:220;;;:::o;6638:366::-;6780:3;6801:67;6865:2;6860:3;6801:67;:::i;:::-;6794:74;;6877:93;6966:3;6877:93;:::i;:::-;6995:2;6990:3;6986:12;6979:19;;6784:220;;;:::o;7010:366::-;7152:3;7173:67;7237:2;7232:3;7173:67;:::i;:::-;7166:74;;7249:93;7338:3;7249:93;:::i;:::-;7367:2;7362:3;7358:12;7351:19;;7156:220;;;:::o;7382:366::-;7524:3;7545:67;7609:2;7604:3;7545:67;:::i;:::-;7538:74;;7621:93;7710:3;7621:93;:::i;:::-;7739:2;7734:3;7730:12;7723:19;;7528:220;;;:::o;7754:366::-;7896:3;7917:67;7981:2;7976:3;7917:67;:::i;:::-;7910:74;;7993:93;8082:3;7993:93;:::i;:::-;8111:2;8106:3;8102:12;8095:19;;7900:220;;;:::o;8126:366::-;8268:3;8289:67;8353:2;8348:3;8289:67;:::i;:::-;8282:74;;8365:93;8454:3;8365:93;:::i;:::-;8483:2;8478:3;8474:12;8467:19;;8272:220;;;:::o;8498:366::-;8640:3;8661:67;8725:2;8720:3;8661:67;:::i;:::-;8654:74;;8737:93;8826:3;8737:93;:::i;:::-;8855:2;8850:3;8846:12;8839:19;;8644:220;;;:::o;8870:366::-;9012:3;9033:67;9097:2;9092:3;9033:67;:::i;:::-;9026:74;;9109:93;9198:3;9109:93;:::i;:::-;9227:2;9222:3;9218:12;9211:19;;9016:220;;;:::o;9242:366::-;9384:3;9405:67;9469:2;9464:3;9405:67;:::i;:::-;9398:74;;9481:93;9570:3;9481:93;:::i;:::-;9599:2;9594:3;9590:12;9583:19;;9388:220;;;:::o;9614:118::-;9701:24;9719:5;9701:24;:::i;:::-;9696:3;9689:37;9679:53;;:::o;9738:112::-;9821:22;9837:5;9821:22;:::i;:::-;9816:3;9809:35;9799:51;;:::o;9856:222::-;9949:4;9987:2;9976:9;9972:18;9964:26;;10000:71;10068:1;10057:9;10053:17;10044:6;10000:71;:::i;:::-;9954:124;;;;:::o;10084:332::-;10205:4;10243:2;10232:9;10228:18;10220:26;;10256:71;10324:1;10313:9;10309:17;10300:6;10256:71;:::i;:::-;10337:72;10405:2;10394:9;10390:18;10381:6;10337:72;:::i;:::-;10210:206;;;;;:::o;10422:210::-;10509:4;10547:2;10536:9;10532:18;10524:26;;10560:65;10622:1;10611:9;10607:17;10598:6;10560:65;:::i;:::-;10514:118;;;;:::o;10638:276::-;10758:4;10796:2;10785:9;10781:18;10773:26;;10809:98;10904:1;10893:9;10889:17;10880:6;10809:98;:::i;:::-;10763:151;;;;:::o;10920:313::-;11033:4;11071:2;11060:9;11056:18;11048:26;;11120:9;11114:4;11110:20;11106:1;11095:9;11091:17;11084:47;11148:78;11221:4;11212:6;11148:78;:::i;:::-;11140:86;;11038:195;;;;:::o;11239:419::-;11405:4;11443:2;11432:9;11428:18;11420:26;;11492:9;11486:4;11482:20;11478:1;11467:9;11463:17;11456:47;11520:131;11646:4;11520:131;:::i;:::-;11512:139;;11410:248;;;:::o;11664:419::-;11830:4;11868:2;11857:9;11853:18;11845:26;;11917:9;11911:4;11907:20;11903:1;11892:9;11888:17;11881:47;11945:131;12071:4;11945:131;:::i;:::-;11937:139;;11835:248;;;:::o;12089:419::-;12255:4;12293:2;12282:9;12278:18;12270:26;;12342:9;12336:4;12332:20;12328:1;12317:9;12313:17;12306:47;12370:131;12496:4;12370:131;:::i;:::-;12362:139;;12260:248;;;:::o;12514:419::-;12680:4;12718:2;12707:9;12703:18;12695:26;;12767:9;12761:4;12757:20;12753:1;12742:9;12738:17;12731:47;12795:131;12921:4;12795:131;:::i;:::-;12787:139;;12685:248;;;:::o;12939:419::-;13105:4;13143:2;13132:9;13128:18;13120:26;;13192:9;13186:4;13182:20;13178:1;13167:9;13163:17;13156:47;13220:131;13346:4;13220:131;:::i;:::-;13212:139;;13110:248;;;:::o;13364:419::-;13530:4;13568:2;13557:9;13553:18;13545:26;;13617:9;13611:4;13607:20;13603:1;13592:9;13588:17;13581:47;13645:131;13771:4;13645:131;:::i;:::-;13637:139;;13535:248;;;:::o;13789:419::-;13955:4;13993:2;13982:9;13978:18;13970:26;;14042:9;14036:4;14032:20;14028:1;14017:9;14013:17;14006:47;14070:131;14196:4;14070:131;:::i;:::-;14062:139;;13960:248;;;:::o;14214:419::-;14380:4;14418:2;14407:9;14403:18;14395:26;;14467:9;14461:4;14457:20;14453:1;14442:9;14438:17;14431:47;14495:131;14621:4;14495:131;:::i;:::-;14487:139;;14385:248;;;:::o;14639:419::-;14805:4;14843:2;14832:9;14828:18;14820:26;;14892:9;14886:4;14882:20;14878:1;14867:9;14863:17;14856:47;14920:131;15046:4;14920:131;:::i;:::-;14912:139;;14810:248;;;:::o;15064:419::-;15230:4;15268:2;15257:9;15253:18;15245:26;;15317:9;15311:4;15307:20;15303:1;15292:9;15288:17;15281:47;15345:131;15471:4;15345:131;:::i;:::-;15337:139;;15235:248;;;:::o;15489:419::-;15655:4;15693:2;15682:9;15678:18;15670:26;;15742:9;15736:4;15732:20;15728:1;15717:9;15713:17;15706:47;15770:131;15896:4;15770:131;:::i;:::-;15762:139;;15660:248;;;:::o;15914:222::-;16007:4;16045:2;16034:9;16030:18;16022:26;;16058:71;16126:1;16115:9;16111:17;16102:6;16058:71;:::i;:::-;16012:124;;;;:::o;16142:831::-;16405:4;16443:3;16432:9;16428:19;16420:27;;16457:71;16525:1;16514:9;16510:17;16501:6;16457:71;:::i;:::-;16538:80;16614:2;16603:9;16599:18;16590:6;16538:80;:::i;:::-;16665:9;16659:4;16655:20;16650:2;16639:9;16635:18;16628:48;16693:108;16796:4;16787:6;16693:108;:::i;:::-;16685:116;;16811:72;16879:2;16868:9;16864:18;16855:6;16811:72;:::i;:::-;16893:73;16961:3;16950:9;16946:19;16937:6;16893:73;:::i;:::-;16410:563;;;;;;;;:::o;16979:332::-;17100:4;17138:2;17127:9;17123:18;17115:26;;17151:71;17219:1;17208:9;17204:17;17195:6;17151:71;:::i;:::-;17232:72;17300:2;17289:9;17285:18;17276:6;17232:72;:::i;:::-;17105:206;;;;;:::o;17317:214::-;17406:4;17444:2;17433:9;17429:18;17421:26;;17457:67;17521:1;17510:9;17506:17;17497:6;17457:67;:::i;:::-;17411:120;;;;:::o;17537:132::-;17604:4;17627:3;17619:11;;17657:4;17652:3;17648:14;17640:22;;17609:60;;;:::o;17675:114::-;17742:6;17776:5;17770:12;17760:22;;17749:40;;;:::o;17795:99::-;17847:6;17881:5;17875:12;17865:22;;17854:40;;;:::o;17900:113::-;17970:4;18002;17997:3;17993:14;17985:22;;17975:38;;;:::o;18019:184::-;18118:11;18152:6;18147:3;18140:19;18192:4;18187:3;18183:14;18168:29;;18130:73;;;;:::o;18209:169::-;18293:11;18327:6;18322:3;18315:19;18367:4;18362:3;18358:14;18343:29;;18305:73;;;;:::o;18384:305::-;18424:3;18443:20;18461:1;18443:20;:::i;:::-;18438:25;;18477:20;18495:1;18477:20;:::i;:::-;18472:25;;18631:1;18563:66;18559:74;18556:1;18553:81;18550:2;;;18637:18;;:::i;:::-;18550:2;18681:1;18678;18674:9;18667:16;;18428:261;;;;:::o;18695:185::-;18735:1;18752:20;18770:1;18752:20;:::i;:::-;18747:25;;18786:20;18804:1;18786:20;:::i;:::-;18781:25;;18825:1;18815:2;;18830:18;;:::i;:::-;18815:2;18872:1;18869;18865:9;18860:14;;18737:143;;;;:::o;18886:348::-;18926:7;18949:20;18967:1;18949:20;:::i;:::-;18944:25;;18983:20;19001:1;18983:20;:::i;:::-;18978:25;;19171:1;19103:66;19099:74;19096:1;19093:81;19088:1;19081:9;19074:17;19070:105;19067:2;;;19178:18;;:::i;:::-;19067:2;19226:1;19223;19219:9;19208:20;;18934:300;;;;:::o;19240:191::-;19280:4;19300:20;19318:1;19300:20;:::i;:::-;19295:25;;19334:20;19352:1;19334:20;:::i;:::-;19329:25;;19373:1;19370;19367:8;19364:2;;;19378:18;;:::i;:::-;19364:2;19423:1;19420;19416:9;19408:17;;19285:146;;;;:::o;19437:96::-;19474:7;19503:24;19521:5;19503:24;:::i;:::-;19492:35;;19482:51;;;:::o;19539:104::-;19584:7;19613:24;19631:5;19613:24;:::i;:::-;19602:35;;19592:51;;;:::o;19649:90::-;19683:7;19726:5;19719:13;19712:21;19701:32;;19691:48;;;:::o;19745:126::-;19782:7;19822:42;19815:5;19811:54;19800:65;;19790:81;;;:::o;19877:77::-;19914:7;19943:5;19932:16;;19922:32;;;:::o;19960:86::-;19995:7;20035:4;20028:5;20024:16;20013:27;;20003:43;;;:::o;20052:180::-;20129:9;20162:64;20220:5;20162:64;:::i;:::-;20149:77;;20139:93;;;:::o;20238:140::-;20315:9;20348:24;20366:5;20348:24;:::i;:::-;20335:37;;20325:53;;;:::o;20384:121::-;20442:9;20475:24;20493:5;20475:24;:::i;:::-;20462:37;;20452:53;;;:::o;20511:307::-;20579:1;20589:113;20603:6;20600:1;20597:13;20589:113;;;20688:1;20683:3;20679:11;20673:18;20669:1;20664:3;20660:11;20653:39;20625:2;20622:1;20618:10;20613:15;;20589:113;;;20720:6;20717:1;20714:13;20711:2;;;20800:1;20791:6;20786:3;20782:16;20775:27;20711:2;20560:258;;;;:::o;20824:320::-;20868:6;20905:1;20899:4;20895:12;20885:22;;20952:1;20946:4;20942:12;20973:18;20963:2;;21029:4;21021:6;21017:17;21007:27;;20963:2;21091;21083:6;21080:14;21060:18;21057:38;21054:2;;;21110:18;;:::i;:::-;21054:2;20875:269;;;;:::o;21150:180::-;21198:77;21195:1;21188:88;21295:4;21292:1;21285:15;21319:4;21316:1;21309:15;21336:180;21384:77;21381:1;21374:88;21481:4;21478:1;21471:15;21505:4;21502:1;21495:15;21522:180;21570:77;21567:1;21560:88;21667:4;21664:1;21657:15;21691:4;21688:1;21681:15;21708:102;21749:6;21800:2;21796:7;21791:2;21784:5;21780:14;21776:28;21766:38;;21756:54;;;:::o;21816:225::-;21956:34;21952:1;21944:6;21940:14;21933:58;22025:8;22020:2;22012:6;22008:15;22001:33;21922:119;:::o;22047:221::-;22187:34;22183:1;22175:6;22171:14;22164:58;22256:4;22251:2;22243:6;22239:15;22232:29;22153:115;:::o;22274:177::-;22414:29;22410:1;22402:6;22398:14;22391:53;22380:71;:::o;22457:177::-;22597:29;22593:1;22585:6;22581:14;22574:53;22563:71;:::o;22640:220::-;22780:34;22776:1;22768:6;22764:14;22757:58;22849:3;22844:2;22836:6;22832:15;22825:28;22746:114;:::o;22866:221::-;23006:34;23002:1;22994:6;22990:14;22983:58;23075:4;23070:2;23062:6;23058:15;23051:29;22972:115;:::o;23093:182::-;23233:34;23229:1;23221:6;23217:14;23210:58;23199:76;:::o;23281:228::-;23421:34;23417:1;23409:6;23405:14;23398:58;23490:11;23485:2;23477:6;23473:15;23466:36;23387:122;:::o;23515:224::-;23655:34;23651:1;23643:6;23639:14;23632:58;23724:7;23719:2;23711:6;23707:15;23700:32;23621:118;:::o;23745:223::-;23885:34;23881:1;23873:6;23869:14;23862:58;23954:6;23949:2;23941:6;23937:15;23930:31;23851:117;:::o;23974:226::-;24114:34;24110:1;24102:6;24098:14;24091:58;24183:9;24178:2;24170:6;24166:15;24159:34;24080:120;:::o;24206:122::-;24279:24;24297:5;24279:24;:::i;:::-;24272:5;24269:35;24259:2;;24318:1;24315;24308:12;24259:2;24249:79;:::o;24334:138::-;24415:32;24441:5;24415:32;:::i;:::-;24408:5;24405:43;24395:2;;24462:1;24459;24452:12;24395:2;24385:87;:::o;24478:116::-;24548:21;24563:5;24548:21;:::i;:::-;24541:5;24538:32;24528:2;;24584:1;24581;24574:12;24528:2;24518:76;:::o;24600:122::-;24673:24;24691:5;24673:24;:::i;:::-;24666:5;24663:35;24653:2;;24712:1;24709;24702:12;24653:2;24643:79;:::o

Swarm Source

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