Token FireBird Liquidity Provider

 

Overview ERC-20

Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
19,296.162374 FLP

Holders:
222 addresses
Contract:
0xf1ee78544a1118f2efb87f7eacd9f1e6e80e1ea50xf1EE78544a1118F2efb87f7EaCd9f1E6e80e1ea5

Decimals:
18

Social Profiles:
Not Available, Update ?

 
Balance
0 FLP

Value
$0.00
0x3ed75eb41130d55d5f4e0f1ce60133d770ff8012
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

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

Similar Match Source Code
This contract matches the deployed ByteCode of the Source Code for Contract 0x39D736D2b254eE30796f43Ec665143010b558F82
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
FireBirdPair

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at PolygonScan.com on 2021-06-09
*/

/**
 *Submitted for verification at polygonscan.com on 2021-06-09
*/

pragma solidity =0.5.16;


interface IFireBirdFactory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint32 tokenWeight0, uint32 swapFee, uint);
    function feeTo() external view returns (address);
    function formula() external view returns (address);
    function protocolFee() external view returns (uint);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB, uint32 tokenWeightA, uint32 swapFee) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function isPair(address) external view returns (bool);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB, uint32 tokenWeightA, uint32 swapFee) external returns (address pair);
    function getWeightsAndSwapFee(address pair) external view returns (uint32 tokenWeight0, uint32 tokenWeight1, uint32 swapFee);

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

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

    function name() external view returns (string memory);
    function symbol() external view 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 PaidProtocolFee(uint112 collectedFee0, uint112 collectedFee1);
    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function getCollectedFees() external view returns (uint112 _collectedFee0, uint112 _collectedFee1);
    function getTokenWeights() external view returns (uint32 tokenWeight0, uint32 tokenWeight1);
    function getSwapFee() external view returns (uint32);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() 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, uint32, uint32) external;
}

// SPDX-License-Identifier: SEE LICENSE IN LICENSE
/*
    Bancor Formula interface
*/
interface IFireBirdFormula {

    function getReserveAndWeights(address pair, address tokenA) external view returns (
        address tokenB,
        uint reserveA,
        uint reserveB,
        uint32 tokenWeightA,
        uint32 tokenWeightB,
        uint32 swapFee
    );

    function getFactoryReserveAndWeights(address factory, address pair, address tokenA) external view returns (
        address tokenB,
        uint reserveA,
        uint reserveB,
        uint32 tokenWeightA,
        uint32 tokenWeightB,
        uint32 swapFee
    );

    function getAmountIn(
        uint amountOut,
        uint reserveIn, uint reserveOut,
        uint32 tokenWeightIn, uint32 tokenWeightOut,
        uint32 swapFee
    ) external view returns (uint amountIn);

    function getPairAmountIn(address pair, address tokenIn, uint amountOut) external view returns (uint amountIn);

    function getAmountOut(
        uint amountIn,
        uint reserveIn, uint reserveOut,
        uint32 tokenWeightIn, uint32 tokenWeightOut,
        uint32 swapFee
    ) external view returns (uint amountOut);

    function getPairAmountOut(address pair, address tokenIn, uint amountIn) external view returns (uint amountOut);

    function getAmountsIn(
        address tokenIn,
        address tokenOut,
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getFactoryAmountsIn(
        address factory,
        address tokenIn,
        address tokenOut,
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

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

    function getFactoryAmountsOut(
        address factory,
        address tokenIn,
        address tokenOut,
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function ensureConstantValue(uint reserve0, uint reserve1, uint balance0Adjusted, uint balance1Adjusted, uint32 tokenWeight0) external view returns (bool);
    function getReserves(address pair, address tokenA, address tokenB) external view returns (uint reserveA, uint reserveB);
    function getOtherToken(address pair, address tokenA) external view returns (address tokenB);
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function sortTokens(address tokenA, address tokenB) external pure returns (address token0, address token1);
    function mintLiquidityFee(
        uint totalLiquidity,
        uint112 reserve0,
        uint112  reserve1,
        uint32 tokenWeight0,
        uint32 tokenWeight1,
        uint112  collectedFee0,
        uint112 collectedFee1) external view returns (uint amount);
}

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

    function name() external view returns (string memory);
    function symbol() external view 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;
}

// a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)
library SafeMath {
    function add(uint x, uint y) internal pure returns (uint z) {
        require((z = x + y) >= x, 'ds-math-add-overflow');
    }

    function sub(uint x, uint y) internal pure returns (uint z) {
        require((z = x - y) <= x, 'ds-math-sub-underflow');
    }

    function mul(uint x, uint y) internal pure returns (uint z) {
        require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
    }
    function div(uint a, uint b) internal pure returns (uint c) {
        require(b > 0, 'ds-math-division-by-zero');
        c = a / b;
    }
}

contract FireBirdERC20 is IFireBirdERC20 {
    using SafeMath for uint;

    string public constant name = 'FireBird Liquidity Provider';
    string public constant symbol = 'FLP';
    uint8 public constant decimals = 18;
    uint  public totalSupply;
    mapping(address => uint) public balanceOf;
    mapping(address => mapping(address => uint)) public allowance;

    bytes32 public DOMAIN_SEPARATOR;
    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    mapping(address => uint) public nonces;

    constructor() public {
        uint chainId;
        assembly {
            chainId := chainid
        }
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'),
                keccak256(bytes(name)),
                keccak256(bytes('1')),
                chainId,
                address(this)
            )
        );
    }

    function _mint(address to, uint value) internal {
        totalSupply = totalSupply.add(value);
        balanceOf[to] = balanceOf[to].add(value);
        emit Transfer(address(0), to, value);
    }

    function _burn(address from, uint value) internal {
        balanceOf[from] = balanceOf[from].sub(value);
        totalSupply = totalSupply.sub(value);
        emit Transfer(from, address(0), value);
    }

    function _approve(address owner, address spender, uint value) private {
        allowance[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    function _transfer(address from, address to, uint value) private {
        balanceOf[from] = balanceOf[from].sub(value);
        balanceOf[to] = balanceOf[to].add(value);
        emit Transfer(from, to, value);
    }

    function approve(address spender, uint value) external returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    function transfer(address to, uint value) external returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    function transferFrom(address from, address to, uint value) external returns (bool) {
        if (allowance[from][msg.sender] != uint(-1)) {
            allowance[from][msg.sender] = allowance[from][msg.sender].sub(value);
        }
        _transfer(from, to, value);
        return true;
    }

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        require(deadline >= block.timestamp, 'FLP: EXPIRED');
        bytes32 digest = keccak256(
            abi.encodePacked(
                '\x19\x01',
                DOMAIN_SEPARATOR,
                keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline))
            )
        );
        address recoveredAddress = ecrecover(digest, v, r, s);
        require(recoveredAddress != address(0) && recoveredAddress == owner, 'FLP: INVALID_SIGNATURE');
        _approve(owner, spender, value);
    }
}

// a library for performing various math operations
library Math {
    function min(uint x, uint y) internal pure returns (uint z) {
        z = x < y ? x : y;
    }

    // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
    function sqrt(uint y) internal pure returns (uint z) {
        if (y > 3) {
            z = y;
            uint x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
    }
}

// a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format))
// range: [0, 2**112 - 1]
// resolution: 1 / 2**112
library UQ112x112 {
    uint224 constant Q112 = 2**112;

    // encode a uint112 as a UQ112x112
    function encode(uint112 y) internal pure returns (uint224 z) {
        z = uint224(y) * Q112; // never overflows
    }

    // divide a UQ112x112 by a uint112, returning a UQ112x112
    function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) {
        z = x / uint224(y);
    }
}

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

    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view 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);
}

interface IUniswapV2Callee {
    function uniswapV2Call(address sender, uint amount0, uint amount1, bytes calldata data) external;
}

