false
true
0

Contract Address Details

0xA5AC6346077aa95095D34AEBFbcd61C367A08B2f

Token
Pulse TV (PTV)
Creator
0x1a8f71–d6eb88 at 0x0aed70–a781d3
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
1,508 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
26041834
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
PTV




Optimization enabled
true
Compiler version
v0.8.2+commit.661d1103




Optimization runs
200
EVM Version
default




Verified at
2024-06-13T17:58:16.471800Z

Constructor Arguments

0x000000000000000000000000bb978609a6cf64d5a58bd602e8f03979ed760997

Arg [0] (address) : 0xbb978609a6cf64d5a58bd602e8f03979ed760997

              

PTV.sol

pragma solidity 0.8.2;

// SPDX-License-Identifier: MIT

import "./Ownable.sol";
import "./ERC20.sol";
import "./Distributor.sol";

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

interface IPulseXRouter {
   function factory() external pure returns (address);
   function WPLS() external pure returns (address);
   function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
   function addLiquidityETH(address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract PTV is Ownable, ERC20 {

    uint256 private rewardFeeTotal;
	uint256 private liquidityFeeTotal;
    uint256 private marketingFeeTotal;
	
	uint256[] public rewardFee;
	uint256[] public burnFee;
	uint256[] public liquidityFee;
	uint256[] public marketingFee;
	
	uint256 public distributorGas;
	uint256 public swapThreshold;
	uint256 public tokenLimitPerWallet;
	
	IPulseXRouter public pulseXRouter;
	Distributor public distributor;
	address public pulseXPair;
	address public burnWallet;
	address public marketing;
	
	bool private swapping;
	
    mapping(address => bool) public isExcludedFromFee;
    mapping(address => bool) public isExcludedFromReward;
	mapping(address => bool) public isExcludedFromLimit;
	mapping(address => bool) public isliquidityPair;
	
	event SwapThresholdUpdated(uint256 amount);
	event MarketingWalletUpdated(address wallet);
	event LPPairUpdated(address pair, bool status);
	event WalletExcludeFromFee(address wallet, bool status);
	event WalletExcludedFromLimit(address wallet, bool value);
	event WalletExcludedFromReward(address wallet, bool value);
	event TokenPerWalletLimitUpdated(uint256 amount);
	event DistributionCriteriaUpdated(uint256 minPeriod, uint256 minDistribution);
    event DistributorGasUpdated(uint256 distributorGas);

	constructor(address owner_) ERC20("Pulse TV", "PTV") {
	   require(address(owner_) != address(0), "Zero address");
	   
	   burnWallet = address(0x0000000000000000000000000000000000000369);
	   marketing = address(0x3C614B787fA85eaCf895206EA21beC2B9C5A5a2C);
	   pulseXRouter = IPulseXRouter(0x165C3410fC91EF562C50559f7d2289fEbed552d9);
	   pulseXPair = IPulseXFactory(pulseXRouter.factory()).createPair(address(this), pulseXRouter.WPLS());
	   distributor = new Distributor();
	   
       rewardFee.push(100);
	   rewardFee.push(0);
	   rewardFee.push(0);
		
	   burnFee.push(0);
	   burnFee.push(100);
	   burnFee.push(0);
		
	   liquidityFee.push(50);
	   liquidityFee.push(50);
	   liquidityFee.push(0);
	   
	   marketingFee.push(50);
	   marketingFee.push(50);
	   marketingFee.push(0);
	   
	   isliquidityPair[address(pulseXPair)] = true;
	   
	   isExcludedFromFee[address(owner_)] = true;
	   isExcludedFromFee[address(this)] = true;
	   isExcludedFromFee[address(burnWallet)] = true;
	   
	   isExcludedFromLimit[address(this)] = true;
	   isExcludedFromLimit[address(pulseXPair)] = true;
	   isExcludedFromLimit[address(owner_)] = true;
	   isExcludedFromLimit[address(burnWallet)] = true;
	   
	   isExcludedFromReward[address(this)] = true;
	   isExcludedFromReward[address(pulseXPair)] = true;
	   isExcludedFromReward[address(burnWallet)] = true;
	   
	   swapThreshold = 25000 * (10**4);
	   tokenLimitPerWallet = 1500000 * (10**4);
	   distributorGas = 250000;
	   
	   _mint(address(owner_), 2000000000 * (10**4));
	   _transferOwnership(address(owner_));
    }
	
	receive() external payable {}
	
	function updatedSwapThreshold(uint256 amount) external onlyOwner {
  	    require(amount <= totalSupply(), "Amount cannot be over the total supply.");
		require(amount >= 1000 * (10**4), "Minimum `1000` token per swap required");
		
		swapThreshold = amount;
		emit SwapThresholdUpdated(amount);
  	}
	
	function updateTokenLimitPerWallet(uint256 amount) external onlyOwner {
		require(amount <= totalSupply(), "Amount cannot be over the total supply.");
		require(amount >= 1000 * (10**4), "Minimum `1000` token per wallet required");
		
		tokenLimitPerWallet = amount;
		emit TokenPerWalletLimitUpdated(amount);
	}
	
	function excludeFromFee(address wallet, bool status) external onlyOwner {
        require(address(wallet) != address(0), "Wallet address is not correct");
		require(isExcludedFromFee[address(wallet)] != status, "Wallet is already the value of 'status'");
		
		isExcludedFromFee[address(wallet)] = status;
		emit WalletExcludeFromFee(address(wallet), status);
    }
	
	function excludeFromLimit(address wallet, bool status) external onlyOwner {
	    require(wallet != address(0), "Zero address");
	    require(isExcludedFromLimit[address(wallet)] != status, "Wallet is already the value of 'status'");
		
	    isExcludedFromLimit[address(wallet)] = status;
	    emit WalletExcludedFromLimit(address(wallet), status);
	}
	
	function excludeFromReward(address wallet, bool status) external onlyOwner {
	    require(address(wallet) != address(0), "Zero address");
	    require(isExcludedFromReward[address(wallet)] != status, "Wallet is already the value of 'status'");
	   
	    isExcludedFromReward[address(wallet)] = status;
		if(status)
	    {
           distributor.setShare(address(wallet), 0);
        }
	    else
	    {
           distributor.setShare(address(wallet), balanceOf(address(wallet)));
        }
	    emit WalletExcludedFromReward(address(wallet), status);
	}
	
	function setDistributionCriteria(uint256 minPeriod, uint256 minDistribution) external onlyOwner {
	    require(minDistribution > 0, "Min. distribution can't be zero");
		
        distributor.setDistributionCriteria(minPeriod, minDistribution);
		emit DistributionCriteriaUpdated(minPeriod, minDistribution);
    }
	
	function setDistributorGas(uint256 gas) external onlyOwner {
       require(gas < 750000, "Gas is greater than limit");
	   
       distributorGas = gas;
	   emit DistributorGasUpdated(distributorGas);
    }
	
	function updateMarketingWallet(address wallet) external onlyOwner {
        require(address(wallet) != address(0), "Zero address");
		require(!isContract(wallet), "Contract address is not allowed");
		
		marketing = address(wallet);
        emit MarketingWalletUpdated(address(wallet));
    }
	
	function setLiquidityPair(address pair, bool status) external onlyOwner {
        require(isliquidityPair[address(pair)] != status, "Pair is already set to that status");
        require(pair != address(pulseXPair), "The pair cannot be removed");
		
		isliquidityPair[address(pair)] = status;
		emit LPPairUpdated(pair, status);
    }
	
	function _transfer(address sender, address recipient, uint256 amount) internal override(ERC20) {      
        require(sender != address(0), "transfer from the zero address");
        require(recipient != address(0), "transfer to the zero address");
		
		uint256 contractTokenBalance = balanceOf(address(this));
		bool canSwap = contractTokenBalance >= swapThreshold;
		
		if(canSwap && !swapping && isliquidityPair[recipient]) 
		{
		    uint256 tokenToLiqudity = liquidityFeeTotal / 2;
			uint256 tokenToMarketing = marketingFeeTotal;
			uint256 tokenToReward = rewardFeeTotal;
			uint256 tokenToSwap = tokenToLiqudity + tokenToMarketing + tokenToReward;
			
			if(tokenToSwap >= swapThreshold) 
			{
			    swapping = true;
			    swapTokensForPLS(swapThreshold);
				
			    uint256 PLSBalance = address(this).balance;
				
			    uint256 liqudityPart = (PLSBalance * tokenToLiqudity) / (tokenToSwap);
				uint256 rewardPart = (PLSBalance * tokenToReward) / (tokenToSwap);
			    uint256 marketingPart = PLSBalance - liqudityPart - rewardPart;
				
			    if(liqudityPart > 0)
			    {
				   uint256 liqudityToken = (swapThreshold * tokenToLiqudity) / (tokenToSwap);
				   addLiquidity(liqudityToken, liqudityPart);
				   liquidityFeeTotal -= (liqudityToken + liqudityToken);
			    }
			    if(marketingPart > 0) 
			    {
				   (bool success, ) = marketing.call{value: marketingPart}("");
			       require(success, "Failed to send PLS on marketing wallet");
				   marketingFeeTotal -= (swapThreshold * tokenToMarketing) / (tokenToSwap);
			    }
				if(rewardPart > 0)
				{
				   distributor.deposit{value: rewardPart}();
				   rewardFeeTotal -= (swapThreshold * tokenToReward) / (tokenToSwap);
				}
			    swapping = false;
			}
        }
		
		if(isExcludedFromFee[sender] || isExcludedFromFee[recipient])
		{
		    super._transfer(sender, recipient, amount);
		}
		else
		{
		    (uint256 fees, uint256 burn) = collectFee(amount, isliquidityPair[recipient], !isliquidityPair[sender] && !isliquidityPair[recipient]);
			
			if(!isExcludedFromLimit[recipient])
		    {
		       require(((balanceOf(recipient) + amount) - (fees + burn)) <= tokenLimitPerWallet, "Transfer amount exceeds the `tokenLimitPerWallet`.");   
		    }
		    if(fees > 0) 
		    {
			   super._transfer(sender, address(this), fees);
		    }
			if(burn > 0) 
		    {
			   super._transfer(sender, address(burnWallet), fees);
		    }
		    super._transfer(sender, recipient, amount - fees - burn);
		}
		if(!isExcludedFromReward[sender]){ try distributor.setShare(sender, balanceOf(sender)) {} catch {} }
        if(!isExcludedFromReward[recipient]){ try distributor.setShare(recipient, balanceOf(recipient)) {} catch {} }
		try distributor.process(distributorGas) {} catch {}
    }
	
	function collectFee(uint256 amount, bool sell, bool p2p) private returns(uint256, uint256) {
        uint256 newRewardFee = amount * (p2p ? rewardFee[2] : sell ? rewardFee[1] : rewardFee[0]) / 10000;
		uint256 newLiquidityFee = amount * (p2p ? liquidityFee[2] : sell ? liquidityFee[1] : liquidityFee[0]) / 10000;
		uint256 newMarketingFee = amount * (p2p ? marketingFee[2] : sell ? marketingFee[1] : marketingFee[0]) / 10000;
		uint256 newBurnFee = amount * (p2p ? burnFee[2] : sell ? burnFee[1] : burnFee[0]) / 10000;
		
		rewardFeeTotal += newRewardFee;
		liquidityFeeTotal += newLiquidityFee;
		marketingFeeTotal += newMarketingFee;
        return ((newRewardFee + newLiquidityFee + newMarketingFee), newBurnFee);
    }
	
	function swapTokensForPLS(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = pulseXRouter.WPLS();
		
        _approve(address(this), address(pulseXRouter), tokenAmount);
        pulseXRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
	
	function addLiquidity(uint256 tokenAmount, uint256 PLSAmount) private {
        _approve(address(this), address(pulseXRouter), tokenAmount);
        pulseXRouter.addLiquidityETH{value: PLSAmount}(
            address(this),
            tokenAmount,
            0, 
            0,
            address(this),
            block.timestamp
        );
    }
	
	function isContract(address account) internal view returns (bool) {
       return account.code.length > 0;
    }
}
        

Context.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

Distributor.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IDistributor {
   function setDistributionCriteria(uint256 minPeriod, uint256 minDistribution) external;
   function setShare(address shareholder, uint256 amount) external;
   function deposit() external payable;
   function process(uint256 gas) external;
}

abstract contract ReentrancyGuard {
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
       _status = _NOT_ENTERED;
    }
	
    modifier nonReentrant() {
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        _status = _ENTERED;

        _;
		
        _status = _NOT_ENTERED;
    }
}

contract Distributor is IDistributor, ReentrancyGuard {
    address owner;
	
    struct Share {
	  uint256 amount;
	  uint256 totalExcluded;
	  uint256 totalRealised;
    }
	
    address[] shareholders;
    mapping (address => uint256) public shareholderIndexes;
    mapping (address => uint256) public shareholderClaims;
    mapping (address => Share) public shares;
	
	event DistributionCriteriaUpdate(uint256 minPeriod, uint256 minDistribution);
	event NewFundDeposit(uint256 amount);

    uint256 public totalShares;
    uint256 public totalDividends;
    uint256 public totalDistributed;
    uint256 public dividendsPerShare;
    uint256 public constant dividendsPerShareAccuracyFactor = 10 ** 36;
	
    uint256 public minPeriod = 3600;
    uint256 public minDistribution = 1 * (10 ** 18);
	
    uint256 currentIndex;
	
    modifier onlyOwner() {
        require(msg.sender == owner, "!Token"); _;
    }
	
    constructor () {
        owner = msg.sender;
    }
	
	receive() external payable {}
	
    function setDistributionCriteria(uint256 _minPeriod, uint256 _minDistribution) external override onlyOwner {
        minPeriod = _minPeriod;
        minDistribution = _minDistribution;
		emit DistributionCriteriaUpdate(minPeriod, minDistribution);
    }
	
    function setShare(address shareholder, uint256 amount) external override onlyOwner {
        if(shares[shareholder].amount > 0)
		{
            distributeDividend(shareholder);
        }
		if(amount > 0 && shares[shareholder].amount == 0)
		{
            addShareholder(shareholder);
        }
		else if(amount == 0 && shares[shareholder].amount > 0)
		{
           removeShareholder(shareholder);
        }
        totalShares = totalShares - shares[shareholder].amount + amount;
        shares[shareholder].amount = amount;
        shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount);
    }

    function deposit() external override onlyOwner payable {
        totalDividends += msg.value;
        dividendsPerShare += ((dividendsPerShareAccuracyFactor * msg.value) / totalShares);
		emit NewFundDeposit(msg.value);
    }
	
    function process(uint256 gas) external override onlyOwner {
        uint256 shareholderCount = shareholders.length;

        if(shareholderCount == 0) { return; }

        uint256 gasUsed = 0;
        uint256 gasLeft = gasleft();

        uint256 iterations = 0;

        while(gasUsed < gas && iterations < shareholderCount) {
            if(currentIndex >= shareholderCount)
			{
                currentIndex = 0;
            }
            if(shouldDistribute(shareholders[currentIndex]))
			{
                distributeDividend(shareholders[currentIndex]);
            }
            gasUsed = gasUsed + gasLeft - gasleft();
            gasLeft = gasleft();
            currentIndex++;
            iterations++;
        }
    }

    function shouldDistribute(address shareholder) internal view returns (bool) {
        return (shareholderClaims[shareholder] + minPeriod) < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution;
    }
	
    function distributeDividend(address shareholder) internal {
        if(shares[shareholder].amount == 0){ return; }
		
        uint256 amount = getUnpaidEarnings(shareholder);
        if(amount > 0) 
		{
		    (bool success, ) = shareholder.call{value: amount}("");
			if(success)
			{
			   totalDistributed += amount;
			   shareholderClaims[shareholder] = block.timestamp;
			   shares[shareholder].totalRealised = shares[shareholder].totalRealised + amount;
			   shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount);
			}
        }
    }
	
