ETH Price: $3,286.81 (+1.21%)
Gas: 1 Gwei

Token

Keep3r (KPR)
 

Overview

Max Total Supply

10,400 KPR

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
40.56880231194376363 KPR

Value
$0.00
0x125a32b12bc520a5191d23d3a58c5ca4c64033f9
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:
Keep3r

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-20
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.6;

// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol
// Subject to the MIT license.

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint a, uint b) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

        uint c = a * b;
        require(c / a == b, errorMessage);

        return c;
    }

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

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

        return c;
    }

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

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

interface Governance {
    function proposeJob(address job) external returns (uint);
}

interface WETH9 {
    function deposit() external payable;
    function balanceOf(address account) external view returns (uint);
    function approve(address spender, uint amount) external returns (bool);
}

interface Uniswap {
    function factory() 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);
}

interface UniswapPair {
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
    function balanceOf(address account) external view returns (uint);
    function approve(address spender, uint amount) external returns (bool);
    function totalSupply() external view returns (uint);
}

interface Factory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface Keep3rHelper {
    function getQuoteLimit(uint gasUsed) external view returns (uint);
}

contract Keep3r {
    using SafeMath for uint;
    
    /// @notice Keep3r Helper to set max prices for the ecosystem
    Keep3rHelper public KPRH;

    /// @notice WETH address to liquidity into UNI
    WETH9 public constant WETH = WETH9(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);

    /// @notice UniswapV2Router address
    Uniswap public constant UNI = Uniswap(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    /// @notice EIP-20 token name for this token
    string public constant name = "Keep3r";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "KPR";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 0; // Initial 0

    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    mapping (address => mapping (address => uint)) internal allowances;
    mapping (address => uint) internal balances;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint nonce,uint expiry)");

    /// @notice The EIP-712 typehash for the permit struct used by the contract
    bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint value,uint nonce,uint deadline)");


    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint votes;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "::delegateBySig: invalid nonce");
        require(now <= expiry, "::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber) public view returns (uint) {
        require(blockNumber < block.number, "::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint delegatorBalance = bonds[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint srcRepNew = srcRepOld.sub(amount, "::_moveVotes: vote amount underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint oldVotes, uint newVotes) internal {
      uint32 blockNumber = safe32(block.number, "::_writeCheckpoint: block number exceeds 32 bits");

      if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
          checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
      } else {
          checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
          numCheckpoints[delegatee] = nCheckpoints + 1;
      }

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint amount);

    /// @notice Submit a job
    event SubmitJob(address indexed job, address indexed provider, uint block, uint credit);

    /// @notice Remove credit for a job
    event RemoveJob(address indexed job, address indexed provider, uint block, uint credit);

    /// @notice Unbond credit for a job
    event UnbondJob(address indexed job, address indexed provider, uint block, uint credit);

    /// @notice Added a Job
    event JobAdded(address indexed job, uint block, address governance);

    /// @notice Removed a job
    event JobRemoved(address indexed job, uint block, address governance);

    /// @notice Worked a job
    event KeeperWorked(address indexed job, address indexed keeper, uint block);

    /// @notice Keeper bonding
    event KeeperBonding(address indexed keeper, uint block, uint active, uint bond);

    /// @notice Keeper bonded
    event KeeperBonded(address indexed keeper, uint block, uint activated, uint bond);

    /// @notice Keeper unbonding
    event KeeperUnbonding(address indexed keeper, uint block, uint deactive, uint bond);

    /// @notice Keeper unbound
    event KeeperUnbound(address indexed keeper, uint block, uint deactivated, uint bond);

    /// @notice Keeper slashed
    event KeeperSlashed(address indexed keeper, address indexed slasher, uint block, uint slash);

    /// @notice Keeper disputed
    event KeeperDispute(address indexed keeper, uint block);

    /// @notice Keeper resolved
    event KeeperResolved(address indexed keeper, uint block);

    /// @notice 1 day to bond to become a keeper
    uint constant public BOND = 3 days;
    /// @notice 14 days to unbond to remove funds from being a keeper
    uint constant public UNBOND = 14 days;
    /// @notice 7 days maximum downtime before being slashed
    uint constant public DOWNTIME = 7 days;

    /// @notice 5% of funds slashed for downtime
    uint constant public DOWNTIMESLASH = 500;
    uint constant public BASE = 10000;

    /// @notice tracks all current bondings (time)
    mapping(address => uint) public bondings;
    /// @notice tracks all current unbondings (time)
    mapping(address => uint) public unbondings;
    /// @notice allows for partial unbonding
    mapping(address => uint) public partialUnbonding;
    /// @notice tracks all current pending bonds (amount)
    mapping(address => uint) public pendingbonds;
    /// @notice tracks how much a keeper has bonded
    mapping(address => uint) public bonds;

    /// @notice total bonded (totalSupply for bonds)
    uint public totalBonded = 0;
    /// @notice tracks when a keeper was first registered
    mapping(address => uint) public firstSeen;

    /// @notice tracks if a keeper has a pending dispute
    mapping(address => bool) public disputes;

    /// @notice tracks last job performed for a keeper
    mapping(address => uint) public lastJob;
    /// @notice tracks the amount of job executions for a keeper
    mapping(address => uint) public work;
    /// @notice tracks the total job executions for a keeper
    mapping(address => uint) public workCompleted;
    /// @notice list of all jobs registered for the keeper system
    mapping(address => bool) public jobs;
    /// @notice the current credit available for a job
    mapping(address => uint) public credits;
    /// @notice the balances for the liquidity providers
    mapping(address => uint) public liquidityProviders;
    /// @notice tracks the relationship between a liquidityProvider and their job
    mapping(address => address) public liquidityProvided;
    /// @notice liquidity unbonding days
    mapping(address => uint) public liquidityUnbonding;
    /// @notice job proposal delay
    mapping(address => uint) public jobProposalDelay;
    /// @notice liquidity apply date
    mapping(address => uint) public liquidityApplied;

    /// @notice list of all current keepers
    mapping(address => bool) public keepers;
    /// @notice blacklist of keepers not allowed to participate
    mapping(address => bool) public blacklist;

    /// @notice traversable array of keepers to make external management easier
    address[] public keeperList;

    /// @notice governance address for the governance contract
    address public governance;
    address public pendingGovernance;

    /// @notice the liquidity token supplied by users paying for jobs
    UniswapPair public liquidity;
    
    uint internal gasUsed;
    
    constructor() public {
        // Set governance for this token
        governance = msg.sender;
        _mint(msg.sender, 10000e18);
    }

    function setup() public payable {
        require(address(liquidity) == address(0x0), "Keep3r::setup: keep3r already setup");
        WETH.deposit.value(msg.value)();
        WETH.approve(address(UNI), msg.value);
        _mint(address(this), 400e18);
        allowances[address(this)][address(UNI)] = balances[address(this)];

        // Setup liquidity pool with initial liquidity 1 ETH : 400 KPR
        UNI.addLiquidity(address(this), address(WETH), balances[address(this)], WETH.balanceOf(address(this)), 0, 0, msg.sender, now.add(1800));
        liquidity = UniswapPair(Factory(UNI.factory()).getPair(address(this), address(WETH)));
    }

    /**
     * @notice Allows liquidity providers to submit jobs
     * @param amount the amount of tokens to mint to treasury
     * @param job the job to assign credit to
     * @param amount the amount of liquidity tokens to use
     */
    function addLiquidityToJob(address job, uint amount) external {
        require(liquidityProvided[msg.sender]==address(0x0), "Keep3r::submitJob: liquidity already provided, please remove first");
        liquidity.transferFrom(msg.sender, address(this), amount);
        liquidityProviders[msg.sender] = amount;
        liquidityProvided[msg.sender] = job;
        liquidityApplied[msg.sender] = now.add(1 days);
        if (!jobs[job] && jobProposalDelay[job] < now) {
            Governance(governance).proposeJob(job);
            jobProposalDelay[job] = now.add(UNBOND);
        }
        emit SubmitJob(job, msg.sender, block.number, amount);
    }

    /**
     * @notice Applies the credit provided in addLiquidityToJob to the job
     * @param provider the liquidity provider
     */
    function applyCreditToJob(address provider) external {
        require(liquidityApplied[provider] != 0, "Keep3r::credit: submitJob first");
        require(liquidityApplied[provider] < now, "Keep3r::credit: still bonding");
        uint _liquidity = balances[address(liquidity)];
        uint _credit = _liquidity.mul(liquidityProviders[provider]).div(liquidity.totalSupply());
        credits[liquidityProvided[msg.sender]] = credits[liquidityProvided[msg.sender]].add(_credit);
    }

    /**
     * @notice Unbond liquidity for a pending keeper job
     */
    function unbondLiquidityFromJob() external {
        liquidityUnbonding[msg.sender] = now.add(UNBOND);

        emit UnbondJob(liquidityProvided[msg.sender], msg.sender, block.number, liquidityProviders[msg.sender]);
    }

    /**
     * @notice Allows liquidity providers to remove liquidity
     */
    function removeLiquidityFromJob() external {
        require(liquidityUnbonding[msg.sender] != 0, "Keep3r::removeJob: unbond first");
        require(liquidityUnbonding[msg.sender] < now, "Keep3r::removeJob: still unbonding");
        uint _provided = liquidityProviders[msg.sender];
        uint _liquidity = balances[address(liquidity)];
        uint _credit = _liquidity.mul(_provided).div(liquidity.totalSupply());
        address _job = liquidityProvided[msg.sender];
        if (_credit > credits[_job]) {
            credits[_job] = 0;
        } else {
            credits[_job].sub(_credit);
        }
        liquidity.transfer(msg.sender, _provided);
        liquidityProviders[msg.sender] = 0;
        liquidityProvided[msg.sender] = address(0x0);

        emit RemoveJob(_job, msg.sender, block.number, _provided);
    }

    /**
     * @notice Allows governance to mint new tokens to treasury
     * @param amount the amount of tokens to mint to treasury
     */
    function mint(uint amount) external {
        require(msg.sender == governance, "Keep3r::mint: governance only");
        _mint(governance, amount);
    }

    function burn(uint amount) external {
        _burn(msg.sender, amount);
    }

    function _mint(address dst, uint amount) internal {
        // mint the amount
        totalSupply = totalSupply.add(amount);
        // transfer the amount to the recipient
        balances[dst] = balances[dst].add(amount);
        emit Transfer(address(0), dst, amount);
    }

    function _burn(address dst, uint amount) internal {
        require(dst != address(0), "::_burn: burn from the zero address");
        balances[dst] = balances[dst].sub(amount, "::_burn: burn amount exceeds balance");
        totalSupply = totalSupply.sub(amount);
        emit Transfer(dst, address(0), amount);
    }

    /**
     * @notice Implemented by jobs to show that a keeper performend work
     * @param keeper address of the keeper that performed the work
     * @param amount the reward that should be allocated
     */
    function workReceipt(address keeper, uint amount) external {
        require(jobs[msg.sender], "Keep3r::workReceipt: only jobs can approve work");
        gasUsed = gasUsed.sub(gasleft());
        require(amount < KPRH.getQuoteLimit(gasUsed), "Keep3r::workReceipt: spending over max limit");
        lastJob[keeper] = now;
        credits[msg.sender] = credits[msg.sender].sub(amount, "Keep3r::workReceipt: insuffient funds to pay keeper");
        bonds[keeper] = bonds[keeper].add(amount);
        _moveDelegates(address(0), delegates[keeper], amount);
        workCompleted[keeper] = workCompleted[keeper].add(amount);
        emit KeeperWorked(msg.sender, keeper, block.number);
    }

    /**
     * @notice Allows governance to add new job systems
     * @param job address of the contract for which work should be performed
     */
    function addJob(address job) external {
        require(msg.sender == governance, "Keep3r::addJob: only governance can add jobs");
        jobs[job] = true;
        emit JobAdded(job, block.number, msg.sender);
    }

    /**
     * @notice Allows governance to remove a job from the systems
     * @param job address of the contract for which work should be performed
     */
    function removeJob(address job) external {
        require(msg.sender == governance, "Keep3r::removeJob: only governance can remove jobs");
        jobs[job] = false;
        emit JobRemoved(job, block.number, msg.sender);
    }

    /**
     * @notice Allows governance to change the Keep3rHelper for max spend
     * @param _kprh new helper address to set
     */
    function setKeep3rHelper(Keep3rHelper _kprh) external {
        require(msg.sender == governance, "Keep3r::setKeep3rHelper: only governance can set");
        KPRH = _kprh;
    }

    /**
     * @notice Allows governance to change governance (for future upgradability)
     * @param _governance new governance address to set
     */
    function setGovernance(address _governance) external {
        require(msg.sender == governance, "Keep3r::setGovernance: only governance can set");
        pendingGovernance = _governance;
    }
    
    /**
     * @notice Allows pendingGovernance to accept their role as governance (protection pattern)
     */
    function acceptGovernance() external {
        require(msg.sender == pendingGovernance, "Keep3r::acceptGovernance: only pendingGovernance can accept");
        governance = pendingGovernance;
    }

    /**
     * @notice confirms if the current keeper is registered, can be used for general (non critical) functions
     * @return true/false if the address is a keeper
     */
    function isKeeper(address keeper) external returns (bool) {
        gasUsed = gasleft();
        return keepers[keeper];
    }

    /**
     * @notice confirms if the current keeper is registered and has a minimum bond, should be used for protected functions
     * @return true/false if the address is a keeper and has more than the bond
     */
    function isMinKeeper(address keeper, uint minBond, uint completed, uint age) external returns (bool) {
        gasUsed = gasleft();
        return keepers[keeper]
                && bonds[keeper] >= minBond
                && workCompleted[keeper] > completed
                && now.sub(firstSeen[keeper]) > age;
    }

    /**
     * @notice begin the bonding process for a new keeper
     */
    function bond(uint amount) external {
        require(pendingbonds[msg.sender] == 0, "Keep3r::bond: current pending bond");
        require(blacklist[msg.sender], "Keep3r::bond: keeper is blacklisted");
        bondings[msg.sender] = now.add(BOND);
        pendingbonds[msg.sender] = amount;
        _transferTokens(msg.sender, address(this), amount);
        emit KeeperBonding(msg.sender, block.number, bondings[msg.sender], amount);
    }

    function getKeepers() external view returns (address[] memory) {
        return keeperList;
    }

    /**
     * @notice allows a keeper to activate/register themselves after bonding
     */
    function activate() external {
        require(bondings[msg.sender] != 0, "Keep3r::activate: bond first");
        require(bondings[msg.sender] < now, "Keep3r::activate: still bonding");
        if (!keepers[msg.sender]) {
          firstSeen[msg.sender] = now;
        }
        keepers[msg.sender] = true;
        totalBonded = totalBonded.add(pendingbonds[msg.sender]);
        bonds[msg.sender] = bonds[msg.sender].add(pendingbonds[msg.sender]);
        pendingbonds[msg.sender] = 0;
        if (lastJob[msg.sender] == 0) {
            lastJob[msg.sender] = now;
            keeperList.push(msg.sender);
        }
        emit KeeperBonded(msg.sender, block.number, block.timestamp, bonds[msg.sender]);
    }
    
    /**
     * @notice allows a keeper to deactivate (sub system to avoid down slashing)
     */
    function deactivate() external {
        keepers[msg.sender] = false;
    }

    /**
     * @notice begin the unbonding process to stop being a keeper
     * @param amount allows for partial unbonding
     */
    function unbond(uint amount) external {
        unbondings[msg.sender] = now.add(UNBOND);
        bonds[msg.sender] = bonds[msg.sender].sub(amount);
        partialUnbonding[msg.sender] = partialUnbonding[msg.sender].add(amount);
        totalBonded = totalBonded.sub(amount);
        _moveDelegates(delegates[msg.sender], address(0), amount);
        emit KeeperUnbonding(msg.sender, block.number, unbondings[msg.sender], amount);
    }

    /**
     * @notice withdraw funds after unbonding has finished
     */
    function withdraw() external {
        require(unbondings[msg.sender] != 0, "Keep3r::withdraw: unbond first");
        require(unbondings[msg.sender] < now, "Keep3r::withdraw: still unbonding");
        require(!disputes[msg.sender], "Keep3r::withdraw: pending disputes");

        _transferTokens(address(this), msg.sender, partialUnbonding[msg.sender]);
        emit KeeperUnbound(msg.sender, block.number, block.timestamp, partialUnbonding[msg.sender]);
        partialUnbonding[msg.sender] = 0;
    }

    /**
     * @notice slash a keeper for downtime
     * @param keeper the address being slashed
     */
    function down(address keeper) external {
        require(keepers[keeper], "Keep3r::down: keeper not registered");
        require(lastJob[keeper].add(DOWNTIME) < now, "Keep3r::down: keeper safe");
        uint _slash = bonds[keeper].mul(DOWNTIMESLASH).div(BASE);
        bonds[keeper] = bonds[keeper].sub(_slash);
        _moveDelegates(delegates[msg.sender], address(0), _slash);
        _transferTokens(address(this), msg.sender, _slash);
        lastJob[keeper] = now;
        emit KeeperSlashed(keeper, msg.sender, block.number, _slash);
    }

    /**
     * @notice allows governance to create a dispute for a given keeper
     * @param keeper the address in dispute
     */
    function dispute(address keeper) external returns (uint) {
        require(msg.sender == governance, "Keep3r::dispute: only governance can dispute");
        disputes[keeper] = true;
        emit KeeperDispute(keeper, block.number);
    }

    /**
     * @notice allows governance to slash a keeper based on a dispute
     * @param keeper the address being slashed
     * @param amount the amount being slashed
     */
    function slash(address keeper, uint amount) public {
        require(msg.sender == governance, "Keep3r::slash: only governance can resolve");
        _transferTokens(address(this), governance, amount);
        _moveDelegates(delegates[msg.sender], address(0), amount);
        bonds[keeper] = bonds[keeper].sub(amount);
        disputes[keeper] = false;
        emit KeeperSlashed(keeper, msg.sender, block.number, amount);
    }
    
    
    /**
     * @notice blacklists a keeper from participating in the network
     * @param keeper the address being slashed
     */
    function revoke(address keeper) external {
        require(msg.sender == governance, "Keep3r::slash: only governance can resolve");
        keepers[keeper] = false;
        blacklist[keeper] = true;
        slash(keeper, bonds[keeper]);
    }

    /**
     * @notice allows governance to resolve a dispute on a keeper
     * @param keeper the address cleared
     */
    function resolve(address keeper) external {
        require(msg.sender == governance, "Keep3r::resolve: only governance can resolve");
        disputes[keeper] = false;
        emit KeeperResolved(keeper, block.number);
    }

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external view returns (uint) {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint amount) public returns (bool) {
        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Triggers an approval from owner to spends
     * @param owner The address to approve from
     * @param spender The address to be approved
     * @param amount The number of tokens that are approved (2^256-1 means infinite)
     * @param deadline The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function permit(address owner, address spender, uint amount, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, amount, nonces[owner]++, deadline));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "::permit: invalid signature");
        require(signatory == owner, "::permit: unauthorized");
        require(now <= deadline, "::permit: signature expired");

        allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint amount) public returns (bool) {
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint amount) external returns (bool) {
        address spender = msg.sender;
        uint spenderAllowance = allowances[src][spender];

        if (spender != src && spenderAllowance != uint(-1)) {
            uint newAllowance = spenderAllowance.sub(amount, "::transferFrom: transfer amount exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    function _transferTokens(address src, address dst, uint amount) internal {
        require(src != address(0), "::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "::_transferTokens: cannot transfer to the zero address");

        balances[src] = balances[src].sub(amount, "::_transferTokens: transfer amount exceeds balance");
        balances[dst] = balances[dst].add(amount, "::_transferTokens: transfer amount overflows");
        emit Transfer(src, dst, amount);
    }

    function getChainId() internal pure returns (uint) {
        uint chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"address","name":"governance","type":"address"}],"name":"JobAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"address","name":"governance","type":"address"}],"name":"JobRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"activated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperBonded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"active","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperBonding","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"KeeperDispute","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"KeeperResolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":true,"internalType":"address","name":"slasher","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"slash","type":"uint256"}],"name":"KeeperSlashed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"deactive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperUnbonding","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"deactivated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperUnbound","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"KeeperWorked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"RemoveJob","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"SubmitJob","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"UnbondJob","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOWNTIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOWNTIMESLASH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KPRH","outputs":[{"internalType":"contract Keep3rHelper","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNBOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNI","outputs":[{"internalType":"contract Uniswap","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"contract WETH9","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"addJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addLiquidityToJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"}],"name":"applyCreditToJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bondings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bonds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"credits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"dispute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"disputes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"down","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"firstSeen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getKeepers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"isKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"minBond","type":"uint256"},{"internalType":"uint256","name":"completed","type":"uint256"},{"internalType":"uint256","name":"age","type":"uint256"}],"name":"isMinKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"jobProposalDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"jobs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"keeperList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"keepers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastJob","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidity","outputs":[{"internalType":"contract UniswapPair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityApplied","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityProvided","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityProviders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityUnbonding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"partialUnbonding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGovernance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pendingbonds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"removeJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLiquidityFromJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"resolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Keep3rHelper","name":"_kprh","type":"address"}],"name":"setKeep3rHelper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setup","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"slash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBonded","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":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unbond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unbondLiquidityFromJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"unbondings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"work","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"workCompleted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"workReceipt","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006001556000600d553480156200001b57600080fd5b50601d80546001600160a01b03191633908117909155620000509069021e19e0c9bab24000006001600160e01b036200005616565b62000161565b6200007281600154620000ff60201b620040751790919060201c565b6001556001600160a01b038216600090815260066020908152604090912054620000a791839062004075620000ff821b17901c565b6001600160a01b03831660008181526006602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200015a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b614d3180620001716000396000f3fe6080604052600436106104685760003560e01c806375d276291161024a578063ba0bba4011610139578063ec342ad0116100b6578063f39c38a01161007a578063f39c38a0146111e3578063f75f9f7b146111f8578063f9f92be41461122b578063fe10d7741461125e578063fe5ff4681461129157610468565b8063ec342ad0146110df578063ec4515dd146110f4578063ef43e2811461111e578063f1127ed814611151578063f1896b54146111b057610468565b8063d505accf116100fd578063d505accf14610fcb578063dbd9426714611029578063dd62ed3e1461105c578063e326ac4314611097578063e7a324dc146110ca57610468565b8063ba0bba4014610ef4578063c1c1d21814610efc578063c3cda52014610f11578063c5198abc14610f65578063d454019d14610f9857610468565b8063a0712d68116101c7578063aec758c01161018b578063aec758c014610dbd578063b0103b1a14610df6578063b105e39f14610e29578063b24ae47714610e8e578063b4b5ea5714610ec157610468565b8063a0712d6814610cdf578063a9059cbb14610d09578063ab033ea914610d42578063abbb247f14610d75578063ad5c464814610da857610468565b806393f6c2ad1161020e57806393f6c2ad14610c43578063950a2ca214610c7657806395d89b4114610c8b578063985348bf14610ca05780639940686e14610cb557610468565b806375d2762914610b3e5780637724ff6814610b71578063782d6fe114610ba45780637ecebe0014610bdd5780638071198914610c1057610468565b80633d1f0bb9116103665780635aa6e675116102e35780636ba42aaa116102a75780636ba42aaa14610a265780636fcfff4514610a5957806370a0823114610aa557806372da828a14610ad857806374a8f10314610b0b57610468565b80635aa6e675146109815780635bff0cd1146109965780635c19a95c146109ab578063603b4d14146109de57806365119f72146109f357610468565b806351b42b001161032a57806351b42b00146108dc578063541bcb76146108f157806355ea6c4714610906578063587cde1e1461093957806359e9e2551461096c57610468565b80633d1f0bb9146107fe57806342966c681461083157806344d96e951461085b5780634a5c8de8146108705780634b3fde21146108a357610468565b806320606b70116103f457806330adf81f116103b857806330adf81f14610743578063313ce5671461075857806336df7ea5146107835780633bbd64bc146107b65780633ccfd60b146107e957610468565b806320606b7014610679578063238efcbc1461068e57806323b872dd146106a357806327de9e32146106e6578063284cc0a91461071057610468565b80630f15f4c01161043b5780630f15f4c0146105b057806318160ddd146105c55780631a686502146105ec5780631b44555e146106015780631ff5f3da1461063457610468565b806302fb4d851461046d57806306fdde03146104a8578063095ea7b31461053257806309aff02b1461057f575b600080fd5b34801561047957600080fd5b506104a66004803603604081101561049057600080fd5b506001600160a01b0381351690602001356112c4565b005b3480156104b457600080fd5b506104bd6113de565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104f75781810151838201526020016104df565b50505050905090810190601f1680156105245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561053e57600080fd5b5061056b6004803603604081101561055557600080fd5b506001600160a01b038135169060200135611400565b604080519115158252519081900360200190f35b34801561058b57600080fd5b50610594611467565b604080516001600160a01b039092168252519081900360200190f35b3480156105bc57600080fd5b506104a6611476565b3480156105d157600080fd5b506105da611698565b60408051918252519081900360200190f35b3480156105f857600080fd5b5061059461169e565b34801561060d57600080fd5b506105da6004803603602081101561062457600080fd5b50356001600160a01b03166116ad565b34801561064057600080fd5b5061056b6004803603608081101561065757600080fd5b506001600160a01b0381351690602081013590604081013590606001356116bf565b34801561068557600080fd5b506105da611768565b34801561069a57600080fd5b506104a6611784565b3480156106af57600080fd5b5061056b600480360360608110156106c657600080fd5b506001600160a01b038135811691602081013590911690604001356117f1565b3480156106f257600080fd5b506104a66004803603602081101561070957600080fd5b50356118d9565b34801561071c57600080fd5b506104a66004803603602081101561073357600080fd5b50356001600160a01b03166119e2565b34801561074f57600080fd5b506105da611bc2565b34801561076457600080fd5b5061076d611bdd565b6040805160ff9092168252519081900360200190f35b34801561078f57600080fd5b506105da600480360360208110156107a657600080fd5b50356001600160a01b0316611be2565b3480156107c257600080fd5b5061056b600480360360208110156107d957600080fd5b50356001600160a01b0316611bf4565b3480156107f557600080fd5b506104a6611c09565b34801561080a57600080fd5b5061056b6004803603602081101561082157600080fd5b50356001600160a01b0316611d84565b34801561083d57600080fd5b506104a66004803603602081101561085457600080fd5b5035611d99565b34801561086757600080fd5b506105da611da6565b34801561087c57600080fd5b506105da6004803603602081101561089357600080fd5b50356001600160a01b0316611dac565b3480156108af57600080fd5b506104a6600480360360408110156108c657600080fd5b506001600160a01b038135169060200135611dbe565b3480156108e857600080fd5b506104a6612027565b3480156108fd57600080fd5b50610594612040565b34801561091257600080fd5b506104a66004803603602081101561092957600080fd5b50356001600160a01b0316612058565b34801561094557600080fd5b506105946004803603602081101561095c57600080fd5b50356001600160a01b03166120f9565b34801561097857600080fd5b506104a6612114565b34801561098d57600080fd5b506105946123d0565b3480156109a257600080fd5b506104a66123df565b3480156109b757600080fd5b506104a6600480360360208110156109ce57600080fd5b50356001600160a01b031661245f565b3480156109ea57600080fd5b506105da612469565b3480156109ff57600080fd5b5061059460048036036020811015610a1657600080fd5b50356001600160a01b0316612470565b348015610a3257600080fd5b5061056b60048036036020811015610a4957600080fd5b50356001600160a01b031661248b565b348015610a6557600080fd5b50610a8c60048036036020811015610a7c57600080fd5b50356001600160a01b03166124b5565b6040805163ffffffff9092168252519081900360200190f35b348015610ab157600080fd5b506105da60048036036020811015610ac857600080fd5b50356001600160a01b03166124cd565b348015610ae457600080fd5b506104a660048036036020811015610afb57600080fd5b50356001600160a01b03166124e8565b348015610b1757600080fd5b506104a660048036036020811015610b2e57600080fd5b50356001600160a01b0316612553565b348015610b4a57600080fd5b506104a660048036036020811015610b6157600080fd5b50356001600160a01b03166125e6565b348015610b7d57600080fd5b506105da60048036036020811015610b9457600080fd5b50356001600160a01b03166127cb565b348015610bb057600080fd5b506105da60048036036040811015610bc757600080fd5b506001600160a01b0381351690602001356127dd565b348015610be957600080fd5b506105da60048036036020811015610c0057600080fd5b50356001600160a01b03166129e5565b348015610c1c57600080fd5b506104a660048036036020811015610c3357600080fd5b50356001600160a01b03166129f7565b348015610c4f57600080fd5b506105da60048036036020811015610c6657600080fd5b50356001600160a01b0316612aa1565b348015610c8257600080fd5b506105da612ab3565b348015610c9757600080fd5b506104bd612ab9565b348015610cac57600080fd5b506105da612ad8565b348015610cc157600080fd5b506104a660048036036020811015610cd857600080fd5b5035612adf565b348015610ceb57600080fd5b506104a660048036036020811015610d0257600080fd5b5035612c0a565b348015610d1557600080fd5b5061056b60048036036040811015610d2c57600080fd5b506001600160a01b038135169060200135612c7f565b348015610d4e57600080fd5b506104a660048036036020811015610d6557600080fd5b50356001600160a01b0316612c95565b348015610d8157600080fd5b506105da60048036036020811015610d9857600080fd5b50356001600160a01b0316612d00565b348015610db457600080fd5b50610594612d12565b348015610dc957600080fd5b506104a660048036036040811015610de057600080fd5b506001600160a01b038135169060200135612d2a565b348015610e0257600080fd5b5061056b60048036036020811015610e1957600080fd5b50356001600160a01b0316612f90565b348015610e3557600080fd5b50610e3e612fa5565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610e7a578181015183820152602001610e62565b505050509050019250505060405180910390f35b348015610e9a57600080fd5b506105da60048036036020811015610eb157600080fd5b50356001600160a01b0316613007565b348015610ecd57600080fd5b506105da60048036036020811015610ee457600080fd5b50356001600160a01b0316613019565b6104a661307d565b348015610f0857600080fd5b506105da6134a7565b348015610f1d57600080fd5b506104a6600480360360c0811015610f3457600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356134ae565b348015610f7157600080fd5b506104a660048036036020811015610f8857600080fd5b50356001600160a01b031661376a565b348015610fa457600080fd5b506105da60048036036020811015610fbb57600080fd5b50356001600160a01b0316613817565b348015610fd757600080fd5b506104a6600480360360e0811015610fee57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135613829565b34801561103557600080fd5b506105da6004803603602081101561104c57600080fd5b50356001600160a01b0316613b79565b34801561106857600080fd5b506105da6004803603604081101561107f57600080fd5b506001600160a01b0381358116916020013516613b8b565b3480156110a357600080fd5b506105da600480360360208110156110ba57600080fd5b50356001600160a01b0316613bb6565b3480156110d657600080fd5b506105da613bc8565b3480156110eb57600080fd5b506105da613be3565b34801561110057600080fd5b506105946004803603602081101561111757600080fd5b5035613be9565b34801561112a57600080fd5b506105da6004803603602081101561114157600080fd5b50356001600160a01b0316613c10565b34801561115d57600080fd5b506111906004803603604081101561117457600080fd5b5080356001600160a01b0316906020013563ffffffff16613c22565b6040805163ffffffff909316835260208301919091528051918290030190f35b3480156111bc57600080fd5b506105da600480360360208110156111d357600080fd5b50356001600160a01b0316613c4f565b3480156111ef57600080fd5b50610594613c61565b34801561120457600080fd5b506105da6004803603602081101561121b57600080fd5b50356001600160a01b0316613c70565b34801561123757600080fd5b5061056b6004803603602081101561124e57600080fd5b50356001600160a01b0316613d19565b34801561126a57600080fd5b506105da6004803603602081101561128157600080fd5b50356001600160a01b0316613d2e565b34801561129d57600080fd5b506105da600480360360208110156112b457600080fd5b50356001600160a01b0316613d40565b601d546001600160a01b0316331461130d5760405162461bcd60e51b815260040180806020018281038252602a815260200180614c3d602a913960400191505060405180910390fd5b601d546113259030906001600160a01b031683613d52565b3360009081526002602052604081205461134b916001600160a01b039091169083613ee7565b6001600160a01b0382166000908152600c6020526040902054611374908263ffffffff61405016565b6001600160a01b0383166000818152600c6020908152604080832094909455600f815290839020805460ff191690558251438152908101849052825133937ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b6040518060400160405280600681526020016525b2b2b819b960d11b81525081565b3360008181526005602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6000546001600160a01b031681565b336000908152600860205260409020546114d7576040805162461bcd60e51b815260206004820152601c60248201527f4b65657033723a3a61637469766174653a20626f6e6420666972737400000000604482015290519081900360640190fd5b33600090815260086020526040902054421161153a576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a61637469766174653a207374696c6c20626f6e64696e6700604482015290519081900360640190fd5b336000908152601a602052604090205460ff1661156457336000908152600e602052604090204290555b336000908152601a60209081526040808320805460ff19166001179055600b909152902054600d5461159b9163ffffffff61407516565b600d55336000908152600b6020908152604080832054600c909252909120546115c99163ffffffff61407516565b336000908152600c6020908152604080832093909355600b815282822082905560109052205461164557336000818152601060205260408120429055601c805460018101825591527f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a2110180546001600160a01b03191690911790555b336000818152600c602090815260409182902054825143815242928101929092528183015290517f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad059181900360600190a2565b60015481565b601f546001600160a01b031681565b60126020526000908152604090205481565b60005a60209081556001600160a01b0386166000908152601a909152604090205460ff16801561170757506001600160a01b0385166000908152600c60205260409020548411155b801561172a57506001600160a01b03851660009081526012602052604090205483105b801561175f57506001600160a01b0385166000908152600e6020526040902054829061175d90429063ffffffff61405016565b115b95945050505050565b60405180806149dd604091396040019050604051809103902081565b601e546001600160a01b031633146117cd5760405162461bcd60e51b815260040180806020018281038252603b815260200180614759603b913960400191505060405180910390fd5b601e54601d80546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b03831660008181526005602090815260408083203380855292528220549192909190821480159061182b57506000198114155b156118c257600061185d856040518060600160405280603981526020016148186039913984919063ffffffff6140cf16565b6001600160a01b0380891660008181526005602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b6118cd868686613d52565b50600195945050505050565b6118ec426212750063ffffffff61407516565b33600090815260096020908152604080832093909355600c90522054611918908263ffffffff61405016565b336000908152600c6020908152604080832093909355600a90522054611944908263ffffffff61407516565b336000908152600a6020526040902055600d54611967908263ffffffff61405016565b600d5533600090815260026020526040812054611990916001600160a01b039091169083613ee7565b336000818152600960209081526040918290205482514381529182015280820184905290517f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e9181900360600190a250565b6001600160a01b0381166000908152601a602052604090205460ff16611a395760405162461bcd60e51b81526004018080602001828103825260238152602001806147146023913960400191505060405180910390fd5b6001600160a01b0381166000908152601060205260409020544290611a679062093a8063ffffffff61407516565b10611ab9576040805162461bcd60e51b815260206004820152601960248201527f4b65657033723a3a646f776e3a206b6565706572207361666500000000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600c6020526040812054611af89061271090611aec906101f463ffffffff61416616565b9063ffffffff6141bf16565b6001600160a01b0383166000908152600c6020526040902054909150611b24908263ffffffff61405016565b6001600160a01b038084166000908152600c60209081526040808320949094553382526002905291822054611b5c9291169083613ee7565b611b67303383613d52565b6001600160a01b038216600081815260106020908152604091829020429055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b6040518060496148c882396049019050604051809103902081565b601281565b60116020526000908152604090205481565b601a6020526000908152604090205460ff1681565b33600090815260096020526040902054611c6a576040805162461bcd60e51b815260206004820152601e60248201527f4b65657033723a3a77697468647261773a20756e626f6e642066697273740000604482015290519081900360640190fd5b336000908152600960205260409020544211611cb75760405162461bcd60e51b8152600401808060200182810382526021815260200180614cb86021913960400191505060405180910390fd5b336000908152600f602052604090205460ff1615611d065760405162461bcd60e51b8152600401808060200182810382526022815260200180614b3c6022913960400191505060405180910390fd5b336000818152600a6020526040902054611d21913091613d52565b336000818152600a602090815260409182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a2336000908152600a6020526040812055565b60136020526000908152604090205460ff1681565b611da33382614201565b50565b600d5481565b600b6020526000908152604090205481565b3360009081526013602052604090205460ff16611e0c5760405162461bcd60e51b815260040180806020018281038252602f815260200180614c89602f913960400191505060405180910390fd5b611e1f5a6020549063ffffffff61405016565b60208181556000546040805163525ea63160e01b81526004810194909452516001600160a01b039091169263525ea631926024808301939192829003018186803b158015611e6c57600080fd5b505afa158015611e80573d6000803e3d6000fd5b505050506040513d6020811015611e9657600080fd5b50518110611ed55760405162461bcd60e51b815260040180806020018281038252602c8152602001806146e8602c913960400191505060405180910390fd5b4260106000846001600160a01b03166001600160a01b0316815260200190815260200160002081905550611f3981604051806060016040528060338152602001614c0a6033913933600090815260146020526040902054919063ffffffff6140cf16565b336000908152601460209081526040808320939093556001600160a01b0385168252600c90522054611f71908263ffffffff61407516565b6001600160a01b038084166000908152600c60209081526040808320949094556002905291822054611fa592911683613ee7565b6001600160a01b038216600090815260126020526040902054611fce908263ffffffff61407516565b6001600160a01b0383166000818152601260209081526040918290209390935580514381529051919233927f898d34a85997d8833f2692e67bf5575e817ed9469c085f7e2f43a65c540d47269281900390910190a35050565b336000908152601a60205260409020805460ff19169055565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b601d546001600160a01b031633146120a15760405162461bcd60e51b815260040180806020018281038252602c815260200180614a94602c913960400191505060405180910390fd5b6001600160a01b0381166000818152600f6020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6002602052600090815260409020546001600160a01b031681565b33600090815260176020526040902054612175576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a72656d6f76654a6f623a20756e626f6e6420666972737400604482015290519081900360640190fd5b3360009081526017602052604090205442116121c25760405162461bcd60e51b81526004018080602001828103825260228152602001806147376022913960400191505060405180910390fd5b33600090815260156020908152604080832054601f546001600160a01b0316808552600684528285205483516318160ddd60e01b81529351929590949093612263936318160ddd92600480840193919291829003018186803b15801561222757600080fd5b505afa15801561223b573d6000803e3d6000fd5b505050506040513d602081101561225157600080fd5b5051611aec848663ffffffff61416616565b336000908152601660209081526040808320546001600160a01b0316808452601490925290912054919250908211156122b4576001600160a01b0381166000908152601460205260408120556122df565b6001600160a01b0381166000908152601460205260409020546122dd908363ffffffff61405016565b505b601f546040805163a9059cbb60e01b81523360048201526024810187905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561233357600080fd5b505af1158015612347573d6000803e3d6000fd5b505050506040513d602081101561235d57600080fd5b5050336000818152601560209081526040808320839055601682529182902080546001600160a01b0319169055815143815290810187905281516001600160a01b038516927f0a23f55887f0577cc8e106ed9238b0679e1dab42f858d1a07b84216d7d2d38d5928290030190a350505050565b601d546001600160a01b031681565b6123f2426212750063ffffffff61407516565b336000818152601760209081526040808320949094556016815283822054601582529184902054845143815291820152835192936001600160a01b03909216927f91d917fcb74a8bc2e2f731fd59f937ef65391bbe469998d8c144fe6298fd495f929181900390910190a3565b611da333826142fd565b6212750081565b6016602052600090815260409020546001600160a01b031681565b60005a60209081556001600160a01b03929092166000908152601a90925250604090205460ff1690565b60046020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526006602052604090205490565b601d546001600160a01b031633146125315760405162461bcd60e51b8152600401808060200182810382526030815260200180614b5e6030913960400191505060405180910390fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b601d546001600160a01b0316331461259c5760405162461bcd60e51b815260040180806020018281038252602a815260200180614c3d602a913960400191505060405180910390fd5b6001600160a01b0381166000908152601a60209081526040808320805460ff19908116909155601b835281842080549091166001179055600c909152902054611da39082906112c4565b6001600160a01b038116600090815260196020526040902054612650576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a6372656469743a207375626d69744a6f6220666972737400604482015290519081900360640190fd5b6001600160a01b03811660009081526019602052604090205442116126bc576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6372656469743a207374696c6c20626f6e64696e67000000604482015290519081900360640190fd5b601f546001600160a01b031660008181526006602090815260408083205481516318160ddd60e01b8152915190946127679390926318160ddd9260048083019392829003018186803b15801561271157600080fd5b505afa158015612725573d6000803e3d6000fd5b505050506040513d602081101561273b57600080fd5b50516001600160a01b038516600090815260156020526040902054611aec90859063ffffffff61416616565b336000908152601660209081526040808320546001600160a01b0316835260149091529020549091506127a0908263ffffffff61407516565b336000908152601660209081526040808320546001600160a01b031683526014909152902055505050565b60186020526000908152604090205481565b600043821061281d5760405162461bcd60e51b8152600401808060200182810382526023815260200180614b196023913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205463ffffffff168061284b576000915050611461565b6001600160a01b038416600090815260036020908152604080832063ffffffff6000198601811685529252909120541683106128ba576001600160a01b03841660009081526003602090815260408083206000199490940163ffffffff16835292905220600101549050611461565b6001600160a01b038416600090815260036020908152604080832083805290915290205463ffffffff168310156128f5576000915050611461565b600060001982015b8163ffffffff168163ffffffff1611156129ae57600282820363ffffffff1604810361292761469e565b506001600160a01b038716600090815260036020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415612989576020015194506114619350505050565b805163ffffffff168711156129a0578193506129a7565b6001820392505b50506128fd565b506001600160a01b038516600090815260036020908152604080832063ffffffff9094168352929052206001015491505092915050565b60076020526000908152604090205481565b601d546001600160a01b03163314612a405760405162461bcd60e51b8152600401808060200182810382526032815260200180614a626032913960400191505060405180910390fd5b6001600160a01b038116600081815260136020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b60176020526000908152604090205481565b6101f481565b6040518060400160405280600381526020016225a82960e91b81525081565b62093a8081565b336000908152600b602052604090205415612b2b5760405162461bcd60e51b8152600401808060200182810382526022815260200180614a406022913960400191505060405180910390fd5b336000908152601b602052604090205460ff16612b795760405162461bcd60e51b8152600401808060200182810382526023815260200180614a1d6023913960400191505060405180910390fd5b612b8c426203f48063ffffffff61407516565b33600081815260086020908152604080832094909455600b905291909120829055612bb8903083613d52565b336000818152600860209081526040918290205482514381529182015280820184905290517fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae49181900360600190a250565b601d546001600160a01b03163314612c69576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6d696e743a20676f7665726e616e6365206f6e6c79000000604482015290519081900360640190fd5b601d54611da3906001600160a01b03168261437d565b6000612c8c338484613d52565b50600192915050565b601d546001600160a01b03163314612cde5760405162461bcd60e51b815260040180806020018281038252602e815260200180614b8e602e913960400191505060405180910390fd5b601e80546001600160a01b0319166001600160a01b0392909216919091179055565b60096020526000908152604090205481565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b336000908152601660205260409020546001600160a01b031615612d7f5760405162461bcd60e51b815260040180806020018281038252604281526020018061499b6042913960600191505060405180910390fd5b601f54604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015612dd957600080fd5b505af1158015612ded573d6000803e3d6000fd5b505050506040513d6020811015612e0357600080fd5b50503360009081526015602090815260408083208490556016909152902080546001600160a01b0319166001600160a01b038416179055612e474262015180614075565b336000908152601960209081526040808320939093556001600160a01b038516825260139052205460ff16158015612e9657506001600160a01b03821660009081526018602052604090205442115b15612f4457601d546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb9160248083019260209291908290030181600087803b158015612eea57600080fd5b505af1158015612efe573d6000803e3d6000fd5b505050506040513d6020811015612f1457600080fd5b50612f2a9050426212750063ffffffff61407516565b6001600160a01b0383166000908152601860205260409020555b6040805143815260208101839052815133926001600160a01b038616927fae74eca2068752f1164f9ef320d0b01c5a658912e166358797d892e9997039ba929081900390910190a35050565b600f6020526000908152604090205460ff1681565b6060601c805480602002602001604051908101604052809291908181526020018280548015612ffd57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612fdf575b5050505050905090565b60196020526000908152604090205481565b6001600160a01b03811660009081526004602052604081205463ffffffff1680613044576000613076565b6001600160a01b038316600090815260036020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b601f546001600160a01b0316156130c55760405162461bcd60e51b8152600401808060200182810382526023815260200180614cd96023913960400191505060405180910390fd5b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561311457600080fd5b505af1158015613128573d6000803e3d6000fd5b50506040805163095ea7b360e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d6004820152346024820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2945063095ea7b39350604480830193506020928290030181600087803b15801561319857600080fd5b505af11580156131ac573d6000803e3d6000fd5b505050506040513d60208110156131c257600080fd5b506131d89050306815af1d78b58c40000061437d565b3060008181526006602081815260408084205460058352818520737a250d5630b4cf539739df2c5dacb4c659f2488d8087529084528286208290559486905292825280516370a0823160e01b8152600481018690529051939463e8e3370094909373c02aaa39b223fe8d0a0e5c4f27ead9083c756cc293909284926370a0823192602480840193919291829003018186803b15801561327657600080fd5b505afa15801561328a573d6000803e3d6000fd5b505050506040513d60208110156132a057600080fd5b5051600080336132b84261070863ffffffff61407516565b6040518963ffffffff1660e01b815260040180896001600160a01b03166001600160a01b03168152602001886001600160a01b03166001600160a01b03168152602001878152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200198505050505050505050606060405180830381600087803b15801561335557600080fd5b505af1158015613369573d6000803e3d6000fd5b505050506040513d606081101561337f57600080fd5b50506040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a0155916004808301926020929190829003018186803b1580156133cc57600080fd5b505afa1580156133e0573d6000803e3d6000fd5b505050506040513d60208110156133f657600080fd5b50516040805163e6a4390560e01b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2602482015290516001600160a01b039092169163e6a4390591604480820192602092909190829003018186803b15801561345a57600080fd5b505afa15801561346e573d6000803e3d6000fd5b505050506040513d602081101561348457600080fd5b5051601f80546001600160a01b0319166001600160a01b03909216919091179055565b6203f48081565b600060405180806149dd60409139604080519182900381018220828201909152600682526525b2b2b819b960d11b60209092019190915290507fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf6613510614414565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b03168152602001945050505050604051602081830303815290604052805190602001209050600060405180806147e460349139604080519182900360340182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa15801561364e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166136a05760405162461bcd60e51b8152600401808060200182810382526022815260200180614c676022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090208054600181019091558914613714576040805162461bcd60e51b815260206004820152601e60248201527f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e63650000604482015290519081900360640190fd5b874211156137535760405162461bcd60e51b8152600401808060200182810382526022815260200180614bbc6022913960400191505060405180910390fd5b61375d818b6142fd565b505050505b505050505050565b601d546001600160a01b031633146137b35760405162461bcd60e51b815260040180806020018281038252602c815260200180614bde602c913960400191505060405180910390fd5b6001600160a01b038116600081815260136020908152604091829020805460ff191660011790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b60106020526000908152604090205481565b600060405180806149dd60409139604080519182900381018220828201909152600682526525b2b2b819b960d11b60209092019190915290507fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf661388b614414565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b03168152602001945050505050604051602081830303815290604052805190602001209050600060405180806148c860499139604080519182900360490182206001600160a01b03808e16600081815260076020908152858220805460018082019092558289019690965287870193909352928f166060870152608086018e905260a086019390935260c08086018d90528451808703909101815260e08601855280519083012061190160f01b610100870152610102860189905261012280870182905285518088039091018152610142870180875281519185019190912090859052610162870180875281905260ff8d166101828801526101a287018c90526101c287018b90529451909750939550919391926101e280840193601f198301929081900390910190855afa1580156139f3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613a5b576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a20696e76616c6964207369676e61747572650000000000604482015290519081900360640190fd5b8a6001600160a01b0316816001600160a01b031614613aba576040805162461bcd60e51b81526020600482015260166024820152750e8e9c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960521b604482015290519081900360640190fd5b87421115613b0f576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a207369676e617475726520657870697265640000000000604482015290519081900360640190fd5b6001600160a01b03808c166000818152600560209081526040808320948f16808452948252918290208d905581518d815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35050505050505050505050565b60156020526000908152604090205481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b600e6020526000908152604090205481565b6040518060346147e482396034019050604051809103902081565b61271081565b601c8181548110613bf657fe5b6000918252602090912001546001600160a01b0316905081565b600a6020526000908152604090205481565b60036020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60086020526000908152604090205481565b601e546001600160a01b031681565b601d546000906001600160a01b03163314613cbc5760405162461bcd60e51b815260040180806020018281038252602c815260200180614911602c913960400191505060405180910390fd5b6001600160a01b0382166000818152600f6020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a2919050565b601b6020526000908152604090205460ff1681565b600c6020526000908152604090205481565b60146020526000908152604090205481565b6001600160a01b038316613d975760405162461bcd60e51b8152600401808060200182810382526038815260200180614ae16038913960400191505060405180910390fd5b6001600160a01b038216613ddc5760405162461bcd60e51b81526004018080602001828103825260368152602001806149656036913960400191505060405180910390fd5b613e1f816040518060600160405280603281526020016146b6603291396001600160a01b038616600090815260066020526040902054919063ffffffff6140cf16565b60066000856001600160a01b03166001600160a01b0316815260200190815260200160002081905550613e8b816040518060600160405280602c8152602001614794602c91396001600160a01b038516600090815260066020526040902054919063ffffffff61441816565b6001600160a01b0380841660008181526006602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b816001600160a01b0316836001600160a01b031614158015613f095750600081115b1561404b576001600160a01b03831615613fbc576001600160a01b03831660009081526004602052604081205463ffffffff169081613f49576000613f7b565b6001600160a01b038516600090815260036020908152604080832063ffffffff60001987011684529091529020600101545b90506000613faa846040518060600160405280602481526020016148516024913984919063ffffffff6140cf16565b9050613fb886848484614476565b5050505b6001600160a01b0382161561404b576001600160a01b03821660009081526004602052604081205463ffffffff169081613ff7576000614029565b6001600160a01b038416600090815260036020908152604080832063ffffffff60001987011684529091529020600101545b9050600061403d828563ffffffff61407516565b905061376285848484614476565b505050565b6000613076838360405180606001604052806028815260200161493d602891396140cf565b600082820183811015613076576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000818484111561415e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561412357818101518382015260200161410b565b50505050905090810190601f1680156141505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261417557506000611461565b8282028284828161418257fe5b04146130765760405162461bcd60e51b8152600401808060200182810382526021815260200180614ac06021913960400191505060405180910390fd5b600061307683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506145db565b6001600160a01b0382166142465760405162461bcd60e51b81526004018080602001828103825260238152602001806148756023913960400191505060405180910390fd5b614289816040518060600160405280602481526020016147c0602491396001600160a01b038516600090815260066020526040902054919063ffffffff6140cf16565b6001600160a01b0383166000908152600660205260409020556001546142b5908263ffffffff61405016565b6001556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0380831660008181526002602081815260408084208054600c845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4614377828483613ee7565b50505050565b600154614390908263ffffffff61407516565b6001556001600160a01b0382166000908152600660205260409020546143bc908263ffffffff61407516565b6001600160a01b03831660008181526006602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b4690565b6000838301828582101561446d5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561412357818101518382015260200161410b565b50949350505050565b600061449a4360405180606001604052806030815260200161489860309139614640565b905060008463ffffffff161180156144e357506001600160a01b038516600090815260036020908152604080832063ffffffff6000198901811685529252909120548282169116145b15614520576001600160a01b038516600090815260036020908152604080832063ffffffff60001989011684529091529020600101829055614591565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600384528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260049092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000818361462a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561412357818101518382015260200161410b565b50600083858161463657fe5b0495945050505050565b60008164010000000084106146965760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561412357818101518382015260200161410b565b509192915050565b60408051808201909152600080825260208201529056fe3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654b65657033723a3a776f726b526563656970743a207370656e64696e67206f766572206d6178206c696d69744b65657033723a3a646f776e3a206b6565706572206e6f7420726567697374657265644b65657033723a3a72656d6f76654a6f623a207374696c6c20756e626f6e64696e674b65657033723a3a616363657074476f7665726e616e63653a206f6e6c792070656e64696e67476f7665726e616e63652063616e206163636570743a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77733a3a5f6275726e3a206275726e20616d6f756e7420657863656564732062616c616e636544656c65676174696f6e28616464726573732064656c6567617465652c75696e74206e6f6e63652c75696e7420657870697279293a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63653a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77733a3a5f6275726e3a206275726e2066726f6d20746865207a65726f20616464726573733a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974735065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e742076616c75652c75696e74206e6f6e63652c75696e7420646561646c696e65294b65657033723a3a646973707574653a206f6e6c7920676f7665726e616e63652063616e2064697370757465556e696c6f616e3a3a536166654d6174683a207375627472616374696f6e20756e646572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f20616464726573734b65657033723a3a7375626d69744a6f623a206c697175696469747920616c72656164792070726f76696465642c20706c656173652072656d6f7665206669727374454950373132446f6d61696e28737472696e67206e616d652c75696e7420636861696e49642c6164647265737320766572696679696e67436f6e7472616374294b65657033723a3a626f6e643a206b656570657220697320626c61636b6c69737465644b65657033723a3a626f6e643a2063757272656e742070656e64696e6720626f6e644b65657033723a3a72656d6f76654a6f623a206f6e6c7920676f7665726e616e63652063616e2072656d6f7665206a6f62734b65657033723a3a7265736f6c76653a206f6e6c7920676f7665726e616e63652063616e207265736f6c7665536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f20616464726573733a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e65644b65657033723a3a77697468647261773a2070656e64696e672064697370757465734b65657033723a3a7365744b656570337248656c7065723a206f6e6c7920676f7665726e616e63652063616e207365744b65657033723a3a736574476f7665726e616e63653a206f6e6c7920676f7665726e616e63652063616e207365743a3a64656c656761746542795369673a207369676e617475726520657870697265644b65657033723a3a6164644a6f623a206f6e6c7920676f7665726e616e63652063616e20616464206a6f62734b65657033723a3a776f726b526563656970743a20696e7375666669656e742066756e647320746f20706179206b65657065724b65657033723a3a736c6173683a206f6e6c7920676f7665726e616e63652063616e207265736f6c76653a3a64656c656761746542795369673a20696e76616c6964207369676e61747572654b65657033723a3a776f726b526563656970743a206f6e6c79206a6f62732063616e20617070726f766520776f726b4b65657033723a3a77697468647261773a207374696c6c20756e626f6e64696e674b65657033723a3a73657475703a206b656570337220616c7265616479207365747570a26469706673582212203e4bcbe3b225cd90a9d62e1ddac5bd9e6fb2f153712f1baefae2960619650a9764736f6c63430006060033