contract FireBirdPair is IFireBirdPair, FireBirdERC20 {
    using SafeMath  for uint;
    using UQ112x112 for uint224;

    uint public constant MINIMUM_LIQUIDITY = 10 ** 3;
    bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)')));

    address public factory;
    address public token0;
    address public token1;

    uint112 private reserve0;           // uses single storage slot, accessible via getReserves
    uint112 private reserve1;           // uses single storage slot, accessible via getReserves
    uint32  private blockTimestampLast; // uses single storage slot, accessible via getReserves
    uint public price0CumulativeLast;
    uint public price1CumulativeLast;
    uint private unlocked = 1;
    address public formula;

    uint112 private collectedFee0;           // uses single storage slot, accessible via getReserves
    uint112 private collectedFee1;           // uses single storage slot, accessible via getReserves
    uint32 private tokenWeight0;

    uint32 private swapFee;

    modifier lock() {
        require(unlocked == 1, 'FLP: LOCKED');
        unlocked = 0;
        _;
        unlocked = 1;
    }

    function getReserves() public view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) {
        _reserve0 = reserve0;
        _reserve1 = reserve1;
        _blockTimestampLast = blockTimestampLast;
    }

    function getCollectedFees() public view returns (uint112 _collectedFee0, uint112 _collectedFee1) {
        _collectedFee0 = collectedFee0;
        _collectedFee1 = collectedFee1;
    }

    function getTokenWeights() public view returns (uint32 _tokenWeight0, uint32 _tokenWeight1) {
        _tokenWeight0 = tokenWeight0;
        _tokenWeight1 = 100 - tokenWeight0;
    }

    function getSwapFee() public view returns (uint32 _swapFee) {
        _swapFee = swapFee;
    }

    function _safeTransfer(address token, address to, uint value) private {
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), 'FLP: TRANSFER_FAILED');
    }

    constructor() public {
        factory = msg.sender;
    }

    // called once by the factory at time of deployment
    function initialize(address _token0, address _token1, uint32 _tokenWeight0, uint32 _swapFee) external {
        require(msg.sender == factory, 'FLP: FORBIDDEN');
        // sufficient check
        token0 = _token0;
        token1 = _token1;
        tokenWeight0 = _tokenWeight0;
        swapFee = _swapFee;
        formula = IFireBirdFactory(factory).formula();
    }

    // update reserves and, on the first call per block, price accumulators
    function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private {
        uint32 _tokenWeight0 = tokenWeight0;
        require(balance0 * (100 - _tokenWeight0) <= uint112(- 1) && balance1 * _tokenWeight0 <= uint112(- 1), 'FLP: OVERFLOW');
        uint32 blockTimestamp = uint32(block.timestamp % 2 ** 32);
        uint32 timeElapsed = blockTimestamp - blockTimestampLast;
        // overflow is desired
        if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) {
            // * never overflows, and + overflow is desired
            uint112 mReserve0 = _reserve0 * (100 - _tokenWeight0);
            uint112 mReserve1 = _reserve1 * _tokenWeight0;
            price0CumulativeLast += uint(UQ112x112.encode(mReserve1).uqdiv(mReserve0)) * timeElapsed;
            price1CumulativeLast += uint(UQ112x112.encode(mReserve0).uqdiv(mReserve1)) * timeElapsed;
        }
        reserve0 = uint112(balance0);
        reserve1 = uint112(balance1);
        blockTimestampLast = blockTimestamp;
        emit Sync(reserve0, reserve1);
    }
    function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) {
        address feeTo = IFireBirdFactory(factory).feeTo();
        uint112 protocolFee = uint112(IFireBirdFactory(factory).protocolFee());
        feeOn = feeTo != address(0);
        (uint112 _collectedFee0, uint112 _collectedFee1) = getCollectedFees();
        if (protocolFee > 0 && feeOn && (_collectedFee0 > 0 || _collectedFee1 > 0)) {
            uint32 _tokenWeight0 = tokenWeight0;
            uint liquidity = IFireBirdFormula(formula).mintLiquidityFee(
                totalSupply, _reserve0, _reserve1,
                _tokenWeight0, 100 - _tokenWeight0,
                _collectedFee0 / protocolFee, _collectedFee1 / protocolFee
            );
            if (liquidity > 0) _mint(feeTo, liquidity);
        }
        if (_collectedFee0 > 0) collectedFee0 = 0;
        if (_collectedFee1 > 0) collectedFee1 = 0;
    }
    // this low-level function should be called from a contract which performs important safety checks
    function mint(address to) external lock returns (uint liquidity) {
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        uint balance0 = IERC20(token0).balanceOf(address(this));
        uint balance1 = IERC20(token1).balanceOf(address(this));
        uint amount0 = balance0.sub(_reserve0);
        uint amount1 = balance1.sub(_reserve1);
        _mintFee(_reserve0, _reserve1);
        uint _totalSupply = totalSupply;
        // gas savings, must be defined here since totalSupply can update in _mintFee
        if (_totalSupply == 0) {
            liquidity = Math.sqrt(amount0.mul(amount1)).sub(MINIMUM_LIQUIDITY);
            _mint(address(0), MINIMUM_LIQUIDITY);
            // permanently lock the first MINIMUM_LIQUIDITY tokens
        } else {
            liquidity = Math.min(amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1);
        }
        require(liquidity > 0, 'FLP: INSUFFICIENT_LIQUIDITY_MINTED');
        _mint(to, liquidity);

        _update(balance0, balance1, _reserve0, _reserve1);
        emit Mint(msg.sender, amount0, amount1);
    }

    // this low-level function should be called from a contract which performs important safety checks
    function burn(address to) external lock returns (uint amount0, uint amount1) {
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        address _token0 = token0; // gas savings
        address _token1 = token1; // gas savings
        uint balance0 = IERC20(_token0).balanceOf(address(this));
        uint balance1 = IERC20(_token1).balanceOf(address(this));
        uint liquidity = balanceOf[address(this)];
        _mintFee(_reserve0, _reserve1);
        uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
        amount0 = liquidity.mul(balance0) / _totalSupply;// using balances ensures pro-rata distribution
        amount1 = liquidity.mul(balance1) / _totalSupply;// using balances ensures pro-rata distribution
        require(amount0 > 0 && amount1 > 0, 'FLP: INSUFFICIENT_LIQUIDITY_BURNED');
        _burn(address(this), liquidity);
        _safeTransfer(_token0, to, amount0);
        _safeTransfer(_token1, to, amount1);
        balance0 = IERC20(_token0).balanceOf(address(this));
        balance1 = IERC20(_token1).balanceOf(address(this));

        _update(balance0, balance1, _reserve0, _reserve1);
        emit Burn(msg.sender, amount0, amount1, to);
    }
    // this low-level function should be called from a contract which performs important safety checks
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external lock {
        require(amount0Out > 0 || amount1Out > 0, 'FLP: INSUFFICIENT_OUTPUT_AMOUNT');
        uint112 _reserve0 = reserve0; // gas savings
        uint112 _reserve1 = reserve1; // gas savings
        require(amount0Out < _reserve0 && amount1Out < _reserve1, 'FLP: INSUFFICIENT_LIQUIDITY');

        uint balance0;
        uint balance1;
        { // scope for _token{0,1}, avoids stack too deep errors
        address _token0 = token0;
        address _token1 = token1;
        require(to != _token0 && to != _token1, 'FLP: INVALID_TO');
        if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens
        if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens
        if (data.length > 0) IUniswapV2Callee(to).uniswapV2Call(msg.sender, amount0Out, amount1Out, data);
        balance0 = IERC20(_token0).balanceOf(address(this));
        balance1 = IERC20(_token1).balanceOf(address(this));
        }
        uint amount0In = balance0 > _reserve0 - amount0Out ? balance0 - (_reserve0 - amount0Out) : 0;
        uint amount1In = balance1 > _reserve1 - amount1Out ? balance1 - (_reserve1 - amount1Out) : 0;
        require(amount0In > 0 || amount1In > 0, 'FLP: INSUFFICIENT_INPUT_AMOUNT');
        { // scope for reserve{0,1}Adjusted, avoids stack too deep errors
            uint balance0Adjusted = balance0.mul(10000);
            uint balance1Adjusted = balance1.mul(10000);
            { // avoids stack too deep errors
                if (amount0In > 0) {
                    uint amount0InFee = amount0In.mul(swapFee);
                    balance0Adjusted = balance0Adjusted.sub(amount0InFee);
                    collectedFee0 = uint112(uint(collectedFee0).add(amount0InFee));
                }
                if (amount1In > 0) {
                    uint amount1InFee = amount1In.mul(swapFee);
                    balance1Adjusted = balance1Adjusted.sub(amount1InFee);
                    collectedFee1 = uint112(uint(collectedFee1).add(amount1InFee));
                }
                uint32 _tokenWeight0 = tokenWeight0;// gas savings
                if (_tokenWeight0 == 50) { // gas savings for pair 50/50
                    require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(10000**2), 'FLP: K');
                } else {
                    require(IFireBirdFormula(formula).ensureConstantValue(uint(_reserve0).mul(10000), uint(_reserve1).mul(10000), balance0Adjusted, balance1Adjusted, _tokenWeight0), 'FLP: K');
                }
            }
        }
        _update(balance0, balance1, _reserve0, _reserve1);
        emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to);
    }

    // force balances to match reserves
    function skim(address to) external lock {
        address _token0 = token0; // gas savings
        address _token1 = token1; // gas savings
        _safeTransfer(_token0, to, IERC20(_token0).balanceOf(address(this)).sub(reserve0));
        _safeTransfer(_token1, to, IERC20(_token1).balanceOf(address(this)).sub(reserve1));
    }

    // force reserves to match balances
    function sync() external lock {
        _update(IERC20(token0).balanceOf(address(this)), IERC20(token1).balanceOf(address(this)), reserve0, reserve1);
    }
}

