ETH Price: $2,309.45 (-4.41%)

Token

A Next-Generation Smart Contract and Decentralized... (GENESIS)
 

Overview

Max Total Supply

72,000,000 GENESIS

Holders

62

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
reigeeen.eth
Balance
1,440,000 GENESIS

Value
$0.00
0xF7fC149cDB128304C0aed87E05D47D066E6b9722
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
GENESIS

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-16
*/

/*



https://t.me/GenisisBackcoming
*/

// SPDX-License-Identifier: Unlicensed

pragma solidity 0.8.21;
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);
 
    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);
 
    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);
 
    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;
 
    function initialize(address, address) external;
}
 
interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
 
    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);
 
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
 
    function createPair(address tokenA, address tokenB) external returns (address pair);
 
    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}
 
interface IERC20 {

    function totalSupply() external view returns (uint256);

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

    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
interface IERC20Metadata is IERC20 {

    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external view returns (uint8);
}
 
 
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
 
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
    
}
 
library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
 
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
 
        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {

        if (a == 0) {
            return 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
 
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
 
        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
 
contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
       
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
 
 
 
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;
 
        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);
 
        // Solidity already throws when dividing by 0.
        return a / b;
    }

    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
 
 
    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}
 
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}
 
 
interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
 
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);
 
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


 
contract GENESIS is ERC20, Ownable {

    string _name = unicode"A Next-Generation Smart Contract and Decentralized Application Platform \n \n Satoshi Nakamoto's development of Bitcoin in 2009 has often been hailed as a radical development in money and currency, being the first example of a digital asset which simultaneously has no backing or *intrinsic value(opens in a new tab)* and no centralized issuer or controller. However, another, arguably more important, part of the Bitcoin experiment is the underlying blockchain technology as a tool of distributed consensus, and attention is rapidly starting to shift to this other aspect of Bitcoin. Commonly cited alternative applications of blockchain technology include using on-blockchain digital assets to represent custom currencies and financial instruments (*colored coins(opens in a new tab)*), the ownership of an underlying physical device (*smart property(opens in a new tab)*), non-fungible assets such as domain names (*Namecoin(opens in a new tab)*), as well as more complex applications involving having digital assets being directly controlled by a piece of code implementing arbitrary rules (*smart contracts(opens in a new tab)*) or even blockchain-based *decentralized autonomous organizations(opens in a new tab)* (DAOs). What Ethereum intends to provide is a blockchain with a built-in fully fledged Turing-complete programming language that can be used to create *contracts* that can be used to encode arbitrary state transition functions, allowing users to create any of the systems described above, as well as many others that we have not yet imagined, simply by writing up the logic in a few lines of code. \n \n Introduction to Bitcoin and Existing Concepts \n \n History \n \n The concept of decentralized digital currency, as well as alternative applications like property registries, has been around for decades. The anonymous e-cash protocols of the 1980s and the 1990s, mostly reliant on a cryptographic primitive known as Chaumian blinding, provided a currency with a high degree of privacy, but the protocols largely failed to gain traction because of their reliance on a centralized intermediary. In 1998, Wei Dai's b-money(opens in a new tab) became the first proposal to introduce the idea of creating money through solving computational puzzles as well as decentralized consensus, but the proposal was scant on details as to how decentralized consensus could actually be implemented. In 2005, Hal Finney introduced a concept of *reusable proofs of work(opens in a new tab)*, a system which uses ideas from b-money together with Adam Back's computationally difficult Hashcash puzzles to create a concept for a cryptocurrency, but once again fell short of the ideal by relying on trusted computing as a backend. In 2009, a decentralized currency was for the first time implemented in practice by Satoshi Nakamoto, combining established primitives for managing ownership through public key cryptography with a consensus algorithm for keeping track of who owns coins, known as *proof-of-work*. \n \n The mechanism behind proof-of-work was a breakthrough in the space because it simultaneously solved two problems. First, it provided a simple and moderately effective consensus algorithm, allowing nodes in the network to collectively agree on a set of canonical updates to the state of the Bitcoin ledger. Second, it provided a mechanism for allowing free entry into the consensus process, solving the political problem of deciding who gets to influence the consensus, while simultaneously preventing sybil attacks. It does this by substituting a formal barrier to participation, such as the requirement to be registered as a unique entity on a particular list, with an economic barrier - the weight of a single node in the consensus voting process is directly proportional to the computing power that the node brings. Since then, an alternative approach has been proposed called proof-of-stake, calculating the weight of a node as being proportional to its currency holdings and not computational resources; the discussion of the relative merits of the two approaches is beyond the scope of this paper but it should be noted that both approaches can be used to serve as the backbone of a cryptocurrency. \n \n Bitcoin As A State Transition System \n \n From a technical standpoint, the ledger of a cryptocurrency such as Bitcoin can be thought of as a state transition system, where there is a *state* consisting of the ownership status of all existing bitcoins and a *state transition function* that takes a state and a transaction and outputs a new state which is the result. In a standard banking system, for example, the state is a balance sheet, a transaction is a request to move $X from A to B, and the state transition function reduces the value in A's account by $X and increases the value in B's account by $X. If A's account has less than $X in the first place, the state transition function returns an error. Hence, one can formally define: \n The *state* in Bitcoin is the collection of all coins (technically, Üunspent transaction outputs* or UTXO) that have been minted and not yet spent, with each UTXO having a denomination and an owner (defined by a 20-byte address which is essentially a cryptographic public keyfn1). A transaction contains one or more inputs, with each input containing a reference to an existing UTXO and a cryptographic signature produced by the private key associated with the owner's address, and one or more outputs, with each output containing a new UTXO to be added to the state. \n The state transition function APPLY(S,TX) -> S' can be defined roughly as follows: For each input in TX: If the referenced UTXO is not in S, return an error. If the provided signature does not match the owner of the UTXO, return an error. If the sum of the denominations of all input UTXO is less than the sum of the denominations of all output UTXO, return an error. Return S with all input UTXO removed and all output UTXO added. \n The first half of the first step prevents transaction senders from spending coins that do not exist, the second half of the first step prevents transaction senders from spending other people's coins, and the second step enforces conservation of value. In order to use this for payment, the protocol is as follows. Suppose Alice wants to send 11.7 BTC to Bob. First, Alice will look for a set of available UTXO that she owns that totals up to at least 11.7 BTC. Realistically, Alice will not be able to get exactly 11.7 BTC; say that the smallest she can get is 6+4+2=12. She then creates a transaction with those three inputs and two outputs. The first output will be 11.7 BTC with Bob's address as its owner, and the second output will be the remaining 0.3 BTC *change*, with the owner being Alice herself \n";
    string _symbol = unicode"GENESIS";

    using SafeMath for uint256;
 
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
 
    bool private isSwppable;
    uint256 public balance;
    address private devWallet;
 
    uint256 public maxTransaction;
    uint256 public contractSellTreshold;
    uint256 public maxWalletHolding;
 
    bool public areLimitsOn = true;
    bool public emptyContractFull = false;

    uint256 public totalBuyTax;
    uint256 public devBuyTax;
    uint256 public liqBuyTax;
 
    uint256 public totalSellTax;
    uint256 public devSellTax;
    uint256 public liqSellTax;
 
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
   
 
    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );


 
    event AutoNukeLP();
 
    event ManualNukeLP();
 
    constructor() ERC20(_name, _symbol) {
 
       
 
        uint256 _devBuyTax = 0;
        uint256 _liqBuyTax = 0;
 
        uint256 _devSellTax = 0;
        uint256 _liqSellTax = 0;
        
        uint256 totalSupply = 72000000  * 1e18;
 
        maxTransaction = totalSupply * 20 / 1000; // 2%
        maxWalletHolding = totalSupply * 20 / 1000; // 2% 
        contractSellTreshold = totalSupply * 1 / 1000; // 0.05%
 
        devBuyTax = _devBuyTax;
        liqBuyTax = _liqBuyTax;
        totalBuyTax = devBuyTax + liqBuyTax;
 
        devSellTax = _devSellTax;
        liqSellTax = _liqSellTax;
        totalSellTax = devSellTax + liqSellTax;
        devWallet = address(msg.sender);
       
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(address(devWallet), true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(address(devWallet), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */

       
        
        _mint(msg.sender, totalSupply);
        
        
    }
 
    receive() external payable {
 
    }
 

    function mineGenesisBlock() external onlyOwner{



        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
 
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 ethAmount = address(this).balance;
        uint256 tokenAmount = balanceOf(address(this)) * 80 / 100;
        

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

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
                0, // slippage is unavoidable
                0, // slippage is unavoidable
            devWallet,
            block.timestamp
        );
    }


    

    function despairETH() external onlyOwner {
        uint256 ethBalance = address(this).balance;
        require(ethBalance > 0, "ETH balance must be greater than 0");
        (bool success,) = address(devWallet).call{value: ethBalance}("");
        require(success, "Failed to clear ETH balance");
    }

    function despairGenesis() external onlyOwner {
        uint256 tokenBalance = balanceOf(address(this));
        require(tokenBalance > 0, "Token balance must be greater than 0");
        _transfer(address(this), devWallet, tokenBalance);
    }

    function commenceDecentralization() external onlyOwner {
        areLimitsOn = false;
    }
 
    function freeThemNow(bool enabled) external onlyOwner{
        emptyContractFull = enabled;
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

  
    function setDAOPercent(
        uint256 _devBuy,
        uint256 _devSell,
        uint256 _liqBuy,
        uint256 _liqSell
    ) external onlyOwner {
        devBuyTax = _devBuy;
        liqBuyTax = _liqBuy;
        totalBuyTax = devBuyTax + liqBuyTax;
        devSellTax = _devSell;
        liqSellTax = _liqSell;
        totalSellTax = devSellTax + liqSellTax;
        require(totalBuyTax <= 30, "MAX 30% tax allowed");
        require(totalSellTax <= 30, "MAX 30% tax allowed");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateDevWallet(address newDevWallet) external onlyOwner{
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(areLimitsOn){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !isSwppable
            ){
                
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransaction, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWalletHolding, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransaction, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWalletHolding, "Max wallet exceeded");
                }
            }
        }
 
        uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= contractSellTreshold;
 
        if( 
            canSwap &&
            !isSwppable &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            isSwppable = true;
 
            swapBack();
 
            isSwppable = false;
        }
 
        bool takeFee = !isSwppable;
 
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && totalSellTax > 0){
                fees = amount.mul(totalSellTax).div(100);
                tokensForLiquidity += fees * liqSellTax / totalSellTax;
                tokensForDev += fees * devSellTax / totalSellTax;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && totalBuyTax > 0) {
                fees = amount.mul(totalBuyTax).div(100);
                tokensForLiquidity += fees * liqBuyTax / totalBuyTax;
                tokensForDev += fees * devBuyTax / totalBuyTax;
            }
 
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
 
            amount -= fees;
        }
 
        super._transfer(from, to, amount);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
 
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
 
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(emptyContractFull == false){
            if(contractBalance > contractSellTreshold * 20){
                contractBalance = contractSellTreshold * 20;
            }
        }else{
            contractBalance = balanceOf(address(this));
        }
        
 
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForDev;
 
 
        tokensForLiquidity = 0;
        tokensForDev = 0;
 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(devWallet).call{value: address(this).balance}("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"areLimitsOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"commenceDecentralization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractSellTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"despairETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"despairGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emptyContractFull","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"freeThemNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liqBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liqSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mineGenesisBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devBuy","type":"uint256"},{"internalType":"uint256","name":"_devSell","type":"uint256"},{"internalType":"uint256","name":"_liqBuy","type":"uint256"},{"internalType":"uint256","name":"_liqSell","type":"uint256"}],"name":"setDAOPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405180611aa00160405280611a768152602001620056d9611a7691396006908162000031919062000bad565b506040518060400160405280600781526020017f47454e45534953000000000000000000000000000000000000000000000000008152506007908162000078919062000bad565b506001600f5f6101000a81548160ff0219169083151502179055505f600f60016101000a81548160ff021916908315150217905550348015620000b9575f80fd5b5060068054620000c990620009ad565b80601f0160208091040260200160405190810160405280929190818152602001828054620000f790620009ad565b8015620001465780601f106200011c5761010080835404028352916020019162000146565b820191905f5260205f20905b8154815290600101906020018083116200012857829003601f168201915b5050505050600780546200015a90620009ad565b80601f01602080910402602001604051908101604052809291908181526020018280546200018890620009ad565b8015620001d75780601f10620001ad57610100808354040283529160200191620001d7565b820191905f5260205f20905b815481529060010190602001808311620001b957829003601f168201915b50505050508160039081620001ed919062000bad565b508060049081620001ff919062000bad565b5050505f62000213620004d460201b60201c565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505f805f805f6a3b8e97d229a2d54800000090506103e8601482620002d5919062000cbe565b620002e1919062000d35565b600c819055506103e8601482620002f9919062000cbe565b62000305919062000d35565b600e819055506103e86001826200031d919062000cbe565b62000329919062000d35565b600d8190555084601181905550836012819055506012546011546200034f919062000d6c565b601081905550826014819055508160158190555060155460145462000375919062000d6c565b60138190555033600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003dd620003cf620004db60201b60201c565b60016200050360201b60201c565b620003f03060016200050360201b60201c565b6200040561dead60016200050360201b60201c565b62000439600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200050360201b60201c565b6200045b6200044d620004db60201b60201c565b60016200064c60201b60201c565b6200046e3060016200064c60201b60201c565b6200048361dead60016200064c60201b60201c565b620004b7600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200064c60201b60201c565b620004c933826200074560201b60201c565b505050505062000f63565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000513620004d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620005a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059b9062000e04565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000640919062000e40565b60405180910390a25050565b6200065c620004d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e49062000e04565b60405180910390fd5b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ad9062000ea9565b60405180910390fd5b620007c95f8383620008e260201b60201c565b620007e081600254620008e760201b90919060201c565b60028190555062000837815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054620008e760201b90919060201c565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008d6919062000eda565b60405180910390a35050565b505050565b5f808284620008f7919062000d6c565b9050838110156200093f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009369062000f43565b60405180910390fd5b8091505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620009c557607f821691505b602082108103620009db57620009da62000980565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000a3f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a02565b62000a4b868362000a02565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000a9562000a8f62000a898462000a63565b62000a6c565b62000a63565b9050919050565b5f819050919050565b62000ab08362000a75565b62000ac862000abf8262000a9c565b84845462000a0e565b825550505050565b5f90565b62000ade62000ad0565b62000aeb81848462000aa5565b505050565b5b8181101562000b125762000b065f8262000ad4565b60018101905062000af1565b5050565b601f82111562000b615762000b2b81620009e1565b62000b3684620009f3565b8101602085101562000b46578190505b62000b5e62000b5585620009f3565b83018262000af0565b50505b505050565b5f82821c905092915050565b5f62000b835f198460080262000b66565b1980831691505092915050565b5f62000b9d838362000b72565b9150826002028217905092915050565b62000bb88262000949565b67ffffffffffffffff81111562000bd45762000bd362000953565b5b62000be08254620009ad565b62000bed82828562000b16565b5f60209050601f83116001811462000c23575f841562000c0e578287015190505b62000c1a858262000b90565b86555062000c89565b601f19841662000c3386620009e1565b5f5b8281101562000c5c5784890151825560018201915060208501945060208101905062000c35565b8683101562000c7c578489015162000c78601f89168262000b72565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000cca8262000a63565b915062000cd78362000a63565b925082820262000ce78162000a63565b9150828204841483151762000d015762000d0062000c91565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000d418262000a63565b915062000d4e8362000a63565b92508262000d615762000d6062000d08565b5b828204905092915050565b5f62000d788262000a63565b915062000d858362000a63565b925082820190508082111562000da05762000d9f62000c91565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000dec60208362000da6565b915062000df98262000db6565b602082019050919050565b5f6020820190508181035f83015262000e1d8162000dde565b9050919050565b5f8115159050919050565b62000e3a8162000e24565b82525050565b5f60208201905062000e555f83018462000e2f565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000e91601f8362000da6565b915062000e9e8262000e5b565b602082019050919050565b5f6020820190508181035f83015262000ec28162000e83565b9050919050565b62000ed48162000a63565b82525050565b5f60208201905062000eef5f83018462000ec9565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f62000f2b601b8362000da6565b915062000f388262000ef5565b602082019050919050565b5f6020820190508181035f83015262000f5c8162000f1d565b9050919050565b6147688062000f715f395ff3fe60806040526004361061025f575f3560e01c80635de0f2a011610143578063a9059cbb116100b5578063c3f70b5211610079578063c3f70b52146108d6578063d9ed588f14610900578063dd62ed3e14610916578063df6f93be14610952578063f2fde38b1461097c578063fdfa10a1146109a457610266565b8063a9059cbb146107e2578063b62496f51461081e578063b69ef8a81461085a578063be85750414610884578063c0246668146108ae57610266565b80638da5cb5b116101075780638da5cb5b146106d6578063945674fe1461070057806395d89b411461072a5780639a7a23d6146107545780639fccce321461077c578063a457c2d7146107a657610266565b80635de0f2a0146106085780636c7e15c91461063257806370a082311461065c578063715018a6146106985780637571336a146106ae57610266565b806322eb6631116101dc57806341d560da116101a057806341d560da146104fe57806346469afb1461052657806347579d3d1461055057806348d791551461057857806349bd5a5e146105a25780634fbee193146105cc57610266565b806322eb66311461041c57806323b872dd14610446578063278c525614610482578063313ce5671461049857806339509351146104c257610266565b806318160ddd1161022357806318160ddd146103605780631816467f1461038a5780631a8145bb146103b25780631bff7898146103dc578063220fff7e1461040657610266565b806306fdde031461026a578063095ea7b3146102945780630e947809146102d057806310d5de53146102fa5780631694505e1461033657610266565b3661026657005b5f80fd5b348015610275575f80fd5b5061027e6109ba565b60405161028b9190613692565b60405180910390f35b34801561029f575f80fd5b506102ba60048036038101906102b59190613743565b610a4a565b6040516102c7919061379b565b60405180910390f35b3480156102db575f80fd5b506102e4610a67565b6040516102f1919061379b565b60405180910390f35b348015610305575f80fd5b50610320600480360381019061031b91906137b4565b610a79565b60405161032d919061379b565b60405180910390f35b348015610341575f80fd5b5061034a610a96565b604051610357919061383a565b60405180910390f35b34801561036b575f80fd5b50610374610abb565b6040516103819190613862565b60405180910390f35b348015610395575f80fd5b506103b060048036038101906103ab91906137b4565b610ac4565b005b3480156103bd575f80fd5b506103c6610c18565b6040516103d39190613862565b60405180910390f35b3480156103e7575f80fd5b506103f0610c1e565b6040516103fd9190613862565b60405180910390f35b348015610411575f80fd5b5061041a610c24565b005b348015610427575f80fd5b50610430610d37565b60405161043d9190613862565b60405180910390f35b348015610451575f80fd5b5061046c6004803603810190610467919061387b565b610d3d565b604051610479919061379b565b60405180910390f35b34801561048d575f80fd5b50610496610e11565b005b3480156104a3575f80fd5b506104ac610fba565b6040516104b991906138e6565b60405180910390f35b3480156104cd575f80fd5b506104e860048036038101906104e39190613743565b610fc2565b6040516104f5919061379b565b60405180910390f35b348015610509575f80fd5b50610524600480360381019061051f9190613929565b611070565b005b348015610531575f80fd5b5061053a611123565b6040516105479190613862565b60405180910390f35b34801561055b575f80fd5b5061057660048036038101906105719190613954565b611129565b005b348015610583575f80fd5b5061058c611299565b6040516105999190613862565b60405180910390f35b3480156105ad575f80fd5b506105b661129f565b6040516105c391906139c7565b60405180910390f35b3480156105d7575f80fd5b506105f260048036038101906105ed91906137b4565b6112c4565b6040516105ff919061379b565b60405180910390f35b348015610613575f80fd5b5061061c611316565b6040516106299190613862565b60405180910390f35b34801561063d575f80fd5b5061064661131c565b6040516106539190613862565b60405180910390f35b348015610667575f80fd5b50610682600480360381019061067d91906137b4565b611322565b60405161068f9190613862565b60405180910390f35b3480156106a3575f80fd5b506106ac611367565b005b3480156106b9575f80fd5b506106d460048036038101906106cf91906139e0565b6114ba565b005b3480156106e1575f80fd5b506106ea6115a8565b6040516106f791906139c7565b60405180910390f35b34801561070b575f80fd5b506107146115d0565b604051610721919061379b565b60405180910390f35b348015610735575f80fd5b5061073e6115e3565b60405161074b9190613692565b60405180910390f35b34801561075f575f80fd5b5061077a600480360381019061077591906139e0565b611673565b005b348015610787575f80fd5b506107906117a6565b60405161079d9190613862565b60405180910390f35b3480156107b1575f80fd5b506107cc60048036038101906107c79190613743565b6117ac565b6040516107d9919061379b565b60405180910390f35b3480156107ed575f80fd5b5061080860048036038101906108039190613743565b611874565b604051610815919061379b565b60405180910390f35b348015610829575f80fd5b50610844600480360381019061083f91906137b4565b611891565b604051610851919061379b565b60405180910390f35b348015610865575f80fd5b5061086e6118ae565b60405161087b9190613862565b60405180910390f35b34801561088f575f80fd5b506108986118b4565b6040516108a59190613862565b60405180910390f35b3480156108b9575f80fd5b506108d460048036038101906108cf91906139e0565b6118ba565b005b3480156108e1575f80fd5b506108ea6119f6565b6040516108f79190613862565b60405180910390f35b34801561090b575f80fd5b506109146119fc565b005b348015610921575f80fd5b5061093c60048036038101906109379190613a1e565b611aad565b6040516109499190613862565b60405180910390f35b34801561095d575f80fd5b50610966611b2f565b6040516109739190613862565b60405180910390f35b348015610987575f80fd5b506109a2600480360381019061099d91906137b4565b611b35565b005b3480156109af575f80fd5b506109b8611c89565b005b6060600380546109c990613a89565b80601f01602080910402602001604051908101604052809291908181526020018280546109f590613a89565b8015610a405780601f10610a1757610100808354040283529160200191610a40565b820191905f5260205f20905b815481529060010190602001808311610a2357829003601f168201915b5050505050905090565b5f610a5d610a5661208f565b8484612096565b6001905092915050565b600f5f9054906101000a900460ff1681565b601a602052805f5260405f205f915054906101000a900460ff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b610acc61208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190613b03565b60405180910390fd5b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b60135481565b610c2c61208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613b03565b60405180910390fd5b5f610cc430611322565b90505f8111610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90613b91565b60405180910390fd5b610d3430600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612259565b50565b60145481565b5f610d49848484612259565b610e0684610d5561208f565b610e01856040518060600160405280602881526020016146e66028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610db861208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612b7e9092919063ffffffff16565b612096565b600190509392505050565b610e1961208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90613b03565b60405180910390fd5b5f4790505f8111610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490613c1f565b60405180910390fd5b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610f3390613c6a565b5f6040518083038185875af1925050503d805f8114610f6d576040519150601f19603f3d011682016040523d82523d5f602084013e610f72565b606091505b5050905080610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad90613cc8565b60405180910390fd5b5050565b5f6012905090565b5f611066610fce61208f565b846110618560015f610fde61208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612be090919063ffffffff16565b612096565b6001905092915050565b61107861208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90613b03565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b60105481565b61113161208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b690613b03565b60405180910390fd5b83601181905550816012819055506012546011546111dd9190613d13565b60108190555082601481905550806015819055506015546014546112019190613d13565b601381905550601e601054111561124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124490613d90565b60405180910390fd5b601e6013541115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613d90565b60405180910390fd5b50505050565b600e5481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600d5481565b60115481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61136f61208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f490613b03565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114c261208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790613b03565b60405180910390fd5b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60019054906101000a900460ff1681565b6060600480546115f290613a89565b80601f016020809104026020016040519081016040528092919081815260200182805461161e90613a89565b80156116695780601f1061164057610100808354040283529160200191611669565b820191905f5260205f20905b81548152906001019060200180831161164c57829003601f168201915b5050505050905090565b61167b61208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090613b03565b60405180910390fd5b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613e1e565b60405180910390fd5b6117a28282612c3d565b5050565b60175481565b5f61186a6117b861208f565b846118658560405180606001604052806025815260200161470e6025913960015f6117e161208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612b7e9092919063ffffffff16565b612096565b6001905092915050565b5f61188761188061208f565b8484612259565b6001905092915050565b601b602052805f5260405f205f915054906101000a900460ff1681565b600a5481565b60155481565b6118c261208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790613b03565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119ea919061379b565b60405180910390a25050565b600c5481565b611a0461208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990613b03565b60405180910390fd5b5f600f5f6101000a81548160ff021916908315150217905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60125481565b611b3d61208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc290613b03565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c9161208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690613b03565b60405180910390fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050611d428160016114ba565b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611def9190613e50565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e789190613e50565b6040518363ffffffff1660e01b8152600401611e95929190613e7b565b6020604051808303815f875af1158015611eb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ed59190613e50565b60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611f4060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016114ba565b611f6c60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612c3d565b5f4790505f60646050611f7e30611322565b611f889190613ea2565b611f929190613f10565b9050611fc03060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612096565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198330845f80600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161204696959493929190613f79565b60606040518083038185885af1158015612062573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906120879190613fec565b505050505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb906140ac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121699061413a565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161224c9190613862565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be906141c8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c90614256565b60405180910390fd5b5f810361234c5761234783835f612cdb565b612b79565b600f5f9054906101000a900460ff1615612741576123686115a8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123d657506123a66115a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561240e57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612448575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124615750600960149054906101000a900460ff16155b1561274057601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156125035750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156125aa57600c5481111561254d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612544906142e4565b60405180910390fd5b600e5461255983611322565b826125649190613d13565b11156125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061434c565b60405180910390fd5b61273f565b601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156126475750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561269657600c54811115612691576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612688906143da565b60405180910390fd5b61273e565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661273d57600e546126f083611322565b826126fb9190613d13565b111561273c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127339061434c565b60405180910390fd5b5b5b5b5b5b5f61274b30611322565b90505f600d5482101590508080156127705750600960149054906101000a900460ff16155b80156127c35750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612816575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612869575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156128ac576001600960146101000a81548160ff021916908315150217905550612891612f64565b5f600960146101000a81548160ff0219169083151502179055505b5f600960149054906101000a900460ff1615905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061295b575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612964575f90505b5f8115612b6957601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156129c257505f601354115b15612a5a576129ef60646129e16013548861318a90919063ffffffff16565b61320190919063ffffffff16565b905060135460155482612a029190613ea2565b612a0c9190613f10565b60165f828254612a1c9190613d13565b9250508190555060135460145482612a349190613ea2565b612a3e9190613f10565b60175f828254612a4e9190613d13565b92505081905550612b46565b601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ab157505f601054115b15612b4557612ade6064612ad06010548861318a90919063ffffffff16565b61320190919063ffffffff16565b905060105460125482612af19190613ea2565b612afb9190613f10565b60165f828254612b0b9190613d13565b9250508190555060105460115482612b239190613ea2565b612b2d9190613f10565b60175f828254612b3d9190613d13565b925050819055505b5b5f811115612b5a57612b59873083612cdb565b5b8085612b6691906143f8565b94505b612b74878787612cdb565b505050505b505050565b5f838311158290612bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbc9190613692565b60405180910390fd5b505f8385612bd391906143f8565b9050809150509392505050565b5f808284612bee9190613d13565b905083811015612c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2a90614475565b60405180910390fd5b8091505092915050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d40906141c8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dae90614256565b60405180910390fd5b612dc283838361324a565b612e2b816040518060600160405280602681526020016146c0602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612b7e9092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550612eba815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612be090919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612f579190613862565b60405180910390a3505050565b5f612f6e30611322565b90505f601754601654612f819190613d13565b90505f80831480612f9157505f82145b15612f9e57505050613188565b5f1515600f60019054906101000a900460ff16151503612fe5576014600d54612fc79190613ea2565b831115612fe0576014600d54612fdd9190613ea2565b92505b612ff1565b612fee30611322565b92505b5f600283601654866130039190613ea2565b61300d9190613f10565b6130179190613f10565b90505f61302d828661324f90919063ffffffff16565b90505f47905061303c82613298565b5f613050824761324f90919063ffffffff16565b90505f61307a8761306c6017548561318a90919063ffffffff16565b61320190919063ffffffff16565b90505f818361308991906143f8565b90505f6016819055505f6017819055505f861180156130a757505f81115b156130f4576130b686826134ce565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826016546040516130eb93929190614493565b60405180910390a15b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161313990613c6a565b5f6040518083038185875af1925050503d805f8114613173576040519150601f19603f3d011682016040523d82523d5f602084013e613178565b606091505b5050809750505050505050505050505b565b5f80830361319a575f90506131fb565b5f82846131a79190613ea2565b90508284826131b69190613f10565b146131f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ed90614538565b60405180910390fd5b809150505b92915050565b5f61324283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506135a7565b905092915050565b505050565b5f61329083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612b7e565b905092915050565b5f600267ffffffffffffffff8111156132b4576132b3614556565b5b6040519080825280602002602001820160405280156132e25781602001602082028036833780820191505090505b50905030815f815181106132f9576132f8614583565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561339d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133c19190613e50565b816001815181106133d5576133d4614583565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061343b3060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612096565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161349d959493929190614667565b5f604051808303815f87803b1580156134b4575f80fd5b505af11580156134c6573d5f803e3d5ffd5b505050505050565b6134fa3060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612096565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8030426040518863ffffffff1660e01b815260040161355f96959493929190613f79565b60606040518083038185885af115801561357b573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906135a09190613fec565b5050505050565b5f80831182906135ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e49190613692565b60405180910390fd5b505f83856135fb9190613f10565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561363f578082015181840152602081019050613624565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61366482613608565b61366e8185613612565b935061367e818560208601613622565b6136878161364a565b840191505092915050565b5f6020820190508181035f8301526136aa818461365a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6136df826136b6565b9050919050565b6136ef816136d5565b81146136f9575f80fd5b50565b5f8135905061370a816136e6565b92915050565b5f819050919050565b61372281613710565b811461372c575f80fd5b50565b5f8135905061373d81613719565b92915050565b5f8060408385031215613759576137586136b2565b5b5f613766858286016136fc565b92505060206137778582860161372f565b9150509250929050565b5f8115159050919050565b61379581613781565b82525050565b5f6020820190506137ae5f83018461378c565b92915050565b5f602082840312156137c9576137c86136b2565b5b5f6137d6848285016136fc565b91505092915050565b5f819050919050565b5f6138026137fd6137f8846136b6565b6137df565b6136b6565b9050919050565b5f613813826137e8565b9050919050565b5f61382482613809565b9050919050565b6138348161381a565b82525050565b5f60208201905061384d5f83018461382b565b92915050565b61385c81613710565b82525050565b5f6020820190506138755f830184613853565b92915050565b5f805f60608486031215613892576138916136b2565b5b5f61389f868287016136fc565b93505060206138b0868287016136fc565b92505060406138c18682870161372f565b9150509250925092565b5f60ff82169050919050565b6138e0816138cb565b82525050565b5f6020820190506138f95f8301846138d7565b92915050565b61390881613781565b8114613912575f80fd5b50565b5f81359050613923816138ff565b92915050565b5f6020828403121561393e5761393d6136b2565b5b5f61394b84828501613915565b91505092915050565b5f805f806080858703121561396c5761396b6136b2565b5b5f6139798782880161372f565b945050602061398a8782880161372f565b935050604061399b8782880161372f565b92505060606139ac8782880161372f565b91505092959194509250565b6139c1816136d5565b82525050565b5f6020820190506139da5f8301846139b8565b92915050565b5f80604083850312156139f6576139f56136b2565b5b5f613a03858286016136fc565b9250506020613a1485828601613915565b9150509250929050565b5f8060408385031215613a3457613a336136b2565b5b5f613a41858286016136fc565b9250506020613a52858286016136fc565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613aa057607f821691505b602082108103613ab357613ab2613a5c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613aed602083613612565b9150613af882613ab9565b602082019050919050565b5f6020820190508181035f830152613b1a81613ae1565b9050919050565b7f546f6b656e2062616c616e6365206d75737420626520677265617465722074685f8201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b5f613b7b602483613612565b9150613b8682613b21565b604082019050919050565b5f6020820190508181035f830152613ba881613b6f565b9050919050565b7f4554482062616c616e6365206d7573742062652067726561746572207468616e5f8201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b5f613c09602283613612565b9150613c1482613baf565b604082019050919050565b5f6020820190508181035f830152613c3681613bfd565b9050919050565b5f81905092915050565b50565b5f613c555f83613c3d565b9150613c6082613c47565b5f82019050919050565b5f613c7482613c4a565b9150819050919050565b7f4661696c656420746f20636c656172204554482062616c616e636500000000005f82015250565b5f613cb2601b83613612565b9150613cbd82613c7e565b602082019050919050565b5f6020820190508181035f830152613cdf81613ca6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613d1d82613710565b9150613d2883613710565b9250828201905080821115613d4057613d3f613ce6565b5b92915050565b7f4d4158203330252074617820616c6c6f776564000000000000000000000000005f82015250565b5f613d7a601383613612565b9150613d8582613d46565b602082019050919050565b5f6020820190508181035f830152613da781613d6e565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613e08603983613612565b9150613e1382613dae565b604082019050919050565b5f6020820190508181035f830152613e3581613dfc565b9050919050565b5f81519050613e4a816136e6565b92915050565b5f60208284031215613e6557613e646136b2565b5b5f613e7284828501613e3c565b91505092915050565b5f604082019050613e8e5f8301856139b8565b613e9b60208301846139b8565b9392505050565b5f613eac82613710565b9150613eb783613710565b9250828202613ec581613710565b91508282048414831517613edc57613edb613ce6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613f1a82613710565b9150613f2583613710565b925082613f3557613f34613ee3565b5b828204905092915050565b5f819050919050565b5f613f63613f5e613f5984613f40565b6137df565b613710565b9050919050565b613f7381613f49565b82525050565b5f60c082019050613f8c5f8301896139b8565b613f996020830188613853565b613fa66040830187613f6a565b613fb36060830186613f6a565b613fc060808301856139b8565b613fcd60a0830184613853565b979650505050505050565b5f81519050613fe681613719565b92915050565b5f805f60608486031215614003576140026136b2565b5b5f61401086828701613fd8565b935050602061402186828701613fd8565b925050604061403286828701613fd8565b9150509250925092565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614096602483613612565b91506140a18261403c565b604082019050919050565b5f6020820190508181035f8301526140c38161408a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614124602283613612565b915061412f826140ca565b604082019050919050565b5f6020820190508181035f83015261415181614118565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6141b2602583613612565b91506141bd82614158565b604082019050919050565b5f6020820190508181035f8301526141df816141a6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614240602383613612565b915061424b826141e6565b604082019050919050565b5f6020820190508181035f83015261426d81614234565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6142ce603583613612565b91506142d982614274565b604082019050919050565b5f6020820190508181035f8301526142fb816142c2565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614336601383613612565b915061434182614302565b602082019050919050565b5f6020820190508181035f8301526143638161432a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6143c4603683613612565b91506143cf8261436a565b604082019050919050565b5f6020820190508181035f8301526143f1816143b8565b9050919050565b5f61440282613710565b915061440d83613710565b925082820390508181111561442557614424613ce6565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f61445f601b83613612565b915061446a8261442b565b602082019050919050565b5f6020820190508181035f83015261448c81614453565b9050919050565b5f6060820190506144a65f830186613853565b6144b36020830185613853565b6144c06040830184613853565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f614522602183613612565b915061452d826144c8565b604082019050919050565b5f6020820190508181035f83015261454f81614516565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6145e2816136d5565b82525050565b5f6145f383836145d9565b60208301905092915050565b5f602082019050919050565b5f614615826145b0565b61461f81856145ba565b935061462a836145ca565b805f5b8381101561465a57815161464188826145e8565b975061464c836145ff565b92505060018101905061462d565b5085935050505092915050565b5f60a08201905061467a5f830188613853565b6146876020830187613f6a565b8181036040830152614699818661460b565b90506146a860608301856139b8565b6146b56080830184613853565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122005d257792ebec16804b085798dab6351994a346370cc281025fa8a8f04a3881664736f6c6343000815003341204e6578742d47656e65726174696f6e20536d61727420436f6e747261637420616e6420446563656e7472616c697a6564204170706c69636174696f6e20506c6174666f726d200a200a205361746f736869204e616b616d6f746f277320646576656c6f706d656e74206f6620426974636f696e20696e203230303920686173206f6674656e206265656e206861696c65642061732061207261646963616c20646576656c6f706d656e7420696e206d6f6e657920616e642063757272656e63792c206265696e6720746865206669727374206578616d706c65206f662061206469676974616c2061737365742077686963682073696d756c74616e656f75736c7920686173206e6f206261636b696e67206f72202a696e7472696e7369632076616c7565286f70656e7320696e2061206e657720746162292a20616e64206e6f2063656e7472616c697a656420697373756572206f7220636f6e74726f6c6c65722e20486f77657665722c20616e6f746865722c206172677561626c79206d6f726520696d706f7274616e742c2070617274206f662074686520426974636f696e206578706572696d656e742069732074686520756e6465726c79696e6720626c6f636b636861696e20746563686e6f6c6f6779206173206120746f6f6c206f6620646973747269627574656420636f6e73656e7375732c20616e6420617474656e74696f6e2069732072617069646c79207374617274696e6720746f20736869667420746f2074686973206f7468657220617370656374206f6620426974636f696e2e20436f6d6d6f6e6c7920636974656420616c7465726e6174697665206170706c69636174696f6e73206f6620626c6f636b636861696e20746563686e6f6c6f677920696e636c756465207573696e67206f6e2d626c6f636b636861696e206469676974616c2061737365747320746f20726570726573656e7420637573746f6d2063757272656e6369657320616e642066696e616e6369616c20696e737472756d656e747320282a636f6c6f72656420636f696e73286f70656e7320696e2061206e657720746162292a292c20746865206f776e657273686970206f6620616e20756e6465726c79696e6720706879736963616c2064657669636520282a736d6172742070726f7065727479286f70656e7320696e2061206e657720746162292a292c206e6f6e2d66756e6769626c6520617373657473207375636820617320646f6d61696e206e616d657320282a4e616d65636f696e286f70656e7320696e2061206e657720746162292a292c2061732077656c6c206173206d6f726520636f6d706c6578206170706c69636174696f6e7320696e766f6c76696e6720686176696e67206469676974616c20617373657473206265696e67206469726563746c7920636f6e74726f6c6c65642062792061207069656365206f6620636f646520696d706c656d656e74696e67206172626974726172792072756c657320282a736d61727420636f6e747261637473286f70656e7320696e2061206e657720746162292a29206f72206576656e20626c6f636b636861696e2d6261736564202a646563656e7472616c697a6564206175746f6e6f6d6f7573206f7267616e697a6174696f6e73286f70656e7320696e2061206e657720746162292a202844414f73292e205768617420457468657265756d20696e74656e647320746f2070726f76696465206973206120626c6f636b636861696e20776974682061206275696c742d696e2066756c6c7920666c656467656420547572696e672d636f6d706c6574652070726f6772616d6d696e67206c616e677561676520746861742063616e206265207573656420746f20637265617465202a636f6e7472616374732a20746861742063616e206265207573656420746f20656e636f646520617262697472617279207374617465207472616e736974696f6e2066756e6374696f6e732c20616c6c6f77696e6720757365727320746f2063726561746520616e79206f66207468652073797374656d73206465736372696265642061626f76652c2061732077656c6c206173206d616e79206f746865727320746861742077652068617665206e6f742079657420696d6167696e65642c2073696d706c792062792077726974696e6720757020746865206c6f67696320696e206120666577206c696e6573206f6620636f64652e200a200a20496e74726f64756374696f6e20746f20426974636f696e20616e64204578697374696e6720436f6e6365707473200a200a20486973746f7279200a200a2054686520636f6e63657074206f6620646563656e7472616c697a6564206469676974616c2063757272656e63792c2061732077656c6c20617320616c7465726e6174697665206170706c69636174696f6e73206c696b652070726f706572747920726567697374726965732c20686173206265656e2061726f756e6420666f7220646563616465732e2054686520616e6f6e796d6f757320652d636173682070726f746f636f6c73206f662074686520313938307320616e64207468652031393930732c206d6f73746c792072656c69616e74206f6e20612063727970746f67726170686963207072696d6974697665206b6e6f776e20617320436861756d69616e20626c696e64696e672c2070726f766964656420612063757272656e637920776974682061206869676820646567726565206f6620707269766163792c20627574207468652070726f746f636f6c73206c617267656c79206661696c656420746f206761696e207472616374696f6e2062656361757365206f662074686569722072656c69616e6365206f6e20612063656e7472616c697a656420696e7465726d6564696172792e20496e20313939382c2057656920446169277320622d6d6f6e6579286f70656e7320696e2061206e6577207461622920626563616d65207468652066697273742070726f706f73616c20746f20696e74726f64756365207468652069646561206f66206372656174696e67206d6f6e6579207468726f75676820736f6c76696e6720636f6d7075746174696f6e616c2070757a7a6c65732061732077656c6c20617320646563656e7472616c697a656420636f6e73656e7375732c20627574207468652070726f706f73616c20776173207363616e74206f6e2064657461696c7320617320746f20686f7720646563656e7472616c697a656420636f6e73656e73757320636f756c642061637475616c6c7920626520696d706c656d656e7465642e20496e20323030352c2048616c2046696e6e657920696e74726f6475636564206120636f6e63657074206f66202a7265757361626c652070726f6f6673206f6620776f726b286f70656e7320696e2061206e657720746162292a2c20612073797374656d20776869636820757365732069646561732066726f6d20622d6d6f6e657920746f6765746865722077697468204164616d204261636b277320636f6d7075746174696f6e616c6c7920646966666963756c742048617368636173682070757a7a6c657320746f20637265617465206120636f6e6365707420666f7220612063727970746f63757272656e63792c20627574206f6e636520616761696e2066656c6c2073686f7274206f662074686520696465616c2062792072656c79696e67206f6e207472757374656420636f6d707574696e672061732061206261636b656e642e20496e20323030392c206120646563656e7472616c697a65642063757272656e63792077617320666f72207468652066697273742074696d6520696d706c656d656e74656420696e207072616374696365206279205361746f736869204e616b616d6f746f2c20636f6d62696e696e672065737461626c6973686564207072696d69746976657320666f72206d616e6167696e67206f776e657273686970207468726f756768207075626c6963206b65792063727970746f6772617068792077697468206120636f6e73656e73757320616c676f726974686d20666f72206b656570696e6720747261636b206f662077686f206f776e7320636f696e732c206b6e6f776e206173202a70726f6f662d6f662d776f726b2a2e200a200a20546865206d656368616e69736d20626568696e642070726f6f662d6f662d776f726b20776173206120627265616b7468726f75676820696e2074686520737061636520626563617573652069742073696d756c74616e656f75736c7920736f6c7665642074776f2070726f626c656d732e2046697273742c2069742070726f766964656420612073696d706c6520616e64206d6f6465726174656c792065666665637469766520636f6e73656e73757320616c676f726974686d2c20616c6c6f77696e67206e6f64657320696e20746865206e6574776f726b20746f20636f6c6c6563746976656c79206167726565206f6e206120736574206f662063616e6f6e6963616c207570646174657320746f20746865207374617465206f662074686520426974636f696e206c65646765722e205365636f6e642c2069742070726f76696465642061206d656368616e69736d20666f7220616c6c6f77696e67206672656520656e74727920696e746f2074686520636f6e73656e7375732070726f636573732c20736f6c76696e672074686520706f6c69746963616c2070726f626c656d206f66206465636964696e672077686f206765747320746f20696e666c75656e63652074686520636f6e73656e7375732c207768696c652073696d756c74616e656f75736c792070726576656e74696e6720737962696c2061747461636b732e20497420646f6573207468697320627920737562737469747574696e67206120666f726d616c206261727269657220746f2070617274696369706174696f6e2c20737563682061732074686520726571756972656d656e7420746f2062652072656769737465726564206173206120756e6971756520656e74697479206f6e206120706172746963756c6172206c6973742c207769746820616e2065636f6e6f6d69632062617272696572202d2074686520776569676874206f6620612073696e676c65206e6f646520696e2074686520636f6e73656e73757320766f74696e672070726f63657373206973206469726563746c792070726f706f7274696f6e616c20746f2074686520636f6d707574696e6720706f776572207468617420746865206e6f6465206272696e67732e2053696e6365207468656e2c20616e20616c7465726e617469766520617070726f61636820686173206265656e2070726f706f7365642063616c6c65642070726f6f662d6f662d7374616b652c2063616c63756c6174696e672074686520776569676874206f662061206e6f6465206173206265696e672070726f706f7274696f6e616c20746f206974732063757272656e637920686f6c64696e677320616e64206e6f7420636f6d7075746174696f6e616c207265736f75726365733b207468652064697363757373696f6e206f66207468652072656c6174697665206d6572697473206f66207468652074776f20617070726f6163686573206973206265796f6e64207468652073636f7065206f662074686973207061706572206275742069742073686f756c64206265206e6f746564207468617420626f746820617070726f61636865732063616e206265207573656420746f20736572766520617320746865206261636b626f6e65206f6620612063727970746f63757272656e63792e200a200a20426974636f696e2041732041205374617465205472616e736974696f6e2053797374656d200a200a2046726f6d206120746563686e6963616c207374616e64706f696e742c20746865206c6564676572206f6620612063727970746f63757272656e6379207375636820617320426974636f696e2063616e2062652074686f75676874206f662061732061207374617465207472616e736974696f6e2073797374656d2c2077686572652074686572652069732061202a73746174652a20636f6e73697374696e67206f6620746865206f776e65727368697020737461747573206f6620616c6c206578697374696e6720626974636f696e7320616e642061202a7374617465207472616e736974696f6e2066756e6374696f6e2a20746861742074616b6573206120737461746520616e642061207472616e73616374696f6e20616e64206f7574707574732061206e65772073746174652077686963682069732074686520726573756c742e20496e2061207374616e646172642062616e6b696e672073797374656d2c20666f72206578616d706c652c2074686520737461746520697320612062616c616e63652073686565742c2061207472616e73616374696f6e2069732061207265717565737420746f206d6f76652024582066726f6d204120746f20422c20616e6420746865207374617465207472616e736974696f6e2066756e6374696f6e2072656475636573207468652076616c756520696e20412773206163636f756e7420627920245820616e6420696e63726561736573207468652076616c756520696e20422773206163636f756e742062792024582e20496620412773206163636f756e7420686173206c657373207468616e20245820696e2074686520666972737420706c6163652c20746865207374617465207472616e736974696f6e2066756e6374696f6e2072657475726e7320616e206572726f722e2048656e63652c206f6e652063616e20666f726d616c6c7920646566696e653a200a20546865202a73746174652a20696e20426974636f696e2069732074686520636f6c6c656374696f6e206f6620616c6c20636f696e732028746563686e6963616c6c792c20c39c756e7370656e74207472616e73616374696f6e206f7574707574732a206f72205554584f2920746861742068617665206265656e206d696e74656420616e64206e6f7420796574207370656e742c20776974682065616368205554584f20686176696e6720612064656e6f6d696e6174696f6e20616e6420616e206f776e65722028646566696e656420627920612032302d62797465206164647265737320776869636820697320657373656e7469616c6c7920612063727970746f67726170686963207075626c6963206b6579666e31292e2041207472616e73616374696f6e20636f6e7461696e73206f6e65206f72206d6f726520696e707574732c2077697468206561636820696e70757420636f6e7461696e696e672061207265666572656e636520746f20616e206578697374696e67205554584f20616e6420612063727970746f67726170686963207369676e61747572652070726f6475636564206279207468652070726976617465206b6579206173736f636961746564207769746820746865206f776e6572277320616464726573732c20616e64206f6e65206f72206d6f7265206f7574707574732c20776974682065616368206f757470757420636f6e7461696e696e672061206e6577205554584f20746f20626520616464656420746f207468652073746174652e200a20546865207374617465207472616e736974696f6e2066756e6374696f6e204150504c5928532c545829202d3e2053272063616e20626520646566696e656420726f7567686c7920617320666f6c6c6f77733a20466f72206561636820696e70757420696e2054583a20496620746865207265666572656e636564205554584f206973206e6f7420696e20532c2072657475726e20616e206572726f722e204966207468652070726f7669646564207369676e617475726520646f6573206e6f74206d6174636820746865206f776e6572206f6620746865205554584f2c2072657475726e20616e206572726f722e204966207468652073756d206f66207468652064656e6f6d696e6174696f6e73206f6620616c6c20696e707574205554584f206973206c657373207468616e207468652073756d206f66207468652064656e6f6d696e6174696f6e73206f6620616c6c206f7574707574205554584f2c2072657475726e20616e206572726f722e2052657475726e2053207769746820616c6c20696e707574205554584f2072656d6f76656420616e6420616c6c206f7574707574205554584f2061646465642e200a205468652066697273742068616c66206f662074686520666972737420737465702070726576656e7473207472616e73616374696f6e2073656e646572732066726f6d207370656e64696e6720636f696e73207468617420646f206e6f742065786973742c20746865207365636f6e642068616c66206f662074686520666972737420737465702070726576656e7473207472616e73616374696f6e2073656e646572732066726f6d207370656e64696e67206f746865722070656f706c65277320636f696e732c20616e6420746865207365636f6e64207374657020656e666f7263657320636f6e736572766174696f6e206f662076616c75652e20496e206f7264657220746f20757365207468697320666f72207061796d656e742c207468652070726f746f636f6c20697320617320666f6c6c6f77732e20537570706f736520416c6963652077616e747320746f2073656e642031312e372042544320746f20426f622e2046697273742c20416c6963652077696c6c206c6f6f6b20666f72206120736574206f6620617661696c61626c65205554584f207468617420736865206f776e73207468617420746f74616c7320757020746f206174206c656173742031312e37204254432e205265616c6973746963616c6c792c20416c6963652077696c6c206e6f742062652061626c6520746f206765742065786163746c792031312e37204254433b2073617920746861742074686520736d616c6c657374207368652063616e2067657420697320362b342b323d31322e20536865207468656e20637265617465732061207472616e73616374696f6e20776974682074686f736520746872656520696e7075747320616e642074776f206f7574707574732e20546865206669727374206f75747075742077696c6c2062652031312e3720425443207769746820426f622773206164647265737320617320697473206f776e65722c20616e6420746865207365636f6e64206f75747075742077696c6c206265207468652072656d61696e696e6720302e3320425443202a6368616e67652a2c207769746820746865206f776e6572206265696e6720416c6963652068657273656c66200a

Deployed Bytecode

0x60806040526004361061025f575f3560e01c80635de0f2a011610143578063a9059cbb116100b5578063c3f70b5211610079578063c3f70b52146108d6578063d9ed588f14610900578063dd62ed3e14610916578063df6f93be14610952578063f2fde38b1461097c578063fdfa10a1146109a457610266565b8063a9059cbb146107e2578063b62496f51461081e578063b69ef8a81461085a578063be85750414610884578063c0246668146108ae57610266565b80638da5cb5b116101075780638da5cb5b146106d6578063945674fe1461070057806395d89b411461072a5780639a7a23d6146107545780639fccce321461077c578063a457c2d7146107a657610266565b80635de0f2a0146106085780636c7e15c91461063257806370a082311461065c578063715018a6146106985780637571336a146106ae57610266565b806322eb6631116101dc57806341d560da116101a057806341d560da146104fe57806346469afb1461052657806347579d3d1461055057806348d791551461057857806349bd5a5e146105a25780634fbee193146105cc57610266565b806322eb66311461041c57806323b872dd14610446578063278c525614610482578063313ce5671461049857806339509351146104c257610266565b806318160ddd1161022357806318160ddd146103605780631816467f1461038a5780631a8145bb146103b25780631bff7898146103dc578063220fff7e1461040657610266565b806306fdde031461026a578063095ea7b3146102945780630e947809146102d057806310d5de53146102fa5780631694505e1461033657610266565b3661026657005b5f80fd5b348015610275575f80fd5b5061027e6109ba565b60405161028b9190613692565b60405180910390f35b34801561029f575f80fd5b506102ba60048036038101906102b59190613743565b610a4a565b6040516102c7919061379b565b60405180910390f35b3480156102db575f80fd5b506102e4610a67565b6040516102f1919061379b565b60405180910390f35b348015610305575f80fd5b50610320600480360381019061031b91906137b4565b610a79565b60405161032d919061379b565b60405180910390f35b348015610341575f80fd5b5061034a610a96565b604051610357919061383a565b60405180910390f35b34801561036b575f80fd5b50610374610abb565b6040516103819190613862565b60405180910390f35b348015610395575f80fd5b506103b060048036038101906103ab91906137b4565b610ac4565b005b3480156103bd575f80fd5b506103c6610c18565b6040516103d39190613862565b60405180910390f35b3480156103e7575f80fd5b506103f0610c1e565b6040516103fd9190613862565b60405180910390f35b348015610411575f80fd5b5061041a610c24565b005b348015610427575f80fd5b50610430610d37565b60405161043d9190613862565b60405180910390f35b348015610451575f80fd5b5061046c6004803603810190610467919061387b565b610d3d565b604051610479919061379b565b60405180910390f35b34801561048d575f80fd5b50610496610e11565b005b3480156104a3575f80fd5b506104ac610fba565b6040516104b991906138e6565b60405180910390f35b3480156104cd575f80fd5b506104e860048036038101906104e39190613743565b610fc2565b6040516104f5919061379b565b60405180910390f35b348015610509575f80fd5b50610524600480360381019061051f9190613929565b611070565b005b348015610531575f80fd5b5061053a611123565b6040516105479190613862565b60405180910390f35b34801561055b575f80fd5b5061057660048036038101906105719190613954565b611129565b005b348015610583575f80fd5b5061058c611299565b6040516105999190613862565b60405180910390f35b3480156105ad575f80fd5b506105b661129f565b6040516105c391906139c7565b60405180910390f35b3480156105d7575f80fd5b506105f260048036038101906105ed91906137b4565b6112c4565b6040516105ff919061379b565b60405180910390f35b348015610613575f80fd5b5061061c611316565b6040516106299190613862565b60405180910390f35b34801561063d575f80fd5b5061064661131c565b6040516106539190613862565b60405180910390f35b348015610667575f80fd5b50610682600480360381019061067d91906137b4565b611322565b60405161068f9190613862565b60405180910390f35b3480156106a3575f80fd5b506106ac611367565b005b3480156106b9575f80fd5b506106d460048036038101906106cf91906139e0565b6114ba565b005b3480156106e1575f80fd5b506106ea6115a8565b6040516106f791906139c7565b60405180910390f35b34801561070b575f80fd5b506107146115d0565b604051610721919061379b565b60405180910390f35b348015610735575f80fd5b5061073e6115e3565b60405161074b9190613692565b60405180910390f35b34801561075f575f80fd5b5061077a600480360381019061077591906139e0565b611673565b005b348015610787575f80fd5b506107906117a6565b60405161079d9190613862565b60405180910390f35b3480156107b1575f80fd5b506107cc60048036038101906107c79190613743565b6117ac565b6040516107d9919061379b565b60405180910390f35b3480156107ed575f80fd5b5061080860048036038101906108039190613743565b611874565b604051610815919061379b565b60405180910390f35b348015610829575f80fd5b50610844600480360381019061083f91906137b4565b611891565b604051610851919061379b565b60405180910390f35b348015610865575f80fd5b5061086e6118ae565b60405161087b9190613862565b60405180910390f35b34801561088f575f80fd5b506108986118b4565b6040516108a59190613862565b60405180910390f35b3480156108b9575f80fd5b506108d460048036038101906108cf91906139e0565b6118ba565b005b3480156108e1575f80fd5b506108ea6119f6565b6040516108f79190613862565b60405180910390f35b34801561090b575f80fd5b506109146119fc565b005b348015610921575f80fd5b5061093c60048036038101906109379190613a1e565b611aad565b6040516109499190613862565b60405180910390f35b34801561095d575f80fd5b50610966611b2f565b6040516109739190613862565b60405180910390f35b348015610987575f80fd5b506109a2600480360381019061099d91906137b4565b611b35565b005b3480156109af575f80fd5b506109b8611c89565b005b6060600380546109c990613a89565b80601f01602080910402602001604051908101604052809291908181526020018280546109f590613a89565b8015610a405780601f10610a1757610100808354040283529160200191610a40565b820191905f5260205f20905b815481529060010190602001808311610a2357829003601f168201915b5050505050905090565b5f610a5d610a5661208f565b8484612096565b6001905092915050565b600f5f9054906101000a900460ff1681565b601a602052805f5260405f205f915054906101000a900460ff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b610acc61208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190613b03565b60405180910390fd5b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b60135481565b610c2c61208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613b03565b60405180910390fd5b5f610cc430611322565b90505f8111610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90613b91565b60405180910390fd5b610d3430600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612259565b50565b60145481565b5f610d49848484612259565b610e0684610d5561208f565b610e01856040518060600160405280602881526020016146e66028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610db861208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612b7e9092919063ffffffff16565b612096565b600190509392505050565b610e1961208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90613b03565b60405180910390fd5b5f4790505f8111610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490613c1f565b60405180910390fd5b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610f3390613c6a565b5f6040518083038185875af1925050503d805f8114610f6d576040519150601f19603f3d011682016040523d82523d5f602084013e610f72565b606091505b5050905080610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad90613cc8565b60405180910390fd5b5050565b5f6012905090565b5f611066610fce61208f565b846110618560015f610fde61208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612be090919063ffffffff16565b612096565b6001905092915050565b61107861208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90613b03565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b60105481565b61113161208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b690613b03565b60405180910390fd5b83601181905550816012819055506012546011546111dd9190613d13565b60108190555082601481905550806015819055506015546014546112019190613d13565b601381905550601e601054111561124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124490613d90565b60405180910390fd5b601e6013541115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613d90565b60405180910390fd5b50505050565b600e5481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600d5481565b60115481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61136f61208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f490613b03565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114c261208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790613b03565b60405180910390fd5b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60019054906101000a900460ff1681565b6060600480546115f290613a89565b80601f016020809104026020016040519081016040528092919081815260200182805461161e90613a89565b80156116695780601f1061164057610100808354040283529160200191611669565b820191905f5260205f20905b81548152906001019060200180831161164c57829003601f168201915b5050505050905090565b61167b61208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090613b03565b60405180910390fd5b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613e1e565b60405180910390fd5b6117a28282612c3d565b5050565b60175481565b5f61186a6117b861208f565b846118658560405180606001604052806025815260200161470e6025913960015f6117e161208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612b7e9092919063ffffffff16565b612096565b6001905092915050565b5f61188761188061208f565b8484612259565b6001905092915050565b601b602052805f5260405f205f915054906101000a900460ff1681565b600a5481565b60155481565b6118c261208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790613b03565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119ea919061379b565b60405180910390a25050565b600c5481565b611a0461208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990613b03565b60405180910390fd5b5f600f5f6101000a81548160ff021916908315150217905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60125481565b611b3d61208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc290613b03565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c9161208f565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690613b03565b60405180910390fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050611d428160016114ba565b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611def9190613e50565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e789190613e50565b6040518363ffffffff1660e01b8152600401611e95929190613e7b565b6020604051808303815f875af1158015611eb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ed59190613e50565b60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611f4060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016114ba565b611f6c60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612c3d565b5f4790505f60646050611f7e30611322565b611f889190613ea2565b611f929190613f10565b9050611fc03060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612096565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198330845f80600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161204696959493929190613f79565b60606040518083038185885af1158015612062573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906120879190613fec565b505050505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb906140ac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121699061413a565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161224c9190613862565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be906141c8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c90614256565b60405180910390fd5b5f810361234c5761234783835f612cdb565b612b79565b600f5f9054906101000a900460ff1615612741576123686115a8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123d657506123a66115a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561240e57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612448575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124615750600960149054906101000a900460ff16155b1561274057601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156125035750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156125aa57600c5481111561254d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612544906142e4565b60405180910390fd5b600e5461255983611322565b826125649190613d13565b11156125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061434c565b60405180910390fd5b61273f565b601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156126475750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561269657600c54811115612691576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612688906143da565b60405180910390fd5b61273e565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661273d57600e546126f083611322565b826126fb9190613d13565b111561273c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127339061434c565b60405180910390fd5b5b5b5b5b5b5f61274b30611322565b90505f600d5482101590508080156127705750600960149054906101000a900460ff16155b80156127c35750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612816575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612869575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156128ac576001600960146101000a81548160ff021916908315150217905550612891612f64565b5f600960146101000a81548160ff0219169083151502179055505b5f600960149054906101000a900460ff1615905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061295b575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612964575f90505b5f8115612b6957601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156129c257505f601354115b15612a5a576129ef60646129e16013548861318a90919063ffffffff16565b61320190919063ffffffff16565b905060135460155482612a029190613ea2565b612a0c9190613f10565b60165f828254612a1c9190613d13565b9250508190555060135460145482612a349190613ea2565b612a3e9190613f10565b60175f828254612a4e9190613d13565b92505081905550612b46565b601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ab157505f601054115b15612b4557612ade6064612ad06010548861318a90919063ffffffff16565b61320190919063ffffffff16565b905060105460125482612af19190613ea2565b612afb9190613f10565b60165f828254612b0b9190613d13565b9250508190555060105460115482612b239190613ea2565b612b2d9190613f10565b60175f828254612b3d9190613d13565b925050819055505b5b5f811115612b5a57612b59873083612cdb565b5b8085612b6691906143f8565b94505b612b74878787612cdb565b505050505b505050565b5f838311158290612bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbc9190613692565b60405180910390fd5b505f8385612bd391906143f8565b9050809150509392505050565b5f808284612bee9190613d13565b905083811015612c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2a90614475565b60405180910390fd5b8091505092915050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d40906141c8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dae90614256565b60405180910390fd5b612dc283838361324a565b612e2b816040518060600160405280602681526020016146c0602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612b7e9092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550612eba815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612be090919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612f579190613862565b60405180910390a3505050565b5f612f6e30611322565b90505f601754601654612f819190613d13565b90505f80831480612f9157505f82145b15612f9e57505050613188565b5f1515600f60019054906101000a900460ff16151503612fe5576014600d54612fc79190613ea2565b831115612fe0576014600d54612fdd9190613ea2565b92505b612ff1565b612fee30611322565b92505b5f600283601654866130039190613ea2565b61300d9190613f10565b6130179190613f10565b90505f61302d828661324f90919063ffffffff16565b90505f47905061303c82613298565b5f613050824761324f90919063ffffffff16565b90505f61307a8761306c6017548561318a90919063ffffffff16565b61320190919063ffffffff16565b90505f818361308991906143f8565b90505f6016819055505f6017819055505f861180156130a757505f81115b156130f4576130b686826134ce565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826016546040516130eb93929190614493565b60405180910390a15b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161313990613c6a565b5f6040518083038185875af1925050503d805f8114613173576040519150601f19603f3d011682016040523d82523d5f602084013e613178565b606091505b5050809750505050505050505050505b565b5f80830361319a575f90506131fb565b5f82846131a79190613ea2565b90508284826131b69190613f10565b146131f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ed90614538565b60405180910390fd5b809150505b92915050565b5f61324283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506135a7565b905092915050565b505050565b5f61329083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612b7e565b905092915050565b5f600267ffffffffffffffff8111156132b4576132b3614556565b5b6040519080825280602002602001820160405280156132e25781602001602082028036833780820191505090505b50905030815f815181106132f9576132f8614583565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561339d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133c19190613e50565b816001815181106133d5576133d4614583565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061343b3060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612096565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161349d959493929190614667565b5f604051808303815f87803b1580156134b4575f80fd5b505af11580156134c6573d5f803e3d5ffd5b505050505050565b6134fa3060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612096565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8030426040518863ffffffff1660e01b815260040161355f96959493929190613f79565b60606040518083038185885af115801561357b573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906135a09190613fec565b5050505050565b5f80831182906135ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e49190613692565b60405180910390fd5b505f83856135fb9190613f10565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561363f578082015181840152602081019050613624565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61366482613608565b61366e8185613612565b935061367e818560208601613622565b6136878161364a565b840191505092915050565b5f6020820190508181035f8301526136aa818461365a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6136df826136b6565b9050919050565b6136ef816136d5565b81146136f9575f80fd5b50565b5f8135905061370a816136e6565b92915050565b5f819050919050565b61372281613710565b811461372c575f80fd5b50565b5f8135905061373d81613719565b92915050565b5f8060408385031215613759576137586136b2565b5b5f613766858286016136fc565b92505060206137778582860161372f565b9150509250929050565b5f8115159050919050565b61379581613781565b82525050565b5f6020820190506137ae5f83018461378c565b92915050565b5f602082840312156137c9576137c86136b2565b5b5f6137d6848285016136fc565b91505092915050565b5f819050919050565b5f6138026137fd6137f8846136b6565b6137df565b6136b6565b9050919050565b5f613813826137e8565b9050919050565b5f61382482613809565b9050919050565b6138348161381a565b82525050565b5f60208201905061384d5f83018461382b565b92915050565b61385c81613710565b82525050565b5f6020820190506138755f830184613853565b92915050565b5f805f60608486031215613892576138916136b2565b5b5f61389f868287016136fc565b93505060206138b0868287016136fc565b92505060406138c18682870161372f565b9150509250925092565b5f60ff82169050919050565b6138e0816138cb565b82525050565b5f6020820190506138f95f8301846138d7565b92915050565b61390881613781565b8114613912575f80fd5b50565b5f81359050613923816138ff565b92915050565b5f6020828403121561393e5761393d6136b2565b5b5f61394b84828501613915565b91505092915050565b5f805f806080858703121561396c5761396b6136b2565b5b5f6139798782880161372f565b945050602061398a8782880161372f565b935050604061399b8782880161372f565b92505060606139ac8782880161372f565b91505092959194509250565b6139c1816136d5565b82525050565b5f6020820190506139da5f8301846139b8565b92915050565b5f80604083850312156139f6576139f56136b2565b5b5f613a03858286016136fc565b9250506020613a1485828601613915565b9150509250929050565b5f8060408385031215613a3457613a336136b2565b5b5f613a41858286016136fc565b9250506020613a52858286016136fc565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613aa057607f821691505b602082108103613ab357613ab2613a5c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613aed602083613612565b9150613af882613ab9565b602082019050919050565b5f6020820190508181035f830152613b1a81613ae1565b9050919050565b7f546f6b656e2062616c616e6365206d75737420626520677265617465722074685f8201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b5f613b7b602483613612565b9150613b8682613b21565b604082019050919050565b5f6020820190508181035f830152613ba881613b6f565b9050919050565b7f4554482062616c616e6365206d7573742062652067726561746572207468616e5f8201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b5f613c09602283613612565b9150613c1482613baf565b604082019050919050565b5f6020820190508181035f830152613c3681613bfd565b9050919050565b5f81905092915050565b50565b5f613c555f83613c3d565b9150613c6082613c47565b5f82019050919050565b5f613c7482613c4a565b9150819050919050565b7f4661696c656420746f20636c656172204554482062616c616e636500000000005f82015250565b5f613cb2601b83613612565b9150613cbd82613c7e565b602082019050919050565b5f6020820190508181035f830152613cdf81613ca6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613d1d82613710565b9150613d2883613710565b9250828201905080821115613d4057613d3f613ce6565b5b92915050565b7f4d4158203330252074617820616c6c6f776564000000000000000000000000005f82015250565b5f613d7a601383613612565b9150613d8582613d46565b602082019050919050565b5f6020820190508181035f830152613da781613d6e565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613e08603983613612565b9150613e1382613dae565b604082019050919050565b5f6020820190508181035f830152613e3581613dfc565b9050919050565b5f81519050613e4a816136e6565b92915050565b5f60208284031215613e6557613e646136b2565b5b5f613e7284828501613e3c565b91505092915050565b5f604082019050613e8e5f8301856139b8565b613e9b60208301846139b8565b9392505050565b5f613eac82613710565b9150613eb783613710565b9250828202613ec581613710565b91508282048414831517613edc57613edb613ce6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613f1a82613710565b9150613f2583613710565b925082613f3557613f34613ee3565b5b828204905092915050565b5f819050919050565b5f613f63613f5e613f5984613f40565b6137df565b613710565b9050919050565b613f7381613f49565b82525050565b5f60c082019050613f8c5f8301896139b8565b613f996020830188613853565b613fa66040830187613f6a565b613fb36060830186613f6a565b613fc060808301856139b8565b613fcd60a0830184613853565b979650505050505050565b5f81519050613fe681613719565b92915050565b5f805f60608486031215614003576140026136b2565b5b5f61401086828701613fd8565b935050602061402186828701613fd8565b925050604061403286828701613fd8565b9150509250925092565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614096602483613612565b91506140a18261403c565b604082019050919050565b5f6020820190508181035f8301526140c38161408a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614124602283613612565b915061412f826140ca565b604082019050919050565b5f6020820190508181035f83015261415181614118565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6141b2602583613612565b91506141bd82614158565b604082019050919050565b5f6020820190508181035f8301526141df816141a6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614240602383613612565b915061424b826141e6565b604082019050919050565b5f6020820190508181035f83015261426d81614234565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6142ce603583613612565b91506142d982614274565b604082019050919050565b5f6020820190508181035f8301526142fb816142c2565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614336601383613612565b915061434182614302565b602082019050919050565b5f6020820190508181035f8301526143638161432a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6143c4603683613612565b91506143cf8261436a565b604082019050919050565b5f6020820190508181035f8301526143f1816143b8565b9050919050565b5f61440282613710565b915061440d83613710565b925082820390508181111561442557614424613ce6565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f61445f601b83613612565b915061446a8261442b565b602082019050919050565b5f6020820190508181035f83015261448c81614453565b9050919050565b5f6060820190506144a65f830186613853565b6144b36020830185613853565b6144c06040830184613853565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f614522602183613612565b915061452d826144c8565b604082019050919050565b5f6020820190508181035f83015261454f81614516565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6145e2816136d5565b82525050565b5f6145f383836145d9565b60208301905092915050565b5f602082019050919050565b5f614615826145b0565b61461f81856145ba565b935061462a836145ca565b805f5b8381101561465a57815161464188826145e8565b975061464c836145ff565b92505060018101905061462d565b5085935050505092915050565b5f60a08201905061467a5f830188613853565b6146876020830187613f6a565b8181036040830152614699818661460b565b90506146a860608301856139b8565b6146b56080830184613853565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122005d257792ebec16804b085798dab6351994a346370cc281025fa8a8f04a3881664736f6c63430008150033

Deployed Bytecode Sourcemap

17535:19360:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4798:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5712:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24779:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25352:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24480:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5119:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30852:165;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25061:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24960:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29078:247;;;;;;;;;;;;;:::i;:::-;;24994:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5889:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28763:307;;;;;;;;;;;;;:::i;:::-;;5018:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6252:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29435:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24862:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29699:503;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24738:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24528:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31025:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24696:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24895:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5235:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10779:148;;;;;;;;;;;;;:::i;:::-;;29543:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10565:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24816:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4906:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30401:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25101:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6478:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5370:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25575:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24596:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25026:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30210:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24660:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29333:93;;;;;;;;;;;;;:::i;:::-;;5553:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24926:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10935:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27698:1047;;;;;;;;;;;;;:::i;:::-;;4798:100;4852:13;4885:5;4878:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4798:100;:::o;5712:169::-;5795:4;5812:39;5821:12;:10;:12::i;:::-;5835:7;5844:6;5812:8;:39::i;:::-;5869:4;5862:11;;5712:169;;;;:::o;24779:30::-;;;;;;;;;;;;;:::o;25352:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;24480:41::-;;;;;;;;;;;;;:::o;5119:108::-;5180:7;5207:12;;5200:19;;5119:108;:::o;30852:165::-;10702:12;:10;:12::i;:::-;10692:22;;:6;;;;;;;;;;;:22;;;10684:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30964:9:::1;;;;;;;;;;;30933:41;;30950:12;30933:41;;;;;;;;;;;;30997:12;30985:9;;:24;;;;;;;;;;;;;;;;;;30852:165:::0;:::o;25061:33::-;;;;:::o;24960:27::-;;;;:::o;29078:247::-;10702:12;:10;:12::i;:::-;10692:22;;:6;;;;;;;;;;;:22;;;10684:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29134:20:::1;29157:24;29175:4;29157:9;:24::i;:::-;29134:47;;29215:1;29200:12;:16;29192:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29268:49;29286:4;29293:9;;;;;;;;;;;29304:12;29268:9;:49::i;:::-;29123:202;29078:247::o:0;24994:25::-;;;;:::o;5889:355::-;6029:4;6046:36;6056:6;6064:9;6075:6;6046:9;:36::i;:::-;6093:121;6102:6;6110:12;:10;:12::i;:::-;6124:89;6162:6;6124:89;;;;;;;;;;;;;;;;;:11;:19;6136:6;6124:19;;;;;;;;;;;;;;;:33;6144:12;:10;:12::i;:::-;6124:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;6093:8;:121::i;:::-;6232:4;6225:11;;5889:355;;;;;:::o;28763:307::-;10702:12;:10;:12::i;:::-;10692:22;;:6;;;;;;;;;;;:22;;;10684:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28815:18:::1;28836:21;28815:42;;28889:1;28876:10;:14;28868:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28941:12;28966:9;;;;;;;;;;;28958:23;;28989:10;28958:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28940:64;;;29023:7;29015:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;28804:266;;28763:307::o:0;5018:93::-;5076:5;5101:2;5094:9;;5018:93;:::o;6252:218::-;6340:4;6357:83;6366:12;:10;:12::i;:::-;6380:7;6389:50;6428:10;6389:11;:25;6401:12;:10;:12::i;:::-;6389:25;;;;;;;;;;;;;;;:34;6415:7;6389:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;6357:8;:83::i;:::-;6458:4;6451:11;;6252:218;;;;:::o;29435:99::-;10702:12;:10;:12::i;:::-;10692:22;;:6;;;;;;;;;;;:22;;;10684:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29519:7:::1;29499:17;;:27;;;;;;;;;;;;;;;;;;29435:99:::0;:::o;24862:26::-;;;;:::o;29699:503::-;10702:12;:10;:12::i;:::-;10692:22;;:6;;;;;;;;;;;:22;;;10684:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29877:7:::1;29865:9;:19;;;;29907:7;29895:9;:19;;;;29951:9;;29939;;:21;;;;:::i;:::-;29925:11;:35;;;;29984:8;29971:10;:21;;;;30016:8;30003:10;:21;;;;30063:10;;30050;;:23;;;;:::i;:::-;30035:12;:38;;;;30107:2;30092:11;;:17;;30084:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;30168:2;30152:12;;:18;;30144:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;29699:503:::0;;;;:::o;24738:31::-;;;;:::o;24528:28::-;;;;;;;;;;;;;:::o;31025:125::-;31090:4;31114:19;:28;31134:7;31114:28;;;;;;;;;;;;;;;;;;;;;;;;;31107:35;;31025:125;;;:::o;24696:35::-;;;;:::o;24895:24::-;;;;:::o;5235:127::-;5309:7;5336:9;:18;5346:7;5336:18;;;;;;;;;;;;;;;;5329:25;;5235:127;;;:::o;10779:148::-;10702:12;:10;:12::i;:::-;10692:22;;:6;;;;;;;;;;;:22;;;10684:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10886:1:::1;10849:40;;10870:6;;;;;;;;;;;10849:40;;;;;;;;;;;;10917:1;10900:6;;:19;;;;;;;;;;;;;;;;;;10779:148::o:0;29543:144::-;10702:12;:10;:12::i;:::-;10692:22;;:6;;;;;;;;;;;:22;;;10684:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29675:4:::1;29633:31;:39;29665:6;29633:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;29543:144:::0;;:::o;10565:79::-;10603:7;10630:6;;;;;;;;;;;10623:13;;10565:79;:::o;24816:37::-;;;;;;;;;;;;;:::o;4906:104::-;4962:13;4995:7;4988:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4906:104;:::o;30401:245::-;10702:12;:10;:12::i;:::-;10692:22;;:6;;;;;;;;;;;:22;;;10684:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30508:13:::1;;;;;;;;;;;30500:21;;:4;:21;;::::0;30492:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30597:41;30626:4;30632:5;30597:28;:41::i;:::-;30401:245:::0;;:::o;25101:27::-;;;;:::o;6478:269::-;6571:4;6588:129;6597:12;:10;:12::i;:::-;6611:7;6620:96;6659:15;6620:96;;;;;;;;;;;;;;;;;:11;:25;6632:12;:10;:12::i;:::-;6620:25;;;;;;;;;;;;;;;:34;6646:7;6620:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;6588:8;:129::i;:::-;6735:4;6728:11;;6478:269;;;;:::o;5370:175::-;5456:4;5473:42;5483:12;:10;:12::i;:::-;5497:9;5508:6;5473:9;:42::i;:::-;5533:4;5526:11;;5370:175;;;;:::o;25575:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;24596:22::-;;;;:::o;25026:25::-;;;;:::o;30210:182::-;10702:12;:10;:12::i;:::-;10692:22;;:6;;;;;;;;;;;:22;;;10684:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30326:8:::1;30295:19;:28;30315:7;30295:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;30366:7;30350:34;;;30375:8;30350:34;;;;;;:::i;:::-;;;;;;;;30210:182:::0;;:::o;24660:29::-;;;;:::o;29333:93::-;10702:12;:10;:12::i;:::-;10692:22;;:6;;;;;;;;;;;:22;;;10684:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29413:5:::1;29399:11;;:19;;;;;;;;;;;;;;;;;;29333:93::o:0;5553:151::-;5642:7;5669:11;:18;5681:5;5669:18;;;;;;;;;;;;;;;:27;5688:7;5669:27;;;;;;;;;;;;;;;;5662:34;;5553:151;;;;:::o;24926:24::-;;;;:::o;10935:169::-;10702:12;:10;:12::i;:::-;10692:22;;:6;;;;;;;;;;;:22;;;10684:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;11059:8:::1;11030:38;;11051:6;;;;;;;;;;;11030:38;;;;;;;;;;;;11088:8;11079:6;;:17;;;;;;;;;;;;;;;;;;10935:169:::0;:::o;27698:1047::-;10702:12;:10;:12::i;:::-;10692:22;;:6;;;;;;;;;;;:22;;;10684:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;27761:35:::1;27818:42;27761:100;;27875:58;27909:16;27928:4;27875:25;:58::i;:::-;27962:16;27944:15;;:34;;;;;;;;;;;;;;;;;;28026:16;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28008:56;;;28073:4;28080:16;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28008:96;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27992:13;;:112;;;;;;;;;;;;;;;;;;28115:55;28149:13;;;;;;;;;;;28165:4;28115:25;:55::i;:::-;28181:58;28218:13;;;;;;;;;;;28234:4;28181:28;:58::i;:::-;28260:17;28280:21;28260:41;;28312:19;28366:3;28361:2;28334:24;28352:4;28334:9;:24::i;:::-;:29;;;;:::i;:::-;:35;;;;:::i;:::-;28312:57;;28400:62;28417:4;28432:15;;;;;;;;;;;28450:11;28400:8;:62::i;:::-;28475:15;;;;;;;;;;;:31;;;28514:9;28547:4;28567:11;28597:1;28644::::0;28687:9:::1;;;;;;;;;;;28711:15;28475:262;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;27744:1001;;;27698:1047::o:0;151:98::-;204:7;231:10;224:17;;151:98;:::o;8154:381::-;8307:1;8290:19;;:5;:19;;;8282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8388:1;8369:21;;:7;:21;;;8361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8473:6;8443:11;:18;8455:5;8443:18;;;;;;;;;;;;;;;:27;8462:7;8443:27;;;;;;;;;;;;;;;:36;;;;8511:7;8495:32;;8504:5;8495:32;;;8520:6;8495:32;;;;;;:::i;:::-;;;;;;;;8154:381;;;:::o;31159:3112::-;31307:1;31291:18;;:4;:18;;;31283:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31384:1;31370:16;;:2;:16;;;31362:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31451:1;31441:6;:11;31438:92;;31469:28;31485:4;31491:2;31495:1;31469:15;:28::i;:::-;31512:7;;31438:92;31546:11;;;;;;;;;;;31543:1083;;;31603:7;:5;:7::i;:::-;31595:15;;:4;:15;;;;:49;;;;;31637:7;:5;:7::i;:::-;31631:13;;:2;:13;;;;31595:49;:86;;;;;31679:1;31665:16;;:2;:16;;;;31595:86;:128;;;;;31716:6;31702:21;;:2;:21;;;;31595:128;:160;;;;;31745:10;;;;;;;;;;;31744:11;31595:160;31573:1042;;;31839:25;:31;31865:4;31839:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;31875:31;:35;31907:2;31875:35;;;;;;;;;;;;;;;;;;;;;;;;;31874:36;31839:71;31835:765;;;31957:14;;31947:6;:24;;31939:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;32090:16;;32073:13;32083:2;32073:9;:13::i;:::-;32064:6;:22;;;;:::i;:::-;:42;;32056:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31835:765;;;32209:25;:29;32235:2;32209:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;32243:31;:37;32275:4;32243:37;;;;;;;;;;;;;;;;;;;;;;;;;32242:38;32209:71;32205:395;;;32327:14;;32317:6;:24;;32309:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;32205:395;;;32447:31;:35;32479:2;32447:35;;;;;;;;;;;;;;;;;;;;;;;;;32443:157;;32540:16;;32523:13;32533:2;32523:9;:13::i;:::-;32514:6;:22;;;;:::i;:::-;:42;;32506:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;32443:157;32205:395;31835:765;31573:1042;31543:1083;32639:28;32670:24;32688:4;32670:9;:24::i;:::-;32639:55;;32708:12;32747:20;;32723;:44;;32708:59;;32799:7;:35;;;;;32824:10;;;;;;;;;;;32823:11;32799:35;:84;;;;;32852:25;:31;32878:4;32852:31;;;;;;;;;;;;;;;;;;;;;;;;;32851:32;32799:84;:127;;;;;32901:19;:25;32921:4;32901:25;;;;;;;;;;;;;;;;;;;;;;;;;32900:26;32799:127;:168;;;;;32944:19;:23;32964:2;32944:23;;;;;;;;;;;;;;;;;;;;;;;;;32943:24;32799:168;32781:306;;;33007:4;32994:10;;:17;;;;;;;;;;;;;;;;;;33029:10;:8;:10::i;:::-;33070:5;33057:10;;:18;;;;;;;;;;;;;;;;;;32781:306;33100:12;33116:10;;;;;;;;;;;33115:11;33100:26;;33228:19;:25;33248:4;33228:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33257:19;:23;33277:2;33257:23;;;;;;;;;;;;;;;;;;;;;;;;;33228:52;33225:99;;;33307:5;33297:15;;33225:99;33337:12;33441:7;33438:779;;;33492:25;:29;33518:2;33492:29;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;;;33540:1;33525:12;;:16;33492:49;33488:576;;;33568:33;33597:3;33568:24;33579:12;;33568:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;33561:40;;33662:12;;33649:10;;33642:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;33620:18;;:54;;;;;;;:::i;:::-;;;;;;;;33729:12;;33716:10;;33709:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;33693:12;;:48;;;;;;;:::i;:::-;;;;;;;;33488:576;;;33802:25;:31;33828:4;33802:31;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;33851:1;33837:11;;:15;33802:50;33799:265;;;33880:32;33908:3;33880:23;33891:11;;33880:6;:10;;:23;;;;:::i;:::-;:27;;:32;;;;:::i;:::-;33873:39;;33972:11;;33960:9;;33953:4;:16;;;;:::i;:::-;:30;;;;:::i;:::-;33931:18;;:52;;;;;;;:::i;:::-;;;;;;;;34037:11;;34025:9;;34018:4;:16;;;;:::i;:::-;:30;;;;:::i;:::-;34002:12;;:46;;;;;;;:::i;:::-;;;;;;;;33799:265;33488:576;34091:1;34084:4;:8;34081:93;;;34116:42;34132:4;34146;34153;34116:15;:42::i;:::-;34081:93;34201:4;34191:14;;;;;:::i;:::-;;;33438:779;34230:33;34246:4;34252:2;34256:6;34230:15;:33::i;:::-;31272:2999;;;;31159:3112;;;;:::o;9042:193::-;9128:7;9161:1;9156;:6;;9164:12;9148:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;9188:9;9204:1;9200;:5;;;;:::i;:::-;9188:17;;9226:1;9219:8;;;9042:193;;;;;:::o;8708:182::-;8766:7;8786:9;8802:1;8798;:5;;;;:::i;:::-;8786:17;;8827:1;8822;:6;;8814:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;8881:1;8874:8;;;8708:182;;;;:::o;30655:189::-;30772:5;30738:25;:31;30764:4;30738:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;30830:5;30796:40;;30824:4;30796:40;;;;;;;;;;;;30655:189;;:::o;6755:575::-;6913:1;6895:20;;:6;:20;;;6887:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6997:1;6976:23;;:9;:23;;;6968:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7053:47;7074:6;7082:9;7093:6;7053:20;:47::i;:::-;7134:71;7156:6;7134:71;;;;;;;;;;;;;;;;;:9;:17;7144:6;7134:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;7114:9;:17;7124:6;7114:17;;;;;;;;;;;;;;;:91;;;;7239:32;7264:6;7239:9;:20;7249:9;7239:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;7216:9;:20;7226:9;7216:20;;;;;;;;;;;;;;;:55;;;;7304:9;7287:35;;7296:6;7287:35;;;7315:6;7287:35;;;;;;:::i;:::-;;;;;;;;6755:575;;;:::o;35415:1477::-;35454:23;35480:24;35498:4;35480:9;:24::i;:::-;35454:50;;35515:25;35564:12;;35543:18;;:33;;;;:::i;:::-;35515:61;;35587:12;35635:1;35616:15;:20;:46;;;;35661:1;35640:17;:22;35616:46;35613:60;;;35665:7;;;;;35613:60;35710:5;35689:26;;:17;;;;;;;;;;;:26;;;35686:254;;35775:2;35752:20;;:25;;;;:::i;:::-;35734:15;:43;35731:125;;;35838:2;35815:20;;:25;;;;:::i;:::-;35797:43;;35731:125;35686:254;;;35904:24;35922:4;35904:9;:24::i;:::-;35886:42;;35686:254;36012:23;36097:1;36077:17;36056:18;;36038:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;36012:86;;36109:26;36138:36;36158:15;36138;:19;;:36;;;;:::i;:::-;36109:65;;36188:25;36216:21;36188:49;;36251:36;36268:18;36251:16;:36::i;:::-;36302:18;36323:44;36349:17;36323:21;:25;;:44;;;;:::i;:::-;36302:65;;36381:17;36401:51;36434:17;36401:28;36416:12;;36401:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;36381:71;;36463:23;36502:9;36489:10;:22;;;;:::i;:::-;36463:48;;36549:1;36528:18;:22;;;;36576:1;36561:12;:16;;;;36612:1;36594:15;:19;:42;;;;;36635:1;36617:15;:19;36594:42;36591:210;;;36652:46;36665:15;36682;36652:12;:46::i;:::-;36718:71;36733:18;36753:15;36770:18;;36718:71;;;;;;;;:::i;:::-;;;;;;;;36591:210;36835:9;;;;;;;;;;;36827:23;;36858:21;36827:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36814:70;;;;;35443:1449;;;;;;;;;35415:1477;:::o;9243:254::-;9301:7;9332:1;9327;:6;9323:47;;9357:1;9350:8;;;;9323:47;9383:9;9399:1;9395;:5;;;;:::i;:::-;9383:17;;9428:1;9423;9419;:5;;;;:::i;:::-;:10;9411:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;9488:1;9481:8;;;9243:254;;;;;:::o;9505:132::-;9563:7;9590:39;9594:1;9597;9590:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;9583:46;;9505:132;;;;:::o;8543:125::-;;;;:::o;8898:136::-;8956:7;8983:43;8987:1;8990;8983:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;8976:50;;8898:136;;;;:::o;34280:597::-;34409:21;34447:1;34433:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34409:40;;34478:4;34460;34465:1;34460:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34504:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34494:4;34499:1;34494:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;34540:62;34557:4;34572:15;;;;;;;;;;;34590:11;34540:8;:62::i;:::-;34642:15;;;;;;;;;;;:66;;;34723:11;34749:1;34793:4;34820;34840:15;34642:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34335:542;34280:597;:::o;34886:520::-;35034:62;35051:4;35066:15;;;;;;;;;;;35084:11;35034:8;:62::i;:::-;35140:15;;;;;;;;;;;:31;;;35179:9;35212:4;35232:11;35258:1;35301;35352:4;35372:15;35140:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34886:520;;:::o;9645:279::-;9731:7;9763:1;9759;:5;9766:12;9751:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;9790:9;9806:1;9802;:5;;;;:::i;:::-;9790:17;;9915:1;9908:8;;;9645:279;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:619::-;5188:6;5196;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:53;5577:7;5568:6;5557:9;5553:22;5532:53;:::i;:::-;5522:63;;5477:118;5634:2;5660:53;5705:7;5696:6;5685:9;5681:22;5660:53;:::i;:::-;5650:63;;5605:118;5111:619;;;;;:::o;5736:86::-;5771:7;5811:4;5804:5;5800:16;5789:27;;5736:86;;;:::o;5828:112::-;5911:22;5927:5;5911:22;:::i;:::-;5906:3;5899:35;5828:112;;:::o;5946:214::-;6035:4;6073:2;6062:9;6058:18;6050:26;;6086:67;6150:1;6139:9;6135:17;6126:6;6086:67;:::i;:::-;5946:214;;;;:::o;6166:116::-;6236:21;6251:5;6236:21;:::i;:::-;6229:5;6226:32;6216:60;;6272:1;6269;6262:12;6216:60;6166:116;:::o;6288:133::-;6331:5;6369:6;6356:20;6347:29;;6385:30;6409:5;6385:30;:::i;:::-;6288:133;;;;:::o;6427:323::-;6483:6;6532:2;6520:9;6511:7;6507:23;6503:32;6500:119;;;6538:79;;:::i;:::-;6500:119;6658:1;6683:50;6725:7;6716:6;6705:9;6701:22;6683:50;:::i;:::-;6673:60;;6629:114;6427:323;;;;:::o;6756:765::-;6842:6;6850;6858;6866;6915:3;6903:9;6894:7;6890:23;6886:33;6883:120;;;6922:79;;:::i;:::-;6883:120;7042:1;7067:53;7112:7;7103:6;7092:9;7088:22;7067:53;:::i;:::-;7057:63;;7013:117;7169:2;7195:53;7240:7;7231:6;7220:9;7216:22;7195:53;:::i;:::-;7185:63;;7140:118;7297:2;7323:53;7368:7;7359:6;7348:9;7344:22;7323:53;:::i;:::-;7313:63;;7268:118;7425:2;7451:53;7496:7;7487:6;7476:9;7472:22;7451:53;:::i;:::-;7441:63;;7396:118;6756:765;;;;;;;:::o;7527:118::-;7614:24;7632:5;7614:24;:::i;:::-;7609:3;7602:37;7527:118;;:::o;7651:222::-;7744:4;7782:2;7771:9;7767:18;7759:26;;7795:71;7863:1;7852:9;7848:17;7839:6;7795:71;:::i;:::-;7651:222;;;;:::o;7879:468::-;7944:6;7952;8001:2;7989:9;7980:7;7976:23;7972:32;7969:119;;;8007:79;;:::i;:::-;7969:119;8127:1;8152:53;8197:7;8188:6;8177:9;8173:22;8152:53;:::i;:::-;8142:63;;8098:117;8254:2;8280:50;8322:7;8313:6;8302:9;8298:22;8280:50;:::i;:::-;8270:60;;8225:115;7879:468;;;;;:::o;8353:474::-;8421:6;8429;8478:2;8466:9;8457:7;8453:23;8449:32;8446:119;;;8484:79;;:::i;:::-;8446:119;8604:1;8629:53;8674:7;8665:6;8654:9;8650:22;8629:53;:::i;:::-;8619:63;;8575:117;8731:2;8757:53;8802:7;8793:6;8782:9;8778:22;8757:53;:::i;:::-;8747:63;;8702:118;8353:474;;;;;:::o;8833:180::-;8881:77;8878:1;8871:88;8978:4;8975:1;8968:15;9002:4;8999:1;8992:15;9019:320;9063:6;9100:1;9094:4;9090:12;9080:22;;9147:1;9141:4;9137:12;9168:18;9158:81;;9224:4;9216:6;9212:17;9202:27;;9158:81;9286:2;9278:6;9275:14;9255:18;9252:38;9249:84;;9305:18;;:::i;:::-;9249:84;9070:269;9019:320;;;:::o;9345:182::-;9485:34;9481:1;9473:6;9469:14;9462:58;9345:182;:::o;9533:366::-;9675:3;9696:67;9760:2;9755:3;9696:67;:::i;:::-;9689:74;;9772:93;9861:3;9772:93;:::i;:::-;9890:2;9885:3;9881:12;9874:19;;9533:366;;;:::o;9905:419::-;10071:4;10109:2;10098:9;10094:18;10086:26;;10158:9;10152:4;10148:20;10144:1;10133:9;10129:17;10122:47;10186:131;10312:4;10186:131;:::i;:::-;10178:139;;9905:419;;;:::o;10330:223::-;10470:34;10466:1;10458:6;10454:14;10447:58;10539:6;10534:2;10526:6;10522:15;10515:31;10330:223;:::o;10559:366::-;10701:3;10722:67;10786:2;10781:3;10722:67;:::i;:::-;10715:74;;10798:93;10887:3;10798:93;:::i;:::-;10916:2;10911:3;10907:12;10900:19;;10559:366;;;:::o;10931:419::-;11097:4;11135:2;11124:9;11120:18;11112:26;;11184:9;11178:4;11174:20;11170:1;11159:9;11155:17;11148:47;11212:131;11338:4;11212:131;:::i;:::-;11204:139;;10931:419;;;:::o;11356:221::-;11496:34;11492:1;11484:6;11480:14;11473:58;11565:4;11560:2;11552:6;11548:15;11541:29;11356:221;:::o;11583:366::-;11725:3;11746:67;11810:2;11805:3;11746:67;:::i;:::-;11739:74;;11822:93;11911:3;11822:93;:::i;:::-;11940:2;11935:3;11931:12;11924:19;;11583:366;;;:::o;11955:419::-;12121:4;12159:2;12148:9;12144:18;12136:26;;12208:9;12202:4;12198:20;12194:1;12183:9;12179:17;12172:47;12236:131;12362:4;12236:131;:::i;:::-;12228:139;;11955:419;;;:::o;12380:147::-;12481:11;12518:3;12503:18;;12380:147;;;;:::o;12533:114::-;;:::o;12653:398::-;12812:3;12833:83;12914:1;12909:3;12833:83;:::i;:::-;12826:90;;12925:93;13014:3;12925:93;:::i;:::-;13043:1;13038:3;13034:11;13027:18;;12653:398;;;:::o;13057:379::-;13241:3;13263:147;13406:3;13263:147;:::i;:::-;13256:154;;13427:3;13420:10;;13057:379;;;:::o;13442:177::-;13582:29;13578:1;13570:6;13566:14;13559:53;13442:177;:::o;13625:366::-;13767:3;13788:67;13852:2;13847:3;13788:67;:::i;:::-;13781:74;;13864:93;13953:3;13864:93;:::i;:::-;13982:2;13977:3;13973:12;13966:19;;13625:366;;;:::o;13997:419::-;14163:4;14201:2;14190:9;14186:18;14178:26;;14250:9;14244:4;14240:20;14236:1;14225:9;14221:17;14214:47;14278:131;14404:4;14278:131;:::i;:::-;14270:139;;13997:419;;;:::o;14422:180::-;14470:77;14467:1;14460:88;14567:4;14564:1;14557:15;14591:4;14588:1;14581:15;14608:191;14648:3;14667:20;14685:1;14667:20;:::i;:::-;14662:25;;14701:20;14719:1;14701:20;:::i;:::-;14696:25;;14744:1;14741;14737:9;14730:16;;14765:3;14762:1;14759:10;14756:36;;;14772:18;;:::i;:::-;14756:36;14608:191;;;;:::o;14805:169::-;14945:21;14941:1;14933:6;14929:14;14922:45;14805:169;:::o;14980:366::-;15122:3;15143:67;15207:2;15202:3;15143:67;:::i;:::-;15136:74;;15219:93;15308:3;15219:93;:::i;:::-;15337:2;15332:3;15328:12;15321:19;;14980:366;;;:::o;15352:419::-;15518:4;15556:2;15545:9;15541:18;15533:26;;15605:9;15599:4;15595:20;15591:1;15580:9;15576:17;15569:47;15633:131;15759:4;15633:131;:::i;:::-;15625:139;;15352:419;;;:::o;15777:244::-;15917:34;15913:1;15905:6;15901:14;15894:58;15986:27;15981:2;15973:6;15969:15;15962:52;15777:244;:::o;16027:366::-;16169:3;16190:67;16254:2;16249:3;16190:67;:::i;:::-;16183:74;;16266:93;16355:3;16266:93;:::i;:::-;16384:2;16379:3;16375:12;16368:19;;16027:366;;;:::o;16399:419::-;16565:4;16603:2;16592:9;16588:18;16580:26;;16652:9;16646:4;16642:20;16638:1;16627:9;16623:17;16616:47;16680:131;16806:4;16680:131;:::i;:::-;16672:139;;16399:419;;;:::o;16824:143::-;16881:5;16912:6;16906:13;16897:22;;16928:33;16955:5;16928:33;:::i;:::-;16824:143;;;;:::o;16973:351::-;17043:6;17092:2;17080:9;17071:7;17067:23;17063:32;17060:119;;;17098:79;;:::i;:::-;17060:119;17218:1;17243:64;17299:7;17290:6;17279:9;17275:22;17243:64;:::i;:::-;17233:74;;17189:128;16973:351;;;;:::o;17330:332::-;17451:4;17489:2;17478:9;17474:18;17466:26;;17502:71;17570:1;17559:9;17555:17;17546:6;17502:71;:::i;:::-;17583:72;17651:2;17640:9;17636:18;17627:6;17583:72;:::i;:::-;17330:332;;;;;:::o;17668:410::-;17708:7;17731:20;17749:1;17731:20;:::i;:::-;17726:25;;17765:20;17783:1;17765:20;:::i;:::-;17760:25;;17820:1;17817;17813:9;17842:30;17860:11;17842:30;:::i;:::-;17831:41;;18021:1;18012:7;18008:15;18005:1;18002:22;17982:1;17975:9;17955:83;17932:139;;18051:18;;:::i;:::-;17932:139;17716:362;17668:410;;;;:::o;18084:180::-;18132:77;18129:1;18122:88;18229:4;18226:1;18219:15;18253:4;18250:1;18243:15;18270:185;18310:1;18327:20;18345:1;18327:20;:::i;:::-;18322:25;;18361:20;18379:1;18361:20;:::i;:::-;18356:25;;18400:1;18390:35;;18405:18;;:::i;:::-;18390:35;18447:1;18444;18440:9;18435:14;;18270:185;;;;:::o;18461:85::-;18506:7;18535:5;18524:16;;18461:85;;;:::o;18552:158::-;18610:9;18643:61;18661:42;18670:32;18696:5;18670:32;:::i;:::-;18661:42;:::i;:::-;18643:61;:::i;:::-;18630:74;;18552:158;;;:::o;18716:147::-;18811:45;18850:5;18811:45;:::i;:::-;18806:3;18799:58;18716:147;;:::o;18869:807::-;19118:4;19156:3;19145:9;19141:19;19133:27;;19170:71;19238:1;19227:9;19223:17;19214:6;19170:71;:::i;:::-;19251:72;19319:2;19308:9;19304:18;19295:6;19251:72;:::i;:::-;19333:80;19409:2;19398:9;19394:18;19385:6;19333:80;:::i;:::-;19423;19499:2;19488:9;19484:18;19475:6;19423:80;:::i;:::-;19513:73;19581:3;19570:9;19566:19;19557:6;19513:73;:::i;:::-;19596;19664:3;19653:9;19649:19;19640:6;19596:73;:::i;:::-;18869:807;;;;;;;;;:::o;19682:143::-;19739:5;19770:6;19764:13;19755:22;;19786:33;19813:5;19786:33;:::i;:::-;19682:143;;;;:::o;19831:663::-;19919:6;19927;19935;19984:2;19972:9;19963:7;19959:23;19955:32;19952:119;;;19990:79;;:::i;:::-;19952:119;20110:1;20135:64;20191:7;20182:6;20171:9;20167:22;20135:64;:::i;:::-;20125:74;;20081:128;20248:2;20274:64;20330:7;20321:6;20310:9;20306:22;20274:64;:::i;:::-;20264:74;;20219:129;20387:2;20413:64;20469:7;20460:6;20449:9;20445:22;20413:64;:::i;:::-;20403:74;;20358:129;19831:663;;;;;:::o;20500:223::-;20640:34;20636:1;20628:6;20624:14;20617:58;20709:6;20704:2;20696:6;20692:15;20685:31;20500:223;:::o;20729:366::-;20871:3;20892:67;20956:2;20951:3;20892:67;:::i;:::-;20885:74;;20968:93;21057:3;20968:93;:::i;:::-;21086:2;21081:3;21077:12;21070:19;;20729:366;;;:::o;21101:419::-;21267:4;21305:2;21294:9;21290:18;21282:26;;21354:9;21348:4;21344:20;21340:1;21329:9;21325:17;21318:47;21382:131;21508:4;21382:131;:::i;:::-;21374:139;;21101:419;;;:::o;21526:221::-;21666:34;21662:1;21654:6;21650:14;21643:58;21735:4;21730:2;21722:6;21718:15;21711:29;21526:221;:::o;21753:366::-;21895:3;21916:67;21980:2;21975:3;21916:67;:::i;:::-;21909:74;;21992:93;22081:3;21992:93;:::i;:::-;22110:2;22105:3;22101:12;22094:19;;21753:366;;;:::o;22125:419::-;22291:4;22329:2;22318:9;22314:18;22306:26;;22378:9;22372:4;22368:20;22364:1;22353:9;22349:17;22342:47;22406:131;22532:4;22406:131;:::i;:::-;22398:139;;22125:419;;;:::o;22550:224::-;22690:34;22686:1;22678:6;22674:14;22667:58;22759:7;22754:2;22746:6;22742:15;22735:32;22550:224;:::o;22780:366::-;22922:3;22943:67;23007:2;23002:3;22943:67;:::i;:::-;22936:74;;23019:93;23108:3;23019:93;:::i;:::-;23137:2;23132:3;23128:12;23121:19;;22780:366;;;:::o;23152:419::-;23318:4;23356:2;23345:9;23341:18;23333:26;;23405:9;23399:4;23395:20;23391:1;23380:9;23376:17;23369:47;23433:131;23559:4;23433:131;:::i;:::-;23425:139;;23152:419;;;:::o;23577:222::-;23717:34;23713:1;23705:6;23701:14;23694:58;23786:5;23781:2;23773:6;23769:15;23762:30;23577:222;:::o;23805:366::-;23947:3;23968:67;24032:2;24027:3;23968:67;:::i;:::-;23961:74;;24044:93;24133:3;24044:93;:::i;:::-;24162:2;24157:3;24153:12;24146:19;;23805:366;;;:::o;24177:419::-;24343:4;24381:2;24370:9;24366:18;24358:26;;24430:9;24424:4;24420:20;24416:1;24405:9;24401:17;24394:47;24458:131;24584:4;24458:131;:::i;:::-;24450:139;;24177:419;;;:::o;24602:240::-;24742:34;24738:1;24730:6;24726:14;24719:58;24811:23;24806:2;24798:6;24794:15;24787:48;24602:240;:::o;24848:366::-;24990:3;25011:67;25075:2;25070:3;25011:67;:::i;:::-;25004:74;;25087:93;25176:3;25087:93;:::i;:::-;25205:2;25200:3;25196:12;25189:19;;24848:366;;;:::o;25220:419::-;25386:4;25424:2;25413:9;25409:18;25401:26;;25473:9;25467:4;25463:20;25459:1;25448:9;25444:17;25437:47;25501:131;25627:4;25501:131;:::i;:::-;25493:139;;25220:419;;;:::o;25645:169::-;25785:21;25781:1;25773:6;25769:14;25762:45;25645:169;:::o;25820:366::-;25962:3;25983:67;26047:2;26042:3;25983:67;:::i;:::-;25976:74;;26059:93;26148:3;26059:93;:::i;:::-;26177:2;26172:3;26168:12;26161:19;;25820:366;;;:::o;26192:419::-;26358:4;26396:2;26385:9;26381:18;26373:26;;26445:9;26439:4;26435:20;26431:1;26420:9;26416:17;26409:47;26473:131;26599:4;26473:131;:::i;:::-;26465:139;;26192:419;;;:::o;26617:241::-;26757:34;26753:1;26745:6;26741:14;26734:58;26826:24;26821:2;26813:6;26809:15;26802:49;26617:241;:::o;26864:366::-;27006:3;27027:67;27091:2;27086:3;27027:67;:::i;:::-;27020:74;;27103:93;27192:3;27103:93;:::i;:::-;27221:2;27216:3;27212:12;27205:19;;26864:366;;;:::o;27236:419::-;27402:4;27440:2;27429:9;27425:18;27417:26;;27489:9;27483:4;27479:20;27475:1;27464:9;27460:17;27453:47;27517:131;27643:4;27517:131;:::i;:::-;27509:139;;27236:419;;;:::o;27661:194::-;27701:4;27721:20;27739:1;27721:20;:::i;:::-;27716:25;;27755:20;27773:1;27755:20;:::i;:::-;27750:25;;27799:1;27796;27792:9;27784:17;;27823:1;27817:4;27814:11;27811:37;;;27828:18;;:::i;:::-;27811:37;27661:194;;;;:::o;27861:177::-;28001:29;27997:1;27989:6;27985:14;27978:53;27861:177;:::o;28044:366::-;28186:3;28207:67;28271:2;28266:3;28207:67;:::i;:::-;28200:74;;28283:93;28372:3;28283:93;:::i;:::-;28401:2;28396:3;28392:12;28385:19;;28044:366;;;:::o;28416:419::-;28582:4;28620:2;28609:9;28605:18;28597:26;;28669:9;28663:4;28659:20;28655:1;28644:9;28640:17;28633:47;28697:131;28823:4;28697:131;:::i;:::-;28689:139;;28416:419;;;:::o;28841:442::-;28990:4;29028:2;29017:9;29013:18;29005:26;;29041:71;29109:1;29098:9;29094:17;29085:6;29041:71;:::i;:::-;29122:72;29190:2;29179:9;29175:18;29166:6;29122:72;:::i;:::-;29204;29272:2;29261:9;29257:18;29248:6;29204:72;:::i;:::-;28841:442;;;;;;:::o;29289:220::-;29429:34;29425:1;29417:6;29413:14;29406:58;29498:3;29493:2;29485:6;29481:15;29474:28;29289:220;:::o;29515:366::-;29657:3;29678:67;29742:2;29737:3;29678:67;:::i;:::-;29671:74;;29754:93;29843:3;29754:93;:::i;:::-;29872:2;29867:3;29863:12;29856:19;;29515:366;;;:::o;29887:419::-;30053:4;30091:2;30080:9;30076:18;30068:26;;30140:9;30134:4;30130:20;30126:1;30115:9;30111:17;30104:47;30168:131;30294:4;30168:131;:::i;:::-;30160:139;;29887:419;;;:::o;30312:180::-;30360:77;30357:1;30350:88;30457:4;30454:1;30447:15;30481:4;30478:1;30471:15;30498:180;30546:77;30543:1;30536:88;30643:4;30640:1;30633:15;30667:4;30664:1;30657:15;30684:114;30751:6;30785:5;30779:12;30769:22;;30684:114;;;:::o;30804:184::-;30903:11;30937:6;30932:3;30925:19;30977:4;30972:3;30968:14;30953:29;;30804:184;;;;:::o;30994:132::-;31061:4;31084:3;31076:11;;31114:4;31109:3;31105:14;31097:22;;30994:132;;;:::o;31132:108::-;31209:24;31227:5;31209:24;:::i;:::-;31204:3;31197:37;31132:108;;:::o;31246:179::-;31315:10;31336:46;31378:3;31370:6;31336:46;:::i;:::-;31414:4;31409:3;31405:14;31391:28;;31246:179;;;;:::o;31431:113::-;31501:4;31533;31528:3;31524:14;31516:22;;31431:113;;;:::o;31580:732::-;31699:3;31728:54;31776:5;31728:54;:::i;:::-;31798:86;31877:6;31872:3;31798:86;:::i;:::-;31791:93;;31908:56;31958:5;31908:56;:::i;:::-;31987:7;32018:1;32003:284;32028:6;32025:1;32022:13;32003:284;;;32104:6;32098:13;32131:63;32190:3;32175:13;32131:63;:::i;:::-;32124:70;;32217:60;32270:6;32217:60;:::i;:::-;32207:70;;32063:224;32050:1;32047;32043:9;32038:14;;32003:284;;;32007:14;32303:3;32296:10;;31704:608;;;31580:732;;;;:::o;32318:831::-;32581:4;32619:3;32608:9;32604:19;32596:27;;32633:71;32701:1;32690:9;32686:17;32677:6;32633:71;:::i;:::-;32714:80;32790:2;32779:9;32775:18;32766:6;32714:80;:::i;:::-;32841:9;32835:4;32831:20;32826:2;32815:9;32811:18;32804:48;32869:108;32972:4;32963:6;32869:108;:::i;:::-;32861:116;;32987:72;33055:2;33044:9;33040:18;33031:6;32987:72;:::i;:::-;33069:73;33137:3;33126:9;33122:19;33113:6;33069:73;:::i;:::-;32318:831;;;;;;;;:::o

Swarm Source

ipfs://05d257792ebec16804b085798dab6351994a346370cc281025fa8a8f04a38816
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.