Deployed Bytecode

0x6080604052600436106104685760003560e01c806375d276291161024a578063ba0bba4011610139578063ec342ad0116100b6578063f39c38a01161007a578063f39c38a0146111e3578063f75f9f7b146111f8578063f9f92be41461122b578063fe10d7741461125e578063fe5ff4681461129157610468565b8063ec342ad0146110df578063ec4515dd146110f4578063ef43e2811461111e578063f1127ed814611151578063f1896b54146111b057610468565b8063d505accf116100fd578063d505accf14610fcb578063dbd9426714611029578063dd62ed3e1461105c578063e326ac4314611097578063e7a324dc146110ca57610468565b8063ba0bba4014610ef4578063c1c1d21814610efc578063c3cda52014610f11578063c5198abc14610f65578063d454019d14610f9857610468565b8063a0712d68116101c7578063aec758c01161018b578063aec758c014610dbd578063b0103b1a14610df6578063b105e39f14610e29578063b24ae47714610e8e578063b4b5ea5714610ec157610468565b8063a0712d6814610cdf578063a9059cbb14610d09578063ab033ea914610d42578063abbb247f14610d75578063ad5c464814610da857610468565b806393f6c2ad1161020e57806393f6c2ad14610c43578063950a2ca214610c7657806395d89b4114610c8b578063985348bf14610ca05780639940686e14610cb557610468565b806375d2762914610b3e5780637724ff6814610b71578063782d6fe114610ba45780637ecebe0014610bdd5780638071198914610c1057610468565b80633d1f0bb9116103665780635aa6e675116102e35780636ba42aaa116102a75780636ba42aaa14610a265780636fcfff4514610a5957806370a0823114610aa557806372da828a14610ad857806374a8f10314610b0b57610468565b80635aa6e675146109815780635bff0cd1146109965780635c19a95c146109ab578063603b4d14146109de57806365119f72146109f357610468565b806351b42b001161032a57806351b42b00146108dc578063541bcb76146108f157806355ea6c4714610906578063587cde1e1461093957806359e9e2551461096c57610468565b80633d1f0bb9146107fe57806342966c681461083157806344d96e951461085b5780634a5c8de8146108705780634b3fde21146108a357610468565b806320606b70116103f457806330adf81f116103b857806330adf81f14610743578063313ce5671461075857806336df7ea5146107835780633bbd64bc146107b65780633ccfd60b146107e957610468565b806320606b7014610679578063238efcbc1461068e57806323b872dd146106a357806327de9e32146106e6578063284cc0a91461071057610468565b80630f15f4c01161043b5780630f15f4c0146105b057806318160ddd146105c55780631a686502146105ec5780631b44555e146106015780631ff5f3da1461063457610468565b806302fb4d851461046d57806306fdde03146104a8578063095ea7b31461053257806309aff02b1461057f575b600080fd5b34801561047957600080fd5b506104a66004803603604081101561049057600080fd5b506001600160a01b0381351690602001356112c4565b005b3480156104b457600080fd5b506104bd6113de565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104f75781810151838201526020016104df565b50505050905090810190601f1680156105245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561053e57600080fd5b5061056b6004803603604081101561055557600080fd5b506001600160a01b038135169060200135611400565b604080519115158252519081900360200190f35b34801561058b57600080fd5b50610594611467565b604080516001600160a01b039092168252519081900360200190f35b3480156105bc57600080fd5b506104a6611476565b3480156105d157600080fd5b506105da611698565b60408051918252519081900360200190f35b3480156105f857600080fd5b5061059461169e565b34801561060d57600080fd5b506105da6004803603602081101561062457600080fd5b50356001600160a01b03166116ad565b34801561064057600080fd5b5061056b6004803603608081101561065757600080fd5b506001600160a01b0381351690602081013590604081013590606001356116bf565b34801561068557600080fd5b506105da611768565b34801561069a57600080fd5b506104a6611784565b3480156106af57600080fd5b5061056b600480360360608110156106c657600080fd5b506001600160a01b038135811691602081013590911690604001356117f1565b3480156106f257600080fd5b506104a66004803603602081101561070957600080fd5b50356118d9565b34801561071c57600080fd5b506104a66004803603602081101561073357600080fd5b50356001600160a01b03166119e2565b34801561074f57600080fd5b506105da611bc2565b34801561076457600080fd5b5061076d611bdd565b6040805160ff9092168252519081900360200190f35b34801561078f57600080fd5b506105da600480360360208110156107a657600080fd5b50356001600160a01b0316611be2565b3480156107c257600080fd5b5061056b600480360360208110156107d957600080fd5b50356001600160a01b0316611bf4565b3480156107f557600080fd5b506104a6611c09565b34801561080a57600080fd5b5061056b6004803603602081101561082157600080fd5b50356001600160a01b0316611d84565b34801561083d57600080fd5b506104a66004803603602081101561085457600080fd5b5035611d99565b34801561086757600080fd5b506105da611da6565b34801561087c57600080fd5b506105da6004803603602081101561089357600080fd5b50356001600160a01b0316611dac565b3480156108af57600080fd5b506104a6600480360360408110156108c657600080fd5b506001600160a01b038135169060200135611dbe565b3480156108e857600080fd5b506104a6612027565b3480156108fd57600080fd5b50610594612040565b34801561091257600080fd5b506104a66004803603602081101561092957600080fd5b50356001600160a01b0316612058565b34801561094557600080fd5b506105946004803603602081101561095c57600080fd5b50356001600160a01b03166120f9565b34801561097857600080fd5b506104a6612114565b34801561098d57600080fd5b506105946123d0565b3480156109a257600080fd5b506104a66123df565b3480156109b757600080fd5b506104a6600480360360208110156109ce57600080fd5b50356001600160a01b031661245f565b3480156109ea57600080fd5b506105da612469565b3480156109ff57600080fd5b5061059460048036036020811015610a1657600080fd5b50356001600160a01b0316612470565b348015610a3257600080fd5b5061056b60048036036020811015610a4957600080fd5b50356001600160a01b031661248b565b348015610a6557600080fd5b50610a8c60048036036020811015610a7c57600080fd5b50356001600160a01b03166124b5565b6040805163ffffffff9092168252519081900360200190f35b348015610ab157600080fd5b506105da60048036036020811015610ac857600080fd5b50356001600160a01b03166124cd565b348015610ae457600080fd5b506104a660048036036020811015610afb57600080fd5b50356001600160a01b03166124e8565b348015610b1757600080fd5b506104a660048036036020811015610b2e57600080fd5b50356001600160a01b0316612553565b348015610b4a57600080fd5b506104a660048036036020811015610b6157600080fd5b50356001600160a01b03166125e6565b348015610b7d57600080fd5b506105da60048036036020811015610b9457600080fd5b50356001600160a01b03166127cb565b348015610bb057600080fd5b506105da60048036036040811015610bc757600080fd5b506001600160a01b0381351690602001356127dd565b348015610be957600080fd5b506105da60048036036020811015610c0057600080fd5b50356001600160a01b03166129e5565b348015610c1c57600080fd5b506104a660048036036020811015610c3357600080fd5b50356001600160a01b03166129f7565b348015610c4f57600080fd5b506105da60048036036020811015610c6657600080fd5b50356001600160a01b0316612aa1565b348015610c8257600080fd5b506105da612ab3565b348015610c9757600080fd5b506104bd612ab9565b348015610cac57600080fd5b506105da612ad8565b348015610cc157600080fd5b506104a660048036036020811015610cd857600080fd5b5035612adf565b348015610ceb57600080fd5b506104a660048036036020811015610d0257600080fd5b5035612c0a565b348015610d1557600080fd5b5061056b60048036036040811015610d2c57600080fd5b506001600160a01b038135169060200135612c7f565b348015610d4e57600080fd5b506104a660048036036020811015610d6557600080fd5b50356001600160a01b0316612c95565b348015610d8157600080fd5b506105da60048036036020811015610d9857600080fd5b50356001600160a01b0316612d00565b348015610db457600080fd5b50610594612d12565b348015610dc957600080fd5b506104a660048036036040811015610de057600080fd5b506001600160a01b038135169060200135612d2a565b348015610e0257600080fd5b5061056b60048036036020811015610e1957600080fd5b50356001600160a01b0316612f90565b348015610e3557600080fd5b50610e3e612fa5565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610e7a578181015183820152602001610e62565b505050509050019250505060405180910390f35b348015610e9a57600080fd5b506105da60048036036020811015610eb157600080fd5b50356001600160a01b0316613007565b348015610ecd57600080fd5b506105da60048036036020811015610ee457600080fd5b50356001600160a01b0316613019565b6104a661307d565b348015610f0857600080fd5b506105da6134a7565b348015610f1d57600080fd5b506104a6600480360360c0811015610f3457600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356134ae565b348015610f7157600080fd5b506104a660048036036020811015610f8857600080fd5b50356001600160a01b031661376a565b348015610fa457600080fd5b506105da60048036036020811015610fbb57600080fd5b50356001600160a01b0316613817565b348015610fd757600080fd5b506104a6600480360360e0811015610fee57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135613829565b34801561103557600080fd5b506105da6004803603602081101561104c57600080fd5b50356001600160a01b0316613b79565b34801561106857600080fd5b506105da6004803603604081101561107f57600080fd5b506001600160a01b0381358116916020013516613b8b565b3480156110a357600080fd5b506105da600480360360208110156110ba57600080fd5b50356001600160a01b0316613bb6565b3480156110d657600080fd5b506105da613bc8565b3480156110eb57600080fd5b506105da613be3565b34801561110057600080fd5b506105946004803603602081101561111757600080fd5b5035613be9565b34801561112a57600080fd5b506105da6004803603602081101561114157600080fd5b50356001600160a01b0316613c10565b34801561115d57600080fd5b506111906004803603604081101561117457600080fd5b5080356001600160a01b0316906020013563ffffffff16613c22565b6040805163ffffffff909316835260208301919091528051918290030190f35b3480156111bc57600080fd5b506105da600480360360208110156111d357600080fd5b50356001600160a01b0316613c4f565b3480156111ef57600080fd5b50610594613c61565b34801561120457600080fd5b506105da6004803603602081101561121b57600080fd5b50356001600160a01b0316613c70565b34801561123757600080fd5b5061056b6004803603602081101561124e57600080fd5b50356001600160a01b0316613d19565b34801561126a57600080fd5b506105da6004803603602081101561128157600080fd5b50356001600160a01b0316613d2e565b34801561129d57600080fd5b506105da600480360360208110156112b457600080fd5b50356001600160a01b0316613d40565b601d546001600160a01b0316331461130d5760405162461bcd60e51b815260040180806020018281038252602a815260200180614c3d602a913960400191505060405180910390fd5b601d546113259030906001600160a01b031683613d52565b3360009081526002602052604081205461134b916001600160a01b039091169083613ee7565b6001600160a01b0382166000908152600c6020526040902054611374908263ffffffff61405016565b6001600160a01b0383166000818152600c6020908152604080832094909455600f815290839020805460ff191690558251438152908101849052825133937ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b6040518060400160405280600681526020016525b2b2b819b960d11b81525081565b3360008181526005602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6000546001600160a01b031681565b336000908152600860205260409020546114d7576040805162461bcd60e51b815260206004820152601c60248201527f4b65657033723a3a61637469766174653a20626f6e6420666972737400000000604482015290519081900360640190fd5b33600090815260086020526040902054421161153a576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a61637469766174653a207374696c6c20626f6e64696e6700604482015290519081900360640190fd5b336000908152601a602052604090205460ff1661156457336000908152600e602052604090204290555b336000908152601a60209081526040808320805460ff19166001179055600b909152902054600d5461159b9163ffffffff61407516565b600d55336000908152600b6020908152604080832054600c909252909120546115c99163ffffffff61407516565b336000908152600c6020908152604080832093909355600b815282822082905560109052205461164557336000818152601060205260408120429055601c805460018101825591527f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a2110180546001600160a01b03191690911790555b336000818152600c602090815260409182902054825143815242928101929092528183015290517f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad059181900360600190a2565b60015481565b601f546001600160a01b031681565b60126020526000908152604090205481565b60005a60209081556001600160a01b0386166000908152601a909152604090205460ff16801561170757506001600160a01b0385166000908152600c60205260409020548411155b801561172a57506001600160a01b03851660009081526012602052604090205483105b801561175f57506001600160a01b0385166000908152600e6020526040902054829061175d90429063ffffffff61405016565b115b95945050505050565b60405180806149dd604091396040019050604051809103902081565b601e546001600160a01b031633146117cd5760405162461bcd60e51b815260040180806020018281038252603b815260200180614759603b913960400191505060405180910390fd5b601e54601d80546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b03831660008181526005602090815260408083203380855292528220549192909190821480159061182b57506000198114155b156118c257600061185d856040518060600160405280603981526020016148186039913984919063ffffffff6140cf16565b6001600160a01b0380891660008181526005602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b6118cd868686613d52565b50600195945050505050565b6118ec426212750063ffffffff61407516565b33600090815260096020908152604080832093909355600c90522054611918908263ffffffff61405016565b336000908152600c6020908152604080832093909355600a90522054611944908263ffffffff61407516565b336000908152600a6020526040902055600d54611967908263ffffffff61405016565b600d5533600090815260026020526040812054611990916001600160a01b039091169083613ee7565b336000818152600960209081526040918290205482514381529182015280820184905290517f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e9181900360600190a250565b6001600160a01b0381166000908152601a602052604090205460ff16611a395760405162461bcd60e51b81526004018080602001828103825260238152602001806147146023913960400191505060405180910390fd5b6001600160a01b0381166000908152601060205260409020544290611a679062093a8063ffffffff61407516565b10611ab9576040805162461bcd60e51b815260206004820152601960248201527f4b65657033723a3a646f776e3a206b6565706572207361666500000000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600c6020526040812054611af89061271090611aec906101f463ffffffff61416616565b9063ffffffff6141bf16565b6001600160a01b0383166000908152600c6020526040902054909150611b24908263ffffffff61405016565b6001600160a01b038084166000908152600c60209081526040808320949094553382526002905291822054611b5c9291169083613ee7565b611b67303383613d52565b6001600160a01b038216600081815260106020908152604091829020429055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b6040518060496148c882396049019050604051809103902081565b601281565b60116020526000908152604090205481565b601a6020526000908152604090205460ff1681565b33600090815260096020526040902054611c6a576040805162461bcd60e51b815260206004820152601e60248201527f4b65657033723a3a77697468647261773a20756e626f6e642066697273740000604482015290519081900360640190fd5b336000908152600960205260409020544211611cb75760405162461bcd60e51b8152600401808060200182810382526021815260200180614cb86021913960400191505060405180910390fd5b336000908152600f602052604090205460ff1615611d065760405162461bcd60e51b8152600401808060200182810382526022815260200180614b3c6022913960400191505060405180910390fd5b336000818152600a6020526040902054611d21913091613d52565b336000818152600a602090815260409182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a2336000908152600a6020526040812055565b60136020526000908152604090205460ff1681565b611da33382614201565b50565b600d5481565b600b6020526000908152604090205481565b3360009081526013602052604090205460ff16611e0c5760405162461bcd60e51b815260040180806020018281038252602f815260200180614c89602f913960400191505060405180910390fd5b611e1f5a6020549063ffffffff61405016565b60208181556000546040805163525ea63160e01b81526004810194909452516001600160a01b039091169263525ea631926024808301939192829003018186803b158015611e6c57600080fd5b505afa158015611e80573d6000803e3d6000fd5b505050506040513d6020811015611e9657600080fd5b50518110611ed55760405162461bcd60e51b815260040180806020018281038252602c8152602001806146e8602c913960400191505060405180910390fd5b4260106000846001600160a01b03166001600160a01b0316815260200190815260200160002081905550611f3981604051806060016040528060338152602001614c0a6033913933600090815260146020526040902054919063ffffffff6140cf16565b336000908152601460209081526040808320939093556001600160a01b0385168252600c90522054611f71908263ffffffff61407516565b6001600160a01b038084166000908152600c60209081526040808320949094556002905291822054611fa592911683613ee7565b6001600160a01b038216600090815260126020526040902054611fce908263ffffffff61407516565b6001600160a01b0383166000818152601260209081526040918290209390935580514381529051919233927f898d34a85997d8833f2692e67bf5575e817ed9469c085f7e2f43a65c540d47269281900390910190a35050565b336000908152601a60205260409020805460ff19169055565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b601d546001600160a01b031633146120a15760405162461bcd60e51b815260040180806020018281038252602c815260200180614a94602c913960400191505060405180910390fd5b6001600160a01b0381166000818152600f6020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6002602052600090815260409020546001600160a01b031681565b33600090815260176020526040902054612175576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a72656d6f76654a6f623a20756e626f6e6420666972737400604482015290519081900360640190fd5b3360009081526017602052604090205442116121c25760405162461bcd60e51b81526004018080602001828103825260228152602001806147376022913960400191505060405180910390fd5b33600090815260156020908152604080832054601f546001600160a01b0316808552600684528285205483516318160ddd60e01b81529351929590949093612263936318160ddd92600480840193919291829003018186803b15801561222757600080fd5b505afa15801561223b573d6000803e3d6000fd5b505050506040513d602081101561225157600080fd5b5051611aec848663ffffffff61416616565b336000908152601660209081526040808320546001600160a01b0316808452601490925290912054919250908211156122b4576001600160a01b0381166000908152601460205260408120556122df565b6001600160a01b0381166000908152601460205260409020546122dd908363ffffffff61405016565b505b601f546040805163a9059cbb60e01b81523360048201526024810187905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561233357600080fd5b505af1158015612347573d6000803e3d6000fd5b505050506040513d602081101561235d57600080fd5b5050336000818152601560209081526040808320839055601682529182902080546001600160a01b0319169055815143815290810187905281516001600160a01b038516927f0a23f55887f0577cc8e106ed9238b0679e1dab42f858d1a07b84216d7d2d38d5928290030190a350505050565b601d546001600160a01b031681565b6123f2426212750063ffffffff61407516565b336000818152601760209081526040808320949094556016815283822054601582529184902054845143815291820152835192936001600160a01b03909216927f91d917fcb74a8bc2e2f731fd59f937ef65391bbe469998d8c144fe6298fd495f929181900390910190a3565b611da333826142fd565b6212750081565b6016602052600090815260409020546001600160a01b031681565b60005a60209081556001600160a01b03929092166000908152601a90925250604090205460ff1690565b60046020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526006602052604090205490565b601d546001600160a01b031633146125315760405162461bcd60e51b8152600401808060200182810382526030815260200180614b5e6030913960400191505060405180910390fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b601d546001600160a01b0316331461259c5760405162461bcd60e51b815260040180806020018281038252602a815260200180614c3d602a913960400191505060405180910390fd5b6001600160a01b0381166000908152601a60209081526040808320805460ff19908116909155601b835281842080549091166001179055600c909152902054611da39082906112c4565b6001600160a01b038116600090815260196020526040902054612650576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a6372656469743a207375626d69744a6f6220666972737400604482015290519081900360640190fd5b6001600160a01b03811660009081526019602052604090205442116126bc576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6372656469743a207374696c6c20626f6e64696e67000000604482015290519081900360640190fd5b601f546001600160a01b031660008181526006602090815260408083205481516318160ddd60e01b8152915190946127679390926318160ddd9260048083019392829003018186803b15801561271157600080fd5b505afa158015612725573d6000803e3d6000fd5b505050506040513d602081101561273b57600080fd5b50516001600160a01b038516600090815260156020526040902054611aec90859063ffffffff61416616565b336000908152601660209081526040808320546001600160a01b0316835260149091529020549091506127a0908263ffffffff61407516565b336000908152601660209081526040808320546001600160a01b031683526014909152902055505050565b60186020526000908152604090205481565b600043821061281d5760405162461bcd60e51b8152600401808060200182810382526023815260200180614b196023913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205463ffffffff168061284b576000915050611461565b6001600160a01b038416600090815260036020908152604080832063ffffffff6000198601811685529252909120541683106128ba576001600160a01b03841660009081526003602090815260408083206000199490940163ffffffff16835292905220600101549050611461565b6001600160a01b038416600090815260036020908152604080832083805290915290205463ffffffff168310156128f5576000915050611461565b600060001982015b8163ffffffff168163ffffffff1611156129ae57600282820363ffffffff1604810361292761469e565b506001600160a01b038716600090815260036020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415612989576020015194506114619350505050565b805163ffffffff168711156129a0578193506129a7565b6001820392505b50506128fd565b506001600160a01b038516600090815260036020908152604080832063ffffffff9094168352929052206001015491505092915050565b60076020526000908152604090205481565b601d546001600160a01b03163314612a405760405162461bcd60e51b8152600401808060200182810382526032815260200180614a626032913960400191505060405180910390fd5b6001600160a01b038116600081815260136020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b60176020526000908152604090205481565b6101f481565b6040518060400160405280600381526020016225a82960e91b81525081565b62093a8081565b336000908152600b602052604090205415612b2b5760405162461bcd60e51b8152600401808060200182810382526022815260200180614a406022913960400191505060405180910390fd5b336000908152601b602052604090205460ff16612b795760405162461bcd60e51b8152600401808060200182810382526023815260200180614a1d6023913960400191505060405180910390fd5b612b8c426203f48063ffffffff61407516565b33600081815260086020908152604080832094909455600b905291909120829055612bb8903083613d52565b336000818152600860209081526040918290205482514381529182015280820184905290517fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae49181900360600190a250565b601d546001600160a01b03163314612c69576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6d696e743a20676f7665726e616e6365206f6e6c79000000604482015290519081900360640190fd5b601d54611da3906001600160a01b03168261437d565b6000612c8c338484613d52565b50600192915050565b601d546001600160a01b03163314612cde5760405162461bcd60e51b815260040180806020018281038252602e815260200180614b8e602e913960400191505060405180910390fd5b601e80546001600160a01b0319166001600160a01b0392909216919091179055565b60096020526000908152604090205481565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b336000908152601660205260409020546001600160a01b031615612d7f5760405162461bcd60e51b815260040180806020018281038252604281526020018061499b6042913960600191505060405180910390fd5b601f54604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015612dd957600080fd5b505af1158015612ded573d6000803e3d6000fd5b505050506040513d6020811015612e0357600080fd5b50503360009081526015602090815260408083208490556016909152902080546001600160a01b0319166001600160a01b038416179055612e474262015180614075565b336000908152601960209081526040808320939093556001600160a01b038516825260139052205460ff16158015612e9657506001600160a01b03821660009081526018602052604090205442115b15612f4457601d546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb9160248083019260209291908290030181600087803b158015612eea57600080fd5b505af1158015612efe573d6000803e3d6000fd5b505050506040513d6020811015612f1457600080fd5b50612f2a9050426212750063ffffffff61407516565b6001600160a01b0383166000908152601860205260409020555b6040805143815260208101839052815133926001600160a01b038616927fae74eca2068752f1164f9ef320d0b01c5a658912e166358797d892e9997039ba929081900390910190a35050565b600f6020526000908152604090205460ff1681565b6060601c805480602002602001604051908101604052809291908181526020018280548015612ffd57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612fdf575b5050505050905090565b60196020526000908152604090205481565b6001600160a01b03811660009081526004602052604081205463ffffffff1680613044576000613076565b6001600160a01b038316600090815260036020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b601f546001600160a01b0316156130c55760405162461bcd60e51b8152600401808060200182810382526023815260200180614cd96023913960400191505060405180910390fd5b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561311457600080fd5b505af1158015613128573d6000803e3d6000fd5b50506040805163095ea7b360e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d6004820152346024820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2945063095ea7b39350604480830193506020928290030181600087803b15801561319857600080fd5b505af11580156131ac573d6000803e3d6000fd5b505050506040513d60208110156131c257600080fd5b506131d89050306815af1d78b58c40000061437d565b3060008181526006602081815260408084205460058352818520737a250d5630b4cf539739df2c5dacb4c659f2488d8087529084528286208290559486905292825280516370a0823160e01b8152600481018690529051939463e8e3370094909373c02aaa39b223fe8d0a0e5c4f27ead9083c756cc293909284926370a0823192602480840193919291829003018186803b15801561327657600080fd5b505afa15801561328a573d6000803e3d6000fd5b505050506040513d60208110156132a057600080fd5b5051600080336132b84261070863ffffffff61407516565b6040518963ffffffff1660e01b815260040180896001600160a01b03166001600160a01b03168152602001886001600160a01b03166001600160a01b03168152602001878152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200198505050505050505050606060405180830381600087803b15801561335557600080fd5b505af1158015613369573d6000803e3d6000fd5b505050506040513d606081101561337f57600080fd5b50506040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a0155916004808301926020929190829003018186803b1580156133cc57600080fd5b505afa1580156133e0573d6000803e3d6000fd5b505050506040513d60208110156133f657600080fd5b50516040805163e6a4390560e01b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2602482015290516001600160a01b039092169163e6a4390591604480820192602092909190829003018186803b15801561345a57600080fd5b505afa15801561346e573d6000803e3d6000fd5b505050506040513d602081101561348457600080fd5b5051601f80546001600160a01b0319166001600160a01b03909216919091179055565b6203f48081565b600060405180806149dd60409139604080519182900381018220828201909152600682526525b2b2b819b960d11b60209092019190915290507fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf6613510614414565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b03168152602001945050505050604051602081830303815290604052805190602001209050600060405180806147e460349139604080519182900360340182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa15801561364e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166136a05760405162461bcd60e51b8152600401808060200182810382526022815260200180614c676022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090208054600181019091558914613714576040805162461bcd60e51b815260206004820152601e60248201527f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e63650000604482015290519081900360640190fd5b874211156137535760405162461bcd60e51b8152600401808060200182810382526022815260200180614bbc6022913960400191505060405180910390fd5b61375d818b6142fd565b505050505b505050505050565b601d546001600160a01b031633146137b35760405162461bcd60e51b815260040180806020018281038252602c815260200180614bde602c913960400191505060405180910390fd5b6001600160a01b038116600081815260136020908152604091829020805460ff191660011790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b60106020526000908152604090205481565b600060405180806149dd60409139604080519182900381018220828201909152600682526525b2b2b819b960d11b60209092019190915290507fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf661388b614414565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b03168152602001945050505050604051602081830303815290604052805190602001209050600060405180806148c860499139604080519182900360490182206001600160a01b03808e16600081815260076020908152858220805460018082019092558289019690965287870193909352928f166060870152608086018e905260a086019390935260c08086018d90528451808703909101815260e08601855280519083012061190160f01b610100870152610102860189905261012280870182905285518088039091018152610142870180875281519185019190912090859052610162870180875281905260ff8d166101828801526101a287018c90526101c287018b90529451909750939550919391926101e280840193601f198301929081900390910190855afa1580156139f3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613a5b576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a20696e76616c6964207369676e61747572650000000000604482015290519081900360640190fd5b8a6001600160a01b0316816001600160a01b031614613aba576040805162461bcd60e51b81526020600482015260166024820152750e8e9c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960521b604482015290519081900360640190fd5b87421115613b0f576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a207369676e617475726520657870697265640000000000604482015290519081900360640190fd5b6001600160a01b03808c166000818152600560209081526040808320948f16808452948252918290208d905581518d815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35050505050505050505050565b60156020526000908152604090205481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b600e6020526000908152604090205481565b6040518060346147e482396034019050604051809103902081565b61271081565b601c8181548110613bf657fe5b6000918252602090912001546001600160a01b0316905081565b600a6020526000908152604090205481565b60036020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60086020526000908152604090205481565b601e546001600160a01b031681565b601d546000906001600160a01b03163314613cbc5760405162461bcd60e51b815260040180806020018281038252602c815260200180614911602c913960400191505060405180910390fd5b6001600160a01b0382166000818152600f6020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a2919050565b601b6020526000908152604090205460ff1681565b600c6020526000908152604090205481565b60146020526000908152604090205481565b6001600160a01b038316613d975760405162461bcd60e51b8152600401808060200182810382526038815260200180614ae16038913960400191505060405180910390fd5b6001600160a01b038216613ddc5760405162461bcd60e51b81526004018080602001828103825260368152602001806149656036913960400191505060405180910390fd5b613e1f816040518060600160405280603281526020016146b6603291396001600160a01b038616600090815260066020526040902054919063ffffffff6140cf16565b60066000856001600160a01b03166001600160a01b0316815260200190815260200160002081905550613e8b816040518060600160405280602c8152602001614794602c91396001600160a01b038516600090815260066020526040902054919063ffffffff61441816565b6001600160a01b0380841660008181526006602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b816001600160a01b0316836001600160a01b031614158015613f095750600081115b1561404b576001600160a01b03831615613fbc576001600160a01b03831660009081526004602052604081205463ffffffff169081613f49576000613f7b565b6001600160a01b038516600090815260036020908152604080832063ffffffff60001987011684529091529020600101545b90506000613faa846040518060600160405280602481526020016148516024913984919063ffffffff6140cf16565b9050613fb886848484614476565b5050505b6001600160a01b0382161561404b576001600160a01b03821660009081526004602052604081205463ffffffff169081613ff7576000614029565b6001600160a01b038416600090815260036020908152604080832063ffffffff60001987011684529091529020600101545b9050600061403d828563ffffffff61407516565b905061376285848484614476565b505050565b6000613076838360405180606001604052806028815260200161493d602891396140cf565b600082820183811015613076576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000818484111561415e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561412357818101518382015260200161410b565b50505050905090810190601f1680156141505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261417557506000611461565b8282028284828161418257fe5b04146130765760405162461bcd60e51b8152600401808060200182810382526021815260200180614ac06021913960400191505060405180910390fd5b600061307683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506145db565b6001600160a01b0382166142465760405162461bcd60e51b81526004018080602001828103825260238152602001806148756023913960400191505060405180910390fd5b614289816040518060600160405280602481526020016147c0602491396001600160a01b038516600090815260066020526040902054919063ffffffff6140cf16565b6001600160a01b0383166000908152600660205260409020556001546142b5908263ffffffff61405016565b6001556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0380831660008181526002602081815260408084208054600c845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4614377828483613ee7565b50505050565b600154614390908263ffffffff61407516565b6001556001600160a01b0382166000908152600660205260409020546143bc908263ffffffff61407516565b6001600160a01b03831660008181526006602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b4690565b6000838301828582101561446d5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561412357818101518382015260200161410b565b50949350505050565b600061449a4360405180606001604052806030815260200161489860309139614640565b905060008463ffffffff161180156144e357506001600160a01b038516600090815260036020908152604080832063ffffffff6000198901811685529252909120548282169116145b15614520576001600160a01b038516600090815260036020908152604080832063ffffffff60001989011684529091529020600101829055614591565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600384528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260049092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000818361462a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561412357818101518382015260200161410b565b50600083858161463657fe5b0495945050505050565b60008164010000000084106146965760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561412357818101518382015260200161410b565b509192915050565b60408051808201909152600080825260208201529056fe3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654b65657033723a3a776f726b526563656970743a207370656e64696e67206f766572206d6178206c696d69744b65657033723a3a646f776e3a206b6565706572206e6f7420726567697374657265644b65657033723a3a72656d6f76654a6f623a207374696c6c20756e626f6e64696e674b65657033723a3a616363657074476f7665726e616e63653a206f6e6c792070656e64696e67476f7665726e616e63652063616e206163636570743a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77733a3a5f6275726e3a206275726e20616d6f756e7420657863656564732062616c616e636544656c65676174696f6e28616464726573732064656c6567617465652c75696e74206e6f6e63652c75696e7420657870697279293a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63653a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77733a3a5f6275726e3a206275726e2066726f6d20746865207a65726f20616464726573733a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974735065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e742076616c75652c75696e74206e6f6e63652c75696e7420646561646c696e65294b65657033723a3a646973707574653a206f6e6c7920676f7665726e616e63652063616e2064697370757465556e696c6f616e3a3a536166654d6174683a207375627472616374696f6e20756e646572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f20616464726573734b65657033723a3a7375626d69744a6f623a206c697175696469747920616c72656164792070726f76696465642c20706c656173652072656d6f7665206669727374454950373132446f6d61696e28737472696e67206e616d652c75696e7420636861696e49642c6164647265737320766572696679696e67436f6e7472616374294b65657033723a3a626f6e643a206b656570657220697320626c61636b6c69737465644b65657033723a3a626f6e643a2063757272656e742070656e64696e6720626f6e644b65657033723a3a72656d6f76654a6f623a206f6e6c7920676f7665726e616e63652063616e2072656d6f7665206a6f62734b65657033723a3a7265736f6c76653a206f6e6c7920676f7665726e616e63652063616e207265736f6c7665536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f20616464726573733a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e65644b65657033723a3a77697468647261773a2070656e64696e672064697370757465734b65657033723a3a7365744b656570337248656c7065723a206f6e6c7920676f7665726e616e63652063616e207365744b65657033723a3a736574476f7665726e616e63653a206f6e6c7920676f7665726e616e63652063616e207365743a3a64656c656761746542795369673a207369676e617475726520657870697265644b65657033723a3a6164644a6f623a206f6e6c7920676f7665726e616e63652063616e20616464206a6f62734b65657033723a3a776f726b526563656970743a20696e7375666669656e742066756e647320746f20706179206b65657065724b65657033723a3a736c6173683a206f6e6c7920676f7665726e616e63652063616e207265736f6c76653a3a64656c656761746542795369673a20696e76616c6964207369676e61747572654b65657033723a3a776f726b526563656970743a206f6e6c79206a6f62732063616e20617070726f766520776f726b4b65657033723a3a77697468647261773a207374696c6c20756e626f6e64696e674b65657033723a3a73657475703a206b656570337220616c7265616479207365747570a26469706673582212203e4bcbe3b225cd90a9d62e1ddac5bd9e6fb2f153712f1baefae2960619650a9764736f6c63430006060033

