BEP-20
Source Code
Overview
Max Total Supply
14,600,000,000,000,000Jager
Holders
106,919
Market
Price
$0.00 @ 0.000000 BNB
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
JagerHunter
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
No with 200 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
import { JagerHunterBaseToken } from "./JagerHunterBaseToken.sol";
contract JagerHunter is JagerHunterBaseToken
{
constructor()
JagerHunterBaseToken(
//SwapRouter
address(0x10ED43C718714eb63d5aA57B78B54704E256024E),
// Name
unicode"Jager Hunter",
// Symbol
unicode"Jager",
//Decimals
18,
// Supply
146_00_0000_0000_0000,
// FundAddress
address(0xaf5FFa64b0421B4D1e400cad8f2E4B6BA6fbE5b9),
// airdropAddress
address(0x64981BFAc88b2CCFa7d9627387521161D2b89DB0),
// cexAddress
address(0xc7950E38946393d0EAe08F3Ea67F69F54f632754),
// marketAddress
address(0xB69Af387475195107EDc435A6346f606428A9187),
// liquidityAddress
address(0x43567a33FC0D8c90C8f5FCfE5752906CbeC79E84),
// sign
address(0x6999b70785EcE5d4B885E9345202fb832a08D3E8)
)
{}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { ReentrancyGuard } from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import { IUniswapV2Router02 } from "@uniswap/v2-periphery/interfaces/IUniswapV2Router02.sol";
import { IUniswapV2Factory } from "@uniswap/v2-core/interfaces/IUniswapV2Factory.sol";
import { IUniswapV2Pair } from "@uniswap/v2-core/interfaces/IUniswapV2Pair.sol";
import { TransferHelper } from "@uniswap/v3-periphery/libraries/TransferHelper.sol";
import { Math } from "../Library/Math/Math.sol";
import { FeeDistributor } from "./FeeDistributor.sol";
abstract contract JagerHunterBaseToken is ERC20, ReentrancyGuard, Ownable
{
// ERC20
uint8 private _decimals;
uint256 private constant MAX = ~uint256(0);
// FEE
uint256 private constant _preTotalFees = 1000;
uint256 private constant _totalFees = 500;
uint256 private constant _preDuration = 14 days;
uint256 private constant _holdFee = 5000;
uint256 private constant _LPFee = 2000;
uint256 private constant _burnFee = 1600;
uint256 private constant _fundFee = 1400;
uint256 public immutable startTime;
uint256 public immutable minTaxDistributionThreshold;
//SWAP
IUniswapV2Router02 private immutable _swapRouter;
mapping(address => bool) public swapPairList;
mapping(address => bool) public swapRouters;
address public immutable weth;
address public immutable mainPair;
address public immutable fundAddres;
address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
address private constant ZERO = 0x0000000000000000000000000000000000000000;
mapping(address => bool) public feeWhiteList;
//
FeeDistributor public immutable feeDistributor;
bool private inSwap;
modifier lockTheSwap() {
inSwap = true;
_;
inSwap = false;
}
constructor(address RouterAddress, string memory Name, string memory Symbol, uint8 Decimals, uint256 Supply, address FundAddress, address airdropAddress, address cexAddress, address marketAddress,address liquidityAddress,address sign)
ERC20(Name,Symbol)
{
require(FundAddress != address(0) && airdropAddress!= address(0) && cexAddress != address(0) && marketAddress != address(0) && liquidityAddress != address(0) && sign != address(0), "PARAMETER ERROR");
_decimals = Decimals;
fundAddres = FundAddress;
_swapRouter = IUniswapV2Router02(RouterAddress);
_approve(address(this), RouterAddress, MAX);
swapRouters[RouterAddress] = true;
IUniswapV2Factory swapFactory = IUniswapV2Factory(_swapRouter.factory());
weth = _swapRouter.WETH();
mainPair = swapFactory.createPair(address(this), weth);
swapPairList[mainPair] = true;
startTime = block.timestamp;
uint256 tokenUnit = 10 ** _decimals;
minTaxDistributionThreshold = 1e8 * tokenUnit;
feeDistributor = new FeeDistributor(address(this),sign);
setExcludeAndFeeWhite();
mintToken(Supply * tokenUnit, airdropAddress,cexAddress, marketAddress,liquidityAddress);
}
function setExcludeAndFeeWhite() private
{
feeDistributor.setExcludeHoldProvider(fundAddres, true);
feeDistributor.setExcludeHoldProvider(address(feeDistributor), true);
feeDistributor.setExcludeHoldProvider(address(_swapRouter), true);
feeDistributor.setExcludeHoldProvider(address(mainPair), true);
feeDistributor.setExcludeHoldProvider(address(this), true);
feeDistributor.setExcludeHoldProvider(DEAD, true);
feeDistributor.setExcludeHoldProvider(ZERO, true);
feeWhiteList[address(this)] = true;
feeWhiteList[fundAddres] = true;
feeWhiteList[address(feeDistributor)] = true;
}
function mintToken(uint256 supply, address airdropAddress, address cexAddress, address marketAddress,address liquidityAddress) private
{
feeDistributor.setExcludeHoldProvider(airdropAddress, true);
feeDistributor.setExcludeHoldProvider(cexAddress, true);
feeDistributor.setExcludeHoldProvider(marketAddress, true);
feeDistributor.setExcludeHoldProvider(liquidityAddress, true);
feeWhiteList[airdropAddress] = true;
feeWhiteList[cexAddress] = true;
feeWhiteList[marketAddress] = true;
feeWhiteList[liquidityAddress] = true;
_mint(airdropAddress, supply * 9050 / 10000);
_mint(cexAddress, supply * 400 / 10000);
_mint(marketAddress, supply * 540 / 10000);
_mint(liquidityAddress, supply * 10 / 10000);
}
// ERC20 Functions
function decimals() public view override returns (uint8)
{
return _decimals;
}
function transfer(address to, uint256 amount) public override returns (bool)
{
return doTransfer(_msgSender(), to, amount);
}
function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool)
{
address spender = _msgSender();
_spendAllowance(sender, spender, amount);
return doTransfer(sender, recipient, amount);
}
function doTransfer(address sender, address recipient, uint256 amount) private returns (bool)
{
if (inSwap == true)
{
_transfer(sender, recipient, amount);
return true;
}
bool takeFee;
if (feeWhiteList[sender] == false && feeWhiteList[recipient] == false && (swapPairList[sender] == true || swapPairList[recipient] == true))
{
takeFee = true;
}
if(inSwap == false && swapPairList[_msgSender()] == false && swapRouters[sender] == false)
{
doSwapFund();
}
uint256 amountReceived = takeFee == true ? takeTransferFee(sender, amount) : amount;
_transfer(sender, recipient, amountReceived);
return true;
}
event AddLiquidityError(uint256 addLPAmount, uint256 addLPETH);
function doSwapFund() private lockTheSwap
{
uint256 taxAmount = balanceOf(address(this));
if(taxAmount < minTaxDistributionThreshold)
return;
uint256 totalFee = _burnFee + _holdFee + _LPFee + _fundFee;
uint256 burnAmount = taxAmount * _burnFee / totalFee;
taxAmount = taxAmount - burnAmount;
uint256 totalTokenFee = _holdFee + _LPFee;
uint256 fundFee = _fundFee * 2;
uint256 totalEthFee = fundFee + _holdFee + _LPFee;
totalFee = totalTokenFee + totalEthFee;
address[] memory swapPath = new address[](2);
swapPath[0] = address(this);
swapPath[1] = _swapRouter.WETH();
uint256 swapAmount = taxAmount * totalEthFee / totalFee;
bool success = false;
try _swapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmount, 0, swapPath, address(this), block.timestamp)
{
success = true;
}
catch
{
}
if (!success)
{
return;
}
TransferHelper.safeTransfer(address(this), DEAD, burnAmount);
uint256 beforeETH = address(this).balance;
uint256 beforeToken = balanceOf(address(this));
uint256 fundETHFee = beforeETH * fundFee / totalEthFee;
TransferHelper.safeTransferETH(fundAddres, fundETHFee);
uint256 addLPAmount = _LPFee * beforeToken / totalTokenFee;
uint256 addLPETH = _LPFee * beforeETH / totalEthFee;
try _swapRouter.addLiquidityETH{value:addLPETH}(address(this), addLPAmount, 0, 0, ZERO, block.timestamp)
{
}
catch
{
emit AddLiquidityError(addLPAmount, addLPETH);
}
uint256 afertETH = address(this).balance;
uint256 afertToken = balanceOf(address(this));
TransferHelper.safeTransferETH(address(feeDistributor), afertETH);
TransferHelper.safeTransfer(address(this), address(feeDistributor), afertToken);
}
function takeTransferFee(address sender, uint256 amount) private returns(uint256)
{
uint256 feeRate = startTime + _preDuration > block.timestamp ? _preTotalFees : _totalFees;
uint256 feeAmount = amount * feeRate / 10000;
if(feeAmount > 0)
{
_transfer(sender, address(address(this)), feeAmount);
}
return amount - feeAmount;
}
function getCirculatingSupply() public view returns (uint256) {
return totalSupply() - balanceOf(DEAD) - balanceOf(ZERO);
}
// HOLD
receive() external payable {}
//ADMIN FUNCTIONS
function setSwapPairList(address addr, bool enable) external onlyOwner {
swapPairList[addr] = enable;
}
function setSwapRouter(address addr, bool enable) external onlyOwner {
swapRouters[addr] = enable;
}
function batchSetFeeWhiteList(address[] memory addr,bool enable) external onlyOwner {
for (uint i = 0; i < addr.length; i++) {
feeWhiteList[addr[i]] = enable;
}
}
function setExcludeHoldProvider(address[] memory addr,bool enable) external onlyOwner
{
for (uint i = 0; i < addr.length; i++) {
feeDistributor.setExcludeHoldProvider(addr[i], enable);
}
}
// Liquidity
function addLiquidity(uint256 amount) public payable lockTheSwap nonReentrant returns(uint amountToken,uint amountETH, uint liquidity)
{
uint256 ethAmount = msg.value;
require(ethAmount > 0 && amount > 0, "ZERO");
TransferHelper.safeTransferFrom(address(this), msg.sender, address(this), amount);
bool success = false;
try _swapRouter.addLiquidityETH{ value: ethAmount }(address(this), amount, 0, 0, msg.sender, block.timestamp) returns (uint _amountToken, uint _amountETH, uint _liquidity)
{
amountToken = _amountToken;
amountETH = _amountETH;
liquidity = _liquidity;
success = true;
}
catch
{
amountToken = 0;
amountETH = 0;
liquidity = 0;
success = false;
}
require(success == true, "ADD LIQUIDITY FAILED");
require(amountETH <= ethAmount && amountToken <= amount, "AMOUNT ERR");
if(ethAmount > amountETH)
TransferHelper.safeTransferETH(msg.sender, ethAmount - amountETH);
if(amount > amountToken)
TransferHelper.safeTransfer(address(this), msg.sender, amount - amountToken);
}
function removeLiquidity(uint256 liquidity) public lockTheSwap nonReentrant returns (uint amountToken, uint amountETH)
{
require(liquidity > 0, "ZERO LIQUIDITY");
TransferHelper.safeTransferFrom(mainPair, msg.sender, address(this), liquidity);
TransferHelper.safeApprove(mainPair, address(_swapRouter), liquidity);
bool success = false;
try _swapRouter.removeLiquidityETH(address(this), liquidity, 0, 0, msg.sender, block.timestamp) returns (uint _amountToken, uint _amountETH)
{
amountToken = _amountToken;
amountETH = _amountETH;
success = true;
}
catch
{
amountToken = 0;
amountETH = 0;
success = false;
}
require(success == true, "REMOVE LIQUIDITY FAILED");
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @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.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
}pragma solidity >=0.6.2;
import './IUniswapV2Router01.sol';
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}pragma solidity >=0.5.0;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}pragma solidity >=0.5.0;
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.6.0;
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
library TransferHelper {
/// @notice Transfers tokens from the targeted address to the given destination
/// @notice Errors with 'STF' if transfer fails
/// @param token The contract address of the token to be transferred
/// @param from The originating address from which the tokens will be transferred
/// @param to The destination address of the transfer
/// @param value The amount to be transferred
function safeTransferFrom(
address token,
address from,
address to,
uint256 value
) internal {
(bool success, bytes memory data) =
token.call(abi.encodeWithSelector(IERC20.transferFrom.selector, from, to, value));
require(success && (data.length == 0 || abi.decode(data, (bool))), 'STF');
}
/// @notice Transfers tokens from msg.sender to a recipient
/// @dev Errors with ST if transfer fails
/// @param token The contract address of the token which will be transferred
/// @param to The recipient of the transfer
/// @param value The value of the transfer
function safeTransfer(
address token,
address to,
uint256 value
) internal {
(bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.transfer.selector, to, value));
require(success && (data.length == 0 || abi.decode(data, (bool))), 'ST');
}
/// @notice Approves the stipulated contract to spend the given allowance in the given token
/// @dev Errors with 'SA' if transfer fails
/// @param token The contract address of the token to be approved
/// @param to The target of the approval
/// @param value The amount of the given token the target will be allowed to spend
function safeApprove(
address token,
address to,
uint256 value
) internal {
(bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.approve.selector, to, value));
require(success && (data.length == 0 || abi.decode(data, (bool))), 'SA');
}
/// @notice Transfers ETH to the recipient address
/// @dev Fails with `STE`
/// @param to The destination of the transfer
/// @param value The value to be transferred
function safeTransferETH(address to, uint256 value) internal {
(bool success, ) = to.call{value: value}(new bytes(0));
require(success, 'STE');
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
library Math {
function min(uint x, uint y) internal pure returns (uint z) {
z = x < y ? x : y;
}
function sqrt(uint y) internal pure returns (uint z) {
if (y > 3) {
z = y;
uint x = y / 2 + 1;
while (x < z) {
z = x;
x = (y / x + x) / 2;
}
} else if (y != 0) {
z = 1;
}
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
import { TransferHelper } from "@uniswap/v3-periphery/libraries/TransferHelper.sol";
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { Counters } from "@openzeppelin/contracts/utils/Counters.sol";
import { ECDSA } from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import { JagerBnb } from "./JagerBnb.sol";
contract FeeDistributor is Ownable
{
address public signAddress;
using Counters for Counters.Counter;
mapping(address => Counters.Counter) private _nonces;
JagerBnb public immutable JagerBnbToken;
IERC20 public immutable jagerToken;
uint256 public immutable bnbToJagerBnbRate = 1e8;
mapping(address => bool) public excludeHoldProvider;
event SetExcludHold(address indexed account, bool enbalbed);
event SetSign(address indexed oldSign, address newSign);
event Claim(address indexed account, uint256 currentNonce, uint256 jagerAmount, uint256 jagerBnbAmount);
bytes32 private constant _PERMIT_TYPEHASH = keccak256("claim(address account,uint256 jagerAmount,uint256 jagerBnbAmount,uint256 deadline,bytes calldata sign)");
constructor(address jager, address sign)
{
require(jager != address(0) && sign != address(0), "ZERO ADDRESS");
JagerBnbToken = new JagerBnb();
jagerToken = IERC20(jager);
signAddress = sign;
}
receive() external payable
{
uint256 mintAmount = msg.value * bnbToJagerBnbRate;
JagerBnbToken.mint(address(this), mintAmount);
}
function setExcludeHoldProvider(address addr, bool enable) external onlyOwner
{
excludeHoldProvider[addr] = enable;
emit SetExcludHold(addr, enable);
}
function getUserNonce(address account) public view returns (uint256)
{
return _nonces[account].current();
}
function claim(address account, uint256 jagerAmount, uint256 jagerBnbAmount, uint256 deadline, bytes calldata sign) external
{
require(account == msg.sender, "SENDER ERROR");
require(excludeHoldProvider[account] == false, "BAN");
require(block.timestamp <= deadline, "TIME OUT");
require(jagerAmount > 0 || jagerBnbAmount > 0, "ZERO");
Counters.Counter storage accountNonce = _nonces[account];
uint256 accountCurrentNonce = accountNonce.current();
bytes32 mHash = keccak256(abi.encode(_PERMIT_TYPEHASH, account, jagerAmount, jagerBnbAmount, deadline, accountCurrentNonce));
address recoverSignAddress = ECDSA.recover(mHash, sign);
require(recoverSignAddress == signAddress, "SIGN ERROR");
accountNonce.increment();
if(jagerAmount > 0)
{
uint256 jagerBalance = jagerToken.balanceOf(address(this));
require(jagerBalance >= jagerAmount, "JNE");
TransferHelper.safeTransfer(address(jagerToken), account, jagerAmount);
}
if(jagerBnbAmount > 0)
{
uint256 JagerBnbBalance = JagerBnbToken.balanceOf(address(this));
require(JagerBnbBalance >= jagerBnbAmount, "JBNE");
TransferHelper.safeTransfer(address(JagerBnbToken), account, jagerBnbAmount);
}
emit Claim(account, accountCurrentNonce, jagerAmount, jagerBnbAmount);
}
function claimBNB(uint256 amount) external
{
require(amount > bnbToJagerBnbRate, "TO SMALL");
uint256 sendETH = amount / bnbToJagerBnbRate;
address owner = msg.sender;
JagerBnbToken.burn(owner, amount);
TransferHelper.safeTransferETH(owner,sendETH);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}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,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
import "../Strings.sol";
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV // Deprecated in v4.8
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
/// @solidity memory-safe-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
uint8 v = uint8((uint256(vs) >> 255) + 27);
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, "\x19Ethereum Signed Message:\n32")
mstore(0x1c, hash)
message := keccak256(0x00, 0x3c)
}
}
/**
* @dev Returns an Ethereum Signed Message, created from `s`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, "\x19\x01")
mstore(add(ptr, 0x02), domainSeparator)
mstore(add(ptr, 0x22), structHash)
data := keccak256(ptr, 0x42)
}
}
/**
* @dev Returns an Ethereum Signed Data with intended validator, created from a
* `validator` and `data` according to the version 0 of EIP-191.
*
* See {recover}.
*/
function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x00", validator, data));
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract JagerBnb is ERC20, Ownable
{
constructor() ERC20("JagerBnb", "JagerBnb"){}
function mint(address account, uint256 amount) external onlyOwner
{
_mint(account, amount);
}
function burn(address account, uint256 amount) external onlyOwner
{
_burn(account, amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return keccak256(bytes(a)) == keccak256(bytes(b));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}{
"remappings": [
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
"forge-std/=lib/forge-std/src/",
"halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
"openzeppelin-foundry-upgrades/=lib/openzeppelin-foundry-upgrades/src/",
"@uniswap/v2-core/=lib/v2-core/contracts/",
"@uniswap/v2-periphery/=lib/v2-periphery/contracts/",
"@uniswap/v3-core/=lib/v3-core/",
"@uniswap/v3-periphery/=lib/v3-periphery/contracts/",
"ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/",
"openzeppelin/=lib/openzeppelin-contracts/contracts/",
"v2-core/=lib/v2-core/contracts/",
"v2-periphery/=lib/v2-periphery/contracts/",
"v3-core/=lib/v3-core/",
"v3-periphery/=lib/v3-periphery/contracts/"
],
"optimizer": {
"enabled": false,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "shanghai",
"viaIR": false,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"addLPAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"addLPETH","type":"uint256"}],"name":"AddLiquidityError","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addLiquidity","outputs":[{"internalType":"uint256","name":"amountToken","type":"uint256"},{"internalType":"uint256","name":"amountETH","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"batchSetFeeWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDistributor","outputs":[{"internalType":"contract FeeDistributor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feeWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundAddres","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mainPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTaxDistributionThreshold","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":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"name":"removeLiquidity","outputs":[{"internalType":"uint256","name":"amountToken","type":"uint256"},{"internalType":"uint256","name":"amountETH","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"setExcludeHoldProvider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"setSwapPairList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"setSwapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"swapPairList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"swapRouters","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":"to","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":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
61016060405234801562000011575f80fd5b507310ed43c718714eb63d5aa57b78b54704e256024e6040518060400160405280600c81526020017f4a616765722048756e74657200000000000000000000000000000000000000008152506040518060400160405280600581526020017f4a6167657200000000000000000000000000000000000000000000000000000081525060126633de9f65b8800073af5ffa64b0421b4d1e400cad8f2e4b6ba6fbe5b97364981bfac88b2ccfa7d9627387521161d2b89db073c7950e38946393d0eae08f3ea67f69f54f63275473b69af387475195107edc435a6346f606428a91877343567a33fc0d8c90c8f5fcfe5752906cbec79e84736999b70785ece5d4b885e9345202fb832a08d3e8898981600390816200012e919062001576565b50806004908162000140919062001576565b50505060016005819055506200016b6200015f6200070260201b60201c565b6200070960201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015620001d457505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156200020d57505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156200024657505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156200027f57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620002b857505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b620002fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f190620016b8565b60405180910390fd5b87600660146101000a81548160ff021916908360ff1602179055508573ffffffffffffffffffffffffffffffffffffffff166101208173ffffffffffffffffffffffffffffffffffffffff16815250508a73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff168152505062000392308c5f19620007cc60201b60201c565b600160085f8d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f60c05173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000434573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200045a91906200173d565b905060c05173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004a8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620004ce91906200173d565b73ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c9c653963060e0516040518363ffffffff1660e01b8152600401620005409291906200177e565b6020604051808303815f875af11580156200055d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200058391906200173d565b73ffffffffffffffffffffffffffffffffffffffff166101008173ffffffffffffffffffffffffffffffffffffffff1681525050600160075f6101005173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555042608081815250505f600660149054906101000a900460ff16600a62000636919062001932565b9050806305f5e1006200064a919062001982565b60a081815250503083604051620006619062001304565b6200066e9291906200177e565b604051809103905ff08015801562000688573d5f803e3d5ffd5b5073ffffffffffffffffffffffffffffffffffffffff166101408173ffffffffffffffffffffffffffffffffffffffff1681525050620006cd6200099760201b60201c565b620006ef818a620006df919062001982565b8888888862000dbb60201b60201c565b5050505050505050505050505062001c73565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200083d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008349062001a40565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a59062001ad4565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200098a919062001b05565b60405180910390a3505050565b6101405173ffffffffffffffffffffffffffffffffffffffff1663cddc29686101205160016040518363ffffffff1660e01b8152600401620009db92919062001b3c565b5f604051808303815f87803b158015620009f3575f80fd5b505af115801562000a06573d5f803e3d5ffd5b505050506101405173ffffffffffffffffffffffffffffffffffffffff1663cddc29686101405160016040518363ffffffff1660e01b815260040162000a4e92919062001b3c565b5f604051808303815f87803b15801562000a66575f80fd5b505af115801562000a79573d5f803e3d5ffd5b505050506101405173ffffffffffffffffffffffffffffffffffffffff1663cddc296860c05160016040518363ffffffff1660e01b815260040162000ac092919062001b3c565b5f604051808303815f87803b15801562000ad8575f80fd5b505af115801562000aeb573d5f803e3d5ffd5b505050506101405173ffffffffffffffffffffffffffffffffffffffff1663cddc29686101005160016040518363ffffffff1660e01b815260040162000b3392919062001b3c565b5f604051808303815f87803b15801562000b4b575f80fd5b505af115801562000b5e573d5f803e3d5ffd5b505050506101405173ffffffffffffffffffffffffffffffffffffffff1663cddc29683060016040518363ffffffff1660e01b815260040162000ba392919062001b3c565b5f604051808303815f87803b15801562000bbb575f80fd5b505af115801562000bce573d5f803e3d5ffd5b505050506101405173ffffffffffffffffffffffffffffffffffffffff1663cddc296861dead60016040518363ffffffff1660e01b815260040162000c1592919062001b3c565b5f604051808303815f87803b15801562000c2d575f80fd5b505af115801562000c40573d5f803e3d5ffd5b505050506101405173ffffffffffffffffffffffffffffffffffffffff1663cddc29685f60016040518363ffffffff1660e01b815260040162000c8592919062001b3c565b5f604051808303815f87803b15801562000c9d575f80fd5b505af115801562000cb0573d5f803e3d5ffd5b50505050600160095f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160095f6101205173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160095f6101405173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550565b6101405173ffffffffffffffffffffffffffffffffffffffff1663cddc29688560016040518363ffffffff1660e01b815260040162000dfc92919062001b3c565b5f604051808303815f87803b15801562000e14575f80fd5b505af115801562000e27573d5f803e3d5ffd5b505050506101405173ffffffffffffffffffffffffffffffffffffffff1663cddc29688460016040518363ffffffff1660e01b815260040162000e6c92919062001b3c565b5f604051808303815f87803b15801562000e84575f80fd5b505af115801562000e97573d5f803e3d5ffd5b505050506101405173ffffffffffffffffffffffffffffffffffffffff1663cddc29688360016040518363ffffffff1660e01b815260040162000edc92919062001b3c565b5f604051808303815f87803b15801562000ef4575f80fd5b505af115801562000f07573d5f803e3d5ffd5b505050506101405173ffffffffffffffffffffffffffffffffffffffff1663cddc29688260016040518363ffffffff1660e01b815260040162000f4c92919062001b3c565b5f604051808303815f87803b15801562000f64575f80fd5b505af115801562000f77573d5f803e3d5ffd5b50505050600160095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620010ff8461271061235a88620010e7919062001982565b620010f3919062001b94565b6200119560201b60201c565b6200112f836127106101908862001117919062001982565b62001123919062001b94565b6200119560201b60201c565b6200115f8261271061021c8862001147919062001982565b62001153919062001b94565b6200119560201b60201c565b6200118e81612710600a8862001176919062001982565b62001182919062001b94565b6200119560201b60201c565b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001206576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620011fd9062001c19565b60405180910390fd5b620012195f8383620012fa60201b60201c565b8060025f8282546200122c919062001c39565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620012db919062001b05565b60405180910390a3620012f65f8383620012ff60201b60201c565b5050565b505050565b505050565b61440f806200589d83390190565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200138e57607f821691505b602082108103620013a457620013a362001349565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620014087fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620013cb565b620014148683620013cb565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200145e6200145862001452846200142c565b62001435565b6200142c565b9050919050565b5f819050919050565b62001479836200143e565b62001491620014888262001465565b848454620013d7565b825550505050565b5f90565b620014a762001499565b620014b48184846200146e565b505050565b5b81811015620014db57620014cf5f826200149d565b600181019050620014ba565b5050565b601f8211156200152a57620014f481620013aa565b620014ff84620013bc565b810160208510156200150f578190505b620015276200151e85620013bc565b830182620014b9565b50505b505050565b5f82821c905092915050565b5f6200154c5f19846008026200152f565b1980831691505092915050565b5f6200156683836200153b565b9150826002028217905092915050565b620015818262001312565b67ffffffffffffffff8111156200159d576200159c6200131c565b5b620015a9825462001376565b620015b6828285620014df565b5f60209050601f831160018114620015ec575f8415620015d7578287015190505b620015e3858262001559565b86555062001652565b601f198416620015fc86620013aa565b5f5b828110156200162557848901518255600182019150602085019450602081019050620015fe565b8683101562001645578489015162001641601f8916826200153b565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f504152414d45544552204552524f5200000000000000000000000000000000005f82015250565b5f620016a0600f836200165a565b9150620016ad826200166a565b602082019050919050565b5f6020820190508181035f830152620016d18162001692565b9050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200170782620016dc565b9050919050565b6200171981620016fb565b811462001724575f80fd5b50565b5f8151905062001737816200170e565b92915050565b5f60208284031215620017555762001754620016d8565b5b5f620017648482850162001727565b91505092915050565b6200177881620016fb565b82525050565b5f604082019050620017935f8301856200176d565b620017a260208301846200176d565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562001833578086048111156200180b576200180a620017a9565b5b60018516156200181b5780820291505b80810290506200182b85620017d6565b9450620017eb565b94509492505050565b5f826200184d57600190506200191f565b816200185c575f90506200191f565b81600181146200187557600281146200188057620018b6565b60019150506200191f565b60ff841115620018955762001894620017a9565b5b8360020a915084821115620018af57620018ae620017a9565b5b506200191f565b5060208310610133831016604e8410600b8410161715620018f05782820a905083811115620018ea57620018e9620017a9565b5b6200191f565b620018ff8484846001620017e2565b92509050818404811115620019195762001918620017a9565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200193e826200142c565b91506200194b8362001926565b92506200197a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200183c565b905092915050565b5f6200198e826200142c565b91506200199b836200142c565b9250828202620019ab816200142c565b91508282048414831517620019c557620019c4620017a9565b5b5092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62001a286024836200165a565b915062001a3582620019cc565b604082019050919050565b5f6020820190508181035f83015262001a598162001a1a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62001abc6022836200165a565b915062001ac98262001a60565b604082019050919050565b5f6020820190508181035f83015262001aed8162001aae565b9050919050565b62001aff816200142c565b82525050565b5f60208201905062001b1a5f83018462001af4565b92915050565b5f8115159050919050565b62001b368162001b20565b82525050565b5f60408201905062001b515f8301856200176d565b62001b60602083018462001b2b565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62001ba0826200142c565b915062001bad836200142c565b92508262001bc05762001bbf62001b67565b5b828204905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001c01601f836200165a565b915062001c0e8262001bcb565b602082019050919050565b5f6020820190508181035f83015262001c328162001bf3565b9050919050565b5f62001c45826200142c565b915062001c52836200142c565b925082820190508082111562001c6d5762001c6c620017a9565b5b92915050565b60805160a05160c05160e051610100516101205161014051613b7d62001d205f395f818161082c015281816111ca015281816125db015261260601525f8181610c63015261248301525f8181610cab01528181610e0d0152610e3901525f6109a101525f8181610a4801528181610e5a01528181610e82015281816122ad015281816123a301526124e201525f8181611306015261213c01525f8181610c8701526126600152613b7d5ff3fe6080604052600436106101d0575f3560e01c80637803f3b1116100f6578063a457c2d711610094578063dd62ed3e11610063578063dd62ed3e146106c2578063e8c1947c146106fe578063f2fde38b14610726578063fad75d661461074e576101d7565b8063a457c2d7146105fa578063a842486114610636578063a9059cbb1461065e578063b2887bec1461069a576101d7565b80638da5cb5b116100d05780638da5cb5b1461052d5780639358bd4f1461055757806395d89b41146105935780639c8f9f23146105bd576101d7565b80637803f3b1146104af57806378e97925146104d957806385af30c514610503576101d7565b80632b112e491161016e5780633fc8cef31161013d5780633fc8cef31461040157806351c6590a1461042b57806370a082311461045d578063715018a614610499576101d7565b80632b112e4914610335578063313ce5671461035f57806339509351146103895780633c34ff63146103c5576101d7565b8063172979e4116101aa578063172979e41461026b57806318160ddd146102a75780632171dcc9146102d157806323b872dd146102f9576101d7565b806306fdde03146101db578063095ea7b3146102055780630d43e8ad14610241576101d7565b366101d757005b5f80fd5b3480156101e6575f80fd5b506101ef610778565b6040516101fc9190612776565b60405180910390f35b348015610210575f80fd5b5061022b60048036038101906102269190612834565b610808565b604051610238919061288c565b60405180910390f35b34801561024c575f80fd5b5061025561082a565b6040516102629190612900565b60405180910390f35b348015610276575f80fd5b50610291600480360381019061028c9190612919565b61084e565b60405161029e919061288c565b60405180910390f35b3480156102b2575f80fd5b506102bb61086b565b6040516102c89190612953565b60405180910390f35b3480156102dc575f80fd5b506102f760048036038101906102f29190612996565b610874565b005b348015610304575f80fd5b5061031f600480360381019061031a91906129d4565b6108d4565b60405161032c919061288c565b60405180910390f35b348015610340575f80fd5b50610349610900565b6040516103569190612953565b60405180910390f35b34801561036a575f80fd5b50610373610936565b6040516103809190612a3f565b60405180910390f35b348015610394575f80fd5b506103af60048036038101906103aa9190612834565b61094c565b6040516103bc919061288c565b60405180910390f35b3480156103d0575f80fd5b506103eb60048036038101906103e69190612919565b610982565b6040516103f8919061288c565b60405180910390f35b34801561040c575f80fd5b5061041561099f565b6040516104229190612a67565b60405180910390f35b61044560048036038101906104409190612a80565b6109c3565b60405161045493929190612aab565b60405180910390f35b348015610468575f80fd5b50610483600480360381019061047e9190612919565b610c09565b6040516104909190612953565b60405180910390f35b3480156104a4575f80fd5b506104ad610c4e565b005b3480156104ba575f80fd5b506104c3610c61565b6040516104d09190612a67565b60405180910390f35b3480156104e4575f80fd5b506104ed610c85565b6040516104fa9190612953565b60405180910390f35b34801561050e575f80fd5b50610517610ca9565b6040516105249190612a67565b60405180910390f35b348015610538575f80fd5b50610541610ccd565b60405161054e9190612a67565b60405180910390f35b348015610562575f80fd5b5061057d60048036038101906105789190612919565b610cf5565b60405161058a919061288c565b60405180910390f35b34801561059e575f80fd5b506105a7610d12565b6040516105b49190612776565b60405180910390f35b3480156105c8575f80fd5b506105e360048036038101906105de9190612a80565b610da2565b6040516105f1929190612ae0565b60405180910390f35b348015610605575f80fd5b50610620600480360381019061061b9190612834565b610faa565b60405161062d919061288c565b60405180910390f35b348015610641575f80fd5b5061065c60048036038101906106579190612996565b61101f565b005b348015610669575f80fd5b50610684600480360381019061067f9190612834565b61107f565b604051610691919061288c565b60405180910390f35b3480156106a5575f80fd5b506106c060048036038101906106bb9190612c47565b61109a565b005b3480156106cd575f80fd5b506106e860048036038101906106e39190612ca1565b611133565b6040516106f59190612953565b60405180910390f35b348015610709575f80fd5b50610724600480360381019061071f9190612c47565b6111b5565b005b348015610731575f80fd5b5061074c60048036038101906107479190612919565b611282565b005b348015610759575f80fd5b50610762611304565b60405161076f9190612953565b60405180910390f35b60606003805461078790612d0c565b80601f01602080910402602001604051908101604052809291908181526020018280546107b390612d0c565b80156107fe5780601f106107d5576101008083540402835291602001916107fe565b820191905f5260205f20905b8154815290600101906020018083116107e157829003601f168201915b5050505050905090565b5f80610812611328565b905061081f81858561132f565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b61087c6114f2565b8060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f806108de611328565b90506108eb858285611570565b6108f68585856115fb565b9150509392505050565b5f61090a5f610c09565b61091561dead610c09565b61091d61086b565b6109279190612d69565b6109319190612d69565b905090565b5f600660149054906101000a900460ff16905090565b5f80610956611328565b90506109778185856109688589611133565b6109729190612d9c565b61132f565b600191505092915050565b6007602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f805f6001600a5f6101000a81548160ff0219169083151502179055506109e86118a1565b5f3490505f811180156109fa57505f85115b610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090612e19565b60405180910390fd5b610a45303330886118f0565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198330895f8033426040518863ffffffff1660e01b8152600401610aaa96959493929190612e70565b60606040518083038185885af193505050508015610ae657506040513d601f19601f82011682018060405250810190610ae39190612ee3565b60015b610afb575f94505f93505f92505f9050610b0c565b829750819650809550600193505050505b6001151581151514610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90612f7d565b60405180910390fd5b818411158015610b635750858511155b610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990612fe5565b60405180910390fd5b83821115610bc057610bbf338584610bba9190612d69565b611a42565b5b84861115610bdf57610bde30338789610bd99190612d69565b611b3d565b5b5050610be9611c8c565b5f600a5f6101000a81548160ff0219169083151502179055509193909250565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610c566114f2565b610c5f5f611c96565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052805f5260405f205f915054906101000a900460ff1681565b606060048054610d2190612d0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4d90612d0c565b8015610d985780601f10610d6f57610100808354040283529160200191610d98565b820191905f5260205f20905b815481529060010190602001808311610d7b57829003601f168201915b5050505050905090565b5f806001600a5f6101000a81548160ff021916908315150217905550610dc66118a1565b5f8311610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff9061304d565b60405180910390fd5b610e347f00000000000000000000000000000000000000000000000000000000000000003330866118f0565b610e7f7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000085611d59565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166302751cec30865f8033426040518763ffffffff1660e01b8152600401610ee396959493929190612e70565b60408051808303815f875af1925050508015610f1d57506040513d601f19601f82011682018060405250810190610f1a919061306b565b60015b610f2f575f92505f91505f9050610f3c565b8194508093506001925050505b6001151581151514610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906130f3565b60405180910390fd5b50610f8c611c8c565b5f600a5f6101000a81548160ff021916908315150217905550915091565b5f80610fb4611328565b90505f610fc18286611133565b905083811015611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90613181565b60405180910390fd5b611013828686840361132f565b60019250505092915050565b6110276114f2565b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f61109261108b611328565b84846115fb565b905092915050565b6110a26114f2565b5f5b825181101561112e578160095f8584815181106110c4576110c361319f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080611126906131cc565b9150506110a4565b505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6111bd6114f2565b5f5b825181101561127d577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663cddc29688483815181106112175761121661319f565b5b6020026020010151846040518363ffffffff1660e01b815260040161123d929190613213565b5f604051808303815f87803b158015611254575f80fd5b505af1158015611266573d5f803e3d5ffd5b505050508080611275906131cc565b9150506111bf565b505050565b61128a6114f2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef906132aa565b60405180910390fd5b61130181611c96565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490613338565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361140b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611402906133c6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114e59190612953565b60405180910390a3505050565b6114fa611328565b73ffffffffffffffffffffffffffffffffffffffff16611518610ccd565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115659061342e565b60405180910390fd5b565b5f61157b8484611133565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115f557818110156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613496565b60405180910390fd5b6115f4848484840361132f565b5b50505050565b5f60011515600a5f9054906101000a900460ff1615150361162a57611621848484611ea8565b6001905061189a565b5f80151560095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615151480156116d357505f151560095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b801561178457506001151560075f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515148061178357506001151560075f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b5b1561178e57600190505b5f1515600a5f9054906101000a900460ff16151514801561180257505f151560075f6117b8611328565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b801561185a57505f151560085f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b1561186857611867612114565b5b5f600115158215151461187b5783611886565b6118858685612657565b5b9050611893868683611ea8565b6001925050505b9392505050565b6002600554036118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd906134fe565b60405180910390fd5b6002600581905550565b5f808573ffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b8686866040516024016119269392919061351c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516119909190613595565b5f604051808303815f865af19150503d805f81146119c9576040519150601f19603f3d011682016040523d82523d5f602084013e6119ce565b606091505b50915091508180156119fb57505f815114806119fa5750808060200190518101906119f991906135bf565b5b5b611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3190613634565b60405180910390fd5b505050505050565b5f8273ffffffffffffffffffffffffffffffffffffffff16825f67ffffffffffffffff811115611a7557611a74612b0b565b5b6040519080825280601f01601f191660200182016040528015611aa75781602001600182028036833780820191505090505b50604051611ab59190613595565b5f6040518083038185875af1925050503d805f8114611aef576040519150601f19603f3d011682016040523d82523d5f602084013e611af4565b606091505b5050905080611b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2f9061369c565b60405180910390fd5b505050565b5f808473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b8585604051602401611b719291906136ba565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051611bdb9190613595565b5f604051808303815f865af19150503d805f8114611c14576040519150601f19603f3d011682016040523d82523d5f602084013e611c19565b606091505b5091509150818015611c4657505f81511480611c45575080806020019051810190611c4491906135bf565b5b5b611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c9061372b565b60405180910390fd5b5050505050565b6001600581905550565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808473ffffffffffffffffffffffffffffffffffffffff1663095ea7b360e01b8585604051602401611d8d9291906136ba565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051611df79190613595565b5f604051808303815f865af19150503d805f8114611e30576040519150601f19603f3d011682016040523d82523d5f602084013e611e35565b606091505b5091509150818015611e6257505f81511480611e61575080806020019051810190611e6091906135bf565b5b5b611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613793565b60405180910390fd5b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90613821565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b906138af565b60405180910390fd5b611f8f8383836126e2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120099061393d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120fb9190612953565b60405180910390a361210e8484846126e7565b50505050565b6001600a5f6101000a81548160ff0219169083151502179055505f61213830610c09565b90507f0000000000000000000000000000000000000000000000000000000000000000811015612168575061263c565b5f6105786107d061138861064061217f9190612d9c565b6121899190612d9c565b6121939190612d9c565b90505f81610640846121a5919061395b565b6121af91906139c9565b905080836121bd9190612d69565b92505f6107d06113886121d09190612d9c565b90505f60026105786121e2919061395b565b90505f6107d0611388836121f69190612d9c565b6122009190612d9c565b9050808361220e9190612d9c565b94505f600267ffffffffffffffff81111561222c5761222b612b0b565b5b60405190808252806020026020018201604052801561225a5781602001602082028036833780820191505090505b50905030815f815181106122715761227061319f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612314573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123389190613a0d565b8160018151811061234c5761234b61319f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505f868389612394919061395b565b61239e91906139c9565b90505f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8630426040518663ffffffff1660e01b8152600401612402959493929190613aef565b5f604051808303815f87803b158015612419575f80fd5b505af192505050801561242a575060015b1561243457600190505b806124475750505050505050505061263c565b6124543061dead89611b3d565b5f4790505f61246230610c09565b90505f868884612472919061395b565b61247c91906139c9565b90506124a87f000000000000000000000000000000000000000000000000000000000000000082611a42565b5f89836107d06124b8919061395b565b6124c291906139c9565b90505f88856107d06124d4919061395b565b6124de91906139c9565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f805f426040518863ffffffff1660e01b815260040161254496959493929190612e70565b60606040518083038185885af19350505050801561258057506040513d601f19601f8201168201806040525081019061257d9190612ee3565b60015b6125c2577fb73839a8c32f2714fe1114a921d4f222325aecbf5509b64869e8b3b44b3d536582826040516125b5929190612ae0565b60405180910390a16125c6565b5050505b5f4790505f6125d430610c09565b90506126007f000000000000000000000000000000000000000000000000000000000000000083611a42565b61262b307f000000000000000000000000000000000000000000000000000000000000000083611b3d565b505050505050505050505050505050505b5f600a5f6101000a81548160ff021916908315150217905550565b5f8042621275007f00000000000000000000000000000000000000000000000000000000000000006126899190612d9c565b11612696576101f461269a565b6103e85b90505f61271082856126ac919061395b565b6126b691906139c9565b90505f8111156126cc576126cb853083611ea8565b5b80846126d89190612d69565b9250505092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612723578082015181840152602081019050612708565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612748826126ec565b61275281856126f6565b9350612762818560208601612706565b61276b8161272e565b840191505092915050565b5f6020820190508181035f83015261278e818461273e565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6127d0826127a7565b9050919050565b6127e0816127c6565b81146127ea575f80fd5b50565b5f813590506127fb816127d7565b92915050565b5f819050919050565b61281381612801565b811461281d575f80fd5b50565b5f8135905061282e8161280a565b92915050565b5f806040838503121561284a5761284961279f565b5b5f612857858286016127ed565b925050602061286885828601612820565b9150509250929050565b5f8115159050919050565b61288681612872565b82525050565b5f60208201905061289f5f83018461287d565b92915050565b5f819050919050565b5f6128c86128c36128be846127a7565b6128a5565b6127a7565b9050919050565b5f6128d9826128ae565b9050919050565b5f6128ea826128cf565b9050919050565b6128fa816128e0565b82525050565b5f6020820190506129135f8301846128f1565b92915050565b5f6020828403121561292e5761292d61279f565b5b5f61293b848285016127ed565b91505092915050565b61294d81612801565b82525050565b5f6020820190506129665f830184612944565b92915050565b61297581612872565b811461297f575f80fd5b50565b5f813590506129908161296c565b92915050565b5f80604083850312156129ac576129ab61279f565b5b5f6129b9858286016127ed565b92505060206129ca85828601612982565b9150509250929050565b5f805f606084860312156129eb576129ea61279f565b5b5f6129f8868287016127ed565b9350506020612a09868287016127ed565b9250506040612a1a86828701612820565b9150509250925092565b5f60ff82169050919050565b612a3981612a24565b82525050565b5f602082019050612a525f830184612a30565b92915050565b612a61816127c6565b82525050565b5f602082019050612a7a5f830184612a58565b92915050565b5f60208284031215612a9557612a9461279f565b5b5f612aa284828501612820565b91505092915050565b5f606082019050612abe5f830186612944565b612acb6020830185612944565b612ad86040830184612944565b949350505050565b5f604082019050612af35f830185612944565b612b006020830184612944565b9392505050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612b418261272e565b810181811067ffffffffffffffff82111715612b6057612b5f612b0b565b5b80604052505050565b5f612b72612796565b9050612b7e8282612b38565b919050565b5f67ffffffffffffffff821115612b9d57612b9c612b0b565b5b602082029050602081019050919050565b5f80fd5b5f612bc4612bbf84612b83565b612b69565b90508083825260208201905060208402830185811115612be757612be6612bae565b5b835b81811015612c105780612bfc88826127ed565b845260208401935050602081019050612be9565b5050509392505050565b5f82601f830112612c2e57612c2d612b07565b5b8135612c3e848260208601612bb2565b91505092915050565b5f8060408385031215612c5d57612c5c61279f565b5b5f83013567ffffffffffffffff811115612c7a57612c796127a3565b5b612c8685828601612c1a565b9250506020612c9785828601612982565b9150509250929050565b5f8060408385031215612cb757612cb661279f565b5b5f612cc4858286016127ed565b9250506020612cd5858286016127ed565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612d2357607f821691505b602082108103612d3657612d35612cdf565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612d7382612801565b9150612d7e83612801565b9250828203905081811115612d9657612d95612d3c565b5b92915050565b5f612da682612801565b9150612db183612801565b9250828201905080821115612dc957612dc8612d3c565b5b92915050565b7f5a45524f000000000000000000000000000000000000000000000000000000005f82015250565b5f612e036004836126f6565b9150612e0e82612dcf565b602082019050919050565b5f6020820190508181035f830152612e3081612df7565b9050919050565b5f819050919050565b5f612e5a612e55612e5084612e37565b6128a5565b612801565b9050919050565b612e6a81612e40565b82525050565b5f60c082019050612e835f830189612a58565b612e906020830188612944565b612e9d6040830187612e61565b612eaa6060830186612e61565b612eb76080830185612a58565b612ec460a0830184612944565b979650505050505050565b5f81519050612edd8161280a565b92915050565b5f805f60608486031215612efa57612ef961279f565b5b5f612f0786828701612ecf565b9350506020612f1886828701612ecf565b9250506040612f2986828701612ecf565b9150509250925092565b7f414444204c4951554944495459204641494c45440000000000000000000000005f82015250565b5f612f676014836126f6565b9150612f7282612f33565b602082019050919050565b5f6020820190508181035f830152612f9481612f5b565b9050919050565b7f414d4f554e5420455252000000000000000000000000000000000000000000005f82015250565b5f612fcf600a836126f6565b9150612fda82612f9b565b602082019050919050565b5f6020820190508181035f830152612ffc81612fc3565b9050919050565b7f5a45524f204c49515549444954590000000000000000000000000000000000005f82015250565b5f613037600e836126f6565b915061304282613003565b602082019050919050565b5f6020820190508181035f8301526130648161302b565b9050919050565b5f80604083850312156130815761308061279f565b5b5f61308e85828601612ecf565b925050602061309f85828601612ecf565b9150509250929050565b7f52454d4f5645204c4951554944495459204641494c45440000000000000000005f82015250565b5f6130dd6017836126f6565b91506130e8826130a9565b602082019050919050565b5f6020820190508181035f83015261310a816130d1565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61316b6025836126f6565b915061317682613111565b604082019050919050565b5f6020820190508181035f8301526131988161315f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6131d682612801565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361320857613207612d3c565b5b600182019050919050565b5f6040820190506132265f830185612a58565b613233602083018461287d565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6132946026836126f6565b915061329f8261323a565b604082019050919050565b5f6020820190508181035f8301526132c181613288565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6133226024836126f6565b915061332d826132c8565b604082019050919050565b5f6020820190508181035f83015261334f81613316565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6133b06022836126f6565b91506133bb82613356565b604082019050919050565b5f6020820190508181035f8301526133dd816133a4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6134186020836126f6565b9150613423826133e4565b602082019050919050565b5f6020820190508181035f8301526134458161340c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613480601d836126f6565b915061348b8261344c565b602082019050919050565b5f6020820190508181035f8301526134ad81613474565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6134e8601f836126f6565b91506134f3826134b4565b602082019050919050565b5f6020820190508181035f830152613515816134dc565b9050919050565b5f60608201905061352f5f830186612a58565b61353c6020830185612a58565b6135496040830184612944565b949350505050565b5f81519050919050565b5f81905092915050565b5f61356f82613551565b613579818561355b565b9350613589818560208601612706565b80840191505092915050565b5f6135a08284613565565b915081905092915050565b5f815190506135b98161296c565b92915050565b5f602082840312156135d4576135d361279f565b5b5f6135e1848285016135ab565b91505092915050565b7f53544600000000000000000000000000000000000000000000000000000000005f82015250565b5f61361e6003836126f6565b9150613629826135ea565b602082019050919050565b5f6020820190508181035f83015261364b81613612565b9050919050565b7f53544500000000000000000000000000000000000000000000000000000000005f82015250565b5f6136866003836126f6565b915061369182613652565b602082019050919050565b5f6020820190508181035f8301526136b38161367a565b9050919050565b5f6040820190506136cd5f830185612a58565b6136da6020830184612944565b9392505050565b7f53540000000000000000000000000000000000000000000000000000000000005f82015250565b5f6137156002836126f6565b9150613720826136e1565b602082019050919050565b5f6020820190508181035f83015261374281613709565b9050919050565b7f53410000000000000000000000000000000000000000000000000000000000005f82015250565b5f61377d6002836126f6565b915061378882613749565b602082019050919050565b5f6020820190508181035f8301526137aa81613771565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61380b6025836126f6565b9150613816826137b1565b604082019050919050565b5f6020820190508181035f830152613838816137ff565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6138996023836126f6565b91506138a48261383f565b604082019050919050565b5f6020820190508181035f8301526138c68161388d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6139276026836126f6565b9150613932826138cd565b604082019050919050565b5f6020820190508181035f8301526139548161391b565b9050919050565b5f61396582612801565b915061397083612801565b925082820261397e81612801565b9150828204841483151761399557613994612d3c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6139d382612801565b91506139de83612801565b9250826139ee576139ed61399c565b5b828204905092915050565b5f81519050613a07816127d7565b92915050565b5f60208284031215613a2257613a2161279f565b5b5f613a2f848285016139f9565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613a6a816127c6565b82525050565b5f613a7b8383613a61565b60208301905092915050565b5f602082019050919050565b5f613a9d82613a38565b613aa78185613a42565b9350613ab283613a52565b805f5b83811015613ae2578151613ac98882613a70565b9750613ad483613a87565b925050600181019050613ab5565b5085935050505092915050565b5f60a082019050613b025f830188612944565b613b0f6020830187612e61565b8181036040830152613b218186613a93565b9050613b306060830185612a58565b613b3d6080830184612944565b969550505050505056fea2646970667358221220784b6912bddbe390bdc11f5e31c8fc59cdd461805a1efe120d493202f454a53164736f6c6343000815003360e06040526305f5e10060c0908152503480156200001b575f80fd5b506040516200440f3803806200440f83398181016040528101906200004191906200031f565b6200006162000055620001e460201b60201c565b620001eb60201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620000ca57505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6200010c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010390620003c2565b60405180910390fd5b6040516200011a90620002ac565b604051809103905ff08015801562000134573d5f803e3d5ffd5b5073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620003e2565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f5c80620024b383390190565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620002e982620002be565b9050919050565b620002fb81620002dd565b811462000306575f80fd5b50565b5f815190506200031981620002f0565b92915050565b5f8060408385031215620003385762000337620002ba565b5b5f620003478582860162000309565b92505060206200035a8582860162000309565b9150509250929050565b5f82825260208201905092915050565b7f5a45524f204144445245535300000000000000000000000000000000000000005f82015250565b5f620003aa600c8362000364565b9150620003b78262000374565b602082019050919050565b5f6020820190508181035f830152620003db816200039c565b9050919050565b60805160a05160c0516120696200044a5f395f818160b20152818161038f015281816103f20152610bc901525f818161051b0152818161094e0152610a2e01525f818160e00152818161042401528181610a6101528181610b410152610c6f01526120695ff3fe6080604052600436106100aa575f3560e01c806399dc261c1161006357806399dc261c14610260578063cddc29681461029c578063cf503460146102c4578063e002d7e7146102ec578063f2fde38b14610316578063f4840bf41461033e57610164565b80630682bdbc146101685780630e5c1d0a146101925780636834e3a8146101ba578063715018a6146101f657806384f28ef41461020c5780638da5cb5b1461023657610164565b36610164575f7f0000000000000000000000000000000000000000000000000000000000000000346100dc9190611325565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b81526004016101399291906113b4565b5f604051808303815f87803b158015610150575f80fd5b505af1158015610162573d5f803e3d5ffd5b005b5f80fd5b348015610173575f80fd5b5061017c610368565b60405161018991906113db565b60405180910390f35b34801561019d575f80fd5b506101b860048036038101906101b39190611426565b61038d565b005b3480156101c5575f80fd5b506101e060048036038101906101db919061147b565b6104b9565b6040516101ed91906114a6565b60405180910390f35b348015610201575f80fd5b5061020a610506565b005b348015610217575f80fd5b50610220610519565b60405161022d919061151a565b60405180910390f35b348015610241575f80fd5b5061024a61053d565b60405161025791906113db565b60405180910390f35b34801561026b575f80fd5b506102866004803603810190610281919061147b565b610564565b604051610293919061154d565b60405180910390f35b3480156102a7575f80fd5b506102c260048036038101906102bd9190611590565b610581565b005b3480156102cf575f80fd5b506102ea60048036038101906102e5919061162f565b61062f565b005b3480156102f7575f80fd5b50610300610bc7565b60405161030d91906114a6565b60405180910390f35b348015610321575f80fd5b5061033c6004803603810190610337919061147b565b610beb565b005b348015610349575f80fd5b50610352610c6d565b60405161035f91906116e5565b60405180910390f35b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081116103ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e690611758565b60405180910390fd5b5f7f00000000000000000000000000000000000000000000000000000000000000008261041c91906117a3565b90505f3390507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16639dc29fac82856040518363ffffffff1660e01b815260040161047d9291906113b4565b5f604051808303815f87803b158015610494575f80fd5b505af11580156104a6573d5f803e3d5ffd5b505050506104b48183610c91565b505050565b5f6104ff60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20610d8c565b9050919050565b61050e610d98565b6105175f610e16565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6003602052805f5260405f205f915054906101000a900460ff1681565b610589610d98565b8060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9404f5fa38a924945995cfe0a7831c852aea238342cd3e69c42f51523b23c3d282604051610623919061154d565b60405180910390a25050565b3373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161461069d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106949061181d565b60405180910390fd5b5f151560035f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615151461072c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072390611885565b60405180910390fd5b8242111561076f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610766906118ed565b60405180910390fd5b5f85118061077c57505f84115b6107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b290611955565b60405180910390fd5b5f60025f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f61080582610d8c565b90505f7f4c6ad873598846bd0f8c8d890d1f0a8bd7affb5ce64fb2ddcf7e6acc219e538d89898989866040516020016108439695949392919061198b565b6040516020818303038152906040528051906020012090505f6108a98287878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f82011690508083019250505050505050610ed7565b905060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093190611a34565b60405180910390fd5b61094384610efc565b5f891115610a56575f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109a591906113db565b602060405180830381865afa1580156109c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109e49190611a66565b905089811015610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090611adb565b60405180910390fd5b610a547f00000000000000000000000000000000000000000000000000000000000000008c8c610f10565b505b5f881115610b69575f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ab891906113db565b602060405180830381865afa158015610ad3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610af79190611a66565b905088811015610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3390611b43565b60405180910390fd5b610b677f00000000000000000000000000000000000000000000000000000000000000008c8b610f10565b505b8973ffffffffffffffffffffffffffffffffffffffff167f45c072aa05b9853b5a993de7a28bc332ee01404a628cec1a23ce0f659f842ef1848b8b604051610bb393929190611b61565b60405180910390a250505050505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610bf3610d98565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890611c06565b60405180910390fd5b610c6a81610e16565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f8273ffffffffffffffffffffffffffffffffffffffff16825f67ffffffffffffffff811115610cc457610cc3611c24565b5b6040519080825280601f01601f191660200182016040528015610cf65781602001600182028036833780820191505090505b50604051610d049190611cbd565b5f6040518083038185875af1925050503d805f8114610d3e576040519150601f19603f3d011682016040523d82523d5f602084013e610d43565b606091505b5050905080610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90611d1d565b60405180910390fd5b505050565b5f815f01549050919050565b610da061105f565b73ffffffffffffffffffffffffffffffffffffffff16610dbe61053d565b73ffffffffffffffffffffffffffffffffffffffff1614610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90611d85565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805f610ee48585611066565b91509150610ef1816110b2565b819250505092915050565b6001815f015f828254019250508190555050565b5f808473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b8585604051602401610f449291906113b4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051610fae9190611cbd565b5f604051808303815f865af19150503d805f8114610fe7576040519150601f19603f3d011682016040523d82523d5f602084013e610fec565b606091505b509150915081801561101957505f815114806110185750808060200190518101906110179190611db7565b5b5b611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90611e2c565b60405180910390fd5b5050505050565b5f33905090565b5f8060418351036110a3575f805f602086015192506040860151915060608601515f1a905061109787828585611217565b945094505050506110ab565b5f6002915091505b9250929050565b5f60048111156110c5576110c4611e4a565b5b8160048111156110d8576110d7611e4a565b5b031561121457600160048111156110f2576110f1611e4a565b5b81600481111561110557611104611e4a565b5b03611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90611ec1565b60405180910390fd5b6002600481111561115957611158611e4a565b5b81600481111561116c5761116b611e4a565b5b036111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390611f29565b60405180910390fd5b600360048111156111c0576111bf611e4a565b5b8160048111156111d3576111d2611e4a565b5b03611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90611fb7565b60405180910390fd5b5b50565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0835f1c111561124f575f6003915091506112e6565b5f6001878787876040515f81526020016040526040516112729493929190611ff0565b6020604051602081039080840390855afa158015611292573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112de575f600192509250506112e6565b805f92509250505b94509492505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61132f826112ef565b915061133a836112ef565b9250828202611348816112ef565b9150828204841483151761135f5761135e6112f8565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61138f82611366565b9050919050565b61139f81611385565b82525050565b6113ae816112ef565b82525050565b5f6040820190506113c75f830185611396565b6113d460208301846113a5565b9392505050565b5f6020820190506113ee5f830184611396565b92915050565b5f80fd5b5f80fd5b611405816112ef565b811461140f575f80fd5b50565b5f81359050611420816113fc565b92915050565b5f6020828403121561143b5761143a6113f4565b5b5f61144884828501611412565b91505092915050565b61145a81611385565b8114611464575f80fd5b50565b5f8135905061147581611451565b92915050565b5f602082840312156114905761148f6113f4565b5b5f61149d84828501611467565b91505092915050565b5f6020820190506114b95f8301846113a5565b92915050565b5f819050919050565b5f6114e26114dd6114d884611366565b6114bf565b611366565b9050919050565b5f6114f3826114c8565b9050919050565b5f611504826114e9565b9050919050565b611514816114fa565b82525050565b5f60208201905061152d5f83018461150b565b92915050565b5f8115159050919050565b61154781611533565b82525050565b5f6020820190506115605f83018461153e565b92915050565b61156f81611533565b8114611579575f80fd5b50565b5f8135905061158a81611566565b92915050565b5f80604083850312156115a6576115a56113f4565b5b5f6115b385828601611467565b92505060206115c48582860161157c565b9150509250929050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126115ef576115ee6115ce565b5b8235905067ffffffffffffffff81111561160c5761160b6115d2565b5b602083019150836001820283011115611628576116276115d6565b5b9250929050565b5f805f805f8060a08789031215611649576116486113f4565b5b5f61165689828a01611467565b965050602061166789828a01611412565b955050604061167889828a01611412565b945050606061168989828a01611412565b935050608087013567ffffffffffffffff8111156116aa576116a96113f8565b5b6116b689828a016115da565b92509250509295509295509295565b5f6116cf826114e9565b9050919050565b6116df816116c5565b82525050565b5f6020820190506116f85f8301846116d6565b92915050565b5f82825260208201905092915050565b7f544f20534d414c4c0000000000000000000000000000000000000000000000005f82015250565b5f6117426008836116fe565b915061174d8261170e565b602082019050919050565b5f6020820190508181035f83015261176f81611736565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6117ad826112ef565b91506117b8836112ef565b9250826117c8576117c7611776565b5b828204905092915050565b7f53454e444552204552524f5200000000000000000000000000000000000000005f82015250565b5f611807600c836116fe565b9150611812826117d3565b602082019050919050565b5f6020820190508181035f830152611834816117fb565b9050919050565b7f42414e00000000000000000000000000000000000000000000000000000000005f82015250565b5f61186f6003836116fe565b915061187a8261183b565b602082019050919050565b5f6020820190508181035f83015261189c81611863565b9050919050565b7f54494d45204f55540000000000000000000000000000000000000000000000005f82015250565b5f6118d76008836116fe565b91506118e2826118a3565b602082019050919050565b5f6020820190508181035f830152611904816118cb565b9050919050565b7f5a45524f000000000000000000000000000000000000000000000000000000005f82015250565b5f61193f6004836116fe565b915061194a8261190b565b602082019050919050565b5f6020820190508181035f83015261196c81611933565b9050919050565b5f819050919050565b61198581611973565b82525050565b5f60c08201905061199e5f83018961197c565b6119ab6020830188611396565b6119b860408301876113a5565b6119c560608301866113a5565b6119d260808301856113a5565b6119df60a08301846113a5565b979650505050505050565b7f5349474e204552524f52000000000000000000000000000000000000000000005f82015250565b5f611a1e600a836116fe565b9150611a29826119ea565b602082019050919050565b5f6020820190508181035f830152611a4b81611a12565b9050919050565b5f81519050611a60816113fc565b92915050565b5f60208284031215611a7b57611a7a6113f4565b5b5f611a8884828501611a52565b91505092915050565b7f4a4e4500000000000000000000000000000000000000000000000000000000005f82015250565b5f611ac56003836116fe565b9150611ad082611a91565b602082019050919050565b5f6020820190508181035f830152611af281611ab9565b9050919050565b7f4a424e45000000000000000000000000000000000000000000000000000000005f82015250565b5f611b2d6004836116fe565b9150611b3882611af9565b602082019050919050565b5f6020820190508181035f830152611b5a81611b21565b9050919050565b5f606082019050611b745f8301866113a5565b611b8160208301856113a5565b611b8e60408301846113a5565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611bf06026836116fe565b9150611bfb82611b96565b604082019050919050565b5f6020820190508181035f830152611c1d81611be4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f81519050919050565b5f81905092915050565b5f5b83811015611c82578082015181840152602081019050611c67565b5f8484015250505050565b5f611c9782611c51565b611ca18185611c5b565b9350611cb1818560208601611c65565b80840191505092915050565b5f611cc88284611c8d565b915081905092915050565b7f53544500000000000000000000000000000000000000000000000000000000005f82015250565b5f611d076003836116fe565b9150611d1282611cd3565b602082019050919050565b5f6020820190508181035f830152611d3481611cfb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611d6f6020836116fe565b9150611d7a82611d3b565b602082019050919050565b5f6020820190508181035f830152611d9c81611d63565b9050919050565b5f81519050611db181611566565b92915050565b5f60208284031215611dcc57611dcb6113f4565b5b5f611dd984828501611da3565b91505092915050565b7f53540000000000000000000000000000000000000000000000000000000000005f82015250565b5f611e166002836116fe565b9150611e2182611de2565b602082019050919050565b5f6020820190508181035f830152611e4381611e0a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b7f45434453413a20696e76616c6964207369676e617475726500000000000000005f82015250565b5f611eab6018836116fe565b9150611eb682611e77565b602082019050919050565b5f6020820190508181035f830152611ed881611e9f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e677468005f82015250565b5f611f13601f836116fe565b9150611f1e82611edf565b602082019050919050565b5f6020820190508181035f830152611f4081611f07565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c5f8201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b5f611fa16022836116fe565b9150611fac82611f47565b604082019050919050565b5f6020820190508181035f830152611fce81611f95565b9050919050565b5f60ff82169050919050565b611fea81611fd5565b82525050565b5f6080820190506120035f83018761197c565b6120106020830186611fe1565b61201d604083018561197c565b61202a606083018461197c565b9594505050505056fea2646970667358221220478e7659c057ac2e40fc7e8dfeb72794aa244e11fabe3951137d4e6ed6ac3c9564736f6c63430008150033608060405234801562000010575f80fd5b506040518060400160405280600881526020017f4a61676572426e620000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4a61676572426e6200000000000000000000000000000000000000000000000081525081600390816200008e9190620003f7565b508060049081620000a09190620003f7565b505050620000c3620000b7620000c960201b60201c565b620000d060201b60201c565b620004db565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200020f57607f821691505b602082108103620002255762000224620001ca565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620002897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200024c565b6200029586836200024c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620002df620002d9620002d384620002ad565b620002b6565b620002ad565b9050919050565b5f819050919050565b620002fa83620002bf565b620003126200030982620002e6565b84845462000258565b825550505050565b5f90565b620003286200031a565b62000335818484620002ef565b505050565b5b818110156200035c57620003505f826200031e565b6001810190506200033b565b5050565b601f821115620003ab5762000375816200022b565b62000380846200023d565b8101602085101562000390578190505b620003a86200039f856200023d565b8301826200033a565b50505b505050565b5f82821c905092915050565b5f620003cd5f1984600802620003b0565b1980831691505092915050565b5f620003e78383620003bc565b9150826002028217905092915050565b620004028262000193565b67ffffffffffffffff8111156200041e576200041d6200019d565b5b6200042a8254620001f7565b6200043782828562000360565b5f60209050601f8311600181146200046d575f841562000458578287015190505b620004648582620003da565b865550620004d3565b601f1984166200047d866200022b565b5f5b82811015620004a6578489015182556001820191506020850194506020810190506200047f565b86831015620004c65784890151620004c2601f891682620003bc565b8355505b6001600288020188555050505b505050505050565b611a7380620004e95f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063a457c2d711610064578063a457c2d71461029a578063a9059cbb146102ca578063dd62ed3e146102fa578063f2fde38b1461032a576100fe565b8063715018a6146102385780638da5cb5b1461024257806395d89b41146102605780639dc29fac1461027e576100fe565b8063313ce567116100d1578063313ce5671461019e57806339509351146101bc57806340c10f19146101ec57806370a0823114610208576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a610346565b60405161011791906110eb565b60405180910390f35b61013a6004803603810190610135919061119c565b6103d6565b60405161014791906111f4565b60405180910390f35b6101586103f8565b604051610165919061121c565b60405180910390f35b61018860048036038101906101839190611235565b610401565b60405161019591906111f4565b60405180910390f35b6101a661042f565b6040516101b391906112a0565b60405180910390f35b6101d660048036038101906101d1919061119c565b610437565b6040516101e391906111f4565b60405180910390f35b6102066004803603810190610201919061119c565b61046d565b005b610222600480360381019061021d91906112b9565b610483565b60405161022f919061121c565b60405180910390f35b6102406104c8565b005b61024a6104db565b60405161025791906112f3565b60405180910390f35b610268610503565b60405161027591906110eb565b60405180910390f35b6102986004803603810190610293919061119c565b610593565b005b6102b460048036038101906102af919061119c565b6105a9565b6040516102c191906111f4565b60405180910390f35b6102e460048036038101906102df919061119c565b61061e565b6040516102f191906111f4565b60405180910390f35b610314600480360381019061030f919061130c565b610640565b604051610321919061121c565b60405180910390f35b610344600480360381019061033f91906112b9565b6106c2565b005b60606003805461035590611377565b80601f016020809104026020016040519081016040528092919081815260200182805461038190611377565b80156103cc5780601f106103a3576101008083540402835291602001916103cc565b820191905f5260205f20905b8154815290600101906020018083116103af57829003601f168201915b5050505050905090565b5f806103e0610744565b90506103ed81858561074b565b600191505092915050565b5f600254905090565b5f8061040b610744565b905061041885828561090e565b610423858585610999565b60019150509392505050565b5f6012905090565b5f80610441610744565b90506104628185856104538589610640565b61045d91906113d4565b61074b565b600191505092915050565b610475610c05565b61047f8282610c83565b5050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104d0610c05565b6104d95f610dd1565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461051290611377565b80601f016020809104026020016040519081016040528092919081815260200182805461053e90611377565b80156105895780601f1061056057610100808354040283529160200191610589565b820191905f5260205f20905b81548152906001019060200180831161056c57829003601f168201915b5050505050905090565b61059b610c05565b6105a58282610e94565b5050565b5f806105b3610744565b90505f6105c08286610640565b905083811015610605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fc90611477565b60405180910390fd5b610612828686840361074b565b60019250505092915050565b5f80610628610744565b9050610635818585610999565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106ca610c05565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90611505565b60405180910390fd5b61074181610dd1565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b090611593565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081e90611621565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610901919061121c565b60405180910390a3505050565b5f6109198484610640565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109935781811015610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90611689565b60405180910390fd5b610992848484840361074b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90611717565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c906117a5565b60405180910390fd5b610a80838383611057565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa90611833565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bec919061121c565b60405180910390a3610bff84848461105c565b50505050565b610c0d610744565b73ffffffffffffffffffffffffffffffffffffffff16610c2b6104db565b73ffffffffffffffffffffffffffffffffffffffff1614610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c789061189b565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890611903565b60405180910390fd5b610cfc5f8383611057565b8060025f828254610d0d91906113d4565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dba919061121c565b60405180910390a3610dcd5f838361105c565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990611991565b60405180910390fd5b610f0d825f83611057565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8790611a1f565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161103f919061121c565b60405180910390a3611052835f8461105c565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561109857808201518184015260208101905061107d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110bd82611061565b6110c7818561106b565b93506110d781856020860161107b565b6110e0816110a3565b840191505092915050565b5f6020820190508181035f83015261110381846110b3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111388261110f565b9050919050565b6111488161112e565b8114611152575f80fd5b50565b5f813590506111638161113f565b92915050565b5f819050919050565b61117b81611169565b8114611185575f80fd5b50565b5f8135905061119681611172565b92915050565b5f80604083850312156111b2576111b161110b565b5b5f6111bf85828601611155565b92505060206111d085828601611188565b9150509250929050565b5f8115159050919050565b6111ee816111da565b82525050565b5f6020820190506112075f8301846111e5565b92915050565b61121681611169565b82525050565b5f60208201905061122f5f83018461120d565b92915050565b5f805f6060848603121561124c5761124b61110b565b5b5f61125986828701611155565b935050602061126a86828701611155565b925050604061127b86828701611188565b9150509250925092565b5f60ff82169050919050565b61129a81611285565b82525050565b5f6020820190506112b35f830184611291565b92915050565b5f602082840312156112ce576112cd61110b565b5b5f6112db84828501611155565b91505092915050565b6112ed8161112e565b82525050565b5f6020820190506113065f8301846112e4565b92915050565b5f80604083850312156113225761132161110b565b5b5f61132f85828601611155565b925050602061134085828601611155565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061138e57607f821691505b6020821081036113a1576113a061134a565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113de82611169565b91506113e983611169565b9250828201905080821115611401576114006113a7565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61146160258361106b565b915061146c82611407565b604082019050919050565b5f6020820190508181035f83015261148e81611455565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6114ef60268361106b565b91506114fa82611495565b604082019050919050565b5f6020820190508181035f83015261151c816114e3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61157d60248361106b565b915061158882611523565b604082019050919050565b5f6020820190508181035f8301526115aa81611571565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61160b60228361106b565b9150611616826115b1565b604082019050919050565b5f6020820190508181035f830152611638816115ff565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611673601d8361106b565b915061167e8261163f565b602082019050919050565b5f6020820190508181035f8301526116a081611667565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61170160258361106b565b915061170c826116a7565b604082019050919050565b5f6020820190508181035f83015261172e816116f5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61178f60238361106b565b915061179a82611735565b604082019050919050565b5f6020820190508181035f8301526117bc81611783565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61181d60268361106b565b9150611828826117c3565b604082019050919050565b5f6020820190508181035f83015261184a81611811565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61188560208361106b565b915061189082611851565b602082019050919050565b5f6020820190508181035f8301526118b281611879565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6118ed601f8361106b565b91506118f8826118b9565b602082019050919050565b5f6020820190508181035f83015261191a816118e1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61197b60218361106b565b915061198682611921565b604082019050919050565b5f6020820190508181035f8301526119a88161196f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a0960228361106b565b9150611a14826119af565b604082019050919050565b5f6020820190508181035f830152611a36816119fd565b905091905056fea26469706673582212209bc8d26e52094b067d460f02efe1e2a0eea7bd597a8956d94d377661953d29ea64736f6c63430008150033
Deployed Bytecode
0x6080604052600436106101d0575f3560e01c80637803f3b1116100f6578063a457c2d711610094578063dd62ed3e11610063578063dd62ed3e146106c2578063e8c1947c146106fe578063f2fde38b14610726578063fad75d661461074e576101d7565b8063a457c2d7146105fa578063a842486114610636578063a9059cbb1461065e578063b2887bec1461069a576101d7565b80638da5cb5b116100d05780638da5cb5b1461052d5780639358bd4f1461055757806395d89b41146105935780639c8f9f23146105bd576101d7565b80637803f3b1146104af57806378e97925146104d957806385af30c514610503576101d7565b80632b112e491161016e5780633fc8cef31161013d5780633fc8cef31461040157806351c6590a1461042b57806370a082311461045d578063715018a614610499576101d7565b80632b112e4914610335578063313ce5671461035f57806339509351146103895780633c34ff63146103c5576101d7565b8063172979e4116101aa578063172979e41461026b57806318160ddd146102a75780632171dcc9146102d157806323b872dd146102f9576101d7565b806306fdde03146101db578063095ea7b3146102055780630d43e8ad14610241576101d7565b366101d757005b5f80fd5b3480156101e6575f80fd5b506101ef610778565b6040516101fc9190612776565b60405180910390f35b348015610210575f80fd5b5061022b60048036038101906102269190612834565b610808565b604051610238919061288c565b60405180910390f35b34801561024c575f80fd5b5061025561082a565b6040516102629190612900565b60405180910390f35b348015610276575f80fd5b50610291600480360381019061028c9190612919565b61084e565b60405161029e919061288c565b60405180910390f35b3480156102b2575f80fd5b506102bb61086b565b6040516102c89190612953565b60405180910390f35b3480156102dc575f80fd5b506102f760048036038101906102f29190612996565b610874565b005b348015610304575f80fd5b5061031f600480360381019061031a91906129d4565b6108d4565b60405161032c919061288c565b60405180910390f35b348015610340575f80fd5b50610349610900565b6040516103569190612953565b60405180910390f35b34801561036a575f80fd5b50610373610936565b6040516103809190612a3f565b60405180910390f35b348015610394575f80fd5b506103af60048036038101906103aa9190612834565b61094c565b6040516103bc919061288c565b60405180910390f35b3480156103d0575f80fd5b506103eb60048036038101906103e69190612919565b610982565b6040516103f8919061288c565b60405180910390f35b34801561040c575f80fd5b5061041561099f565b6040516104229190612a67565b60405180910390f35b61044560048036038101906104409190612a80565b6109c3565b60405161045493929190612aab565b60405180910390f35b348015610468575f80fd5b50610483600480360381019061047e9190612919565b610c09565b6040516104909190612953565b60405180910390f35b3480156104a4575f80fd5b506104ad610c4e565b005b3480156104ba575f80fd5b506104c3610c61565b6040516104d09190612a67565b60405180910390f35b3480156104e4575f80fd5b506104ed610c85565b6040516104fa9190612953565b60405180910390f35b34801561050e575f80fd5b50610517610ca9565b6040516105249190612a67565b60405180910390f35b348015610538575f80fd5b50610541610ccd565b60405161054e9190612a67565b60405180910390f35b348015610562575f80fd5b5061057d60048036038101906105789190612919565b610cf5565b60405161058a919061288c565b60405180910390f35b34801561059e575f80fd5b506105a7610d12565b6040516105b49190612776565b60405180910390f35b3480156105c8575f80fd5b506105e360048036038101906105de9190612a80565b610da2565b6040516105f1929190612ae0565b60405180910390f35b348015610605575f80fd5b50610620600480360381019061061b9190612834565b610faa565b60405161062d919061288c565b60405180910390f35b348015610641575f80fd5b5061065c60048036038101906106579190612996565b61101f565b005b348015610669575f80fd5b50610684600480360381019061067f9190612834565b61107f565b604051610691919061288c565b60405180910390f35b3480156106a5575f80fd5b506106c060048036038101906106bb9190612c47565b61109a565b005b3480156106cd575f80fd5b506106e860048036038101906106e39190612ca1565b611133565b6040516106f59190612953565b60405180910390f35b348015610709575f80fd5b50610724600480360381019061071f9190612c47565b6111b5565b005b348015610731575f80fd5b5061074c60048036038101906107479190612919565b611282565b005b348015610759575f80fd5b50610762611304565b60405161076f9190612953565b60405180910390f35b60606003805461078790612d0c565b80601f01602080910402602001604051908101604052809291908181526020018280546107b390612d0c565b80156107fe5780601f106107d5576101008083540402835291602001916107fe565b820191905f5260205f20905b8154815290600101906020018083116107e157829003601f168201915b5050505050905090565b5f80610812611328565b905061081f81858561132f565b600191505092915050565b7f0000000000000000000000000b29e8fda0a77abd089c23736efa9e269ba101f581565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b61087c6114f2565b8060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f806108de611328565b90506108eb858285611570565b6108f68585856115fb565b9150509392505050565b5f61090a5f610c09565b61091561dead610c09565b61091d61086b565b6109279190612d69565b6109319190612d69565b905090565b5f600660149054906101000a900460ff16905090565b5f80610956611328565b90506109778185856109688589611133565b6109729190612d9c565b61132f565b600191505092915050565b6007602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c81565b5f805f6001600a5f6101000a81548160ff0219169083151502179055506109e86118a1565b5f3490505f811180156109fa57505f85115b610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090612e19565b60405180910390fd5b610a45303330886118f0565b5f7f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff1663f305d7198330895f8033426040518863ffffffff1660e01b8152600401610aaa96959493929190612e70565b60606040518083038185885af193505050508015610ae657506040513d601f19601f82011682018060405250810190610ae39190612ee3565b60015b610afb575f94505f93505f92505f9050610b0c565b829750819650809550600193505050505b6001151581151514610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90612f7d565b60405180910390fd5b818411158015610b635750858511155b610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990612fe5565b60405180910390fd5b83821115610bc057610bbf338584610bba9190612d69565b611a42565b5b84861115610bdf57610bde30338789610bd99190612d69565b611b3d565b5b5050610be9611c8c565b5f600a5f6101000a81548160ff0219169083151502179055509193909250565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610c566114f2565b610c5f5f611c96565b565b7f000000000000000000000000af5ffa64b0421b4d1e400cad8f2e4b6ba6fbe5b981565b7f00000000000000000000000000000000000000000000000000000000680f9dff81565b7f000000000000000000000000589e1c953bcb822a2094fd8c7cbbd84a7762fb0481565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052805f5260405f205f915054906101000a900460ff1681565b606060048054610d2190612d0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4d90612d0c565b8015610d985780601f10610d6f57610100808354040283529160200191610d98565b820191905f5260205f20905b815481529060010190602001808311610d7b57829003601f168201915b5050505050905090565b5f806001600a5f6101000a81548160ff021916908315150217905550610dc66118a1565b5f8311610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff9061304d565b60405180910390fd5b610e347f000000000000000000000000589e1c953bcb822a2094fd8c7cbbd84a7762fb043330866118f0565b610e7f7f000000000000000000000000589e1c953bcb822a2094fd8c7cbbd84a7762fb047f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e85611d59565b5f7f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff166302751cec30865f8033426040518763ffffffff1660e01b8152600401610ee396959493929190612e70565b60408051808303815f875af1925050508015610f1d57506040513d601f19601f82011682018060405250810190610f1a919061306b565b60015b610f2f575f92505f91505f9050610f3c565b8194508093506001925050505b6001151581151514610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906130f3565b60405180910390fd5b50610f8c611c8c565b5f600a5f6101000a81548160ff021916908315150217905550915091565b5f80610fb4611328565b90505f610fc18286611133565b905083811015611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90613181565b60405180910390fd5b611013828686840361132f565b60019250505092915050565b6110276114f2565b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f61109261108b611328565b84846115fb565b905092915050565b6110a26114f2565b5f5b825181101561112e578160095f8584815181106110c4576110c361319f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080611126906131cc565b9150506110a4565b505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6111bd6114f2565b5f5b825181101561127d577f0000000000000000000000000b29e8fda0a77abd089c23736efa9e269ba101f573ffffffffffffffffffffffffffffffffffffffff1663cddc29688483815181106112175761121661319f565b5b6020026020010151846040518363ffffffff1660e01b815260040161123d929190613213565b5f604051808303815f87803b158015611254575f80fd5b505af1158015611266573d5f803e3d5ffd5b505050508080611275906131cc565b9150506111bf565b505050565b61128a6114f2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef906132aa565b60405180910390fd5b61130181611c96565b50565b7f00000000000000000000000000000000000000000052b7d2dcc80cd2e400000081565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490613338565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361140b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611402906133c6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114e59190612953565b60405180910390a3505050565b6114fa611328565b73ffffffffffffffffffffffffffffffffffffffff16611518610ccd565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115659061342e565b60405180910390fd5b565b5f61157b8484611133565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115f557818110156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613496565b60405180910390fd5b6115f4848484840361132f565b5b50505050565b5f60011515600a5f9054906101000a900460ff1615150361162a57611621848484611ea8565b6001905061189a565b5f80151560095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615151480156116d357505f151560095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b801561178457506001151560075f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515148061178357506001151560075f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b5b1561178e57600190505b5f1515600a5f9054906101000a900460ff16151514801561180257505f151560075f6117b8611328565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b801561185a57505f151560085f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b1561186857611867612114565b5b5f600115158215151461187b5783611886565b6118858685612657565b5b9050611893868683611ea8565b6001925050505b9392505050565b6002600554036118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd906134fe565b60405180910390fd5b6002600581905550565b5f808573ffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b8686866040516024016119269392919061351c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516119909190613595565b5f604051808303815f865af19150503d805f81146119c9576040519150601f19603f3d011682016040523d82523d5f602084013e6119ce565b606091505b50915091508180156119fb57505f815114806119fa5750808060200190518101906119f991906135bf565b5b5b611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3190613634565b60405180910390fd5b505050505050565b5f8273ffffffffffffffffffffffffffffffffffffffff16825f67ffffffffffffffff811115611a7557611a74612b0b565b5b6040519080825280601f01601f191660200182016040528015611aa75781602001600182028036833780820191505090505b50604051611ab59190613595565b5f6040518083038185875af1925050503d805f8114611aef576040519150601f19603f3d011682016040523d82523d5f602084013e611af4565b606091505b5050905080611b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2f9061369c565b60405180910390fd5b505050565b5f808473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b8585604051602401611b719291906136ba565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051611bdb9190613595565b5f604051808303815f865af19150503d805f8114611c14576040519150601f19603f3d011682016040523d82523d5f602084013e611c19565b606091505b5091509150818015611c4657505f81511480611c45575080806020019051810190611c4491906135bf565b5b5b611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c9061372b565b60405180910390fd5b5050505050565b6001600581905550565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808473ffffffffffffffffffffffffffffffffffffffff1663095ea7b360e01b8585604051602401611d8d9291906136ba565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051611df79190613595565b5f604051808303815f865af19150503d805f8114611e30576040519150601f19603f3d011682016040523d82523d5f602084013e611e35565b606091505b5091509150818015611e6257505f81511480611e61575080806020019051810190611e6091906135bf565b5b5b611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613793565b60405180910390fd5b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90613821565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b906138af565b60405180910390fd5b611f8f8383836126e2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120099061393d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120fb9190612953565b60405180910390a361210e8484846126e7565b50505050565b6001600a5f6101000a81548160ff0219169083151502179055505f61213830610c09565b90507f00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000811015612168575061263c565b5f6105786107d061138861064061217f9190612d9c565b6121899190612d9c565b6121939190612d9c565b90505f81610640846121a5919061395b565b6121af91906139c9565b905080836121bd9190612d69565b92505f6107d06113886121d09190612d9c565b90505f60026105786121e2919061395b565b90505f6107d0611388836121f69190612d9c565b6122009190612d9c565b9050808361220e9190612d9c565b94505f600267ffffffffffffffff81111561222c5761222b612b0b565b5b60405190808252806020026020018201604052801561225a5781602001602082028036833780820191505090505b50905030815f815181106122715761227061319f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612314573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123389190613a0d565b8160018151811061234c5761234b61319f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505f868389612394919061395b565b61239e91906139c9565b90505f7f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8630426040518663ffffffff1660e01b8152600401612402959493929190613aef565b5f604051808303815f87803b158015612419575f80fd5b505af192505050801561242a575060015b1561243457600190505b806124475750505050505050505061263c565b6124543061dead89611b3d565b5f4790505f61246230610c09565b90505f868884612472919061395b565b61247c91906139c9565b90506124a87f000000000000000000000000af5ffa64b0421b4d1e400cad8f2e4b6ba6fbe5b982611a42565b5f89836107d06124b8919061395b565b6124c291906139c9565b90505f88856107d06124d4919061395b565b6124de91906139c9565b90507f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f805f426040518863ffffffff1660e01b815260040161254496959493929190612e70565b60606040518083038185885af19350505050801561258057506040513d601f19601f8201168201806040525081019061257d9190612ee3565b60015b6125c2577fb73839a8c32f2714fe1114a921d4f222325aecbf5509b64869e8b3b44b3d536582826040516125b5929190612ae0565b60405180910390a16125c6565b5050505b5f4790505f6125d430610c09565b90506126007f0000000000000000000000000b29e8fda0a77abd089c23736efa9e269ba101f583611a42565b61262b307f0000000000000000000000000b29e8fda0a77abd089c23736efa9e269ba101f583611b3d565b505050505050505050505050505050505b5f600a5f6101000a81548160ff021916908315150217905550565b5f8042621275007f00000000000000000000000000000000000000000000000000000000680f9dff6126899190612d9c565b11612696576101f461269a565b6103e85b90505f61271082856126ac919061395b565b6126b691906139c9565b90505f8111156126cc576126cb853083611ea8565b5b80846126d89190612d69565b9250505092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612723578082015181840152602081019050612708565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612748826126ec565b61275281856126f6565b9350612762818560208601612706565b61276b8161272e565b840191505092915050565b5f6020820190508181035f83015261278e818461273e565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6127d0826127a7565b9050919050565b6127e0816127c6565b81146127ea575f80fd5b50565b5f813590506127fb816127d7565b92915050565b5f819050919050565b61281381612801565b811461281d575f80fd5b50565b5f8135905061282e8161280a565b92915050565b5f806040838503121561284a5761284961279f565b5b5f612857858286016127ed565b925050602061286885828601612820565b9150509250929050565b5f8115159050919050565b61288681612872565b82525050565b5f60208201905061289f5f83018461287d565b92915050565b5f819050919050565b5f6128c86128c36128be846127a7565b6128a5565b6127a7565b9050919050565b5f6128d9826128ae565b9050919050565b5f6128ea826128cf565b9050919050565b6128fa816128e0565b82525050565b5f6020820190506129135f8301846128f1565b92915050565b5f6020828403121561292e5761292d61279f565b5b5f61293b848285016127ed565b91505092915050565b61294d81612801565b82525050565b5f6020820190506129665f830184612944565b92915050565b61297581612872565b811461297f575f80fd5b50565b5f813590506129908161296c565b92915050565b5f80604083850312156129ac576129ab61279f565b5b5f6129b9858286016127ed565b92505060206129ca85828601612982565b9150509250929050565b5f805f606084860312156129eb576129ea61279f565b5b5f6129f8868287016127ed565b9350506020612a09868287016127ed565b9250506040612a1a86828701612820565b9150509250925092565b5f60ff82169050919050565b612a3981612a24565b82525050565b5f602082019050612a525f830184612a30565b92915050565b612a61816127c6565b82525050565b5f602082019050612a7a5f830184612a58565b92915050565b5f60208284031215612a9557612a9461279f565b5b5f612aa284828501612820565b91505092915050565b5f606082019050612abe5f830186612944565b612acb6020830185612944565b612ad86040830184612944565b949350505050565b5f604082019050612af35f830185612944565b612b006020830184612944565b9392505050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612b418261272e565b810181811067ffffffffffffffff82111715612b6057612b5f612b0b565b5b80604052505050565b5f612b72612796565b9050612b7e8282612b38565b919050565b5f67ffffffffffffffff821115612b9d57612b9c612b0b565b5b602082029050602081019050919050565b5f80fd5b5f612bc4612bbf84612b83565b612b69565b90508083825260208201905060208402830185811115612be757612be6612bae565b5b835b81811015612c105780612bfc88826127ed565b845260208401935050602081019050612be9565b5050509392505050565b5f82601f830112612c2e57612c2d612b07565b5b8135612c3e848260208601612bb2565b91505092915050565b5f8060408385031215612c5d57612c5c61279f565b5b5f83013567ffffffffffffffff811115612c7a57612c796127a3565b5b612c8685828601612c1a565b9250506020612c9785828601612982565b9150509250929050565b5f8060408385031215612cb757612cb661279f565b5b5f612cc4858286016127ed565b9250506020612cd5858286016127ed565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612d2357607f821691505b602082108103612d3657612d35612cdf565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612d7382612801565b9150612d7e83612801565b9250828203905081811115612d9657612d95612d3c565b5b92915050565b5f612da682612801565b9150612db183612801565b9250828201905080821115612dc957612dc8612d3c565b5b92915050565b7f5a45524f000000000000000000000000000000000000000000000000000000005f82015250565b5f612e036004836126f6565b9150612e0e82612dcf565b602082019050919050565b5f6020820190508181035f830152612e3081612df7565b9050919050565b5f819050919050565b5f612e5a612e55612e5084612e37565b6128a5565b612801565b9050919050565b612e6a81612e40565b82525050565b5f60c082019050612e835f830189612a58565b612e906020830188612944565b612e9d6040830187612e61565b612eaa6060830186612e61565b612eb76080830185612a58565b612ec460a0830184612944565b979650505050505050565b5f81519050612edd8161280a565b92915050565b5f805f60608486031215612efa57612ef961279f565b5b5f612f0786828701612ecf565b9350506020612f1886828701612ecf565b9250506040612f2986828701612ecf565b9150509250925092565b7f414444204c4951554944495459204641494c45440000000000000000000000005f82015250565b5f612f676014836126f6565b9150612f7282612f33565b602082019050919050565b5f6020820190508181035f830152612f9481612f5b565b9050919050565b7f414d4f554e5420455252000000000000000000000000000000000000000000005f82015250565b5f612fcf600a836126f6565b9150612fda82612f9b565b602082019050919050565b5f6020820190508181035f830152612ffc81612fc3565b9050919050565b7f5a45524f204c49515549444954590000000000000000000000000000000000005f82015250565b5f613037600e836126f6565b915061304282613003565b602082019050919050565b5f6020820190508181035f8301526130648161302b565b9050919050565b5f80604083850312156130815761308061279f565b5b5f61308e85828601612ecf565b925050602061309f85828601612ecf565b9150509250929050565b7f52454d4f5645204c4951554944495459204641494c45440000000000000000005f82015250565b5f6130dd6017836126f6565b91506130e8826130a9565b602082019050919050565b5f6020820190508181035f83015261310a816130d1565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61316b6025836126f6565b915061317682613111565b604082019050919050565b5f6020820190508181035f8301526131988161315f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6131d682612801565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361320857613207612d3c565b5b600182019050919050565b5f6040820190506132265f830185612a58565b613233602083018461287d565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6132946026836126f6565b915061329f8261323a565b604082019050919050565b5f6020820190508181035f8301526132c181613288565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6133226024836126f6565b915061332d826132c8565b604082019050919050565b5f6020820190508181035f83015261334f81613316565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6133b06022836126f6565b91506133bb82613356565b604082019050919050565b5f6020820190508181035f8301526133dd816133a4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6134186020836126f6565b9150613423826133e4565b602082019050919050565b5f6020820190508181035f8301526134458161340c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613480601d836126f6565b915061348b8261344c565b602082019050919050565b5f6020820190508181035f8301526134ad81613474565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6134e8601f836126f6565b91506134f3826134b4565b602082019050919050565b5f6020820190508181035f830152613515816134dc565b9050919050565b5f60608201905061352f5f830186612a58565b61353c6020830185612a58565b6135496040830184612944565b949350505050565b5f81519050919050565b5f81905092915050565b5f61356f82613551565b613579818561355b565b9350613589818560208601612706565b80840191505092915050565b5f6135a08284613565565b915081905092915050565b5f815190506135b98161296c565b92915050565b5f602082840312156135d4576135d361279f565b5b5f6135e1848285016135ab565b91505092915050565b7f53544600000000000000000000000000000000000000000000000000000000005f82015250565b5f61361e6003836126f6565b9150613629826135ea565b602082019050919050565b5f6020820190508181035f83015261364b81613612565b9050919050565b7f53544500000000000000000000000000000000000000000000000000000000005f82015250565b5f6136866003836126f6565b915061369182613652565b602082019050919050565b5f6020820190508181035f8301526136b38161367a565b9050919050565b5f6040820190506136cd5f830185612a58565b6136da6020830184612944565b9392505050565b7f53540000000000000000000000000000000000000000000000000000000000005f82015250565b5f6137156002836126f6565b9150613720826136e1565b602082019050919050565b5f6020820190508181035f83015261374281613709565b9050919050565b7f53410000000000000000000000000000000000000000000000000000000000005f82015250565b5f61377d6002836126f6565b915061378882613749565b602082019050919050565b5f6020820190508181035f8301526137aa81613771565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61380b6025836126f6565b9150613816826137b1565b604082019050919050565b5f6020820190508181035f830152613838816137ff565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6138996023836126f6565b91506138a48261383f565b604082019050919050565b5f6020820190508181035f8301526138c68161388d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6139276026836126f6565b9150613932826138cd565b604082019050919050565b5f6020820190508181035f8301526139548161391b565b9050919050565b5f61396582612801565b915061397083612801565b925082820261397e81612801565b9150828204841483151761399557613994612d3c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6139d382612801565b91506139de83612801565b9250826139ee576139ed61399c565b5b828204905092915050565b5f81519050613a07816127d7565b92915050565b5f60208284031215613a2257613a2161279f565b5b5f613a2f848285016139f9565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613a6a816127c6565b82525050565b5f613a7b8383613a61565b60208301905092915050565b5f602082019050919050565b5f613a9d82613a38565b613aa78185613a42565b9350613ab283613a52565b805f5b83811015613ae2578151613ac98882613a70565b9750613ad483613a87565b925050600181019050613ab5565b5085935050505092915050565b5f60a082019050613b025f830188612944565b613b0f6020830187612e61565b8181036040830152613b218186613a93565b9050613b306060830185612a58565b613b3d6080830184612944565b969550505050505056fea2646970667358221220784b6912bddbe390bdc11f5e31c8fc59cdd461805a1efe120d493202f454a53164736f6c63430008150033
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.
Add Token to MetaMask (Web3)