    function claimReward() external nonReentrant{
	   if(shouldDistribute(msg.sender)) 
	   {
		  distributeDividend(msg.sender);
	   }
    }
	
    function getUnpaidEarnings(address shareholder) public view returns (uint256) {
        if(shares[shareholder].amount == 0){ return 0; }

        uint256 shareholderTotalDividends = getCumulativeDividends(shares[shareholder].amount);
        uint256 shareholderTotalExcluded = shares[shareholder].totalExcluded;

        if(shareholderTotalDividends <= shareholderTotalExcluded){ return 0; }
        return shareholderTotalDividends - shareholderTotalExcluded;
    }

    function getCumulativeDividends(uint256 share) internal view returns (uint256) {
        return share * dividendsPerShare / dividendsPerShareAccuracyFactor;
    }

    function addShareholder(address shareholder) internal {
        shareholderIndexes[shareholder] = shareholders.length;
        shareholders.push(shareholder);
    }
	
    function removeShareholder(address shareholder) internal {
        shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length-1];
        shareholderIndexes[shareholders[shareholders.length-1]] = shareholderIndexes[shareholder];
        shareholders.pop();
    }
}
          

ERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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 4;
    }

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

IERC20.sol

// SPDX-License-Identifier: MIT

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

IERC20Metadata.sol