Deployed Bytecode Sourcemap

7845:31214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;33134:436:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33134:436:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;33134:436:0;;;;;;;;:::i;:::-;;8324:38;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8324:38:0;;;:::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;8324:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35250:205;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35250:205:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;35250:205:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;7971:24;;5:9:-1;2:2;;;27:1;24;17:12;2:2;7971:24:0;;;:::i;:::-;;;;-1:-1:-1;;;;;7971:24:0;;;;;;;;;;;;;;29780:727;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29780:727:0;;;:::i;8622:27::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8622:27:0;;;:::i;:::-;;;;;;;;;;;;;;;;20727:28;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20727:28:0;;;:::i;19390:45::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19390:45:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19390:45:0;-1:-1:-1;;;;;19390:45:0;;:::i;28712:324::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28712:324:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;28712:324:0;;;;;;;;;;;;;;;;;;:::i;9237:119::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9237:119:0;;;:::i;27961:200::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27961:200:0;;;:::i;37796:571::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;37796:571:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;37796:571:0;;;;;;;;;;;;;;;;;:::i;30840:444::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30840:444:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30840:444:0;;:::i;32000:556::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32000:556:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32000:556:0;-1:-1:-1;;;;;32000:556:0;;:::i;9651:128::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9651:128:0;;;:::i;8523:35::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8523:35:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19285:36;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19285:36:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19285:36:0;-1:-1:-1;;;;;19285:36:0;;:::i;20241:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20241:39:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20241:39:0;-1:-1:-1;;;;;20241:39:0;;:::i;31370:512::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31370:512:0;;;:::i;19509:36::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19509:36:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19509:36:0;-1:-1:-1;;;;;19509:36:0;;:::i;24732:80::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24732:80:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24732:80:0;;:::i;18867:27::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18867:27:0;;;:::i;18663:44::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18663:44:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18663:44:0;-1:-1:-1;;;;;18663:44:0;;:::i;25661:698::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;25661:698:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;25661:698:0;;;;;;;;:::i;30619:77::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30619:77:0;;;:::i;8184:81::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8184:81:0;;;:::i;34106:229::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34106:229:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;34106:229:0;-1:-1:-1;;;;;34106:229:0;;:::i;8723:45::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8723:45:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;8723:45:0;-1:-1:-1;;;;;8723:45:0;;:::i;23564:849::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23564:849:0;;;:::i;20583:25::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20583:25:0;;;:::i;23249:226::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23249:226:0;;;:::i;10588:102::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10588:102:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;10588:102:0;-1:-1:-1;;;;;10588:102:0;;:::i;18009:37::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18009:37:0;;;:::i;19852:52::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19852:52:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19852:52:0;-1:-1:-1;;;;;19852:52:0;;:::i;28352:129::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28352:129:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28352:129:0;-1:-1:-1;;;;;28352:129:0;;:::i;8990:49::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8990:49:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;8990:49:0;-1:-1:-1;;;;;8990:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;36973:108;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36973:108:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36973:108:0;-1:-1:-1;;;;;36973:108:0;;:::i;27291:181::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27291:181:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27291:181:0;-1:-1:-1;;;;;27291:181:0;;:::i;33724:247::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33724:247:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;33724:247:0;-1:-1:-1;;;;;33724:247:0;;:::i;22674:491::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22674:491:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22674:491:0;-1:-1:-1;;;;;22674:491:0;;:::i;20046:48::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20046:48:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20046:48:0;-1:-1:-1;;;;;20046:48:0;;:::i;12753:1212::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;12753:1212:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12753:1212:0;;;;;;;;:::i;9862:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9862:39:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;9862:39:0;-1:-1:-1;;;;;9862:39:0;;:::i;26911:232::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26911:232:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26911:232:0;-1:-1:-1;;;;;26911:232:0;;:::i;19953:50::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19953:50:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19953:50:0;-1:-1:-1;;;;;19953:50:0;;:::i;18212:40::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18212:40:0;;;:::i;8423:37::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8423:37:0;;;:::i;18115:38::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18115:38:0;;;:::i;29121:448::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29121:448:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;29121:448:0;;:::i;24567:157::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24567:157:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24567:157:0;;:::i;37342:147::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;37342:147:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;37342:147:0;;;;;;;;:::i;27637:197::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27637:197:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27637:197:0;-1:-1:-1;;;;;27637:197:0;;:::i;18454:42::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18454:42:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18454:42:0;-1:-1:-1;;;;;18454:42:0;;:::i;8056:78::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8056:78:0;;;:::i;21861:664::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21861:664:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21861:664:0;;;;;;;;:::i;19068:40::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19068:40:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19068:40:0;-1:-1:-1;;;;;19068:40:0;;:::i;29577:99::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29577:99:0;;;:::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;29577:99:0;;;;;;;;;;;;;;;;;20139:48;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20139:48:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20139:48:0;-1:-1:-1;;;;;20139:48:0;;:::i;12102:220::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;12102:220:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12102:220:0;-1:-1:-1;;;;;12102:220:0;;:::i;20953:654::-;;;:::i;17897:34::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17897:34:0;;;:::i;11124:777::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;11124:777:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;11124:777:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;26520:220::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26520:220:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26520:220:0;-1:-1:-1;;;;;26520:220:0;;:::i;19173:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19173:39:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19173:39:0;-1:-1:-1;;;;;19173:39:0;;:::i;35942:828::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35942:828:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;35942:828:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;19712:50::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19712:50:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19712:50:0;-1:-1:-1;;;;;19712:50:0;;:::i;34639:136::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34639:136:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;34639:136:0;;;;;;;;;;:::i;18960:41::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18960:41:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18960:41:0;-1:-1:-1;;;;;18960:41:0;;:::i;9450:111::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9450:111:0;;;:::i;18259:33::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18259:33:0;;;:::i;20483:27::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20483:27:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20483:27:0;;:::i;18549:48::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18549:48:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18549:48:0;-1:-1:-1;;;;;18549:48:0;;:::i;8851:70::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8851:70:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;8851:70:0;;-1:-1:-1;;;;;8851:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;18353:40;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18353:40:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18353:40:0;-1:-1:-1;;;;;18353:40:0;;:::i;20615:32::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20615:32:0;;;:::i;32700:242::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32700:242:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32700:242:0;-1:-1:-1;;;;;32700:242:0;;:::i;20352:41::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20352:41:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20352:41:0;-1:-1:-1;;;;;20352:41:0;;:::i;18767:37::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18767:37:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18767:37:0;-1:-1:-1;;;;;18767:37:0;;:::i;19608:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19608:39:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19608:39:0;-1:-1:-1;;;;;19608:39:0;;:::i;33134:436::-;33218:10;;-1:-1:-1;;;;;33218:10:0;33204;:24;33196:79;;;;-1:-1:-1;;;33196:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33317:10;;33286:50;;33310:4;;-1:-1:-1;;;;;33317:10:0;33329:6;33286:15;:50::i;:::-;33372:10;33362:21;;;;:9;:21;;;;;;33347:57;;-1:-1:-1;;;;;33362:21:0;;;;33397:6;33347:14;:57::i;:::-;-1:-1:-1;;;;;33431:13:0;;;;;;:5;:13;;;;;;:25;;33449:6;33431:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;33415:13:0;;;;;;:5;:13;;;;;;;;:41;;;;33467:8;:16;;;;;;:24;;-1:-1:-1;;33467:24:0;;;33507:55;;33541:12;33507:55;;;;;;;;;;33529:10;;33507:55;;;;;;;;33134:436;;:::o;8324:38::-;;;;;;;;;;;;;;-1:-1:-1;;;8324:38:0;;;;:::o;35250:205::-;35341:10;35313:4;35330:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;35330:31:0;;;;;;;;;;;:40;;;35388:37;;;;;;;35313:4;;35330:31;;35341:10;;35388:37;;;;;;;;-1:-1:-1;35443:4:0;35250:205;;;;;:::o;7971:24::-;;;-1:-1:-1;;;;;7971:24:0;;:::o;29780:727::-;29837:10;29828:20;;;;:8;:20;;;;;;29820:66;;;;;-1:-1:-1;;;29820:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29914:10;29905:20;;;;:8;:20;;;;;;29928:3;-1:-1:-1;29897:70:0;;;;;-1:-1:-1;;;29897:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29991:10;29983:19;;;;:7;:19;;;;;;;;29978:78;;30027:10;30017:21;;;;:9;:21;;;;;30041:3;30017:27;;29978:78;30074:10;30066:19;;;;:7;:19;;;;;;;;:26;;-1:-1:-1;;30066:26:0;30088:4;30066:26;;;30133:12;:24;;;;;;30117:11;;:41;;;:15;:41;:::i;:::-;30103:11;:55;30224:10;30211:24;;;;:12;:24;;;;;;;;;30189:5;:17;;;;;;;:47;;;:21;:47;:::i;:::-;30175:10;30169:17;;;;:5;:17;;;;;;;;:67;;;;30247:12;:24;;;;;:28;;;30290:7;:19;;;;30286:124;;30339:10;30331:19;;;;:7;:19;;;;;30353:3;30331:25;;30371:10;27::-1;;39:1;23:18;;45:23;;30371:27:0;;;;;;-1:-1:-1;;;;;;30371:27:0;;;;;;30286:124;30438:10;30481:17;;;;:5;:17;;;;;;;;;;30425:74;;30450:12;30425:74;;30464:15;30425:74;;;;;;;;;;;;;;;;;;;;;;29780:727::o;8622:27::-;;;;:::o;20727:28::-;;;-1:-1:-1;;;;;20727:28:0;;:::o;19390:45::-;;;;;;;;;;;;;:::o;28712:324::-;28807:4;28834:9;28824:7;:19;;;-1:-1:-1;;;;;28861:15:0;;;;;;:7;:15;;;;;;;;;:60;;;;-1:-1:-1;;;;;;28897:13:0;;;;;;:5;:13;;;;;;:24;-1:-1:-1;28897:24:0;28861:60;:114;;;;-1:-1:-1;;;;;;28942:21:0;;;;;;:13;:21;;;;;;:33;-1:-1:-1;28861:114:0;:167;;;;-1:-1:-1;;;;;;29004:17:0;;;;;;:9;:17;;;;;;29025:3;;28996:26;;:3;;:26;:7;:26;:::i;:::-;:32;28861:167;28854:174;28712:324;-1:-1:-1;;;;;28712:324:0:o;9237:119::-;9279:77;;;;;;;;;;;;;;;;;;;9237:119;:::o;27961:200::-;28031:17;;-1:-1:-1;;;;;28031:17:0;28017:10;:31;28009:103;;;;-1:-1:-1;;;28009:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28136:17;;28123:10;:30;;-1:-1:-1;;;;;;28123:30:0;-1:-1:-1;;;;;28136:17:0;;;28123:30;;;;;;27961:200::o;37796:571::-;-1:-1:-1;;;;;37955:15:0;;37875:4;37955:15;;;:10;:15;;;;;;;;37910:10;37955:24;;;;;;;;37875:4;;37910:10;;37955:24;37996:14;;;;;:46;;;-1:-1:-1;;38014:16:0;:28;;37996:46;37992:300;;;38059:17;38079:89;38100:6;38079:89;;;;;;;;;;;;;;;;;:16;;:89;;:20;:89;:::i;:::-;-1:-1:-1;;;;;38183:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;38244:36;;;;;;;38059:109;;-1:-1:-1;38183:24:0;;:15;;38244:36;;;;;;;;;37992:300;;38304:33;38320:3;38325;38330:6;38304:15;:33::i;:::-;-1:-1:-1;38355:4:0;;37796:571;-1:-1:-1;;;;;37796:571:0:o;30840:444::-;30914:15;:3;18039:7;30914:15;:7;:15;:::i;:::-;30900:10;30889:22;;;;:10;:22;;;;;;;;:40;;;;30960:5;:17;;;;:29;;30982:6;30960:29;:21;:29;:::i;:::-;30946:10;30940:17;;;;:5;:17;;;;;;;;:49;;;;31031:16;:28;;;;:40;;31064:6;31031:40;:32;:40;:::i;:::-;31017:10;31000:28;;;;:16;:28;;;;;:71;31096:11;;:23;;31112:6;31096:23;:15;:23;:::i;:::-;31082:11;:37;31155:10;31145:21;;;;:9;:21;;;;;;31130:57;;-1:-1:-1;;;;;31145:21:0;;;;31180:6;31130:14;:57::i;:::-;31219:10;31245:22;;;;:10;:22;;;;;;;;;;31203:73;;31231:12;31203:73;;;;;;;;;;;;;;;;;;;;;;;30840:444;:::o;32000:556::-;-1:-1:-1;;;;;32058:15:0;;;;;;:7;:15;;;;;;;;32050:63;;;;-1:-1:-1;;;32050:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32132:15:0;;;;;;:7;:15;;;;;;32164:3;;32132:29;;18147:6;32132:29;:19;:29;:::i;:::-;:35;32124:73;;;;;-1:-1:-1;;;32124:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32222:13:0;;32208:11;32222:13;;;:5;:13;;;;;;:42;;18287:5;;32222:32;;18249:3;32222:32;:17;:32;:::i;:::-;:36;:42;:36;:42;:::i;:::-;-1:-1:-1;;;;;32291:13:0;;;;;;:5;:13;;;;;;32208:56;;-1:-1:-1;32291:25:0;;32208:56;32291:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;32275:13:0;;;;;;;:5;:13;;;;;;;;:41;;;;32352:10;32342:21;;:9;:21;;;;;;32327:57;;32342:21;;;32377:6;32327:14;:57::i;:::-;32395:50;32419:4;32426:10;32438:6;32395:15;:50::i;:::-;-1:-1:-1;;;;;32456:15:0;;;;;;:7;:15;;;;;;;;;32474:3;32456:21;;32493:55;;32527:12;32493:55;;;;;;;;;;32515:10;;32456:15;32493:55;;;;;;;;32000:556;;:::o;9651:128::-;9693:86;;;;;;;;;;;;;;;;;;9651:128;:::o;8523:35::-;8556:2;8523:35;:::o;19285:36::-;;;;;;;;;;;;;:::o;20241:39::-;;;;;;;;;;;;;;;:::o;31370:512::-;31429:10;31418:22;;;;:10;:22;;;;;;31410:70;;;;;-1:-1:-1;;;31410:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31510:10;31499:22;;;;:10;:22;;;;;;31524:3;-1:-1:-1;31491:74:0;;;;-1:-1:-1;;;31491:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31594:10;31585:20;;;;:8;:20;;;;;;;;31584:21;31576:68;;;;-1:-1:-1;;;31576:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31688:10;31700:28;;;;:16;:28;;;;;;31657:72;;31681:4;;31657:15;:72::i;:::-;31759:10;31802:28;;;;:16;:28;;;;;;;;;;31745:86;;31771:12;31745:86;;31785:15;31745:86;;;;;;;;;;;;;;;;;;;;;;31859:10;31873:1;31842:28;;;:16;:28;;;;;:32;31370:512::o;19509:36::-;;;;;;;;;;;;;;;:::o;24732:80::-;24779:25;24785:10;24797:6;24779:5;:25::i;:::-;24732:80;:::o;18867:27::-;;;;:::o;18663:44::-;;;;;;;;;;;;;:::o;25661:698::-;25744:10;25739:16;;;;:4;:16;;;;;;;;25731:76;;;;-1:-1:-1;;;25731:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25828:22;25840:9;25828:7;;;:22;:11;:22;:::i;:::-;25818:7;:32;;;25878:4;;:27;;;-1:-1:-1;;;25878:27:0;;;;;;;;;;-1:-1:-1;;;;;25878:4:0;;;;:18;;:27;;;;;25818:7;;25878:27;;;;;:4;:27;;;2:2:-1;;;;27:1;24;17:12;2:2;25878:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25878:27:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;25878:27:0;25869:36;;25861:93;;;;-1:-1:-1;;;25861:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25983:3;25965:7;:15;25973:6;-1:-1:-1;;;;;25965:15:0;-1:-1:-1;;;;;25965:15:0;;;;;;;;;;;;:21;;;;26019:86;26043:6;26019:86;;;;;;;;;;;;;;;;;26027:10;26019:19;;;;:7;:19;;;;;;;:86;;:23;:86;:::i;:::-;26005:10;25997:19;;;;:7;:19;;;;;;;;:108;;;;-1:-1:-1;;;;;26132:13:0;;;;:5;:13;;;;:25;;26150:6;26132:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;26116:13:0;;;;;;;:5;:13;;;;;;;;:41;;;;26195:9;:17;;;;;;26168:53;;26116:13;26195:17;26214:6;26168:14;:53::i;:::-;-1:-1:-1;;;;;26256:21:0;;;;;;:13;:21;;;;;;:33;;26282:6;26256:33;:25;:33;:::i;:::-;-1:-1:-1;;;;;26232:21:0;;;;;;:13;:21;;;;;;;;;:57;;;;26305:46;;26338:12;26305:46;;;;26232:21;;26318:10;;26305:46;;;;;;;;;;25661:698;;:::o;30619:77::-;30669:10;30683:5;30661:19;;;:7;:19;;;;;:27;;-1:-1:-1;;30661:27:0;;;30619:77::o;8184:81::-;8222:42;8184:81;:::o;34106:229::-;34181:10;;-1:-1:-1;;;;;34181:10:0;34167;:24;34159:81;;;;-1:-1:-1;;;34159:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34251:16:0;;34270:5;34251:16;;;:8;:16;;;;;;;;;:24;;-1:-1:-1;;34251:24:0;;;34291:36;;34314:12;34291:36;;;;;;;;;;;;;;34106:229;:::o;8723:45::-;;;;;;;;;;;;-1:-1:-1;;;;;8723:45:0;;:::o;23564:849::-;23645:10;23626:30;;;;:18;:30;;;;;;23618:79;;;;;-1:-1:-1;;;23618:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23735:10;23716:30;;;;:18;:30;;;;;;23749:3;-1:-1:-1;23708:83:0;;;;-1:-1:-1;;;23708:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23838:10;23802:14;23819:30;;;:18;:30;;;;;;;;;23895:9;;-1:-1:-1;;;;;23895:9:0;23878:28;;;:8;:28;;;;;;23962:23;;-1:-1:-1;;;23962:23:0;;;;23819:30;;23878:28;;23802:14;;23932:54;;23962:21;;:23;;;;;23819:30;;23962:23;;;;;;23895:9;23962:23;;;2:2:-1;;;;27:1;24;17:12;2:2;23962:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23962:23:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23962:23:0;23932:25;:10;23947:9;23932:25;:14;:25;:::i;:54::-;24030:10;23997:12;24012:29;;;:17;:29;;;;;;;;;-1:-1:-1;;;;;24012:29:0;24066:13;;;:7;:13;;;;;;;23917:69;;-1:-1:-1;24012:29:0;24056:23;;24052:132;;;-1:-1:-1;;;;;24096:13:0;;24112:1;24096:13;;;:7;:13;;;;;:17;24052:132;;;-1:-1:-1;;;;;24146:13:0;;;;;;:7;:13;;;;;;:26;;24164:7;24146:26;:17;:26;:::i;:::-;;24052:132;24194:9;;:41;;;-1:-1:-1;;;24194:41:0;;24213:10;24194:41;;;;;;;;;;;;-1:-1:-1;;;;;24194:9:0;;;;:18;;:41;;;;;;;;;;;;;;;:9;;:41;;;2:2:-1;;;;27:1;24;17:12;2:2;24194:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24194:41:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;24265:10:0;24279:1;24246:30;;;:18;24194:41;24246:30;;;;;;;:34;;;24291:17;:29;;;;;;:44;;-1:-1:-1;;;;;;24291:44:0;;;24353:52;;24381:12;24353:52;;;;;;;;;;-1:-1:-1;;;;;24353:52:0;;;;;;;;;;;23564:849;;;;:::o;20583:25::-;;;-1:-1:-1;;;;;20583:25:0;;:::o;23249:226::-;23336:15;:3;18039:7;23336:15;:7;:15;:::i;:::-;23322:10;23303:30;;;;:18;:30;;;;;;;;:48;;;;23379:17;:29;;;;;;23436:18;:30;;;;;;;23369:98;;23422:12;23369:98;;;;;;;;23322:10;;-1:-1:-1;;;;;23379:29:0;;;;23369:98;;;;;;;;;;;23249:226::o;10588:102::-;10650:32;10660:10;10672:9;10650;:32::i;18009:37::-;18039:7;18009:37;:::o;19852:52::-;;;;;;;;;;;;-1:-1:-1;;;;;19852:52:0;;:::o;28352:129::-;28404:4;28431:9;28421:7;:19;;;-1:-1:-1;;;;;28458:15:0;;;;;;;;:7;:15;;;-1:-1:-1;28458:15:0;;;;;;;28352:129::o;8990:49::-;;;;;;;;;;;;;;;:::o;36973:108::-;-1:-1:-1;;;;;37056:17:0;37032:4;37056:17;;;:8;:17;;;;;;;36973:108::o;27291:181::-;27378:10;;-1:-1:-1;;;;;27378:10:0;27364;:24;27356:85;;;;-1:-1:-1;;;27356:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27452:4;:12;;-1:-1:-1;;;;;;27452:12:0;-1:-1:-1;;;;;27452:12:0;;;;;;;;;;27291:181::o;33724:247::-;33798:10;;-1:-1:-1;;;;;33798:10:0;33784;:24;33776:79;;;;-1:-1:-1;;;33776:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33866:15:0;;33884:5;33866:15;;;:7;:15;;;;;;;;:23;;-1:-1:-1;;33866:23:0;;;;;;33900:9;:17;;;;;:24;;;;;33866:23;33900:24;;;33949:5;:13;;;;;;33935:28;;33874:6;;33935:5;:28::i;22674:491::-;-1:-1:-1;;;;;22746:26:0;;;;;;:16;:26;;;;;;22738:75;;;;;-1:-1:-1;;;22738:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22832:26:0;;;;;;:16;:26;;;;;;22861:3;-1:-1:-1;22824:74:0;;;;;-1:-1:-1;;;22824:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22944:9;;-1:-1:-1;;;;;22944:9:0;22909:15;22927:28;;;:8;:28;;;;;;;;;23030:23;;-1:-1:-1;;;23030:23:0;;;;22927:28;;22981:73;;22944:9;;23030:21;;:23;;;;;22927:28;23030:23;;;;;22944:9;23030:23;;;2:2:-1;;;;27:1;24;17:12;2:2;23030:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23030:23:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23030:23:0;-1:-1:-1;;;;;22996:28:0;;;;;;:18;23030:23;22996:28;;;;;22981:44;;:10;;:44;:14;:44;:::i;:73::-;23132:10;23106:38;23114:29;;;:17;:29;;;;;;;;;-1:-1:-1;;;;;23114:29:0;23106:38;;:7;:38;;;;;;22966:88;;-1:-1:-1;23106:51:0;;22966:88;23106:51;:42;:51;:::i;:::-;23091:10;23065:38;23073:29;;;:17;:29;;;;;;;;;-1:-1:-1;;;;;23073:29:0;23065:38;;:7;:38;;;;;:92;-1:-1:-1;;;22674:491:0:o;20046:48::-;;;;;;;;;;;;;:::o;12753:1212::-;12832:4;12871:12;12857:11;:26;12849:74;;;;-1:-1:-1;;;12849:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12958:23:0;;12936:19;12958:23;;;:14;:23;;;;;;;;12996:17;12992:58;;13037:1;13030:8;;;;;12992:58;-1:-1:-1;;;;;13110:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;13131:16:0;;13110:38;;;;;;;;;:48;;:63;-1:-1:-1;13106:147:0;;-1:-1:-1;;;;;13197:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;13218:16:0;;;;13197:38;;;;;;;;13233:1;13197:44;;;-1:-1:-1;13190:51:0;;13106:147;-1:-1:-1;;;;;13314:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;13310:88:0;;;13385:1;13378:8;;;;;13310:88;13410:12;-1:-1:-1;;13452:16:0;;13479:428;13494:5;13486:13;;:5;:13;;;13479:428;;;13558:1;13541:13;;;13540:19;;;13532:27;;13601:20;;:::i;:::-;-1:-1:-1;;;;;;13624:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;13601:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13671:27;;13667:229;;;13726:8;;;;-1:-1:-1;13719:15:0;;-1:-1:-1;;;;13719:15:0;13667:229;13760:12;;:26;;;-1:-1:-1;13756:140:0;;;13815:6;13807:14;;13756:140;;;13879:1;13870:6;:10;13862:18;;13756:140;13479:428;;;;;-1:-1:-1;;;;;;13924:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;12753:1212:0;;;;:::o;9862:39::-;;;;;;;;;;;;;:::o;26911:232::-;26985:10;;-1:-1:-1;;;;;26985:10:0;26971;:24;26963:87;;;;-1:-1:-1;;;26963:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27061:9:0;;27073:5;27061:9;;;:4;:9;;;;;;;;;:17;;-1:-1:-1;;27061:17:0;;;27094:41;;27110:12;27094:41;;27124:10;27094:41;;;;;;;;;;;;;;;;;;;;26911:232;:::o;19953:50::-;;;;;;;;;;;;;:::o;18212:40::-;18249:3;18212:40;:::o;8423:37::-;;;;;;;;;;;;;;-1:-1:-1;;;8423:37:0;;;;:::o;18115:38::-;18147:6;18115:38;:::o;29121:448::-;29189:10;29176:24;;;;:12;:24;;;;;;:29;29168:76;;;;-1:-1:-1;;;29168:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29273:10;29263:21;;;;:9;:21;;;;;;;;29255:69;;;;-1:-1:-1;;;29255:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29358:13;:3;17925:6;29358:13;:7;:13;:::i;:::-;29344:10;29335:20;;;;:8;:20;;;;;;;;:36;;;;29382:12;:24;;;;;;:33;;;29426:50;;29462:4;29409:6;29426:15;:50::i;:::-;29506:10;29532:20;;;;:8;:20;;;;;;;;;;29492:69;;29518:12;29492:69;;;;;;;;;;;;;;;;;;;;;;;29121:448;:::o;24567:157::-;24636:10;;-1:-1:-1;;;;;24636:10:0;24622;:24;24614:66;;;;;-1:-1:-1;;;24614:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24697:10;;24691:25;;-1:-1:-1;;;;;24697:10:0;24709:6;24691:5;:25::i;37342:147::-;37402:4;37419:40;37435:10;37447:3;37452:6;37419:15;:40::i;:::-;-1:-1:-1;37477:4:0;37342:147;;;;:::o;27637:197::-;27723:10;;-1:-1:-1;;;;;27723:10:0;27709;:24;27701:83;;;;-1:-1:-1;;;27701:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27795:17;:31;;-1:-1:-1;;;;;;27795:31:0;-1:-1:-1;;;;;27795:31:0;;;;;;;;;;27637:197::o;18454:42::-;;;;;;;;;;;;;:::o;8056:78::-;8091:42;8056:78;:::o;21861:664::-;21960:10;21981:3;21942:29;;;:17;:29;;;;;;-1:-1:-1;;;;;21942:29:0;:43;21934:122;;;;-1:-1:-1;;;21934:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22067:9;;:57;;;-1:-1:-1;;;22067:57:0;;22090:10;22067:57;;;;22110:4;22067:57;;;;;;;;;;;;-1:-1:-1;;;;;22067:9:0;;;;:22;;:57;;;;;;;;;;;;;;;:9;;:57;;;2:2:-1;;;;27:1;24;17:12;2:2;22067:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22067:57:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;22154:10:0;22135:30;;;;:18;22067:57;22135:30;;;;;;;:39;;;22185:17;:29;;;;;:35;;-1:-1:-1;;;;;;22185:35:0;-1:-1:-1;;;;;22185:35:0;;;;;22262:15;:3;22270:6;22262:7;:15::i;:::-;22248:10;22231:28;;;;:16;:28;;;;;;;;:46;;;;-1:-1:-1;;;;;22293:9:0;;;;:4;:9;;;;;;22292:10;:41;;;;-1:-1:-1;;;;;;22306:21:0;;;;;;:16;:21;;;;;;22330:3;-1:-1:-1;22292:41:0;22288:166;;;22361:10;;22350:38;;;-1:-1:-1;;;22350:38:0;;-1:-1:-1;;;;;22350:38:0;;;;;;;;;22361:10;;;;;22350:33;;:38;;;;;;;;;;;;;;22361:10;;22350:38;;;2:2:-1;;;;27:1;24;17:12;2:2;22350:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22350:38:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22427:15:0;;-1:-1:-1;22427:3:0;18039:7;22427:15;:7;:15;:::i;:::-;-1:-1:-1;;;;;22403:21:0;;;;;;:16;:21;;;;;:39;22288:166;22469:48;;;22496:12;22469:48;;;;;;;;;;22484:10;;-1:-1:-1;;;;;22469:48:0;;;;;;;;;;;;;;21861:664;;:::o;19068:40::-;;;;;;;;;;;;;;;:::o;29577:99::-;29622:16;29658:10;29651:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29651:17:0;;;;;;;;;;;;;;;;;;;;;;;29577:99;:::o;20139:48::-;;;;;;;;;;;;;:::o;12102:220::-;-1:-1:-1;;;;;12206:23:0;;12167:4;12206:23;;;:14;:23;;;;;;;;12247:16;:67;;12313:1;12247:67;;;-1:-1:-1;;;;;12266:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;12287:16:0;;12266:38;;;;;;;;12302:1;12266:44;;12247:67;12240:74;12102:220;-1:-1:-1;;;12102:220:0:o;20953:654::-;21012:9;;-1:-1:-1;;;;;21012:9:0;21004:34;20996:82;;;;-1:-1:-1;;;20996:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8091:42;-1:-1:-1;;;;;21089:12:0;;21108:9;21089:31;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21089:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;21131:37:0;;;-1:-1:-1;;;21131:37:0;;8222:42;21131:37;;;;21158:9;21131:37;;;;;;8091:42;;-1:-1:-1;21131:12:0;;-1:-1:-1;21131:37:0;;;;;-1:-1:-1;21131:37:0;;;;;;;-1:-1:-1;8091:42:0;21131:37;;;2:2:-1;;;;27:1;24;17:12;2:2;21131:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21131:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21179:28:0;;-1:-1:-1;21193:4:0;21200:6;21179:5;:28::i;:::-;21277:4;21260:23;;;;:8;:23;;;;;;;;;21218:10;:25;;;;;8222:42;21218:39;;;;;;;;;:65;;;21415:23;;;;;;;21440:29;;-1:-1:-1;;;21440:29:0;;;;;;;;;;8222:42;;21368:16;;21277:4;;8091:42;;21260:23;;8091:42;;21440:14;;:29;;;;;21260:23;;21440:29;;;;;;8091:42;21440:29;;;2:2:-1;;;;27:1;24;17:12;2:2;21440:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21440:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21440:29:0;21471:1;;21477:10;21489:13;:3;21497:4;21489:13;:7;:13;:::i;:::-;21368:135;;;;;;;;;;;;;-1:-1:-1;;;;;21368:135:0;-1:-1:-1;;;;;21368:135:0;;;;;;-1:-1:-1;;;;;21368:135:0;-1:-1:-1;;;;;21368:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21368:135:0;-1:-1:-1;;;;;21368:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21368:135:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21368:135:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;21368:135:0;21546:13;;-1:-1:-1;;;21546:13:0;;;;8222:42;;21546:11;;:13;;;;;21368:135;;21546:13;;;;;;;8222:42;21546:13;;;2:2:-1;;;;27:1;24;17:12;2:2;21546:13:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21546:13:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21546:13:0;21538:60;;;-1:-1:-1;;;21538:60:0;;21577:4;21538:60;;;;8091:42;21538:60;;;;;;-1:-1:-1;;;;;21538:30:0;;;;;;:60;;;;;21546:13;;21538:60;;;;;;;;:30;:60;;;2:2:-1;;;;27:1;24;17:12;2:2;21538:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21538:60:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21538:60:0;21514:9;:85;;-1:-1:-1;;;;;;21514:85:0;-1:-1:-1;;;;;21514:85:0;;;;;;;;;20953:654::o;17897:34::-;17925:6;17897:34;:::o;11124:777::-;11240:23;9279:77;;;;;;;;;;;;;;;;;;;11320:4;;;;;;;;;-1:-1:-1;;;11320:4:0;;;;;;;;9279:77;-1:-1:-1;11304:22:0;11328:12;:10;:12::i;:::-;11350:4;11276:80;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11276:80:0;-1:-1:-1;;;;;11276:80:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;11276:80:0;;;11266:91;;;;;;11240:117;;11368:18;9496:65;;;;;;;;;;;;;;;;;;;11399:57;;;;;;;;-1:-1:-1;;;;;11399:57:0;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;11399:57:0;;;;;11389:68;;;;;;-1:-1:-1;;;11495:57:0;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;11495:57:0;;;;;;11485:68;;;;;;;;;-1:-1:-1;11584:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11389:68;;-1:-1:-1;11485:68:0;;-1:-1:-1;;;11584:26:0;;;;;;;11399:57;-1:-1:-1;;11584:26:0;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;11584:26:0;;-1:-1:-1;;11584:26:0;;;-1:-1:-1;;;;;;;11629:23:0;;11621:70;;;;-1:-1:-1;;;11621:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11719:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;11710:28;;11702:71;;;;;-1:-1:-1;;;11702:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11799:6;11792:3;:13;;11784:60;;;;-1:-1:-1;;;11784:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11862:31;11872:9;11883;11862;:31::i;:::-;11855:38;;;;11124:777;;;;;;;:::o;26520:220::-;26591:10;;-1:-1:-1;;;;;26591:10:0;26577;:24;26569:81;;;;-1:-1:-1;;;26569:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26661:9:0;;;;;;:4;:9;;;;;;;;;:16;;-1:-1:-1;;26661:16:0;26673:4;26661:16;;;26693:39;;26707:12;26693:39;;26721:10;26693:39;;;;;;;;;;;;;;;;;;;;26520:220;:::o;19173:39::-;;;;;;;;;;;;;:::o;35942:828::-;36069:23;9279:77;;;;;;;;;;;;;;;;;;;36149:4;;;;;;;;;-1:-1:-1;;;36149:4:0;;;;;;;;9279:77;-1:-1:-1;36133:22:0;36157:12;:10;:12::i;:::-;36179:4;36105:80;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36105:80:0;-1:-1:-1;;;;;36105:80:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;36105:80:0;;;36095:91;;;;;;36069:117;;36197:18;9693:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36280:13:0;;;;;;;:6;:13;;;;;;;:15;;;;;;;;;36228:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;36228:78:0;;;;;36218:89;;;;;;-1:-1:-1;;;36345:57:0;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;36345:57:0;;;;;;36335:68;;;;;;;;;36434:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36218:89;;-1:-1:-1;36335:68:0;;-1:-1:-1;36280:13:0;;:15;;36434:26;;;;;-1:-1:-1;;36434:26:0;;;;;;;;;;;36280:15;36434:26;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;36434:26:0;;-1:-1:-1;;36434:26:0;;;-1:-1:-1;;;;;;;36479:23:0;;36471:63;;;;;-1:-1:-1;;;36471:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36566:5;-1:-1:-1;;;;;36553:18:0;:9;-1:-1:-1;;;;;36553:18:0;;36545:53;;;;;-1:-1:-1;;;36545:53:0;;;;;;;;;;;;-1:-1:-1;;;36545:53:0;;;;;;;;;;;;;;;36624:8;36617:3;:15;;36609:55;;;;;-1:-1:-1;;;36609:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36677:17:0;;;;;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;:35;;;36730:32;;;;;;;;;;;;;;;;;35942:828;;;;;;;;;;;:::o;19712:50::-;;;;;;;;;;;;;:::o;34639:136::-;-1:-1:-1;;;;;34739:19:0;;;34715:4;34739:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;34639:136::o;18960:41::-;;;;;;;;;;;;;:::o;9450:111::-;9496:65;;;;;;;;;;;;;;;;;;9450:111;:::o;18259:33::-;18287:5;18259:33;:::o;20483:27::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20483:27:0;;-1:-1:-1;20483:27:0;:::o;18549:48::-;;;;;;;;;;;;;:::o;8851:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18353:40::-;;;;;;;;;;;;;:::o;20615:32::-;;;-1:-1:-1;;;;;20615:32:0;;:::o;32700:242::-;32790:10;;32751:4;;-1:-1:-1;;;;;32790:10:0;32776;:24;32768:81;;;;-1:-1:-1;;;32768:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32860:16:0;;;;;;:8;:16;;;;;;;;;:23;;-1:-1:-1;;32860:23:0;32879:4;32860:23;;;32899:35;;32921:12;32899:35;;;;;;;;;;;;;;32700:242;;;:::o;20352:41::-;;;;;;;;;;;;;;;:::o;18767:37::-;;;;;;;;;;;;;:::o;19608:39::-;;;;;;;;;;;;;:::o;38375:523::-;-1:-1:-1;;;;;38467:17:0;;38459:86;;;;-1:-1:-1;;;38459:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38564:17:0;;38556:84;;;;-1:-1:-1;;;38556:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38669:79;38687:6;38669:79;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38669:13:0;;;;;;:8;:13;;;;;;;:79;;:17;:79;:::i;:::-;38653:8;:13;38662:3;-1:-1:-1;;;;;38653:13:0;-1:-1:-1;;;;;38653:13:0;;;;;;;;;;;;:95;;;;38775:73;38793:6;38775:73;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38775:13:0;;;;;;:8;:13;;;;;;;:73;;:17;:73;:::i;:::-;-1:-1:-1;;;;;38759:13:0;;;;;;;:8;:13;;;;;;;;;:89;;;;38864:26;;;;;;;38759:13;;38864:26;;;;;;;;;;;;;38375:523;;;:::o;14351:876::-;14454:6;-1:-1:-1;;;;;14444:16:0;:6;-1:-1:-1;;;;;14444:16:0;;;:30;;;;;14473:1;14464:6;:10;14444:30;14440:780;;;-1:-1:-1;;;;;14495:20:0;;;14491:371;;-1:-1:-1;;;;;14555:22:0;;14536:16;14555:22;;;:14;:22;;;;;;;;;14613:13;:60;;14672:1;14613:60;;;-1:-1:-1;;;;;14629:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;14649:13:0;;14629:34;;;;;;;;14661:1;14629:40;;14613:60;14596:77;;14692:14;14709:61;14723:6;14709:61;;;;;;;;;;;;;;;;;:9;;:61;;:13;:61;:::i;:::-;14692:78;;14789:57;14806:6;14814:9;14825;14836;14789:16;:57::i;:::-;14491:371;;;;-1:-1:-1;;;;;14882:20:0;;;14878:331;;-1:-1:-1;;;;;14942:22:0;;14923:16;14942:22;;;:14;:22;;;;;;;;;15000:13;:60;;15059:1;15000:60;;;-1:-1:-1;;;;;15016:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;15036:13:0;;15016:34;;;;;;;;15048:1;15016:40;;15000:60;14983:77;-1:-1:-1;15079:14:0;15096:21;14983:77;15110:6;15096:21;:13;:21;:::i;:::-;15079:38;;15136:57;15153:6;15161:9;15172;15183;15136:16;:57::i;14878:331::-;14351:876;;;:::o;1887:137::-;1939:4;1963:53;1967:1;1970;1963:53;;;;;;;;;;;;;;;;;:3;:53::i;1018:169::-;1070:4;1096:5;;;1120:6;;;;1112:46;;;;;-1:-1:-1;;;1112:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;2313:180;2393:4;2426:12;2418:6;;;;2410:29;;;;-1:-1:-1;;;2410:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2410:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2459:5:0;;;2313:180::o;2736:459::-;2788:4;3030:6;3026:47;;-1:-1:-1;3060:1:0;3053:8;;3026:47;3094:5;;;3098:1;3094;:5;:1;3118:5;;;;;:10;3110:56;;;;-1:-1:-1;;;3110:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4370:123;4422:4;4446:39;4450:1;4453;4446:39;;;;;;;;;;;;;;;;;:3;:39::i;25112:323::-;-1:-1:-1;;;;;25181:17:0;;25173:65;;;;-1:-1:-1;;;25173:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25265;25283:6;25265:65;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25265:13:0;;;;;;:8;:13;;;;;;;:65;;:17;:65;:::i;:::-;-1:-1:-1;;;;;25249:13:0;;;;;;:8;:13;;;;;:81;25355:11;;:23;;25371:6;25355:23;:15;:23;:::i;:::-;25341:11;:37;25394:33;;;;;;;;25416:1;;-1:-1:-1;;;;;25394:33:0;;;;;;;;;;;;25112:323;;:::o;13973:370::-;-1:-1:-1;;;;;14076:20:0;;;14050:23;14076:20;;;:9;:20;;;;;;;;;;14131:5;:16;;;;;;14158:20;;;;:32;;;-1:-1:-1;;;;;;14158:32:0;;;;;;;14208:54;;14076:20;;;;;14131:16;;14158:32;;14076:20;;;14208:54;;14050:23;14208:54;14275:60;14290:15;14307:9;14318:16;14275:14;:60::i;:::-;13973:370;;;;:::o;24820:284::-;24923:11;;:23;;24939:6;24923:23;:15;:23;:::i;:::-;24909:11;:37;-1:-1:-1;;;;;25022:13:0;;;;;;:8;:13;;;;;;:25;;25040:6;25022:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;25006:13:0;;;;;;:8;:13;;;;;;;;:41;;;;25063:33;;;;;;;25006:13;;;;25063:33;;;;;;;;;;24820:284;;:::o;38906:150::-;39013:9;38906:150;:::o;1438:180::-;1518:4;1544:5;;;1576:12;1568:6;;;;1560:29;;;;-1:-1:-1;;;1560:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;1560:29:0;-1:-1:-1;1609:1:0;1438:180;-1:-1:-1;;;;1438:180:0:o;15235:621::-;15349:18;15370:72;15377:12;15370:72;;;;;;;;;;;;;;;;;:6;:72::i;:::-;15349:93;;15472:1;15457:12;:16;;;:85;;;;-1:-1:-1;;;;;;15477:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;15500:16:0;;15477:40;;;;;;;;;:50;:65;;;:50;;:65;15457:85;15453:329;;;-1:-1:-1;;;;;15557:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;15580:16:0;;15557:40;;;;;;;;15595:1;15557:46;:57;;;15453:329;;;15682:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15643:22:0;;-1:-1:-1;15643:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;15643:72:0;;;;;;;;;;;;;15728:25;;;:14;:25;;;;;;:44;;15756:16;;;15728:44;;;;;;;;;;15453:329;15797:51;;;;;;;;;;;;;;-1:-1:-1;;;;;15797:51:0;;;;;;;;;;;15235:621;;;;;:::o;4981:333::-;5061:4;5160:12;5153:5;5145:28;;;;-1:-1:-1;;;5145:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;5145:28:0;;5184:6;5197:1;5193;:5;;;;;;;4981:333;-1:-1:-1;;;;;4981:333:0:o;15864:161::-;15939:6;15977:12;15970:5;15966:9;;15958:32;;;;-1:-1:-1;;;15958:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;15958:32:0;-1:-1:-1;16015:1:0;;15864:161;-1:-1:-1;;15864:161:0:o;7845:31214::-;;;;;;;;;;-1:-1:-1;7845:31214:0;;;;;;;;:::o

Swarm Source

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