contract FireBirdFactory is IFireBirdFactory {
    address public feeTo;
    address public formula;
    uint public protocolFee;
    address public feeToSetter;

    mapping(bytes32 => address) private _pairSalts;
    address[] public allPairs;
    mapping(address => uint64) private _pairs;


    constructor(address _feeToSetter, address _formula) public {
        feeToSetter = _feeToSetter;
        formula = _formula;
    }
    function isPair(address b) external view returns (bool){
        return _pairs[b] > 0;
    }

    function allPairsLength() external view returns (uint) {
        return allPairs.length;
    }

    function getPair(address tokenA, address tokenB, uint32 tokenWeightA, uint32 swapFee) external view returns (address pair){
        (address token0, address token1, uint32 tokenWeight0) = tokenA < tokenB ? (tokenA, tokenB, tokenWeightA) : (tokenB, tokenA, 100 - tokenWeightA);
        bytes32 salt = keccak256(abi.encodePacked(token0, token1, tokenWeight0, swapFee));
        pair = _pairSalts[salt];
    }
    function createPair(address tokenA, address tokenB, uint32 tokenWeightA, uint32 swapFee) external returns (address pair) {
        require(tokenA != tokenB, 'FLP: IDENTICAL_ADDRESSES');
        require(tokenWeightA >= 2 && tokenWeightA <= 98 && (tokenWeightA % 2) == 0, 'FLP: INVALID_TOKEN_WEIGHT');
        // swap fee from [0.01% - 20%]
        require(swapFee >= 1 && swapFee <= 2000, 'FLP: INVALID_SWAP_FEE');
        (address token0, address token1, uint32 tokenWeight0) = tokenA < tokenB ? (tokenA, tokenB, tokenWeightA) : (tokenB, tokenA, 100 - tokenWeightA);
        require(token0 != address(0), 'FLP: ZERO_ADDRESS');
        // single check is sufficient
        bytes memory bytecode = type(FireBirdPair).creationCode;
        bytes32 salt = keccak256(abi.encodePacked(token0, token1, tokenWeight0, swapFee));
        require(_pairSalts[salt] == address(0), 'FLP: PAIR_EXISTS');
        assembly {
            pair := create2(0, add(bytecode, 32), mload(bytecode), salt)
        }
        IFireBirdPair(pair).initialize(token0, token1, tokenWeight0, swapFee);
        _pairSalts[salt] = address(pair);
        allPairs.push(pair);
        uint64 weightAndFee = uint64(swapFee);
        weightAndFee |= uint64(tokenWeight0)<<32;
        _pairs[address(pair)] = weightAndFee;
        emit PairCreated(token0, token1, pair, tokenWeight0, swapFee, allPairs.length);
    }

    function setFeeTo(address _feeTo) external {
        require(msg.sender == feeToSetter, 'FLP: FORBIDDEN');
        feeTo = _feeTo;
    }

    function setFeeToSetter(address _feeToSetter) external {
        require(msg.sender == feeToSetter, 'FLP: FORBIDDEN');
        feeToSetter = _feeToSetter;
    }

    function setProtocolFee(uint _protocolFee) external {
        require(msg.sender == feeToSetter, 'FLP: FORBIDDEN');
        require(_protocolFee == 0 || (_protocolFee >= 10000 && _protocolFee <= 100000), 'FLP: Invalid Protocol fee');
        protocolFee = _protocolFee;
    }

    function getWeightsAndSwapFee(address pair) public view returns (uint32 tokenWeight0, uint32 tokenWeight1, uint32 swapFee) {
        uint64 weightAndFee = _pairs[pair];
        if (weightAndFee > 0) {
            swapFee = uint32(weightAndFee);
            tokenWeight0 = uint32(weightAndFee>>32);
            tokenWeight1 = 100 - tokenWeight0;
        } else {
            // Default is 0.3%
            return (50, 50, 30);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint112","name":"collectedFee0","type":"uint112"},{"indexed":false,"internalType":"uint112","name":"collectedFee1","type":"uint112"}],"name":"PaidProtocolFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint112","name":"reserve0","type":"uint112"},{"indexed":false,"internalType":"uint112","name":"reserve1","type":"uint112"}],"name":"Sync","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"},{"constant":true,"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MINIMUM_LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"formula","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCollectedFees","outputs":[{"internalType":"uint112","name":"_collectedFee0","type":"uint112"},{"internalType":"uint112","name":"_collectedFee1","type":"uint112"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint112","name":"_reserve0","type":"uint112"},{"internalType":"uint112","name":"_reserve1","type":"uint112"},{"internalType":"uint32","name":"_blockTimestampLast","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getSwapFee","outputs":[{"internalType":"uint32","name":"_swapFee","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getTokenWeights","outputs":[{"internalType":"uint32","name":"_tokenWeight0","type":"uint32"},{"internalType":"uint32","name":"_tokenWeight1","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token0","type":"address"},{"internalType":"address","name":"_token1","type":"address"},{"internalType":"uint32","name":"_tokenWeight0","type":"uint32"},{"internalType":"uint32","name":"_swapFee","type":"uint32"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"price0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"price1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"skim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount0Out","type":"uint256"},{"internalType":"uint256","name":"amount1Out","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"sync","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526001600b5534801561001557600080fd5b5060405146908060526134348239604080519182900360520182208282018252601b83527f4669726542697264204c69717569646974792050726f766964657200000000006020938401528151808301835260018152603160f81b908401528151808401919091527fac35389a04d55c5c9df86be7d941289f55fc537c7493deefe4c0fe8bedcd61c7818301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101949094523060a0808601919091528151808603909101815260c09094019052825192019190912060035550600580546001600160a01b0319163317905561331c806101186000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063c45a0155116100a2578063d505accf11610071578063d505accf14610665578063d54a8d18146106c3578063dd62ed3e146106f8578063fff6cae914610733576101da565b8063c45a0155146105e3578063d0f69579146105eb578063d21220a71461063c578063d4cadf6814610644576101da565b806395d89b41116100de57806395d89b4114610567578063a9059cbb1461056f578063ba9a7a56146105a8578063bc25cf77146105b0576101da565b806370a08231146104b55780637ecebe00146104e857806389afcb441461051b576101da565b806330adf81f1161017c5780634b75f54f1161014b5780634b75f54f1461046a5780635909c0d5146104725780635a3d54931461047a5780636a62784214610482576101da565b806330adf81f14610411578063313ce5671461041957806332bfe469146104375780633644e51514610462576101da565b8063095ea7b3116101b8578063095ea7b3146103365780630dfe16811461038357806318160ddd146103b457806323b872dd146103ce576101da565b8063022c0d9f146101df57806306fdde031461027a5780630902f1ac146102f7575b600080fd5b610278600480360360808110156101f557600080fd5b81359160208101359173ffffffffffffffffffffffffffffffffffffffff604083013516919081019060808101606082013564010000000081111561023957600080fd5b82018360208201111561024b57600080fd5b8035906020019184600183028401116401000000008311171561026d57600080fd5b50909250905061073b565b005b6102826110fe565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bc5781810151838201526020016102a4565b50505050905090810190601f1680156102e95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ff611137565b604080516dffffffffffffffffffffffffffff948516815292909316602083015263ffffffff168183015290519081900360600190f35b61036f6004803603604081101561034c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561118c565b604080519115158252519081900360200190f35b61038b6111a3565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6103bc6111bf565b60408051918252519081900360200190f35b61036f600480360360608110156103e457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013590911690604001356111c5565b6103bc6112a4565b6104216112c8565b6040805160ff9092168252519081900360200190f35b61043f6112cd565b6040805163ffffffff938416815291909216602082015281519081900390910190f35b6103bc6112ff565b61038b611305565b6103bc611321565b6103bc611327565b6103bc6004803603602081101561049857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661132d565b6103bc600480360360208110156104cb57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166116ac565b6103bc600480360360208110156104fe57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166116be565b61054e6004803603602081101561053157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166116d0565b6040805192835260208301919091528051918290030190f35b610282611b28565b61036f6004803603604081101561058557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611b61565b6103bc611b6e565b610278600480360360208110156105c657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611b74565b61038b611d6a565b6102786004803603608081101561060157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169063ffffffff60408201358116916060013516611d86565b61038b611fae565b61064c611fca565b6040805163ffffffff9092168252519081900360200190f35b610278600480360360e081101561067b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611fd6565b6106cb6122a2565b604080516dffffffffffffffffffffffffffff938416815291909216602082015281519081900390910190f35b6103bc6004803603604081101561070e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166122cf565b6102786122ec565b600b546001146107ac57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f464c503a204c4f434b4544000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000600b55841515806107bf5750600084115b61082a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f464c503a20494e53554646494349454e545f4f55545055545f414d4f554e5400604482015290519081900360640190fd5b6008546dffffffffffffffffffffffffffff808216916e01000000000000000000000000000090041681871080156108715750806dffffffffffffffffffffffffffff1686105b6108dc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f464c503a20494e53554646494349454e545f4c49515549444954590000000000604482015290519081900360640190fd5b600654600754600091829173ffffffffffffffffffffffffffffffffffffffff91821691908116908916821480159061094157508073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b6109ac57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f464c503a20494e56414c49445f544f0000000000000000000000000000000000604482015290519081900360640190fd5b8a156109bd576109bd828a8d6124d2565b89156109ce576109ce818a8c6124d2565b8615610ab0578873ffffffffffffffffffffffffffffffffffffffff166310d1e85c338d8d8c8c6040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610a9757600080fd5b505af1158015610aab573d6000803e3d6000fd5b505050505b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916024808301926020929190829003018186803b158015610b1c57600080fd5b505afa158015610b30573d6000803e3d6000fd5b505050506040513d6020811015610b4657600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191955073ffffffffffffffffffffffffffffffffffffffff8316916370a0823191602480820192602092909190829003018186803b158015610bb857600080fd5b505afa158015610bcc573d6000803e3d6000fd5b505050506040513d6020811015610be257600080fd5b5051925060009150506dffffffffffffffffffffffffffff85168a90038311610c0c576000610c22565b89856dffffffffffffffffffffffffffff160383035b9050600089856dffffffffffffffffffffffffffff16038311610c46576000610c5c565b89856dffffffffffffffffffffffffffff160383035b90506000821180610c6d5750600081115b610cd857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f464c503a20494e53554646494349454e545f494e5055545f414d4f554e540000604482015290519081900360640190fd5b6000610cec8561271063ffffffff6126df16565b90506000610d028561271063ffffffff6126df16565b90508315610d9e57600e54600090610d2590869063ffffffff908116906126df16565b9050610d37838263ffffffff61276516565b600d54909350610d5d906dffffffffffffffffffffffffffff168263ffffffff6127d716565b600d80547fffffffffffffffffffffffffffffffffffff0000000000000000000000000000166dffffffffffffffffffffffffffff92909216919091179055505b8215610e3957600e54600090610dbf90859063ffffffff908116906126df16565b9050610dd1828263ffffffff61276516565b600d54909250610e03906e01000000000000000000000000000090046dffffffffffffffffffffffffffff16826127d7565b600d600e6101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff160217905550505b600d547c0100000000000000000000000000000000000000000000000000000000900463ffffffff166032811415610f2457610ea26305f5e100610e966dffffffffffffffffffffffffffff8c8116908c1663ffffffff6126df16565b9063ffffffff6126df16565b610eb2848463ffffffff6126df16565b1015610f1f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f464c503a204b0000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b61107c565b600c5473ffffffffffffffffffffffffffffffffffffffff166379c91b37610f646dffffffffffffffffffffffffffff8c1661271063ffffffff6126df16565b610f866dffffffffffffffffffffffffffff8c1661271063ffffffff6126df16565b8686866040518663ffffffff1660e01b8152600401808681526020018581526020018481526020018381526020018263ffffffff1663ffffffff1681526020019550505050505060206040518083038186803b158015610fe557600080fd5b505afa158015610ff9573d6000803e3d6000fd5b505050506040513d602081101561100f57600080fd5b505161107c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f464c503a204b0000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b50505061108b84848888612849565b60408051838152602081018390528082018d9052606081018c9052905173ffffffffffffffffffffffffffffffffffffffff8b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600b55505050505050505050565b6040518060400160405280601b81526020017f4669726542697264204c69717569646974792050726f7669646572000000000081525081565b6008546dffffffffffffffffffffffffffff808216926e0100000000000000000000000000008304909116917c0100000000000000000000000000000000000000000000000000000000900463ffffffff1690565b6000611199338484612b55565b5060015b92915050565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b60005481565b73ffffffffffffffffffffffffffffffffffffffff831660009081526002602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1461128f5773ffffffffffffffffffffffffffffffffffffffff8416600090815260026020908152604080832033845290915290205461125d908363ffffffff61276516565b73ffffffffffffffffffffffffffffffffffffffff851660009081526002602090815260408083203384529091529020555b61129a848484612bc4565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b600d547c0100000000000000000000000000000000000000000000000000000000900463ffffffff1690606482900390565b60035481565b600c5473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b600a5481565b6000600b546001146113a057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f464c503a204c4f434b4544000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000600b819055806113b0611137565b50600654604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905193955091935060009273ffffffffffffffffffffffffffffffffffffffff909116916370a08231916024808301926020929190829003018186803b15801561142a57600080fd5b505afa15801561143e573d6000803e3d6000fd5b505050506040513d602081101561145457600080fd5b5051600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905192935060009273ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b1580156114cd57600080fd5b505afa1580156114e1573d6000803e3d6000fd5b505050506040513d60208110156114f757600080fd5b50519050600061151d836dffffffffffffffffffffffffffff871663ffffffff61276516565b90506000611541836dffffffffffffffffffffffffffff871663ffffffff61276516565b905061154d8686612ca5565b5060005480611594576115806103e861157461156f868663ffffffff6126df16565b61305f565b9063ffffffff61276516565b975061158f60006103e86130b1565b6115f1565b6115ee6dffffffffffffffffffffffffffff88166115b8858463ffffffff6126df16565b816115bf57fe5b046dffffffffffffffffffffffffffff88166115e1858563ffffffff6126df16565b816115e857fe5b04613161565b97505b6000881161164a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806132c66022913960400191505060405180910390fd5b61165489896130b1565b61166085858989612849565b6040805184815260208101849052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600b55509395945050505050565b60016020526000908152604090205481565b60046020526000908152604090205481565b600080600b5460011461174457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f464c503a204c4f434b4544000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000600b81905580611754611137565b50600654600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905194965092945073ffffffffffffffffffffffffffffffffffffffff9182169391169160009184916370a08231916024808301926020929190829003018186803b1580156117d657600080fd5b505afa1580156117ea573d6000803e3d6000fd5b505050506040513d602081101561180057600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191925060009173ffffffffffffffffffffffffffffffffffffffff8516916370a08231916024808301926020929190829003018186803b15801561187457600080fd5b505afa158015611888573d6000803e3d6000fd5b505050506040513d602081101561189e57600080fd5b5051306000908152600160205260409020549091506118bd8787612ca5565b50600054806118d2838663ffffffff6126df16565b816118d957fe5b049950806118ed838563ffffffff6126df16565b816118f457fe5b04985060008a1180156119075750600089115b61195c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806132a46022913960400191505060405180910390fd5b6119663083613179565b611971868c8c6124d2565b61197c858c8b6124d2565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8816916370a08231916024808301926020929190829003018186803b1580156119e857600080fd5b505afa1580156119fc573d6000803e3d6000fd5b505050506040513d6020811015611a1257600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191955073ffffffffffffffffffffffffffffffffffffffff8716916370a0823191602480820192602092909190829003018186803b158015611a8457600080fd5b505afa158015611a98573d6000803e3d6000fd5b505050506040513d6020811015611aae57600080fd5b50519250611abe84848a8a612849565b604080518b8152602081018b9052815173ffffffffffffffffffffffffffffffffffffffff8e169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a350505050505050506001600b81905550915091565b6040518060400160405280600381526020017f464c50000000000000000000000000000000000000000000000000000000000081525081565b6000611199338484612bc4565b6103e881565b600b54600114611be557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f464c503a204c4f434b4544000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000600b55600654600754600854604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff9485169490931692611cc19285928792611cbc926dffffffffffffffffffffffffffff169185916370a0823191602480820192602092909190829003018186803b158015611c8457600080fd5b505afa158015611c98573d6000803e3d6000fd5b505050506040513d6020811015611cae57600080fd5b50519063ffffffff61276516565b6124d2565b600854604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051611d609284928792611cbc926e01000000000000000000000000000090046dffffffffffffffffffffffffffff169173ffffffffffffffffffffffffffffffffffffffff8616916370a0823191602480820192602092909190829003018186803b158015611c8457600080fd5b50506001600b5550565b60055473ffffffffffffffffffffffffffffffffffffffff1681565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e0c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f464c503a20464f5242494444454e000000000000000000000000000000000000604482015290519081900360640190fd5b6006805473ffffffffffffffffffffffffffffffffffffffff8087167fffffffffffffffffffffffff000000000000000000000000000000000000000092831617909255600780548684169216919091179055600d805463ffffffff8086167c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff90921691909117909155600e80549184167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000909216919091179055600554604080517f4b75f54f00000000000000000000000000000000000000000000000000000000815290519190921691634b75f54f916004808301926020929190829003018186803b158015611f3857600080fd5b505afa158015611f4c573d6000803e3d6000fd5b505050506040513d6020811015611f6257600080fd5b5051600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff90921691909117905550505050565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b600e5463ffffffff1690565b4284101561204557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f464c503a20455850495245440000000000000000000000000000000000000000604482015290519081900360640190fd5b60035473ffffffffffffffffffffffffffffffffffffffff80891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e2808201937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081019281900390910190855afa1580156121a6573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81161580159061222157508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b61228c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f464c503a20494e56414c49445f5349474e415455524500000000000000000000604482015290519081900360640190fd5b612297898989612b55565b505050505050505050565b600d546dffffffffffffffffffffffffffff808216926e0100000000000000000000000000009092041690565b600260209081526000928352604080842090915290825290205481565b600b5460011461235d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f464c503a204c4f434b4544000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000600b55600654604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516124cb9273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b1580156123d457600080fd5b505afa1580156123e8573d6000803e3d6000fd5b505050506040513d60208110156123fe57600080fd5b5051600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b15801561247157600080fd5b505afa158015612485573d6000803e3d6000fd5b505050506040513d602081101561249b57600080fd5b50516008546dffffffffffffffffffffffffffff808216916e010000000000000000000000000000900416612849565b6001600b55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001781529251815160009460609489169392918291908083835b602083106125d857805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161259b565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461263a576040519150601f19603f3d011682016040523d82523d6000602084013e61263f565b606091505b509150915081801561266d57508051158061266d575080806020019051602081101561266a57600080fd5b50515b6126d857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f464c503a205452414e534645525f4641494c4544000000000000000000000000604482015290519081900360640190fd5b5050505050565b60008115806126fa575050808202828282816126f757fe5b04145b61119d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082038281111561119d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b8082018281101561119d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b600d5463ffffffff7c01000000000000000000000000000000000000000000000000000000009091048116906dffffffffffffffffffffffffffff60648390039091168602118015906128b257506dffffffffffffffffffffffffffff63ffffffff8216850211155b61291d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f464c503a204f564552464c4f5700000000000000000000000000000000000000604482015290519081900360640190fd5b60085463ffffffff428116917c01000000000000000000000000000000000000000000000000000000009004811682039081161580159061296d57506dffffffffffffffffffffffffffff851615155b801561298857506dffffffffffffffffffffffffffff841615155b15612a4a5763ffffffff6064849003811686029080851686029083166129db836129b18461323e565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169063ffffffff61326216565b600980547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff929092169290920201905563ffffffff8316612a1b826129b18561323e565b600a80547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff929092169290920201905550505b600880547fffffffffffffffffffffffffffffffffffff0000000000000000000000000000166dffffffffffffffffffffffffffff898116919091177fffffffff0000000000000000000000000000ffffffffffffffffffffffffffff166e0100000000000000000000000000008983168102919091177bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167c010000000000000000000000000000000000000000000000000000000063ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a150505050505050565b73ffffffffffffffffffffffffffffffffffffffff808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902054612bfa908263ffffffff61276516565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600160205260408082209390935590841681522054612c3c908263ffffffff6127d716565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b158015612d1057600080fd5b505afa158015612d24573d6000803e3d6000fd5b505050506040513d6020811015612d3a57600080fd5b5051600554604080517fb0e21e8a000000000000000000000000000000000000000000000000000000008152905192935060009273ffffffffffffffffffffffffffffffffffffffff9092169163b0e21e8a91600480820192602092909190829003018186803b158015612dad57600080fd5b505afa158015612dc1573d6000803e3d6000fd5b505050506040513d6020811015612dd757600080fd5b505173ffffffffffffffffffffffffffffffffffffffff8316151593509050600080612e016122a2565b915091506000836dffffffffffffffffffffffffffff16118015612e225750845b8015612e5857506000826dffffffffffffffffffffffffffff161180612e5857506000816dffffffffffffffffffffffffffff16115b15612fd757600d54600c54600080547c010000000000000000000000000000000000000000000000000000000090930463ffffffff1692909173ffffffffffffffffffffffffffffffffffffffff16906392aec23c908b8b8660648190036dffffffffffffffffffffffffffff8c8116908c1681612ed257fe5b048c6dffffffffffffffffffffffffffff168b6dffffffffffffffffffffffffffff1681612efc57fe5b6040805160e08b901b7fffffffff0000000000000000000000000000000000000000000000000000000016815260048101999099526dffffffffffffffffffffffffffff97881660248a0152958716604489015263ffffffff9485166064890152929093166084870152841660a48601520490911660c48301525160e4808301926020929190829003018186803b158015612f9657600080fd5b505afa158015612faa573d6000803e3d6000fd5b505050506040513d6020811015612fc057600080fd5b505190508015612fd457612fd486826130b1565b50505b6dffffffffffffffffffffffffffff82161561301657600d80547fffffffffffffffffffffffffffffffffffff00000000000000000000000000001690555b6dffffffffffffffffffffffffffff81161561305557600d80547fffffffff0000000000000000000000000000ffffffffffffffffffffffffffff1690555b5050505092915050565b600060038211156130a2575080600160028204015b8181101561309c5780915060028182858161308b57fe5b04018161309457fe5b049050613074565b506130ac565b81156130ac575060015b919050565b6000546130c4908263ffffffff6127d716565b600090815573ffffffffffffffffffffffffffffffffffffffff83168152600160205260409020546130fc908263ffffffff6127d716565b73ffffffffffffffffffffffffffffffffffffffff831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183106131705781613172565b825b9392505050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260409020546131af908263ffffffff61276516565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040812091909155546131e9908263ffffffff61276516565b600090815560408051838152905173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6dffffffffffffffffffffffffffff166e0100000000000000000000000000000290565b60006dffffffffffffffffffffffffffff82167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff84168161329b57fe5b04939250505056fe464c503a20494e53554646494349454e545f4c49515549444954595f4255524e4544464c503a20494e53554646494349454e545f4c49515549444954595f4d494e544544a265627a7a72315820205e3bf821d3f2f8e4b52b8b72df297e84d2217641d033bca37e5652df623f4364736f6c63430005100032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429

Deployed ByteCode Sourcemap

14255:11057:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14255:11057:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21847:2872;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;21847:2872:0;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;21847:2872:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;21847:2872:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;21847:2872:0;;-1:-1:-1;21847:2872:0;-1:-1:-1;21847:2872:0;:::i;:::-;;8955:59;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8955:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15463:231;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10858:147;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10858:147:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14564:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9107:24;;;:::i;:::-;;;;;;;;;;;;;;;;11160:301;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11160:301:0;;;;;;;;;;;;;;;;;;:::i;9399:108::-;;;:::i;9065:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15897:184;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9256:31;;;:::i;15023:22::-;;;:::i;14913:32::-;;;:::i;14952:::-;;;:::i;19198:1144::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19198:1144:0;;;;:::i;9138:41::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9138:41:0;;;;:::i;9514:38::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9514:38:0;;;;:::i;20454:1283::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20454:1283:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;9021:37;;;:::i;11013:139::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11013:139:0;;;;;;;;;:::i;14383:48::-;;;:::i;24768:334::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24768:334:0;;;;:::i;14535:22::-;;;:::i;16608:376::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;16608:376:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14592:21::-;;;:::i;16089:97::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11469:662;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;11469:662:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;15702:187::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9186:61;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9186:61:0;;;;;;;;;;;:::i;25151:158::-;;;:::i;21847:2872::-;15360:8;;15372:1;15360:13;15352:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15411:1;15400:8;:12;21961:14;;;;:32;;;21992:1;21979:10;:14;21961:32;21953:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22060:8;;;;;;;22114;;;;22156:22;;;:48;;;;;22195:9;22182:22;;:10;:22;22156:48;22148:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22381:6;;22416;;22249:13;;;;22381:6;;;;;22416;;;;22441:13;;;;;;;:30;;;22464:7;22458:13;;:2;:13;;;;22441:30;22433:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22506:14;;22502:58;;22522:38;22536:7;22545:2;22549:10;22522:13;:38::i;:::-;22609:14;;22605:58;;22625:38;22639:7;22648:2;22652:10;22625:13;:38::i;:::-;22712:15;;22708:97;;22746:2;22729:34;;;22764:10;22776;22788;22800:4;;22729:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;22729:76:0;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22729:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22729:76:0;;;;22708:97;22827:40;;;;;;22861:4;22827:40;;;;;;:25;;;;;;:40;;;;;;;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;22827:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22827:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22827:40:0;22889;;;;;;22923:4;22889:40;;;;;;22827;;-1:-1:-1;22889:25:0;;;;;;:40;;;;;22827;;22889;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;22889:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22889:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22889:40:0;;-1:-1:-1;22951:14:0;;-1:-1:-1;;22979:22:0;;;;;;22968:33;;:75;;23042:1;22968:75;;;23028:10;23016:9;:22;;;23004:8;:35;22968:75;22951:92;;23054:14;23094:10;23082:9;:22;;;23071:8;:33;:75;;23145:1;23071:75;;;23131:10;23119:9;:22;;;23107:8;:35;23071:75;23054:92;;23177:1;23165:9;:13;:30;;;;23194:1;23182:9;:13;23165:30;23157:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23320:21;23344:19;:8;23357:5;23344:19;:12;:19;:::i;:::-;23320:43;-1:-1:-1;23378:21:0;23402:19;:8;23415:5;23402:19;:12;:19;:::i;:::-;23378:43;-1:-1:-1;23491:13:0;;23487:265;;23563:7;;23529:17;;23549:22;;:9;;23563:7;;;;;23549:13;:22;:::i;:::-;23529:42;-1:-1:-1;23613:34:0;:16;23529:42;23613:34;:20;:34;:::i;:::-;23699:13;;23594:53;;-1:-1:-1;23694:37:0;;23699:13;;23718:12;23694:37;:23;:37;:::i;:::-;23670:13;:62;;;;;;;;;;;;;;;-1:-1:-1;23487:265:0;23774:13;;23770:265;;23846:7;;23812:17;;23832:22;;:9;;23846:7;;;;;23832:13;:22;:::i;:::-;23812:42;-1:-1:-1;23896:34:0;:16;23812:42;23896:34;:20;:34;:::i;:::-;23982:13;;23877:53;;-1:-1:-1;23977:37:0;;23982:13;;;;;24001:12;23977:23;:37::i;:::-;23953:13;;:62;;;;;;;;;;;;;;;;;;23770:265;;24076:12;;;;;;;24142:2;24125:19;;24121:423;;;24249:44;24284:8;24249:30;;:15;;;;:30;;;:19;:30;:::i;:::-;:34;:44;:34;:44;:::i;:::-;24207:38;:16;24228;24207:38;:20;:38;:::i;:::-;:86;;24199:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24121:423;;;24378:7;;;;24361:45;24407:26;:15;;;24427:5;24407:26;:19;:26;:::i;:::-;24435;:15;;;24455:5;24435:26;:19;:26;:::i;:::-;24463:16;24481;24499:13;24361:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24361:152:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24361:152:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24361:152:0;24353:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15423:1;;;24580:49;24588:8;24598;24608:9;24619;24580:7;:49::i;:::-;24645:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24650:10;;24645:66;;;;;;;;;-1:-1:-1;;15446:1:0;15435:8;:12;-1:-1:-1;;;;;;;;;21847:2872:0:o;8955:59::-;;;;;;;;;;;;;;;;;;;:::o;15463:231::-;15596:8;;;;;;;15627;;;;;;;15668:18;;;;;;15463:231::o;10858:147::-;10922:4;10939:36;10948:10;10960:7;10969:5;10939:8;:36::i;:::-;-1:-1:-1;10993:4:0;10858:147;;;;;:::o;14564:21::-;;;;;;:::o;9107:24::-;;;;:::o;11160:301::-;11259:15;;;11238:4;11259:15;;;:9;:15;;;;;;;;11275:10;11259:27;;;;;;;;11295:2;11259:39;11255:140;;11345:15;;;;;;;:9;:15;;;;;;;;11361:10;11345:27;;;;;;;;:38;;11377:5;11345:38;:31;:38;:::i;:::-;11315:15;;;;;;;:9;:15;;;;;;;;11331:10;11315:27;;;;;;;:68;11255:140;11405:26;11415:4;11421:2;11425:5;11405:9;:26::i;:::-;-1:-1:-1;11449:4:0;11160:301;;;;;:::o;9399:108::-;9441:66;9399:108;:::o;9065:35::-;9098:2;9065:35;:::o;15897:184::-;16016:12;;;;;;;;16055:3;:18;;;;15897:184::o;9256:31::-;;;;:::o;15023:22::-;;;;;;:::o;14913:32::-;;;;:::o;14952:::-;;;;:::o;19198:1144::-;19247:14;15360:8;;15372:1;15360:13;15352:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15411:1;15400:8;:12;;;15411:1;19316:13;:11;:13::i;:::-;-1:-1:-1;19378:6:0;;19371:39;;;;;;19404:4;19371:39;;;;;;19274:55;;-1:-1:-1;19274:55:0;;-1:-1:-1;19355:13:0;;19378:6;;;;;19371:24;;:39;;;;;;;;;;;;;;19378:6;19371:39;;;5:2:-1;;;;30:1;27;20:12;5:2;19371:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19371:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19371:39:0;19444:6;;19437:39;;;;;;19470:4;19437:39;;;;;;19371;;-1:-1:-1;19421:13:0;;19444:6;;;;;19437:24;;:39;;;;;19371;;19437;;;;;;;;19444:6;19437:39;;;5:2:-1;;;;30:1;27;20:12;5:2;19437:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19437:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19437:39:0;;-1:-1:-1;19487:12:0;19502:23;:8;:23;;;;:12;:23;:::i;:::-;19487:38;-1:-1:-1;19536:12:0;19551:23;:8;:23;;;;:12;:23;:::i;:::-;19536:38;;19585:30;19594:9;19605;19585:8;:30::i;:::-;-1:-1:-1;19626:17:0;19646:11;19759:17;19755:366;;19805:54;14424:7;19805:31;19815:20;:7;19827;19815:20;:11;:20;:::i;:::-;19805:9;:31::i;:::-;:35;:54;:35;:54;:::i;:::-;19793:66;;19874:36;19888:1;14424:7;19874:5;:36::i;:::-;19755:366;;;20023:86;20032:37;;;:25;:7;20044:12;20032:25;:11;:25;:::i;:::-;:37;;;;;;20071;;;:25;:7;20083:12;20071:25;:11;:25;:::i;:::-;:37;;;;;;20023:8;:86::i;:::-;20011:98;;19755:366;20151:1;20139:9;:13;20131:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20202:20;20208:2;20212:9;20202:5;:20::i;:::-;20235:49;20243:8;20253;20263:9;20274;20235:7;:49::i;:::-;20300:34;;;;;;;;;;;;;;20305:10;;20300:34;;;;;;;;-1:-1:-1;;15446:1:0;15435:8;:12;-1:-1:-1;19198:1144:0;;;-1:-1:-1;;;;;19198:1144:0:o;9138:41::-;;;;;;;;;;;;;:::o;9514:38::-;;;;;;;;;;;;;:::o;20454:1283::-;20503:12;20517;15360:8;;15372:1;15360:13;15352:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15411:1;15400:8;:12;;;15411:1;20584:13;:11;:13::i;:::-;-1:-1:-1;20641:6:0;;20691;;20739:40;;;;;;20773:4;20739:40;;;;;;20542:55;;-1:-1:-1;20542:55:0;;-1:-1:-1;20641:6:0;;;;;20691;;;20623:15;;20641:6;;20739:25;;:40;;;;;;;;;;;;;;20641:6;20739:40;;;5:2:-1;;;;30:1;27;20:12;5:2;20739:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20739:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20739:40:0;20806;;;;;;20840:4;20806:40;;;;;;20739;;-1:-1:-1;20790:13:0;;20806:25;;;;;;:40;;;;;20739;;20806;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;20806:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20806:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20806:40:0;20892:4;20857:14;20874:24;;;:9;20806:40;20874:24;;;;;20806:40;;-1:-1:-1;20909:30:0;20918:9;20929;20909:8;:30::i;:::-;-1:-1:-1;20950:17:0;20970:11;;21080:23;:9;21094:8;21080:23;:13;:23;:::i;:::-;:38;;;;;;;-1:-1:-1;21212:12:0;21186:23;:9;21200:8;21186:23;:13;:23;:::i;:::-;:38;;;;;;21176:48;;21300:1;21290:7;:11;:26;;;;;21315:1;21305:7;:11;21290:26;21282:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21366:31;21380:4;21387:9;21366:5;:31::i;:::-;21408:35;21422:7;21431:2;21435:7;21408:13;:35::i;:::-;21454;21468:7;21477:2;21481:7;21454:13;:35::i;:::-;21511:40;;;;;;21545:4;21511:40;;;;;;:25;;;;;;:40;;;;;;;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;21511:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21511:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21511:40:0;21573;;;;;;21607:4;21573:40;;;;;;21511;;-1:-1:-1;21573:25:0;;;;;;:40;;;;;21511;;21573;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;21573:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21573:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21573:40:0;;-1:-1:-1;21626:49:0;21634:8;21573:40;21654:9;21665;21626:7;:49::i;:::-;21691:38;;;;;;;;;;;;;;;;;;21696:10;;21691:38;;;;;;;;;;;15423:1;;;;;;;;15446;15435:8;:12;;;;20454:1283;;;:::o;9021:37::-;;;;;;;;;;;;;;;;;;;:::o;11013:139::-;11073:4;11090:32;11100:10;11112:2;11116:5;11090:9;:32::i;14383:48::-;14424:7;14383:48;:::o;24768:334::-;15360:8;;15372:1;15360:13;15352:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15411:1;15400:8;:12;24837:6;;24887;;24991:8;;24946:40;;;;;;24980:4;24946:40;;;;;;24837:6;;;;;24887;;;;24919:82;;24837:6;;24942:2;;24946:54;;24991:8;;;24837:6;;24946:25;;:40;;;;;;;;;;;;;;;24837:6;24946:40;;;5:2:-1;;;;30:1;27;20:12;5:2;24946:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24946:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24946:40:0;;:54;:44;:54;:::i;:::-;24919:13;:82::i;:::-;25084:8;;25039:40;;;;;;25073:4;25039:40;;;;;;25012:82;;25026:7;;25035:2;;25039:54;;25084:8;;;;;;25039:25;;;;;;:40;;;;;;;;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;25012:82:0;-1:-1:-1;;15446:1:0;15435:8;:12;-1:-1:-1;24768:334:0:o;14535:22::-;;;;;;:::o;16608:376::-;16743:7;;;;16729:10;:21;16721:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16809:6;:16;;;;;;;;;;;;;;16836:6;:16;;;;;;;;;;;;;16863:12;:28;;;;;;;;;;;;;;;;;;;16902:7;:18;;;;;;;;;;;;;;;16958:7;;16941:35;;;;;;;;16958:7;;;;;16941:33;;:35;;;;;;;;;;;;;;16958:7;16941:35;;;5:2:-1;;;;30:1;27;20:12;5:2;16941:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16941:35:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16941:35:0;16931:7;:45;;;;;;;;;;;;;;-1:-1:-1;;;;16608:376:0:o;14592:21::-;;;;;;:::o;16089:97::-;16171:7;;;;;16089:97::o;11469:662::-;11615:15;11603:8;:27;;11595:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11763:16;;11859:13;;;;11658:14;11859:13;;;:6;:13;;;;;;;;:15;;;;;;;;;11808:77;;9441:66;11808:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;11808:77:0;;;;;11798:88;;;;;;11699:202;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;11699:202:0;;;;;;11675:237;;;;;;;;;11950:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11658:14;;11859:15;11950:26;;;;;-1:-1:-1;11950:26:0;;;;;;;;;;11859:15;11950:26;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;11950:26:0;;;;;;-1:-1:-1;;11995:30:0;;;;;;;:59;;;12049:5;12029:25;;:16;:25;;;11995:59;11987:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12092:31;12101:5;12108:7;12117:5;12092:8;:31::i;:::-;11469:662;;;;;;;;;:::o;15702:187::-;15827:13;;;;;;;15868;;;;;;15702:187::o;9186:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;25151:158::-;15360:8;;15372:1;15360:13;15352:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15411:1;15400:8;:12;25207:6;;25200:39;;;;;;25233:4;25200:39;;;;;;25192:109;;25207:6;;;25200:24;;:39;;;;;;;;;;;;;;25207:6;25200:39;;;5:2:-1;;;;30:1;27;20:12;5:2;25200:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25200:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25200:39:0;25248:6;;25241:39;;;;;;25274:4;25241:39;;;;;;25248:6;;;;;25241:24;;:39;;;;;25200;;25241;;;;;;;;25248:6;25241:39;;;5:2:-1;;;;30:1;27;20:12;5:2;25241:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25241:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25241:39:0;25282:8;;;;;;;25292;;;;25192:7;:109::i;:::-;15446:1;15435:8;:12;25151:158::o;16194:281::-;14490:34;;;;;;;;;;;;;;;;;16322:43;;16311:10;16322:43;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;16322:43:0;;;;;;25:18:-1;;;61:17;;16322:43:0;182:15:-1;16322:43:0;179:29:-1;160:49;;16311:55:0;;;;16276:12;;16290:17;;16311:10;;;16322:43;16311:55;;;25:18:-1;16311:55:0;;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;139:12;;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;16311:55:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;16275:91:0;;;;16385:7;:57;;;;-1:-1:-1;16397:11:0;;:16;;:44;;;16428:4;16417:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16417:24:0;16397:44;16377:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16194:281;;;;;:::o;8579:142::-;8631:6;8658;;;:30;;-1:-1:-1;;8673:5:0;;;8687:1;8682;8673:5;8682:1;8668:15;;;;;:20;8658:30;8650:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8442:129;8526:5;;;8521:16;;;;8513:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8306:128;8390:5;;;8385:16;;;;8377:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17069:1081;17196:12;;;;;;;;;;17227:48;17239:3;:19;;;17227:32;;;;;:48;;;;:92;;-1:-1:-1;17279:40:0;:24;;;;;:40;;17227:92;17219:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17454:18;;17379:25;:15;:25;;;17454:18;;;;;17437:35;;;17519:15;;;;;;:33;;-1:-1:-1;17538:14:0;;;;;17519:33;:51;;;;-1:-1:-1;17556:14:0;;;;;17519:51;17515:464;;;17668:33;17681:3;:19;;;17668:33;;;;;17736:25;;;;;;17800:64;;17805:44;17668:33;17805:27;17736:25;17805:16;:27::i;:::-;:33;;;:44;:33;:44;:::i;:::-;17776:20;:88;;17800:50;;;;;:64;;;;17776:88;;;17903:64;;;17908:44;17942:9;17908:27;17925:9;17908:16;:27::i;:44::-;17879:20;:88;;17903:50;;;;;:64;;;;17879:88;;;-1:-1:-1;;17515:464:0;17989:8;:28;;;;;;;;;;;;18028;;;;;;;;;;;;18067:35;;;;;;;;;;;;18118:24;;;18123:8;;;18118:24;;18133:8;;;;;;;18118:24;;;;;;;;;;;;;;;;;17069:1081;;;;;;;:::o;10453:169::-;10534:16;;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;10583:31;;;;;;;;;;;;;;;;;10453:169;;;:::o;10630:220::-;10724:15;;;;;;;:9;:15;;;;;;:26;;10744:5;10724:26;:19;:26;:::i;:::-;10706:15;;;;;;;;:9;:15;;;;;;:44;;;;10777:13;;;;;;;:24;;10795:5;10777:24;:17;:24;:::i;:::-;10761:13;;;;;;;;:9;:13;;;;;;;;;:40;;;;10817:25;;;;;;;10761:13;;10817:25;;;;;;;;;;;;;10630:220;;;:::o;18156:932::-;18229:10;18252:13;18285:7;;;;;;;;;;;18268:31;;;:33;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18268:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18268:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18268:33:0;18359:7;;18342:39;;;;;;;;18268:33;;-1:-1:-1;18312:19:0;;18359:7;;;;;18342:37;;:39;;;;;18268:33;;18342:39;;;;;;;;18359:7;18342:39;;;5:2:-1;;;;30:1;27;20:12;5:2;18342:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18342:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18342:39:0;18401:19;;;;;;-1:-1:-1;18342:39:0;-1:-1:-1;18418:1:0;;18482:18;:16;:18::i;:::-;18431:69;;;;18529:1;18515:11;:15;;;:24;;;;;18534:5;18515:24;:70;;;;;18561:1;18544:14;:18;;;:40;;;;18583:1;18566:14;:18;;;18544:40;18511:466;;;18625:12;;18686:7;;18602:20;18730:11;;18625:12;;;;;;;18602:20;;18686:7;;;18669:42;;18743:9;18754;18625:12;18797:3;:19;;;18835:28;;;;;;;;;;;;;18882:11;18865:28;;:14;:28;;;;;;;18669:239;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18865:28;18669:239;;;;;;;;;;;;;;;;;;;;;;;;;;5:2:-1;;;;30:1;27;20:12;5:2;18669:239:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18669:239:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18669:239:0;;-1:-1:-1;18927:13:0;;18923:42;;18942:23;18948:5;18955:9;18942:5;:23::i;:::-;18511:466;;;18991:18;;;;18987:41;;19011:13;:17;;;;;;18987:41;19043:18;;;;19039:41;;19063:13;:17;;;;;;19039:41;18156:932;;;;;;;;:::o;12425:303::-;12470:6;12497:1;12493;:5;12489:232;;;-1:-1:-1;12519:1:0;12552;12548;12544:5;;:9;12568:92;12579:1;12575;:5;12568:92;;;12605:1;12601:5;;12643:1;12638;12634;12630;:5;;;;;;:9;12629:15;;;;;;12625:19;;12568:92;;;12489:232;;;;12681:6;;12677:44;;-1:-1:-1;12708:1:0;12677:44;12425:303;;;:::o;10027:201::-;10100:11;;:22;;10116:5;10100:22;:15;:22;:::i;:::-;10086:11;:36;;;10149:13;;;;;:9;:13;;;;;;:24;;10167:5;10149:24;:17;:24;:::i;:::-;10133:13;;;;;;;:9;:13;;;;;;;;:40;;;;10189:31;;;;;;;10133:13;;;;10189:31;;;;;;;;;;10027:201;;:::o;12211:96::-;12263:6;12290:1;12286;:5;:13;;12298:1;12286:13;;;12294:1;12286:13;12282:17;12211:96;-1:-1:-1;;;12211:96:0:o;10236:209::-;10315:15;;;;;;;:9;:15;;;;;;:26;;10335:5;10315:26;:19;:26;:::i;:::-;10297:15;;;;;;;:9;:15;;;;;:44;;;;10366:11;:22;;10382:5;10366:22;:15;:22;:::i;:::-;10352:11;:36;;;10404:33;;;;;;;;;;;;;;;;;;;;;;10236:209;;:::o;12997:120::-;13073:10;;12942:6;13073:17;;12997:120::o;13188:108::-;13248:9;13278:10;;;13274:14;;;13278:10;13274:14;;;;;;13188:108;-1:-1:-1;;;13188:108:0:o

Swarm Source

bzzr://205e3bf821d3f2f8e4b52b8b72df297e84d2217641d033bca37e5652df623f43
Loading