// SPDX-License-Identifier: MIT

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

Ownable.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"owner_","internalType":"address"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"DistributionCriteriaUpdated","inputs":[{"type":"uint256","name":"minPeriod","internalType":"uint256","indexed":false},{"type":"uint256","name":"minDistribution","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"DistributorGasUpdated","inputs":[{"type":"uint256","name":"distributorGas","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"LPPairUpdated","inputs":[{"type":"address","name":"pair","internalType":"address","indexed":false},{"type":"bool","name":"status","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"MarketingWalletUpdated","inputs":[{"type":"address","name":"wallet","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SwapThresholdUpdated","inputs":[{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TokenPerWalletLimitUpdated","inputs":[{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"WalletExcludeFromFee","inputs":[{"type":"address","name":"wallet","internalType":"address","indexed":false},{"type":"bool","name":"status","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"WalletExcludedFromLimit","inputs":[{"type":"address","name":"wallet","internalType":"address","indexed":false},{"type":"bool","name":"value","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"WalletExcludedFromReward","inputs":[{"type":"address","name":"wallet","internalType":"address","indexed":false},{"type":"bool","name":"value","internalType":"bool","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"burnFee","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"burnWallet","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract Distributor"}],"name":"distributor","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"distributorGas","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromFee","inputs":[{"type":"address","name":"wallet","internalType":"address"},{"type":"bool","name":"status","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromLimit","inputs":[{"type":"address","name":"wallet","internalType":"address"},{"type":"bool","name":"status","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromReward","inputs":[{"type":"address","name":"wallet","internalType":"address"},{"type":"bool","name":"status","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedFromFee","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedFromLimit","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedFromReward","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isliquidityPair","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"liquidityFee","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"marketing","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"marketingFee","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"pulseXPair","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IPulseXRouter"}],"name":"pulseXRouter","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"rewardFee","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setDistributionCriteria","inputs":[{"type":"uint256","name":"minPeriod","internalType":"uint256"},{"type":"uint256","name":"minDistribution","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setDistributorGas","inputs":[{"type":"uint256","name":"gas","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setLiquidityPair","inputs":[{"type":"address","name":"pair","internalType":"address"},{"type":"bool","name":"status","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"swapThreshold","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenLimitPerWallet","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateMarketingWallet","inputs":[{"type":"address","name":"wallet","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateTokenLimitPerWallet","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updatedSwapThreshold","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"receive","stateMutability":"payable"}]
              

Contract Creation Code

Verify & Publish
0x60806040523480156200001157600080fd5b5060405162003c6a38038062003c6a833981016040819052620000349162000788565b60405180604001604052806008815260200167283ab639b2902a2b60c11b81525060405180604001604052806003815260200162282a2b60e91b8152506200008b620000856200059b60201b60201c565b6200059f565b8151620000a0906004906020850190620006d4565b508051620000b6906005906020840190620006d4565b5050506001600160a01b038116620001045760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064015b60405180910390fd5b601380546001600160a01b031990811661036917909155601480548216733c614b787fa85eacf895206ea21bec2b9c5a5a2c1790556010805490911673165c3410fc91ef562c50559f7d2289febed552d917908190556040805163c45a015560e01b815290516001600160a01b03929092169163c45a015591600481810192602092909190829003018186803b1580156200019e57600080fd5b505afa158015620001b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d9919062000788565b6001600160a01b031663c9c6539630601060009054906101000a90046001600160a01b03166001600160a01b031663ef8ef56f6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023757600080fd5b505afa1580156200024c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000272919062000788565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002bb57600080fd5b505af1158015620002d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f6919062000788565b601280546001600160a01b0319166001600160a01b0392909216919091179055604051620003249062000763565b604051809103906000f08015801562000341573d6000803e3d6000fd5b50601180546001600160a01b0319166001600160a01b03928316179055600980546001818101835560647f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af928301819055835480830185556000908401819055845480840190955593909201839055600a805480830182557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8908101859055815480840183558101939093558054808301909155909101829055600b8054808301825560327f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db991820181905582548085018455820181905582548085019093559101839055600c805480840182557fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7908101839055815480850183558101929092558054808401909155018290556012805484168352601860209081526040808520805460ff199081168617909155878716808752601584528287208054831687179055308088528388208054841688179055601380548a168952848920805485168917905581895260178652848920805485168917905586548a168952848920805485168917905591885283882080548416881790558154891688528388208054841688179055875260169093528186208054821686179055925486168552808520805484168517905590549094168352929091208054909216179055630ee6b280600e5564037e11d600600f556203d090600d5562000589816512309ce54000620005ef565b62000594816200059f565b506200081a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620006475760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000fb565b80600360008282546200065b9190620007b8565b90915550506001600160a01b038216600090815260016020526040812080548392906200068a908490620007b8565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006e290620007dd565b90600052602060002090601f01602090048101928262000706576000855562000751565b82601f106200072157805160ff191683800117855562000751565b8280016001018555821562000751579182015b828111156200075157825182559160200191906001019062000734565b506200075f92915062000771565b5090565b610cbb8062002faf83390190565b5b808211156200075f576000815560010162000772565b6000602082840312156200079a578081fd5b81516001600160a01b0381168114620007b1578182fd5b9392505050565b60008219821115620007d857634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620007f257607f821691505b602082108114156200081457634e487b7160e01b600052602260045260246000fd5b50919050565b612785806200082a6000396000f3fe6080604052600436106102345760003560e01c806381905bf81161012e578063bd218493116100ab578063df8408fe1161006f578063df8408fe146106c0578063e708d844146106e0578063efa6c1af14610700578063f2fde38b14610730578063fe3f52f4146107505761023b565b8063bd2184931461061a578063bfe1092814610630578063c3f1710e14610650578063d94160e014610670578063dd62ed3e146106a05761023b565b8063a046bc78116100f2578063a046bc781461057a578063a457c2d71461059a578063a9059cbb146105ba578063aacebbe3146105da578063aec9b6f4146105fa5761023b565b806381905bf8146104d757806382fb7119146104f757806388f82020146105175780638da5cb5b1461054757806395d89b41146105655761023b565b80632d48e896116101bc5780635342acb4116101805780635342acb4146104265780635d597ba51461045657806360e719621461047657806370a082311461048c578063715018a6146104c25761023b565b80632d48e8961461038a578063313ce567146103aa57806335c6f9bc146103c657806339509351146103e657806349ae028a146104065761023b565b806318160ddd1161020357806318160ddd146102f3578063238760641461030857806323b872dd1461032a578063244ce7db1461034a5780632d3e474a1461036a5761023b565b80630445b66714610240578063062287491461026957806306fdde03146102a1578063095ea7b3146102c35761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610256600e5481565b6040519081526020015b60405180910390f35b34801561027557600080fd5b50601354610289906001600160a01b031681565b6040516001600160a01b039091168152602001610260565b3480156102ad57600080fd5b506102b6610770565b6040516102609190612504565b3480156102cf57600080fd5b506102e36102de366004612473565b610802565b6040519015158152602001610260565b3480156102ff57600080fd5b50600354610256565b34801561031457600080fd5b50610328610323366004612442565b61081a565b005b34801561033657600080fd5b506102e3610345366004612402565b610963565b34801561035657600080fd5b5061032861036536600461249e565b610987565b34801561037657600080fd5b50601454610289906001600160a01b031681565b34801561039657600080fd5b506103286103a53660046124b6565b610a1d565b3480156103b657600080fd5b5060405160048152602001610260565b3480156103d257600080fd5b506103286103e1366004612442565b610b11565b3480156103f257600080fd5b506102e3610401366004612473565b610ce6565b34801561041257600080fd5b5061025661042136600461249e565b610d08565b34801561043257600080fd5b506102e361044136600461238b565b60156020526000908152604090205460ff1681565b34801561046257600080fd5b5061025661047136600461249e565b610d29565b34801561048257600080fd5b50610256600d5481565b34801561049857600080fd5b506102566104a736600461238b565b6001600160a01b031660009081526001602052604090205490565b3480156104ce57600080fd5b50610328610d39565b3480156104e357600080fd5b506103286104f2366004612442565b610d4d565b34801561050357600080fd5b5061025661051236600461249e565b610e16565b34801561052357600080fd5b506102e361053236600461238b565b60166020526000908152604090205460ff1681565b34801561055357600080fd5b506000546001600160a01b0316610289565b34801561057157600080fd5b506102b6610e26565b34801561058657600080fd5b5061025661059536600461249e565b610e35565b3480156105a657600080fd5b506102e36105b5366004612473565b610e45565b3480156105c657600080fd5b506102e36105d5366004612473565b610ec0565b3480156105e657600080fd5b506103286105f536600461238b565b610ece565b34801561060657600080fd5b50601054610289906001600160a01b031681565b34801561062657600080fd5b50610256600f5481565b34801561063c57600080fd5b50601154610289906001600160a01b031681565b34801561065c57600080fd5b5061032861066b36600461249e565b610fa2565b34801561067c57600080fd5b506102e361068b36600461238b565b60176020526000908152604090205460ff1681565b3480156106ac57600080fd5b506102566106bb3660046123ca565b611063565b3480156106cc57600080fd5b506103286106db366004612442565b61108e565b3480156106ec57600080fd5b506103286106fb36600461249e565b611187565b34801561070c57600080fd5b506102e361071b36600461238b565b60186020526000908152604090205460ff1681565b34801561073c57600080fd5b5061032861074b36600461238b565b61124a565b34801561075c57600080fd5b50601254610289906001600160a01b031681565b60606004805461077f906126e9565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab906126e9565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b5050505050905090565b6000336108108185856112c3565b5060019392505050565b6108226113e7565b6001600160a01b03821660009081526018602052604090205460ff16151581151514156108a15760405162461bcd60e51b815260206004820152602260248201527f5061697220697320616c72656164792073657420746f20746861742073746174604482015261757360f01b60648201526084015b60405180910390fd5b6012546001600160a01b03838116911614156108ff5760405162461bcd60e51b815260206004820152601a60248201527f54686520706169722063616e6e6f742062652072656d6f7665640000000000006044820152606401610898565b6001600160a01b038216600081815260186020908152604091829020805460ff19168515159081179091558251938452908301527f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b03191015b60405180910390a15050565b600033610971858285611441565b61097c8585856114bb565b506001949350505050565b61098f6113e7565b620b71b081106109e15760405162461bcd60e51b815260206004820152601960248201527f4761732069732067726561746572207468616e206c696d6974000000000000006044820152606401610898565b600d8190556040518181527f5f0cf7d11c1aaf2b53b91892382eaee789338051f9fcecf528ca006d062bfba8906020015b60405180910390a150565b610a256113e7565b60008111610a755760405162461bcd60e51b815260206004820152601f60248201527f4d696e2e20646973747269627574696f6e2063616e2774206265207a65726f006044820152606401610898565b6011546040516316a4744b60e11b815260048101849052602481018390526001600160a01b0390911690632d48e89690604401600060405180830381600087803b158015610ac257600080fd5b505af1158015610ad6573d6000803e3d6000fd5b505060408051858152602081018590527f4bee245ad45dacfa3feb4cc8a61ace735c47b485fb8a399ce9e3f6c87aade4189350019050610957565b610b196113e7565b6001600160a01b038216610b3f5760405162461bcd60e51b81526004016108989061259e565b6001600160a01b03821660009081526016602052604090205460ff1615158115151415610b7e5760405162461bcd60e51b815260040161089890612557565b6001600160a01b0382166000908152601660205260409020805460ff19168215801591909117909155610c1657601154604051630a5b654b60e11b81526001600160a01b03848116600483015260006024830152909116906314b6ca9690604401600060405180830381600087803b158015610bf957600080fd5b505af1158015610c0d573d6000803e3d6000fd5b50505050610ca6565b6011546001600160a01b03166314b6ca9683610c47816001600160a01b031660009081526001602052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015610c8d57600080fd5b505af1158015610ca1573d6000803e3d6000fd5b505050505b604080516001600160a01b038416815282151560208201527f21dfac5ff6a7cc530320d4cb002a96edf0c323b87dbe9eb9a4c39a5c3a62cbb99101610957565b600033610810818585610cf98383611063565b610d03919061267b565b6112c3565b600a8181548110610d1857600080fd5b600091825260209091200154905081565b60098181548110610d1857600080fd5b610d416113e7565b610d4b6000611be7565b565b610d556113e7565b6001600160a01b038216610d7b5760405162461bcd60e51b81526004016108989061259e565b6001600160a01b03821660009081526017602052604090205460ff1615158115151415610dba5760405162461bcd60e51b815260040161089890612557565b6001600160a01b038216600081815260176020908152604091829020805460ff19168515159081179091558251938452908301527fe61fafd63f2f48a32f934599cf94a3f00106569b02dde8f26193e0b865fc04079101610957565b600c8181548110610d1857600080fd5b60606005805461077f906126e9565b600b8181548110610d1857600080fd5b60003381610e538286611063565b905083811015610eb35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610898565b61097c82868684036112c3565b6000336108108185856114bb565b610ed66113e7565b6001600160a01b038116610efc5760405162461bcd60e51b81526004016108989061259e565b6001600160a01b0381163b15610f545760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726163742061646472657373206973206e6f7420616c6c6f776564006044820152606401610898565b601480546001600160a01b0319166001600160a01b0383169081179091556040519081527fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e790602001610a12565b610faa6113e7565b600354811115610fcc5760405162461bcd60e51b8152600401610898906125c4565b6298968081101561102e5760405162461bcd60e51b815260206004820152602660248201527f4d696e696d756d2060313030306020746f6b656e2070657220737761702072656044820152651c5d5a5c995960d21b6064820152608401610898565b600e8190556040518181527f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690602001610a12565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6110966113e7565b6001600160a01b0382166110ec5760405162461bcd60e51b815260206004820152601d60248201527f57616c6c65742061646472657373206973206e6f7420636f72726563740000006044820152606401610898565b6001600160a01b03821660009081526015602052604090205460ff161515811515141561112b5760405162461bcd60e51b815260040161089890612557565b6001600160a01b038216600081815260156020908152604091829020805460ff19168515159081179091558251938452908301527f793188c766da601299dd85f7f21348a41b2cb4cadf893f2155f210d64fc049b89101610957565b61118f6113e7565b6003548111156111b15760405162461bcd60e51b8152600401610898906125c4565b629896808110156112155760405162461bcd60e51b815260206004820152602860248201527f4d696e696d756d2060313030306020746f6b656e207065722077616c6c6574206044820152671c995c5d5a5c995960c21b6064820152608401610898565b600f8190556040518181527f8db55ad0cf120daf7f6ca41d31df795f430f79e9d42c2846a4055bf65c117c2090602001610a12565b6112526113e7565b6001600160a01b0381166112b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610898565b6112c081611be7565b50565b6001600160a01b0383166113255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610898565b6001600160a01b0382166113865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610898565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b03163314610d4b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610898565b600061144d8484611063565b905060001981146114b557818110156114a85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610898565b6114b584848484036112c3565b50505050565b6001600160a01b0383166115115760405162461bcd60e51b815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f206164647265737300006044820152606401610898565b6001600160a01b0382166115675760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f2061646472657373000000006044820152606401610898565b30600090815260016020526040902054600e54811080159081906115955750601454600160a01b900460ff16155b80156115b957506001600160a01b03841660009081526018602052604090205460ff165b1561185457600060026007546115cf9190612693565b600854600654919250906000816115e6848661267b565b6115f0919061267b565b9050600e54811061184f576014805460ff60a01b1916600160a01b179055600e5461161a90611c37565b4760008261162887846126b3565b6116329190612693565b905060008361164186856126b3565b61164b9190612693565b905060008161165a84866126d2565b61166491906126d2565b905082156116b55760008589600e5461167d91906126b3565b6116879190612693565b90506116938185611db4565b61169d818061267b565b600760008282546116ae91906126d2565b9091555050505b801561179e576014546040516000916001600160a01b03169083908381818185875af1925050503d8060008114611708576040519150601f19603f3d011682016040523d82523d6000602084013e61170d565b606091505b505090508061176d5760405162461bcd60e51b815260206004820152602660248201527f4661696c656420746f2073656e6420504c53206f6e206d61726b6574696e67206044820152651dd85b1b195d60d21b6064820152608401610898565b8588600e5461177c91906126b3565b6117869190612693565b6008600082825461179791906126d2565b9091555050505b811561183d57601160009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0836040518263ffffffff1660e01b81526004016000604051808303818588803b1580156117f457600080fd5b505af1158015611808573d6000803e3d6000fd5b50505050508486600e5461181c91906126b3565b6118269190612693565b6006600082825461183791906126d2565b90915550505b50506014805460ff60a01b1916905550505b505050505b6001600160a01b03851660009081526015602052604090205460ff168061189357506001600160a01b03841660009081526015602052604090205460ff165b156118a8576118a3858585611e6d565b611a27565b6001600160a01b038085166000908152601860205260408082205492881682528120549091829161190791879160ff918216911615801561190257506001600160a01b03891660009081526018602052604090205460ff16155b61203b565b6001600160a01b038816600090815260176020526040902054919350915060ff166119d657600f54611939828461267b565b86611959896001600160a01b031660009081526001602052604090205490565b611963919061267b565b61196d91906126d2565b11156119d65760405162461bcd60e51b815260206004820152603260248201527f5472616e7366657220616d6f756e742065786365656473207468652060746f6b60448201527132b72634b6b4ba2832b92bb0b63632ba301760711b6064820152608401610898565b81156119e7576119e7873084611e6d565b8015611a0557601354611a059088906001600160a01b031684611e6d565b611a24878783611a15868a6126d2565b611a1f91906126d2565b611e6d565b50505b6001600160a01b03851660009081526016602052604090205460ff16611ad1576011546001600160a01b03166314b6ca9686611a78816001600160a01b031660009081526001602052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611abe57600080fd5b505af1925050508015611acf575060015b505b6001600160a01b03841660009081526016602052604090205460ff16611b7b576011546001600160a01b03166314b6ca9685611b22816001600160a01b031660009081526001602052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611b6857600080fd5b505af1925050508015611b79575060015b505b601154600d546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c47991611bb39160040190815260200190565b600060405180830381600087803b158015611bcd57600080fd5b505af1925050508015611bde575060015b505b5050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c7a57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092018101919091526010546040805163ef8ef56f60e01b81529051919093169263ef8ef56f926004808301939192829003018186803b158015611cce57600080fd5b505afa158015611ce2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0691906123ae565b81600181518110611d2757634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601054611d4d91309116846112c3565b60105460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d8690859060009086903090429060040161260b565b600060405180830381600087803b158015611da057600080fd5b505af1158015611bde573d6000803e3d6000fd5b601054611dcc9030906001600160a01b0316846112c3565b60105460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015611e3457600080fd5b505af1158015611e48573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611be091906124d7565b6001600160a01b038316611ed15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610898565b6001600160a01b038216611f335760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610898565b6001600160a01b03831660009081526001602052604090205481811015611fab5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610898565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290611fe290849061267b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161202e91815260200190565b60405180910390a36114b5565b6000806000612710846120b2578561207f57600960008154811061206f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546120ad565b60096001815481106120a157634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b6120e0565b60096002815481106120d457634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b6120ea90886126b3565b6120f49190612693565b905060006127108561216a578661213757600b60008154811061212757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154612165565b600b60018154811061215957634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b612198565b600b60028154811061218c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b6121a290896126b3565b6121ac9190612693565b905060006127108661222257876121ef57600c6000815481106121df57634e487b7160e01b600052603260045260246000fd5b906000526020600020015461221d565b600c60018154811061221157634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b612250565b600c60028154811061224457634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b61225a908a6126b3565b6122649190612693565b90506000612710876122da57886122a757600a60008154811061229757634e487b7160e01b600052603260045260246000fd5b90600052602060002001546122d5565b600a6001815481106122c957634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b612308565b600a6002815481106122fc57634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b612312908b6126b3565b61231c9190612693565b90508360066000828254612330919061267b565b925050819055508260076000828254612349919061267b565b925050819055508160086000828254612362919061267b565b90915550829050612373848661267b565b61237d919061267b565b999098509650505050505050565b60006020828403121561239c578081fd5b81356123a78161273a565b9392505050565b6000602082840312156123bf578081fd5b81516123a78161273a565b600080604083850312156123dc578081fd5b82356123e78161273a565b915060208301356123f78161273a565b809150509250929050565b600080600060608486031215612416578081fd5b83356124218161273a565b925060208401356124318161273a565b929592945050506040919091013590565b60008060408385031215612454578182fd5b823561245f8161273a565b9150602083013580151581146123f7578182fd5b60008060408385031215612485578182fd5b82356124908161273a565b946020939093013593505050565b6000602082840312156124af578081fd5b5035919050565b600080604083850312156124c8578182fd5b50508035926020909101359150565b6000806000606084860312156124eb578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561253057858101830151858201604001528201612514565b818111156125415783604083870101525b50601f01601f1916929092016040019392505050565b60208082526027908201527f57616c6c657420697320616c7265616479207468652076616c7565206f6620276040820152667374617475732760c81b606082015260800190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b60208082526027908201527f416d6f756e742063616e6e6f74206265206f7665722074686520746f74616c2060408201526639bab838363c9760c91b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561265a5784516001600160a01b031683529383019391830191600101612635565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561268e5761268e612724565b500190565b6000826126ae57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156126cd576126cd612724565b500290565b6000828210156126e4576126e4612724565b500390565b6002810460018216806126fd57607f821691505b6020821081141561271e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146112c057600080fdfea2646970667358221220a1fa87e7050fefd88a5e6ad84c0a018d3eced528be6b3c29c6b1059a4fbcd9ab64736f6c634300080200336080604052610e10600a55670de0b6b3a7640000600b5534801561002257600080fd5b506001600081905580546001600160a01b03191633179055610c72806100496000396000f3fe6080604052600436106100f75760003560e01c8063b88a802f1161008a578063e2d2e21911610059578063e2d2e219146102ab578063efca2eed146102c1578063ffb2c479146102d7578063ffd49c84146102f7576100fe565b8063b88a802f1461020a578063ce7c2ac21461021f578063d0e30db014610276578063d4fda1f21461027e576100fe565b80633a98ef39116100c65780633a98ef391461019b5780634fab0ae8146101b157806366817df5146101c7578063997664d7146101f4576100fe565b806311ce023d1461010357806314b6ca961461013957806328fd31981461015b5780632d48e8961461017b576100fe565b366100fe57005b600080fd5b34801561010f57600080fd5b506101266ec097ce7bc90715b34b9f100000000081565b6040519081526020015b60405180910390f35b34801561014557600080fd5b50610159610154366004610b1b565b61030d565b005b34801561016757600080fd5b50610126610176366004610afa565b6104a1565b34801561018757600080fd5b50610159610196366004610b5c565b61052d565b3480156101a757600080fd5b5061012660065481565b3480156101bd57600080fd5b50610126600b5481565b3480156101d357600080fd5b506101266101e2366004610afa565b60046020526000908152604090205481565b34801561020057600080fd5b5061012660075481565b34801561021657600080fd5b5061015961059e565b34801561022b57600080fd5b5061025b61023a366004610afa565b60056020526000908152604090208054600182015460029092015490919083565b60408051938452602084019290925290820152606001610130565b610159610614565b34801561028a57600080fd5b50610126610299366004610afa565b60036020526000908152604090205481565b3480156102b757600080fd5b5061012660095481565b3480156102cd57600080fd5b5061012660085481565b3480156102e357600080fd5b506101596102f2366004610b44565b6106c6565b34801561030357600080fd5b50610126600a5481565b6001546001600160a01b031633146103405760405162461bcd60e51b815260040161033790610b7d565b60405180910390fd5b6001600160a01b0382166000908152600560205260409020541561036757610367826107f8565b60008111801561038d57506001600160a01b038216600090815260056020526040902054155b156103f357600280546001600160a01b0384166000818152600360205260408120839055600183018455929092527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319169091179055610426565b8015801561041857506001600160a01b03821660009081526005602052604090205415155b156104265761042682610921565b6001600160a01b038216600090815260056020526040902054600654829161044d91610bf4565b6104579190610b9d565b6006556001600160a01b038216600090815260056020526040902081905561047e81610a6e565b6001600160a01b0390921660009081526005602052604090206001019190915550565b6001600160a01b0381166000908152600560205260408120546104c657506000610528565b6001600160a01b0382166000908152600560205260408120546104e890610a6e565b6001600160a01b03841660009081526005602052604090206001015490915080821161051957600092505050610528565b6105238183610bf4565b925050505b919050565b6001546001600160a01b031633146105575760405162461bcd60e51b815260040161033790610b7d565b600a829055600b81905560408051838152602081018390527f7d38de579bb682aa05ace7e32d15f88df69a3a53f6f89fcd0236f93fcc7e6362910160405180910390a15050565b600260005414156105f15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610337565b60026000556105ff33610a9e565b1561060d5761060d336107f8565b6001600055565b6001546001600160a01b0316331461063e5760405162461bcd60e51b815260040161033790610b7d565b34600760008282546106509190610b9d565b9091555050600654610671346ec097ce7bc90715b34b9f1000000000610bd5565b61067b9190610bb5565b6009600082825461068c9190610b9d565b90915550506040513481527f6a464fbfd2428ef7edab93930e64042148498d37c64c5122c4ab37843d6a3d119060200160405180910390a1565b6001546001600160a01b031633146106f05760405162461bcd60e51b815260040161033790610b7d565b600254806106fe57506107f5565b6000805a905060005b848310801561071557508381105b156107f05783600c5410610729576000600c555b6107696002600c548154811061074f57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316610a9e565b156107ae576107ae6002600c548154811061079457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03166107f8565b5a6107b98385610b9d565b6107c39190610bf4565b92505a600c805491935060006107d883610c0b565b919050555080806107e890610c0b565b915050610707565b505050505b50565b6001600160a01b03811660009081526005602052604090205461081a576107f5565b6000610825826104a1565b9050801561091d576000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461087a576040519150601f19603f3d011682016040523d82523d6000602084013e61087f565b606091505b50509050801561091b57816008600082825461089b9190610b9d565b90915550506001600160a01b038316600090815260046020908152604080832042905560059091529020600201546108d4908390610b9d565b6001600160a01b03841660009081526005602052604090206002810191909155546108fe90610a6e565b6001600160a01b0384166000908152600560205260409020600101555b505b5050565b6002805461093190600190610bf4565b8154811061094f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b038481168452600390925260409092205460028054929093169291811061099b57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559183168152600391829052604081205460028054919392916109e790600190610bf4565b81548110610a0557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020556002805480610a4957634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b031916905501905550565b60006ec097ce7bc90715b34b9f100000000060095483610a8e9190610bd5565b610a989190610bb5565b92915050565b600a546001600160a01b03821660009081526004602052604081205490914291610ac89190610b9d565b108015610a985750600b54610adc836104a1565b1192915050565b80356001600160a01b038116811461052857600080fd5b600060208284031215610b0b578081fd5b610b1482610ae3565b9392505050565b60008060408385031215610b2d578081fd5b610b3683610ae3565b946020939093013593505050565b600060208284031215610b55578081fd5b5035919050565b60008060408385031215610b6e578182fd5b50508035926020909101359150565b60208082526006908201526510aa37b5b2b760d11b604082015260600190565b60008219821115610bb057610bb0610c26565b500190565b600082610bd057634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610bef57610bef610c26565b500290565b600082821015610c0657610c06610c26565b500390565b6000600019821415610c1f57610c1f610c26565b5060010190565b634e487b7160e01b600052601160045260246000fdfea264697066735822122018fb8127fd781a742c1632784580b0acf35f4bdcf68e4d6feded7891bdd66c2d64736f6c63430008020033000000000000000000000000bb978609a6cf64d5a58bd602e8f03979ed760997

Deployed ByteCode

0x6080604052600436106102345760003560e01c806381905bf81161012e578063bd218493116100ab578063df8408fe1161006f578063df8408fe146106c0578063e708d844146106e0578063efa6c1af14610700578063f2fde38b14610730578063fe3f52f4146107505761023b565b8063bd2184931461061a578063bfe1092814610630578063c3f1710e14610650578063d94160e014610670578063dd62ed3e146106a05761023b565b8063a046bc78116100f2578063a046bc781461057a578063a457c2d71461059a578063a9059cbb146105ba578063aacebbe3146105da578063aec9b6f4146105fa5761023b565b806381905bf8146104d757806382fb7119146104f757806388f82020146105175780638da5cb5b1461054757806395d89b41146105655761023b565b80632d48e896116101bc5780635342acb4116101805780635342acb4146104265780635d597ba51461045657806360e719621461047657806370a082311461048c578063715018a6146104c25761023b565b80632d48e8961461038a578063313ce567146103aa57806335c6f9bc146103c657806339509351146103e657806349ae028a146104065761023b565b806318160ddd1161020357806318160ddd146102f3578063238760641461030857806323b872dd1461032a578063244ce7db1461034a5780632d3e474a1461036a5761023b565b80630445b66714610240578063062287491461026957806306fdde03146102a1578063095ea7b3146102c35761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610256600e5481565b6040519081526020015b60405180910390f35b34801561027557600080fd5b50601354610289906001600160a01b031681565b6040516001600160a01b039091168152602001610260565b3480156102ad57600080fd5b506102b6610770565b6040516102609190612504565b3480156102cf57600080fd5b506102e36102de366004612473565b610802565b6040519015158152602001610260565b3480156102ff57600080fd5b50600354610256565b34801561031457600080fd5b50610328610323366004612442565b61081a565b005b34801561033657600080fd5b506102e3610345366004612402565b610963565b34801561035657600080fd5b5061032861036536600461249e565b610987565b34801561037657600080fd5b50601454610289906001600160a01b031681565b34801561039657600080fd5b506103286103a53660046124b6565b610a1d565b3480156103b657600080fd5b5060405160048152602001610260565b3480156103d257600080fd5b506103286103e1366004612442565b610b11565b3480156103f257600080fd5b506102e3610401366004612473565b610ce6565b34801561041257600080fd5b5061025661042136600461249e565b610d08565b34801561043257600080fd5b506102e361044136600461238b565b60156020526000908152604090205460ff1681565b34801561046257600080fd5b5061025661047136600461249e565b610d29565b34801561048257600080fd5b50610256600d5481565b34801561049857600080fd5b506102566104a736600461238b565b6001600160a01b031660009081526001602052604090205490565b3480156104ce57600080fd5b50610328610d39565b3480156104e357600080fd5b506103286104f2366004612442565b610d4d565b34801561050357600080fd5b5061025661051236600461249e565b610e16565b34801561052357600080fd5b506102e361053236600461238b565b60166020526000908152604090205460ff1681565b34801561055357600080fd5b506000546001600160a01b0316610289565b34801561057157600080fd5b506102b6610e26565b34801561058657600080fd5b5061025661059536600461249e565b610e35565b3480156105a657600080fd5b506102e36105b5366004612473565b610e45565b3480156105c657600080fd5b506102e36105d5366004612473565b610ec0565b3480156105e657600080fd5b506103286105f536600461238b565b610ece565b34801561060657600080fd5b50601054610289906001600160a01b031681565b34801561062657600080fd5b50610256600f5481565b34801561063c57600080fd5b50601154610289906001600160a01b031681565b34801561065c57600080fd5b5061032861066b36600461249e565b610fa2565b34801561067c57600080fd5b506102e361068b36600461238b565b60176020526000908152604090205460ff1681565b3480156106ac57600080fd5b506102566106bb3660046123ca565b611063565b3480156106cc57600080fd5b506103286106db366004612442565b61108e565b3480156106ec57600080fd5b506103286106fb36600461249e565b611187565b34801561070c57600080fd5b506102e361071b36600461238b565b60186020526000908152604090205460ff1681565b34801561073c57600080fd5b5061032861074b36600461238b565b61124a565b34801561075c57600080fd5b50601254610289906001600160a01b031681565b60606004805461077f906126e9565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab906126e9565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b5050505050905090565b6000336108108185856112c3565b5060019392505050565b6108226113e7565b6001600160a01b03821660009081526018602052604090205460ff16151581151514156108a15760405162461bcd60e51b815260206004820152602260248201527f5061697220697320616c72656164792073657420746f20746861742073746174604482015261757360f01b60648201526084015b60405180910390fd5b6012546001600160a01b03838116911614156108ff5760405162461bcd60e51b815260206004820152601a60248201527f54686520706169722063616e6e6f742062652072656d6f7665640000000000006044820152606401610898565b6001600160a01b038216600081815260186020908152604091829020805460ff19168515159081179091558251938452908301527f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b03191015b60405180910390a15050565b600033610971858285611441565b61097c8585856114bb565b506001949350505050565b61098f6113e7565b620b71b081106109e15760405162461bcd60e51b815260206004820152601960248201527f4761732069732067726561746572207468616e206c696d6974000000000000006044820152606401610898565b600d8190556040518181527f5f0cf7d11c1aaf2b53b91892382eaee789338051f9fcecf528ca006d062bfba8906020015b60405180910390a150565b610a256113e7565b60008111610a755760405162461bcd60e51b815260206004820152601f60248201527f4d696e2e20646973747269627574696f6e2063616e2774206265207a65726f006044820152606401610898565b6011546040516316a4744b60e11b815260048101849052602481018390526001600160a01b0390911690632d48e89690604401600060405180830381600087803b158015610ac257600080fd5b505af1158015610ad6573d6000803e3d6000fd5b505060408051858152602081018590527f4bee245ad45dacfa3feb4cc8a61ace735c47b485fb8a399ce9e3f6c87aade4189350019050610957565b610b196113e7565b6001600160a01b038216610b3f5760405162461bcd60e51b81526004016108989061259e565b6001600160a01b03821660009081526016602052604090205460ff1615158115151415610b7e5760405162461bcd60e51b815260040161089890612557565b6001600160a01b0382166000908152601660205260409020805460ff19168215801591909117909155610c1657601154604051630a5b654b60e11b81526001600160a01b03848116600483015260006024830152909116906314b6ca9690604401600060405180830381600087803b158015610bf957600080fd5b505af1158015610c0d573d6000803e3d6000fd5b50505050610ca6565b6011546001600160a01b03166314b6ca9683610c47816001600160a01b031660009081526001602052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015610c8d57600080fd5b505af1158015610ca1573d6000803e3d6000fd5b505050505b604080516001600160a01b038416815282151560208201527f21dfac5ff6a7cc530320d4cb002a96edf0c323b87dbe9eb9a4c39a5c3a62cbb99101610957565b600033610810818585610cf98383611063565b610d03919061267b565b6112c3565b600a8181548110610d1857600080fd5b600091825260209091200154905081565b60098181548110610d1857600080fd5b610d416113e7565b610d4b6000611be7565b565b610d556113e7565b6001600160a01b038216610d7b5760405162461bcd60e51b81526004016108989061259e565b6001600160a01b03821660009081526017602052604090205460ff1615158115151415610dba5760405162461bcd60e51b815260040161089890612557565b6001600160a01b038216600081815260176020908152604091829020805460ff19168515159081179091558251938452908301527fe61fafd63f2f48a32f934599cf94a3f00106569b02dde8f26193e0b865fc04079101610957565b600c8181548110610d1857600080fd5b60606005805461077f906126e9565b600b8181548110610d1857600080fd5b60003381610e538286611063565b905083811015610eb35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610898565b61097c82868684036112c3565b6000336108108185856114bb565b610ed66113e7565b6001600160a01b038116610efc5760405162461bcd60e51b81526004016108989061259e565b6001600160a01b0381163b15610f545760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726163742061646472657373206973206e6f7420616c6c6f776564006044820152606401610898565b601480546001600160a01b0319166001600160a01b0383169081179091556040519081527fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e790602001610a12565b610faa6113e7565b600354811115610fcc5760405162461bcd60e51b8152600401610898906125c4565b6298968081101561102e5760405162461bcd60e51b815260206004820152602660248201527f4d696e696d756d2060313030306020746f6b656e2070657220737761702072656044820152651c5d5a5c995960d21b6064820152608401610898565b600e8190556040518181527f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690602001610a12565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6110966113e7565b6001600160a01b0382166110ec5760405162461bcd60e51b815260206004820152601d60248201527f57616c6c65742061646472657373206973206e6f7420636f72726563740000006044820152606401610898565b6001600160a01b03821660009081526015602052604090205460ff161515811515141561112b5760405162461bcd60e51b815260040161089890612557565b6001600160a01b038216600081815260156020908152604091829020805460ff19168515159081179091558251938452908301527f793188c766da601299dd85f7f21348a41b2cb4cadf893f2155f210d64fc049b89101610957565b61118f6113e7565b6003548111156111b15760405162461bcd60e51b8152600401610898906125c4565b629896808110156112155760405162461bcd60e51b815260206004820152602860248201527f4d696e696d756d2060313030306020746f6b656e207065722077616c6c6574206044820152671c995c5d5a5c995960c21b6064820152608401610898565b600f8190556040518181527f8db55ad0cf120daf7f6ca41d31df795f430f79e9d42c2846a4055bf65c117c2090602001610a12565b6112526113e7565b6001600160a01b0381166112b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610898565b6112c081611be7565b50565b6001600160a01b0383166113255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610898565b6001600160a01b0382166113865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610898565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b03163314610d4b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610898565b600061144d8484611063565b905060001981146114b557818110156114a85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610898565b6114b584848484036112c3565b50505050565b6001600160a01b0383166115115760405162461bcd60e51b815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f206164647265737300006044820152606401610898565b6001600160a01b0382166115675760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f2061646472657373000000006044820152606401610898565b30600090815260016020526040902054600e54811080159081906115955750601454600160a01b900460ff16155b80156115b957506001600160a01b03841660009081526018602052604090205460ff165b1561185457600060026007546115cf9190612693565b600854600654919250906000816115e6848661267b565b6115f0919061267b565b9050600e54811061184f576014805460ff60a01b1916600160a01b179055600e5461161a90611c37565b4760008261162887846126b3565b6116329190612693565b905060008361164186856126b3565b61164b9190612693565b905060008161165a84866126d2565b61166491906126d2565b905082156116b55760008589600e5461167d91906126b3565b6116879190612693565b90506116938185611db4565b61169d818061267b565b600760008282546116ae91906126d2565b9091555050505b801561179e576014546040516000916001600160a01b03169083908381818185875af1925050503d8060008114611708576040519150601f19603f3d011682016040523d82523d6000602084013e61170d565b606091505b505090508061176d5760405162461bcd60e51b815260206004820152602660248201527f4661696c656420746f2073656e6420504c53206f6e206d61726b6574696e67206044820152651dd85b1b195d60d21b6064820152608401610898565b8588600e5461177c91906126b3565b6117869190612693565b6008600082825461179791906126d2565b9091555050505b811561183d57601160009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0836040518263ffffffff1660e01b81526004016000604051808303818588803b1580156117f457600080fd5b505af1158015611808573d6000803e3d6000fd5b50505050508486600e5461181c91906126b3565b6118269190612693565b6006600082825461183791906126d2565b90915550505b50506014805460ff60a01b1916905550505b505050505b6001600160a01b03851660009081526015602052604090205460ff168061189357506001600160a01b03841660009081526015602052604090205460ff165b156118a8576118a3858585611e6d565b611a27565b6001600160a01b038085166000908152601860205260408082205492881682528120549091829161190791879160ff918216911615801561190257506001600160a01b03891660009081526018602052604090205460ff16155b61203b565b6001600160a01b038816600090815260176020526040902054919350915060ff166119d657600f54611939828461267b565b86611959896001600160a01b031660009081526001602052604090205490565b611963919061267b565b61196d91906126d2565b11156119d65760405162461bcd60e51b815260206004820152603260248201527f5472616e7366657220616d6f756e742065786365656473207468652060746f6b60448201527132b72634b6b4ba2832b92bb0b63632ba301760711b6064820152608401610898565b81156119e7576119e7873084611e6d565b8015611a0557601354611a059088906001600160a01b031684611e6d565b611a24878783611a15868a6126d2565b611a1f91906126d2565b611e6d565b50505b6001600160a01b03851660009081526016602052604090205460ff16611ad1576011546001600160a01b03166314b6ca9686611a78816001600160a01b031660009081526001602052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611abe57600080fd5b505af1925050508015611acf575060015b505b6001600160a01b03841660009081526016602052604090205460ff16611b7b576011546001600160a01b03166314b6ca9685611b22816001600160a01b031660009081526001602052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611b6857600080fd5b505af1925050508015611b79575060015b505b601154600d546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c47991611bb39160040190815260200190565b600060405180830381600087803b158015611bcd57600080fd5b505af1925050508015611bde575060015b505b5050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c7a57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092018101919091526010546040805163ef8ef56f60e01b81529051919093169263ef8ef56f926004808301939192829003018186803b158015611cce57600080fd5b505afa158015611ce2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0691906123ae565b81600181518110611d2757634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601054611d4d91309116846112c3565b60105460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d8690859060009086903090429060040161260b565b600060405180830381600087803b158015611da057600080fd5b505af1158015611bde573d6000803e3d6000fd5b601054611dcc9030906001600160a01b0316846112c3565b60105460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015611e3457600080fd5b505af1158015611e48573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611be091906124d7565b6001600160a01b038316611ed15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610898565b6001600160a01b038216611f335760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610898565b6001600160a01b03831660009081526001602052604090205481811015611fab5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610898565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290611fe290849061267b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161202e91815260200190565b60405180910390a36114b5565b6000806000612710846120b2578561207f57600960008154811061206f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546120ad565b60096001815481106120a157634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b6120e0565b60096002815481106120d457634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b6120ea90886126b3565b6120f49190612693565b905060006127108561216a578661213757600b60008154811061212757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154612165565b600b60018154811061215957634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b612198565b600b60028154811061218c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b6121a290896126b3565b6121ac9190612693565b905060006127108661222257876121ef57600c6000815481106121df57634e487b7160e01b600052603260045260246000fd5b906000526020600020015461221d565b600c60018154811061221157634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b612250565b600c60028154811061224457634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b61225a908a6126b3565b6122649190612693565b90506000612710876122da57886122a757600a60008154811061229757634e487b7160e01b600052603260045260246000fd5b90600052602060002001546122d5565b600a6001815481106122c957634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b612308565b600a6002815481106122fc57634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b612312908b6126b3565b61231c9190612693565b90508360066000828254612330919061267b565b925050819055508260076000828254612349919061267b565b925050819055508160086000828254612362919061267b565b90915550829050612373848661267b565b61237d919061267b565b999098509650505050505050565b60006020828403121561239c578081fd5b81356123a78161273a565b9392505050565b6000602082840312156123bf578081fd5b81516123a78161273a565b600080604083850312156123dc578081fd5b82356123e78161273a565b915060208301356123f78161273a565b809150509250929050565b600080600060608486031215612416578081fd5b83356124218161273a565b925060208401356124318161273a565b929592945050506040919091013590565b60008060408385031215612454578182fd5b823561245f8161273a565b9150602083013580151581146123f7578182fd5b60008060408385031215612485578182fd5b82356124908161273a565b946020939093013593505050565b6000602082840312156124af578081fd5b5035919050565b600080604083850312156124c8578182fd5b50508035926020909101359150565b6000806000606084860312156124eb578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561253057858101830151858201604001528201612514565b818111156125415783604083870101525b50601f01601f1916929092016040019392505050565b60208082526027908201527f57616c6c657420697320616c7265616479207468652076616c7565206f6620276040820152667374617475732760c81b606082015260800190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b60208082526027908201527f416d6f756e742063616e6e6f74206265206f7665722074686520746f74616c2060408201526639bab838363c9760c91b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561265a5784516001600160a01b031683529383019391830191600101612635565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561268e5761268e612724565b500190565b6000826126ae57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156126cd576126cd612724565b500290565b6000828210156126e4576126e4612724565b500390565b6002810460018216806126fd57607f821691505b6020821081141561271e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146112c057600080fdfea2646970667358221220a1fa87e7050fefd88a5e6ad84c0a018d3eced528be6b3c29c6b1059a4fbcd9ab64736f6c63430008020033