ETH Price: $3,942.78 (+7.44%)

Contract

0xF479E3b0dBCaC892E1fC4978A1634645710FE827
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Age:90D
Amount:Between 1-1k
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

Update your filters to view other transactions

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
154953102022-09-08 7:33:48825 days ago1662622428
0xF479E3b0...5710FE827
3.46303937 ETH
145186712022-04-04 9:18:21982 days ago1649063901
0xF479E3b0...5710FE827
0.00097 ETH
145185992022-04-04 9:00:32982 days ago1649062832
0xF479E3b0...5710FE827
0.00097 ETH
145185772022-04-04 8:56:06982 days ago1649062566
0xF479E3b0...5710FE827
0.00097 ETH
143051642022-03-02 3:26:561016 days ago1646191616
0xF479E3b0...5710FE827
0.00485 ETH
142917482022-02-28 1:39:351018 days ago1646012375
0xF479E3b0...5710FE827
0.00485 ETH
142913682022-02-28 0:08:471018 days ago1646006927
0xF479E3b0...5710FE827
0.00388 ETH
142908842022-02-27 22:17:511018 days ago1646000271
0xF479E3b0...5710FE827
0.00388 ETH
142819642022-02-26 13:22:391019 days ago1645881759
0xF479E3b0...5710FE827
0.00485 ETH
142681942022-02-24 10:14:351021 days ago1645697675
0xF479E3b0...5710FE827
0.00291 ETH
142454062022-02-20 21:33:241025 days ago1645392804
0xF479E3b0...5710FE827
0.01843 ETH
141960812022-02-13 6:15:551032 days ago1644732955
0xF479E3b0...5710FE827
0.00291 ETH
141872922022-02-11 21:46:411034 days ago1644616001
0xF479E3b0...5710FE827
0.00097 ETH
141797602022-02-10 17:53:481035 days ago1644515628
0xF479E3b0...5710FE827
0.00873 ETH
141797522022-02-10 17:52:521035 days ago1644515572
0xF479E3b0...5710FE827
0.00873 ETH
141796932022-02-10 17:39:191035 days ago1644514759
0xF479E3b0...5710FE827
0.00097 ETH
141796862022-02-10 17:38:261035 days ago1644514706
0xF479E3b0...5710FE827
0.00097 ETH
141791272022-02-10 15:23:471035 days ago1644506627
0xF479E3b0...5710FE827
0.03201 ETH
141789852022-02-10 14:54:461035 days ago1644504886
0xF479E3b0...5710FE827
0.0679 ETH
141598812022-02-07 15:57:231038 days ago1644249443
0xF479E3b0...5710FE827
0.0097 ETH
141535782022-02-06 16:21:511039 days ago1644164511
0xF479E3b0...5710FE827
0.00097 ETH
141503642022-02-06 4:44:291040 days ago1644122669
0xF479E3b0...5710FE827
0.097 ETH
141502352022-02-06 4:13:481040 days ago1644120828
0xF479E3b0...5710FE827
0.00485 ETH
141499112022-02-06 3:00:191040 days ago1644116419
0xF479E3b0...5710FE827
0.00097 ETH
141494332022-02-06 1:19:071040 days ago1644110347
0xF479E3b0...5710FE827
0.0097 ETH
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DragonCrossbreed

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 24 : DragonCrossbreed.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Address.sol";
import "./BaseAuctionReceiver.sol";
import "./structs/DragonInfo.sol";
import "./utils/GenesLib.sol";
import "./utils/Random.sol";
import "./DragonCreator.sol";
import "./DragonToken.sol";

contract DragonCrossbreed is BaseAuctionReceiver {

    using Address for address payable;

    uint constant HOURS_MAX_PERIOD = 24 * 100; //100 days
    uint constant THRESHOLD_DENOMINATOR = 100*1e8;

    uint[10] private _platformPrices;
    uint[10] private _bonusesCommonThresholds;
    uint[5] private _probabilityRareThresholds;
    uint[5] private _probabilityEpicThresholds;

    address private _dragonCreatorAddress;
    address private _dragonRandomnessAddress;

    mapping(address => uint) private _rewards;

    GenesLib.GenesRange private COMMON_RANGE;
    GenesLib.GenesRange private RARE_RANGE;
    GenesLib.GenesRange private EPIC_RANGE;

    event RewardAdded(address indexed operator, address indexed to, uint amount);
    event RewardClaimed(address indexed claimer, address indexed to, uint amount);

    constructor(
        address accessControl, 
        address dragonToken, 
        address dragonCreator, 
        uint fees100) BaseAuctionReceiver(accessControl, dragonToken, fees100) {
            
        _dragonCreatorAddress = dragonCreator;

        _platformPrices = [
            3*1e15, 5*1e15, 8*1e15, 10*1e15, 15*1e15, 
            20*1e15, 25*1e15, 30*1e15, 35*1e15, 40*1e15
        ];
        _bonusesCommonThresholds = [
            1953125, 3906250, 7812500, 15625000, 31250000,
            62500000, 125000000, 250000000, 500000000, 1000000000
        ];
        _probabilityRareThresholds = [1000000000, 500000000, 250000000, 125000000, 62500000];
        _probabilityEpicThresholds = [0, 15625000, 7812500, 3906250, 1953125];

        COMMON_RANGE = GenesLib.GenesRange({from: 0, to: 15});
        RARE_RANGE = GenesLib.GenesRange({from: 15, to: 20});
        EPIC_RANGE = GenesLib.GenesRange({from: 20, to: 25});
    }

    function maxTotalPeriod() internal override virtual pure returns (uint) {
        return HOURS_MAX_PERIOD;
    }

    function numOfPriceChangesPerHour() internal override virtual pure returns (uint) {
        return 30;
    }

    function dragonCreatorAddress() public view returns (address) {
        return _dragonCreatorAddress;
    }

    function setDragonCreatorAddress(address newAddress) external onlyRole(CEO_ROLE) {
        address previousAddress = _dragonCreatorAddress;
        _dragonCreatorAddress = newAddress;
        emit AddressChanged("dragonCreator", previousAddress, newAddress);
    }

    function platformPrice(uint genesCount) public view returns (uint) {
        return _platformPrices[genesCount];
    }

    function setPlatformPrices(uint[10] calldata newPlatformPrices) external onlyRole(CFO_ROLE) {
        _platformPrices = newPlatformPrices;
    }

    function bonusCommonThresholdAt(uint index) external view returns (uint) {
        return _bonusesCommonThresholds[index];
    } 

    function setBonusCommonThreshold(uint[10] calldata newBonusesCommonThresholds) external onlyRole(CFO_ROLE) {
        _bonusesCommonThresholds = newBonusesCommonThresholds;
    }

    function probabilityRareThresholdAt(uint index) external view returns (uint) {
        return _probabilityRareThresholds[index];
    } 

    function setProbabilityRareThreshold(uint[5] calldata newProbabilityRareThresholds) external onlyRole(CFO_ROLE) {
        _probabilityRareThresholds = newProbabilityRareThresholds;
    }

    function probabilityEpicThresholdAt(uint index) external view returns (uint) {
        return _probabilityEpicThresholds[index];
    } 

    function setProbabilityEpicThreshold(uint[5] calldata newProbabilityEpicThresholds) external onlyRole(CFO_ROLE) {
        _probabilityEpicThresholds = newProbabilityEpicThresholds;
    }

    function crossbreedPlatformPrice(uint dragon1Id, uint dragon2Id) external view returns (uint) {
        DragonToken dragonToken = DragonToken(tokenContract());
        uint genes1 = dragonToken.dragonInfo(dragon1Id).genes;
        uint genes2 = dragonToken.dragonInfo(dragon2Id).genes;
        (uint countRare, uint countEpic) = calcCommonRareEpicGenesCount(genes1, genes2);
        return platformPrice(countRare + countEpic);
    }

    function calcCommonRareEpicGenesCount(uint genes1, uint genes2) internal pure returns (uint, uint) {
        uint mask = DragonInfo.MASK;
        
        uint countRare = 0;
        uint countEpic = 0;

        for (uint i = 0; i < 10; i++) { //just Epic and Rare genes are important to count
            if (genes1 & mask > 0 && genes2 & mask > 0) {
                if (i < 5) {
                    countEpic++;
                }
                else {
                    countRare++;
                }
            }
            mask = mask >> 4;
        }
        return (countRare, countEpic);
    }

    function processERC721(address from, uint tokenId, bytes calldata data) 
        internal virtual override {
        DragonInfo.Details memory info = DragonToken(tokenContract()).dragonInfo(tokenId);
        require(info.dragonType != DragonInfo.Types.Legendary, "DragonCrossbreed: the dragon cannot be a Legendary-type");
        super.processERC721(from, tokenId, data);
    }

    function breed(uint myDragonId, uint anotherDragonId, uint salt) external payable {
        DragonToken dragonToken = DragonToken(tokenContract());

        require(
            dragonToken.ownerOf(myDragonId) == _msgSender(), 
            "DragonCrossbreed: the caller is not an owner of the dragon"
        );
        require(
            isLocked(anotherDragonId) || dragonToken.ownerOf(anotherDragonId) == _msgSender(), 
            "DragonCrossbreed: another dragon is not locked nor doesn't belong to the caller"
        );

        DragonInfo.Details memory parent1 = dragonToken.dragonInfo(myDragonId);
        DragonInfo.Details memory parent2 = dragonToken.dragonInfo(anotherDragonId);

        (uint countRare, uint countEpic) = calcCommonRareEpicGenesCount(parent1.genes, parent2.genes);
        uint _platformPrice = platformPrice(countRare + countEpic);
        uint _rentPrice = 0;
        if (isLocked(anotherDragonId)) {
            _rentPrice = priceOf(anotherDragonId);
        }
        require(msg.value >= (_platformPrice + _rentPrice), "DragonCrossbreed: incorrect amount sent to the contract");
        
        uint newGenes = 0;
        uint randomValue = Random.rand(salt);
        uint derivedRandomValue = Random.rand(randomValue ^ salt ^ block.difficulty);
        if (parent1.dragonType == DragonInfo.Types.Common && parent2.dragonType == DragonInfo.Types.Common) {
            (uint y, uint z) = _randomCountOfNewRareEpic(randomValue);
            if (y > 0) {
                uint[] memory positions = GenesLib.randomGenePositions(RARE_RANGE, y, randomValue);
                newGenes = GenesLib.randomSetGenesToPositions(newGenes, positions, randomValue, false);
            }
            if (z > 0) {
                uint[] memory positions = GenesLib.randomGenePositions(EPIC_RANGE, z, randomValue);
                newGenes = GenesLib.randomSetGenesToPositions(newGenes, positions, randomValue, false);
            }
            if (newGenes == 0 && _randomNewRare(0, derivedRandomValue)) { //if the bonuses above were not triggered
                uint[] memory positions = GenesLib.randomGenePositions(RARE_RANGE, 1, derivedRandomValue);
                newGenes = GenesLib.randomSetGenesToPositions(newGenes, positions, derivedRandomValue, false);
            }
            newGenes = GenesLib.randomInheritGenesInRange(newGenes, parent1.genes, parent2.genes, COMMON_RANGE, randomValue, true);
        }
        else if (parent1.dragonType == DragonInfo.Types.Epic20 && parent2.dragonType == DragonInfo.Types.Epic20) {
            //add Epic gene
            uint[] memory positions = GenesLib.randomGenePositions(EPIC_RANGE, 1, randomValue);
            newGenes = GenesLib.randomSetGenesToPositions(newGenes, positions, randomValue, false);
            //inherit Common
            newGenes = GenesLib.randomInheritGenesInRange(newGenes, parent1.genes, parent2.genes, COMMON_RANGE, randomValue, true);
            //inherit Rare
            newGenes = GenesLib.randomInheritGenesInRange(newGenes, parent1.genes, parent2.genes, RARE_RANGE, randomValue, false);
        }
        else {
            //inherit Common
            newGenes = GenesLib.randomInheritGenesInRange(newGenes, parent1.genes, parent2.genes, COMMON_RANGE, randomValue, true);
            //inherit Rare
            newGenes = GenesLib.randomInheritGenesInRange(newGenes, parent1.genes, parent2.genes, RARE_RANGE, randomValue, false);
            //inherit Epic
            newGenes = GenesLib.randomInheritGenesInRange(newGenes, parent1.genes, parent2.genes, EPIC_RANGE, randomValue, false);

            if (countRare < 5 && _randomNewRare(countRare, randomValue)) {
                (uint count, uint[] memory positions) = GenesLib.zeroGenePositionsInRange(newGenes, RARE_RANGE);
                uint pos = Random.randFrom(positions, 0, count, derivedRandomValue);
                newGenes = GenesLib.setGeneLevelTo(newGenes, GenesLib.randomGeneLevel(derivedRandomValue, false), pos);
            }
            else if (countRare == 5 && countEpic < 5 && _randomNewEpic(countEpic, randomValue)) {
                (uint count, uint[] memory positions) = GenesLib.zeroGenePositionsInRange(newGenes, EPIC_RANGE);
                uint pos = Random.randFrom(positions, 0, count, derivedRandomValue);
                newGenes = GenesLib.setGeneLevelTo(newGenes, GenesLib.randomGeneLevel(derivedRandomValue, false), pos);
            }
        }

        if (_rentPrice > 0) {
            payable(holderOf(anotherDragonId))
                .sendValue(_rentPrice - calcFees(_rentPrice, feesPercent()));
        }
        DragonCreator(dragonCreatorAddress()).giveBirth(myDragonId, anotherDragonId, newGenes, _msgSender());
    }

    function addReward(address to, uint amount) external onlyRole(COO_ROLE) {
        require(!Address.isContract(to), "DragonCrossbreed: address cannot be contract");
        _rewards[to] += amount;
        emit RewardAdded(_msgSender(), to, amount);
    }

    function claimReward(address payable to, uint amount) external {
        require(!Address.isContract(to), "DragonCrossbreed: address cannot be contract");
        require(amount <= _rewards[_msgSender()], "DragonCrossbreed: the given amount exceeded the allowed reward");
        
        to.sendValue(amount);
        _rewards[_msgSender()] -= amount;

        emit RewardClaimed(_msgSender(), to, amount);
    }

    function _randomCountOfNewRareEpic(uint randomValue) internal view returns (uint, uint) {
        uint r = randomValue % THRESHOLD_DENOMINATOR;
        return 
            (r <= _bonusesCommonThresholds[0]) ? (5, 5) :
            (r <= _bonusesCommonThresholds[1]) ? (5, 4) :
            (r <= _bonusesCommonThresholds[2]) ? (5, 3) :
            (r <= _bonusesCommonThresholds[3]) ? (5, 2) :
            (r <= _bonusesCommonThresholds[4]) ? (5, 1) :
            (r <= _bonusesCommonThresholds[5]) ? (5, 0) :
            (r <= _bonusesCommonThresholds[6]) ? (4, 0) :
            (r <= _bonusesCommonThresholds[7]) ? (3, 0) :
            (r <= _bonusesCommonThresholds[8]) ? (2, 0) :
            (r <= _bonusesCommonThresholds[9]) ? (1, 0) :
            (0, 0);
    }

    function _randomNewRare(uint currentRareCount, uint randomValue) internal view returns (bool) {
        uint r = randomValue % THRESHOLD_DENOMINATOR;
        return r < _probabilityRareThresholds[currentRareCount];
    }

    function _randomNewEpic(uint currentEpicCount, uint randomValue) internal view returns (bool) {
        uint r = randomValue % THRESHOLD_DENOMINATOR;
        return r < _probabilityEpicThresholds[currentEpicCount];
    }
}

File 2 of 24 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 3 of 24 : BaseAuctionReceiver.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "./utils/BytesLib.sol";
import "./LockableReceiver.sol";

abstract contract BaseAuctionReceiver is LockableReceiver {
    
    enum PriceDirection { NONE, UP, DOWN }

    struct PriceSettings { 
        uint startingPrice;
        uint finalPrice;
        uint priceChangePeriod; //in hours
        uint priceChangeStep; 
        PriceDirection direction;
        uint timestampAddedAt; 
    }

    using SafeMath for uint;

    mapping(uint => PriceSettings) internal _priceSettings;
    uint private _fees100;

    constructor (address accessControl, address dragonToken, uint fees100) 
    LockableReceiver(accessControl, dragonToken) {
        _fees100 = fees100;
    }

    function weiMinPrice() internal virtual pure returns (uint) {
        return 0;
    }

    function maxTotalPeriod() internal virtual pure returns (uint) {
        return 0;
    }

    /**
    * Defines how often the price is changed during 1 hour. 60 by default (every minute).
    */
    function numOfPriceChangesPerHour() internal virtual pure returns (uint) {
        return 60;
    }

    function feesPercent() public virtual view returns (uint) {
        return _fees100;
    }

    function updateFeesPercent(uint newFees100) external virtual onlyRole(CFO_ROLE) {
        _fees100 = newFees100;
    }

    function calcFees(uint weiAmount, uint fees100) internal virtual pure returns (uint) {
        return weiAmount.div(1e4).mul(fees100);
    }

    function readPriceSettings(bytes calldata data) internal virtual pure returns (uint, uint, uint) {
        uint weiStartingPrice = BytesLib.toUint256(data, 0);
        uint weiFinalPrice = BytesLib.toUint256(data, 0x20);
        uint totalPriceChangePeriod = BytesLib.toUint256(data, 0x40);
        return (weiStartingPrice, weiFinalPrice, totalPriceChangePeriod);
    } 

    function processERC721(address /*from*/, uint tokenId, bytes calldata data) 
        internal virtual override {

        (uint weiStartingPrice, uint weiFinalPrice, uint totalPriceChangePeriod) = 
            readPriceSettings(data);

        uint _weiMinPrice = weiMinPrice();
        uint _maxTotalPeriod = maxTotalPeriod();

        if (_weiMinPrice > 0) {
            require(weiStartingPrice >= _weiMinPrice && weiFinalPrice >= _weiMinPrice, 
                "BaseAuctionReceiver: the starting price and the final price cannot be less than weiMinPrice()");
        }
        if (_maxTotalPeriod > 0) {
            require(totalPriceChangePeriod <= _maxTotalPeriod, 
                "BaseAuctionReceiver: the price change period cannot exceed maxTotalPeriod()");
            require(totalPriceChangePeriod >= 12 && totalPriceChangePeriod.mod(12) == 0, 
                "BaseAuctionReceiver: the price change period should be a multiple of 0.5 days");
        }

        uint step;
        PriceDirection d;
        (step, d) = calcPriceChangeStep(
            weiStartingPrice, weiFinalPrice, totalPriceChangePeriod, numOfPriceChangesPerHour());
        PriceSettings memory settings = PriceSettings ({
            startingPrice: weiStartingPrice,
            finalPrice: weiFinalPrice,
            priceChangePeriod: totalPriceChangePeriod,
            priceChangeStep: step,
            direction: d,
            timestampAddedAt: block.timestamp
        });
        _priceSettings[tokenId] = settings;
    }

    function priceSettingsOf(uint tokenId) public view returns (PriceSettings memory) {
        return _priceSettings[tokenId];
    }

    function priceOf(uint tokenId) public view returns (uint) {
        PriceSettings memory settings = priceSettingsOf(tokenId);
        if (settings.direction == PriceDirection.NONE) {
            return settings.startingPrice;
        }

        uint max = Math.max(settings.startingPrice, settings.finalPrice);
        uint min = Math.min(settings.startingPrice, settings.finalPrice);
        uint diff = max.sub(min);

        uint totalNumOfPeriodsToFinalPrice = diff.div(settings.priceChangeStep);
        uint numOfPeriods = 
            (block.timestamp - settings.timestampAddedAt).div(60)
            .mul(numOfPriceChangesPerHour()).div(60);

        uint result;
        if (numOfPeriods > totalNumOfPeriodsToFinalPrice) {
            result = settings.finalPrice;
        }
        else if (settings.direction == PriceDirection.DOWN) {
            result = settings.startingPrice.sub(settings.priceChangeStep.mul(numOfPeriods));
        }
        else {
            result = settings.startingPrice.add(settings.priceChangeStep.mul(numOfPeriods));
        }
        return result;
    }

    function calcPriceChangeStep(
        uint weiStartingPrice, 
        uint weiFinalPrice, 
        uint totalPriceChangePeriod,
        uint _numOfPriceChangesPerHour) internal virtual pure returns (uint, PriceDirection) {

        if (weiStartingPrice == weiFinalPrice) {
            return (0, PriceDirection.NONE);
        }

        uint max = Math.max(weiStartingPrice, weiFinalPrice);
        uint min = Math.min(weiStartingPrice, weiFinalPrice);
        uint diff = max.sub(min);
        PriceDirection direction = PriceDirection.DOWN;
        if (max == weiFinalPrice) {
            direction = PriceDirection.UP;
        }
        return (diff.div(totalPriceChangePeriod.mul(_numOfPriceChangesPerHour)), direction);
    }

    function withdraw(uint tokenId) public virtual override onlyHolder(tokenId) {
        delete _priceSettings[tokenId];
        super.withdraw(tokenId);
    }
}

File 4 of 24 : DragonInfo.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.0;

library DragonInfo {
    
    uint constant MASK = 0xF000000000000000000000000;

    enum Types { 
        Unknown,
        Common, 
        Rare16, 
        Rare17, 
        Rare18, 
        Rare19,
        Epic20, 
        Epic21,
        Epic22,
        Epic23,
        Epic24, 
        Legendary
    }

    struct Details { 
        uint genes;
        uint eggId;
        uint parent1Id;
        uint parent2Id;
        uint generation;
        uint strength;
        Types dragonType;
    }

    function getDetails(uint value) internal pure returns (Details memory) {
        return Details (
            {
                genes: uint256(uint104(value)),
                parent1Id: uint256(uint32(value >> 104)),
                parent2Id: uint256(uint32(value >> 136)),
                generation: uint256(uint16(value >> 168)),
                strength: uint256(uint16(value >> 184)),
                dragonType: Types(uint16(value >> 200)),
                eggId: uint256(uint32(value >> 216))
            }
        );
    }

    function getValue(Details memory details) internal pure returns (uint) {
        uint result = uint(details.genes);
        result |= details.parent1Id << 104;
        result |= details.parent2Id << 136;
        result |= details.generation << 168;
        result |= details.strength << 184;
        result |= uint(details.dragonType) << 200;
        result |= details.eggId << 216;
        return result;
    }

    function calcType(uint genes) internal pure returns (Types) {
        uint mask = MASK;
        uint numRare = 0;
        uint numEpic = 0;
        for (uint i = 0; i < 10; i++) { //just Rare and Epic genes are important to check
            if (genes & mask > 0) {
                if (i < 5) { //Epic-range
                    numEpic++;
                }
                else { //Rare-range
                    numRare++;
                }
            }
            mask = mask >> 4;
        }
        Types result = Types.Unknown;
        if (numEpic == 5 && numRare == 5) {
            result = Types.Legendary;
        }
        else if (numEpic < 5 && numRare == 5) {
            result = Types(6 + numEpic);
        }
        else if (numEpic == 0 && numRare < 5) {
            result = Types(1 + numRare);
        }
        else if (numEpic == 0 && numRare == 0) {
            result = Types.Common;
        }

        return result;
    }

    function calcStrength(uint genes) internal pure returns (uint) {
        uint mask = MASK;
        uint strength = 0;
        for (uint i = 0; i < 25; i++) { 
            uint gLevel = (genes & mask) >> ((24 - i) * 4);
            if (i < 6) { //Epic
                strength += 3 * (25 - i) * gLevel;
            } 
            else if (i < 10) { //Rare 
                strength += 2 * (25 - i) * gLevel;
            }
            else { //Common-range
                if (gLevel > 0) {
                    strength += (25 - i) * gLevel;
                }
                else {
                    strength += (25 - i);
                }
            }
            mask = mask >> 4;
        }
        return strength;
    }

    function calcGeneration(uint g1, uint g2) internal pure returns (uint) {
        return (g1 >= g2 ? g1 : g2) + 1;
    }
}

File 5 of 24 : GenesLib.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./Random.sol";

library GenesLib {
    using SafeMath for uint;
    uint private constant MAGIC_NUM = 0x123456789ABCDEF;

    struct GenesRange {
        uint from;
        uint to;
    }

    function setGeneLevelTo(uint genes, uint level, uint position) internal pure returns (uint) {
        return genes | uint(level << (position * 4));
    }

    function geneLevelAt(uint genes, uint position) internal pure returns (uint) {
        return (genes >> (position * 4)) & 0xF;
    }

    function zeroGenePositionsInRange(uint genes, GenesRange memory range) 
    internal pure returns (uint, uint[] memory) {
        uint[] memory zeroPositions = new uint[](range.to - range.from);
        uint count = 0;
        for (uint pos = range.from; pos < range.to; pos++) {
            uint level = geneLevelAt(genes, pos);
            if (level == 0) {
                zeroPositions[count] = pos;
                count++;
            }
        }
        return (count, zeroPositions);
    }

    function randomGeneLevel(uint randomValue, bool includeZero) internal pure returns (uint) {
        if (includeZero) {
            return randomValue.mod(16);
        }
        else {
            return 1 + randomValue.mod(15);
        }
    }

    function randomInheritGenesInRange(uint genes, uint parent1Genes, uint parent2Genes,
        GenesRange memory range, uint randomValue, bool includeZero) internal pure returns (uint) {
        
        for (uint pos = range.from; pos < range.to; pos++) {
            uint geneLevel1 = geneLevelAt(parent1Genes, pos);
            uint geneLevel2 = geneLevelAt(parent2Genes, pos);

            if (includeZero || (geneLevel1 > 0 && geneLevel2 > 0)) {
                uint d = (pos % 2 == 0) ? ((randomValue >> pos) + (MAGIC_NUM >> pos)) : ~(randomValue >> pos);
                uint r = d.mod(100);
                
                if (r < 45) { //45%
                    genes = setGeneLevelTo(genes, geneLevel1, pos);
                }
                else if (r >= 45 && r < 90) { //45%
                    genes = setGeneLevelTo(genes, geneLevel2, pos);
                }
                else { //10%
                    uint level = randomGeneLevel(d, includeZero);
                    genes = setGeneLevelTo(genes, level, pos);
                }
            }
        }
        return genes;
    }

    function randomSetGenesToPositions(uint genes, uint[] memory positions, uint randomValue, bool includeZero) 
    internal pure returns (uint) {
        for (uint i = 0; i < positions.length; i++) {
            genes = setGeneLevelTo(genes, randomGeneLevel(
                (i % 2 > 0) ? ((randomValue >> i) + (MAGIC_NUM >> i)) : ~(randomValue >> i), 
                includeZero), positions[i]);
        }
        return genes;
    }

    function randomGenePositions(GenesRange memory range, uint count, uint randomValue) 
    internal pure returns (uint[] memory) {
        if (count > 0) {
            uint[] memory shuffledRangeArray = 
                Random.shuffle(createOrderedRangeArray(range.from, range.to), randomValue);
            uint[] memory positions = new uint[](count);
            for (uint i = 0; i < count; i++) {
                positions[i] = shuffledRangeArray[i];
            }
            return positions;
        }
        return new uint[](0);
    }

    function createOrderedRangeArray(uint from, uint to) internal pure returns (uint[] memory) {
        uint[] memory rangeArray = new uint[](to - from) ;
        for (uint i = 0; i < rangeArray.length; i++) {
            rangeArray[i] = from + i;
        }
        return rangeArray;
    }

}

File 6 of 24 : Random.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.0;

library Random {
    function rand(uint salt) internal view returns (uint) {
        return uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp, salt)));
    }

    function randFrom(uint[] memory array, uint from, uint to, uint randomValue)
    internal pure returns (uint) {
        uint count = to - from;
        return array[from + randomValue % count];
    }

    function shuffle(uint[] memory array, uint randomValue) internal pure returns (uint[] memory) {
        for (uint i = 0; i < array.length; i++) {
            uint n = i + randomValue % (array.length - i);
            uint temp = array[n];
            array[n] = array[i];
            array[i] = temp;
        }
        return array;
    }
}

File 7 of 24 : DragonCreator.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Address.sol";
import "./structs/DragonInfo.sol";
import "./access/BaseAccessControl.sol";
import "./DragonToken.sol";

contract DragonCreator is BaseAccessControl {
    
    using Address for address;

    address private _tokenContractAddress;

    mapping(DragonInfo.Types => uint) private _zeroDragonsIssueLimits;
    mapping(address => bool) private _giveBirthCallers;

    bool private _isChangeOfIssueLimitsAllowed;

    event DragonCreated(
        uint dragonId, 
        uint eggId,
        uint parent1Id,
        uint parent2Id,
        uint generation,
        DragonInfo.Types t,
        uint genes,
        address indexed creator,
        address indexed to);

    constructor(address accessControl, address tknContract) BaseAccessControl(accessControl) {
        _tokenContractAddress = tknContract;
        _isChangeOfIssueLimitsAllowed = true;
    }

    function tokenContract() public view returns (address) {
        return _tokenContractAddress;
    }

    function setTokenContract(address newAddress) external onlyRole(CEO_ROLE) {
        address previousAddress = _tokenContractAddress;
        _tokenContractAddress = newAddress;
        emit AddressChanged("tokenContract", previousAddress, newAddress);
    }

    function isChangeOfIssueLimitsAllowed() public view returns (bool) {
        return _isChangeOfIssueLimitsAllowed;
    }

    function currentIssueLimitFor(DragonInfo.Types _dragonType) external view returns (uint) {
        return _zeroDragonsIssueLimits[_dragonType];
    }

    function updateIssueLimitFor(DragonInfo.Types _dragonType, uint newValue) external onlyRole(CEO_ROLE) {
        require(isChangeOfIssueLimitsAllowed(), 
            "DragonCreator: updating the issue limits is not allowed anymore");
        _zeroDragonsIssueLimits[_dragonType] = newValue;
    }

    function blockUpdatingIssueLimitsForever() external onlyRole(CEO_ROLE) {
        _isChangeOfIssueLimitsAllowed = false;
    }
    
    function setGiveBirthCallers(address[] calldata callers, bool value) external onlyRole(CEO_ROLE) {
        for (uint i = 0; i < callers.length; i++) {
            bool previousValue = _giveBirthCallers[callers[i]];
            _giveBirthCallers[callers[i]] = value;
            emit BoolValueChanged(string(abi.encodePacked("giveBirthCallers.", callers[i])), previousValue, value);
        }
    }

    function issue(uint genes, address to) external onlyRole(CEO_ROLE) returns (uint) {
        DragonInfo.Types dragonType = DragonInfo.calcType(genes);
        uint currentLimit = _zeroDragonsIssueLimits[dragonType];
        require(dragonType != DragonInfo.Types.Unknown, "DragonCreator: unable to identify a type of the given dragon");
        require(currentLimit > 0, "DragonCreator: the issue limit has exceeded");
        _zeroDragonsIssueLimits[dragonType] = currentLimit - 1;

        return _createDragon(0, 0, 0, genes, dragonType, to);
    }

    function giveBirth(uint eggId, uint genes, address to) external returns (uint) {
        require(_giveBirthCallers[_msgSender()], "DragonCreator: not enough privileges to call the method");    
        return _createDragon(eggId, 0, 0, genes, DragonInfo.Types.Unknown, to);
    }

    function giveBirth(uint parent1Id, uint parent2Id, uint genes, address to) external returns (uint) {
        require(_giveBirthCallers[_msgSender()], "DragonCreator: not enough privileges to call the method");
        return _createDragon(0, parent1Id, parent2Id, genes, DragonInfo.Types.Unknown, to);
    }

    function _createDragon(uint _eggId, uint _parent1Id, uint _parent2Id, uint _genes, DragonInfo.Types _dragonType, address to)
    internal returns (uint) {
        DragonToken dragonToken = DragonToken(tokenContract());
        DragonInfo.Details memory parent1Details = dragonToken.dragonInfo(_parent1Id);
        DragonInfo.Details memory parent2Details = dragonToken.dragonInfo(_parent2Id);

        if (_parent1Id > 0 && _parent2Id > 0) { //if not 1st-generation dragons
            require(_parent1Id != _parent2Id, "DragonCreator: parent dragons must be different");
            require(
                parent1Details.dragonType != DragonInfo.Types.Legendary 
                && parent2Details.dragonType != DragonInfo.Types.Legendary, 
                "DragonCreator: neither of the parent dragons can be of Legendary-type"
            );
            require(!dragonToken.isSiblings(_parent1Id, _parent2Id), "DragonCreator: the parent dragons must not be siblings");
            require(
                !dragonToken.isParent(_parent1Id, _parent2Id) && !dragonToken.isParent(_parent2Id, _parent1Id), 
                "DragonCreator: neither of the parent dragons must be a parent or child of another"
            );
        }

        DragonInfo.Details memory info = DragonInfo.Details({ 
            eggId: _eggId,
            parent1Id: _parent1Id,
            parent2Id: _parent2Id,
            generation: DragonInfo.calcGeneration(parent1Details.generation, parent2Details.generation),
            dragonType: (_dragonType == DragonInfo.Types.Unknown) ? DragonInfo.calcType(_genes) : _dragonType,
            strength: 0, //DragonInfo.calcStrength(_genes),
            genes: _genes
        });

        uint newDragonId = dragonToken.mint(to, info);
        
        emit DragonCreated(
            newDragonId, info.eggId,
            info.parent1Id, info.parent2Id, 
            info.generation, info.dragonType, 
            info.genes, _msgSender(), to);

        return newDragonId; 
    }
}

File 8 of 24 : DragonToken.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "./access/BaseAccessControl.sol";
import "./structs/DragonInfo.sol";

contract DragonToken is ERC721, BaseAccessControl {

    using Address for address;
    using Counters for Counters.Counter;
    
    Counters.Counter private _dragonIds;

    // Mapping token id to dragon details
    mapping(uint => uint) private _info;
    // Mapping token id to cid
    mapping(uint => string) private _cids;

    string private _defaultMetadataCid;
    address private _dragonCreator;

    constructor(string memory defaultCid, address accessControl) 
    ERC721("CryptoDragons", "CD")
    BaseAccessControl(accessControl) {        
        _defaultMetadataCid = defaultCid;
    }

    function approveAndCall(address spender, uint256 tokenId, bytes calldata extraData) external returns (bool success) {
        _approve(spender, tokenId);
        (bool _success, ) = 
            spender.call(
                abi.encodeWithSignature("receiveApproval(address,uint256,address,bytes)", 
                _msgSender(), 
                tokenId, 
                address(this), 
                extraData) 
            );
        if(!_success) { 
            revert("DragonToken: spender internal error"); 
        }
        return true;
    }

    function tokenURI(uint tokenId) public view virtual override returns (string memory) {
        string memory cid = _cids[tokenId];
        return string(abi.encodePacked("ipfs://", (bytes(cid).length > 0) ? cid : defaultMetadataCid()));
    }

    function dragonCreatorAddress() public view returns(address) {
        return _dragonCreator;
    }

    function setDragonCreatorAddress(address newAddress) external onlyRole(CEO_ROLE) {
        address previousAddress = _dragonCreator;
        _dragonCreator = newAddress;
        emit AddressChanged("dragonCreator", previousAddress, newAddress);
    }

    function hasMetadataCid(uint tokenId) public view returns(bool) {
        return bytes(_cids[tokenId]).length > 0;
    }

    function setMetadataCid(uint tokenId, string calldata cid) external onlyRole(COO_ROLE) {
        require(bytes(cid).length >= 46, "DragonToken: bad CID");
        require(!hasMetadataCid(tokenId), "DragonToken: CID is already set");
        _cids[tokenId] = cid;
    }

    function defaultMetadataCid() public view returns (string memory){
        return _defaultMetadataCid;
    }

    function setDefaultMetadataCid(string calldata newDefaultCid) external onlyRole(COO_ROLE) {
        _defaultMetadataCid = newDefaultCid;
    }

    function dragonInfo(uint dragonId) public view returns (DragonInfo.Details memory) {
        return DragonInfo.getDetails(_info[dragonId]);
    }

    function strengthOf(uint dragonId) external view returns (uint) {
        DragonInfo.Details memory details = dragonInfo(dragonId);
        return details.strength > 0 ? details.strength : DragonInfo.calcStrength(details.genes);
    }

    function isSiblings(uint dragon1Id, uint dragon2Id) external view returns (bool) {
        DragonInfo.Details memory info1 = dragonInfo(dragon1Id);
        DragonInfo.Details memory info2 = dragonInfo(dragon2Id);
        return 
            (info1.generation > 1 && info2.generation > 1) && //the 1st generation of dragons doesn't have siblings
            (info1.parent1Id == info2.parent1Id || info1.parent1Id == info2.parent2Id || 
            info1.parent2Id == info2.parent1Id || info1.parent2Id == info2.parent2Id);
    }

    function isParent(uint dragon1Id, uint dragon2Id) external view returns (bool) {
        DragonInfo.Details memory info = dragonInfo(dragon1Id);
        return info.parent1Id == dragon2Id || info.parent2Id == dragon2Id;
    }

    function mint(address to, DragonInfo.Details calldata info) external returns (uint) {
        require(_msgSender() == dragonCreatorAddress(), "DragonToken: not enough privileges to call the method");
        
        _dragonIds.increment();
        uint newDragonId = uint(_dragonIds.current());
        
        _info[newDragonId] = DragonInfo.getValue(info);
        _mint(to, newDragonId);

        return newDragonId;
    }

    function setStrength(uint dragonId) external returns (uint) {
        DragonInfo.Details memory details = dragonInfo(dragonId);
        if (details.strength == 0) {
            details.strength = DragonInfo.calcStrength(details.genes);
            _info[dragonId] = DragonInfo.getValue(details);
        }
        return details.strength;
    }
}

File 9 of 24 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 10 of 24 : Math.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

File 11 of 24 : BytesLib.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.0;

library BytesLib {
    function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) {
        require(_bytes.length >= _start + 20, "toAddress_outOfBounds");
        address tempAddress;

        assembly {
            tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000)
        }

        return tempAddress;
    }
    
    function toUint256(bytes memory _bytes, uint _start) internal pure returns (uint) {
        require(_bytes.length >= _start + 32, "toUint256_outOfBounds");
        uint tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x20), _start))
        }

        return tempUint;
    }

    function toTuple128(bytes memory _bytes, uint256 _start) internal pure returns (uint, uint) {
        require(_bytes.length >= _start + 32, "toTuple16_outOfBounds");
        uint tempUint;
        uint n1;
        uint n2;

        assembly {
            tempUint := mload(add(add(_bytes, 0x20), _start))
            n1 := and(shr(0x80, tempUint), 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
            n2 := and(tempUint, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        }

        return (n1, n2);
    }
}

File 12 of 24 : LockableReceiver.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./access/BaseAccessControl.sol";

abstract contract LockableReceiver is BaseAccessControl, IERC721Receiver {
    
    using Address for address payable;

    address private _tokenContractAddress;
    mapping(uint => address) private _lockedTokens;

    event TokenLocked(uint tokenId, address indexed holder);
    event TokenWithdrawn(uint tokenId, address indexed holder);
    event EthersWithdrawn(address indexed operator, address indexed to, uint amount);

    constructor (address accessControl, address tokenContractAddress) 
    BaseAccessControl(accessControl) {
        _tokenContractAddress = tokenContractAddress;
    }

    modifier whenLocked(uint tokenId) {
        require(isLocked(tokenId), "LockableReceiver: token must be locked");
        _;
    }

    modifier onlyHolder(uint tokenId) {
        require(holderOf(tokenId) == _msgSender(), "LockableReceiver: caller is not the token holder");
        _;
    }

    function onERC721Received(address operator, address /*from*/, uint /*tokenId*/, bytes calldata /*data*/) 
        external virtual override returns (bytes4) {
        require(operator == address(this), "LockableReceiver: the caller is not a valid operator");
        return this.onERC721Received.selector;
    }

    function receiveApproval(address sender, uint tokenId, address _tokenContract, bytes calldata data) external virtual {
        require(tokenContract() == _msgSender(), "LockableReceiver: not enough privileges to call the method");
        require(_tokenContract == tokenContract(), "LockableReceiver: unable to receive the given token");
    
        IERC721(tokenContract()).safeTransferFrom(sender, address(this), tokenId, data);
        
        _lock(tokenId, sender);
        processERC721(sender, tokenId, data);
    }

    function processERC721(address from, uint tokenId, bytes calldata data) internal virtual {
    }

    function _lock(uint tokenId, address holder) internal {
        _lockedTokens[tokenId] = holder;
        emit TokenLocked(tokenId, holder);
    }

    function _unlock(uint tokenId) internal {
        delete _lockedTokens[tokenId];
    }

    function tokenContract() public view returns (address) {
        return _tokenContractAddress;
    }

    function setTokenContract(address newAddress) external onlyRole(CEO_ROLE) {
        address previousAddress = _tokenContractAddress;
        _tokenContractAddress = newAddress;
        emit AddressChanged("tokenContract", previousAddress, newAddress);
    }

    function isLocked(uint tokenId) public view returns (bool) {
        return _lockedTokens[tokenId] != address(0);
    }

    function holderOf(uint tokenId) public view returns (address) {
        return _lockedTokens[tokenId];
    }

    function withdrawEthers(uint amount, address payable to) external virtual onlyRole(CFO_ROLE) {
        to.sendValue(amount);
        emit EthersWithdrawn(_msgSender(), to, amount);
    }

    function withdraw(uint tokenId) public virtual onlyHolder(tokenId) {
        _transferTokenToHolder(tokenId);
        emit TokenWithdrawn(tokenId, _msgSender());
    }

    function _transferTokenToHolder(uint tokenId) internal virtual {
        address holder = holderOf(tokenId);
        if (holder != address(0)) {
            IERC721(tokenContract()).safeTransferFrom(address(this), holder, tokenId);
            _unlock(tokenId);
        }
    }
}

File 13 of 24 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 14 of 24 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 15 of 24 : BaseAccessControl.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/IAccessControl.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "../interfaces/IChangeableVariables.sol";

abstract contract BaseAccessControl is Context, IChangeableVariables {

    bytes32 public constant CEO_ROLE = keccak256("CEO");
    bytes32 public constant CFO_ROLE = keccak256("CFO");
    bytes32 public constant COO_ROLE = keccak256("COO");

    address private _accessControl;

    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    constructor (address accessControl) Context() {
        _accessControl = accessControl;
    }

    function accessControlAddress() public view returns (address) {
        return _accessControl;
    }

    function setAccessControlAddress(address newAddress) external onlyRole(CEO_ROLE) {
        address previousAddress = _accessControl;
        _accessControl = newAddress;
        emit AddressChanged("accessControl", previousAddress, newAddress);
    }

    function hasRole(bytes32 role, address account) public view returns (bool) {
        return IAccessControl(accessControlAddress()).hasRole(role, account);
    }

    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }
}

File 16 of 24 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 17 of 24 : IAccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 18 of 24 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 19 of 24 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 20 of 24 : IChangeableVariables.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.0;

interface IChangeableVariables {
    event AddressChanged(string fieldName, address previousAddress, address newAddress);
    event ValueChanged(string fieldName, uint previousValue, uint newValue);
    event BoolValueChanged(string fieldName, bool previousValue, bool newValue);
}

File 21 of 24 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 22 of 24 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 23 of 24 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 24 of 24 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"accessControl","type":"address"},{"internalType":"address","name":"dragonToken","type":"address"},{"internalType":"address","name":"dragonCreator","type":"address"},{"internalType":"uint256","name":"fees100","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"fieldName","type":"string"},{"indexed":false,"internalType":"address","name":"previousAddress","type":"address"},{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"AddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"fieldName","type":"string"},{"indexed":false,"internalType":"bool","name":"previousValue","type":"bool"},{"indexed":false,"internalType":"bool","name":"newValue","type":"bool"}],"name":"BoolValueChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EthersWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"claimer","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"holder","type":"address"}],"name":"TokenLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"holder","type":"address"}],"name":"TokenWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"fieldName","type":"string"},{"indexed":false,"internalType":"uint256","name":"previousValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"ValueChanged","type":"event"},{"inputs":[],"name":"CEO_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CFO_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COO_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accessControlAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"bonusCommonThresholdAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"myDragonId","type":"uint256"},{"internalType":"uint256","name":"anotherDragonId","type":"uint256"},{"internalType":"uint256","name":"salt","type":"uint256"}],"name":"breed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dragon1Id","type":"uint256"},{"internalType":"uint256","name":"dragon2Id","type":"uint256"}],"name":"crossbreedPlatformPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dragonCreatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"holderOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"genesCount","type":"uint256"}],"name":"platformPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"priceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"priceSettingsOf","outputs":[{"components":[{"internalType":"uint256","name":"startingPrice","type":"uint256"},{"internalType":"uint256","name":"finalPrice","type":"uint256"},{"internalType":"uint256","name":"priceChangePeriod","type":"uint256"},{"internalType":"uint256","name":"priceChangeStep","type":"uint256"},{"internalType":"enum BaseAuctionReceiver.PriceDirection","name":"direction","type":"uint8"},{"internalType":"uint256","name":"timestampAddedAt","type":"uint256"}],"internalType":"struct BaseAuctionReceiver.PriceSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"probabilityEpicThresholdAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"probabilityRareThresholdAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"receiveApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setAccessControlAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[10]","name":"newBonusesCommonThresholds","type":"uint256[10]"}],"name":"setBonusCommonThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setDragonCreatorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[10]","name":"newPlatformPrices","type":"uint256[10]"}],"name":"setPlatformPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[5]","name":"newProbabilityEpicThresholds","type":"uint256[5]"}],"name":"setProbabilityEpicThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[5]","name":"newProbabilityRareThresholds","type":"uint256[5]"}],"name":"setProbabilityRareThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setTokenContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFees100","type":"uint256"}],"name":"updateFeesPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawEthers","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620060cf380380620060cf8339818101604052810190620000379190620005a7565b838382828281806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050508060048190555050505081602360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806101400160405280660aa87bee53800066ffffffffffffff1681526020016611c37937e0800066ffffffffffffff168152602001661c6bf52634000066ffffffffffffff168152602001662386f26fc1000066ffffffffffffff16815260200166354a6ba7a1800066ffffffffffffff16815260200166470de4df82000066ffffffffffffff1681526020016658d15e1762800066ffffffffffffff168152602001666a94d74f43000066ffffffffffffff168152602001667c58508723800066ffffffffffffff168152602001668e1bc9bf04000066ffffffffffffff16815250600590600a6200020492919062000424565b50604051806101400160405280621dcd6563ffffffff168152602001623b9aca63ffffffff1681526020016277359463ffffffff16815260200162ee6b2863ffffffff1681526020016301dcd65063ffffffff1681526020016303b9aca063ffffffff168152602001630773594063ffffffff168152602001630ee6b28063ffffffff168152602001631dcd650063ffffffff168152602001633b9aca0063ffffffff16815250600f90600a620002bd92919062000474565b506040518060a00160405280633b9aca0063ffffffff168152602001631dcd650063ffffffff168152602001630ee6b28063ffffffff168152602001630773594063ffffffff1681526020016303b9aca063ffffffff16815250601990600562000329929190620004c1565b506040518060a00160405280600062ffffff16815260200162ee6b2862ffffff1681526020016277359462ffffff168152602001623b9aca62ffffff168152602001621dcd6562ffffff16815250601e906005620003899291906200050e565b50604051806040016040528060008152602001600f815250602660008201518160000155602082015181600101559050506040518060400160405280600f81526020016014815250602860008201518160000155602082015181600101559050506040518060400160405280601481526020016019815250602a60008201518160000155602082015181600101559050505050505062000685565b82600a810192821562000461579160200282015b8281111562000460578251829066ffffffffffffff1690559160200191906001019062000438565b5b5090506200047091906200055a565b5090565b82600a8101928215620004ae579160200282015b82811115620004ad578251829063ffffffff1690559160200191906001019062000488565b5b509050620004bd91906200055a565b5090565b8260058101928215620004fb579160200282015b82811115620004fa578251829063ffffffff16905591602001919060010190620004d5565b5b5090506200050a91906200055a565b5090565b826005810192821562000547579160200282015b8281111562000546578251829062ffffff1690559160200191906001019062000522565b5b5090506200055691906200055a565b5090565b5b80821115620005755760008160009055506001016200055b565b5090565b6000815190506200058a8162000651565b92915050565b600081519050620005a1816200066b565b92915050565b60008060008060808587031215620005be57600080fd5b6000620005ce8782880162000579565b9450506020620005e18782880162000579565b9350506040620005f48782880162000579565b9250506060620006078782880162000590565b91505092959194509250565b6000620006208262000627565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6200065c8162000613565b81146200066857600080fd5b50565b620006768162000647565b81146200068257600080fd5b50565b615a3a80620006956000396000f3fe6080604052600436106101e35760003560e01c80639b5e168711610102578063c2ce81a811610095578063dfbfbab311610064578063dfbfbab314610717578063e8d56b8b14610742578063f468ea591461076b578063f6aacfb1146107a8576101e3565b8063c2ce81a81461064b578063ccbde5c214610674578063d7c8e7711461069d578063dbacc237146106da576101e3565b8063abad25c2116100d1578063abad25c214610591578063b514be63146105ba578063b9186d7d146105e5578063bbcd5bbe14610622576101e3565b80639b5e1687146104e45780639f6f50ed146105005780639feb8f501461052b578063a131c06314610554576101e3565b80633acfd44f1161017a5780636df93a47116101495780636df93a4714610416578063766650e5146104535780638f4ffcb11461047e57806391d14854146104a7576101e3565b80633acfd44f1461035857806355a373d614610383578063617c6169146103ae57806366741377146103eb576101e3565b8063263f8811116101b6578063263f8811146102b45780632a6e5e11146102dd5780632e1a7d4d1461030657806332ede77f1461032f576101e3565b8063150b7a02146101e85780631715af2614610225578063174e31c4146102625780631c6b7fbb1461028b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061434d565b6107e5565b60405161021c91906151e6565b60405180910390f35b34801561023157600080fd5b5061024c6004803603810190610247919061456a565b610868565b6040516102599190615512565b60405180910390f35b34801561026e57600080fd5b5061028960048036038101906102849190614311565b6108ad565b005b34801561029757600080fd5b506102b260048036038101906102ad91906142bf565b610a75565b005b3480156102c057600080fd5b506102db60048036038101906102d6919061456a565b610b4d565b005b3480156102e957600080fd5b5061030460048036038101906102ff91906145bc565b610b8a565b005b34801561031257600080fd5b5061032d6004803603810190610328919061456a565b610c56565b005b34801561033b57600080fd5b5061035660048036038101906103519190614489565b610d33565b005b34801561036457600080fd5b5061036d610d7b565b60405161037a91906151a2565b60405180910390f35b34801561038f57600080fd5b50610398610d9f565b6040516103a591906150e7565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d0919061456a565b610dc9565b6040516103e29190615512565b60405180910390f35b3480156103f757600080fd5b50610400610e0e565b60405161040d91906150e7565b60405180910390f35b34801561042257600080fd5b5061043d6004803603810190610438919061456a565b610e37565b60405161044a9190615512565b60405180910390f35b34801561045f57600080fd5b50610468610e7c565b60405161047591906150e7565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190614409565b610ea6565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190614505565b61102e565b6040516104db9190615187565b60405180910390f35b6104fe60048036038101906104f99190614634565b6110ca565b005b34801561050c57600080fd5b50610515611b57565b60405161052291906151a2565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d91906143cd565b611b7b565b005b34801561056057600080fd5b5061057b6004803603810190610576919061456a565b611cbd565b6040516105889190615512565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b391906144b3565b611d02565b005b3480156105c657600080fd5b506105cf611d4a565b6040516105dc91906151a2565b60405180910390f35b3480156105f157600080fd5b5061060c6004803603810190610607919061456a565b611d6e565b6040516106199190615512565b60405180910390f35b34801561062e57600080fd5b50610649600480360381019061064491906142bf565b611fbe565b005b34801561065757600080fd5b50610672600480360381019061066d91906144b3565b612096565b005b34801561068057600080fd5b5061069b60048036038101906106969190614489565b6120de565b005b3480156106a957600080fd5b506106c460048036038101906106bf919061456a565b612126565b6040516106d191906154f7565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc919061456a565b61220c565b60405161070e91906150e7565b60405180910390f35b34801561072357600080fd5b5061072c612249565b6040516107399190615512565b60405180910390f35b34801561074e57600080fd5b50610769600480360381019061076491906142bf565b612253565b005b34801561077757600080fd5b50610792600480360381019061078d91906145f8565b612329565b60405161079f9190615512565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca919061456a565b61248a565b6040516107dc9190615187565b60405180910390f35b60003073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c9061537b565b60405180910390fd5b63150b7a0260e01b905095945050505050565b6000600582600a81106108a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050919050565b6108b6826124f6565b156108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed9061541b565b60405180910390fd5b60256000610902612509565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561097f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109769061543b565b60405180910390fd5b6109a8818373ffffffffffffffffffffffffffffffffffffffff1661251190919063ffffffff16565b80602560006109b5612509565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109fe91906156c7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16610a24612509565b73ffffffffffffffffffffffffffffffffffffffff167f0aa4d283470c904c551d18bb894d37e17674920f3261a7f854be501e25f421b783604051610a699190615512565b60405180910390a35050565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d610aa781610aa2612509565b612605565b6000602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082602360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4ca142703425bec1d507d5581fac3a3e61eadcbeafbd7c0a03e2897d96de1cc58184604051610b40929190615243565b60405180910390a1505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc610b7f81610b7a612509565b612605565b816004819055505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc610bbc81610bb7612509565b612605565b610be5838373ffffffffffffffffffffffffffffffffffffffff1661251190919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff16610c04612509565b73ffffffffffffffffffffffffffffffffffffffff167f372bb9ce23c45af0229f3ad425305ebadfb790c0b0453fa3077a02d7d8c987bb85604051610c499190615512565b60405180910390a3505050565b80610c5f612509565b73ffffffffffffffffffffffffffffffffffffffff16610c7e8261220c565b73ffffffffffffffffffffffffffffffffffffffff1614610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb9061531b565b60405180910390fd5b600360008381526020019081526020016000206000808201600090556001820160009055600282016000905560038201600090556004820160006101000a81549060ff021916905560058201600090555050610d2f826126a2565b5050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc610d6581610d60612509565b612605565b81600590600a610d76929190613fd6565b505050565b7fefa080c67ecf4a6bf40c9dc64173420c08f359250ca6562d7c80f7c7b9b1396981565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601e8260058110610e05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060198260058110610e73577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050919050565b6000602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610eae612509565b73ffffffffffffffffffffffffffffffffffffffff16610ecc610d9f565b73ffffffffffffffffffffffffffffffffffffffff1614610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f199061529f565b60405180910390fd5b610f2a610d9f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e9061533b565b60405180910390fd5b610f9f610d9f565b73ffffffffffffffffffffffffffffffffffffffff1663b88d4fde86308786866040518663ffffffff1660e01b8152600401610fdf959493929190615139565b600060405180830381600087803b158015610ff957600080fd5b505af115801561100d573d6000803e3d6000fd5b5050505061101b8486612782565b61102785858484612826565b5050505050565b6000611038610e0e565b73ffffffffffffffffffffffffffffffffffffffff166391d1485484846040518363ffffffff1660e01b81526004016110729291906151bd565b60206040518083038186803b15801561108a57600080fd5b505afa15801561109e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c291906144dc565b905092915050565b60006110d4610d9f565b90506110de612509565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e866040518263ffffffff1660e01b815260040161112d9190615512565b60206040518083038186803b15801561114557600080fd5b505afa158015611159573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117d91906142e8565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca906152bf565b60405180910390fd5b6111dc8361248a565b806112a157506111ea612509565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b81526004016112399190615512565b60206040518083038186803b15801561125157600080fd5b505afa158015611265573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128991906142e8565b73ffffffffffffffffffffffffffffffffffffffff16145b6112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d79061547b565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1663225b38fd866040518263ffffffff1660e01b815260040161131b9190615512565b60e06040518083038186803b15801561133357600080fd5b505afa158015611347573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136b9190614541565b905060008273ffffffffffffffffffffffffffffffffffffffff1663225b38fd866040518263ffffffff1660e01b81526004016113a89190615512565b60e06040518083038186803b1580156113c057600080fd5b505afa1580156113d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f89190614541565b905060008061140f84600001518460000151612984565b915091506000611429828461142491906155e6565b610868565b905060006114368961248a565b156114475761144489611d6e565b90505b808261145391906155e6565b341015611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c906153bb565b60405180910390fd5b6000806114a18a612a18565b905060006114b2448c841818612a18565b90506001600b8111156114ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8960c00151600b81111561152b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1480156115ac57506001600b81111561156d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8860c00151600b8111156115aa577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b145b156116f0576000806115bd84612a4f565b91509150600082111561160a5760006115f76028604051806040016040529081600082015481526020016001820154815250508487612d8b565b90506116068682876000612f51565b9550505b6000811115611653576000611640602a604051806040016040529081600082015481526020016001820154815250508387612d8b565b905061164f8682876000612f51565b9550505b60008514801561166a575061166960008461300f565b5b156116b057600061169d602860405180604001604052908160008201548152602001600182015481525050600186612d8b565b90506116ac8682866000612f51565b9550505b6116e7858c600001518c6000015160266040518060400160405290816000820154815260200160018201548152505088600161306c565b94505050611a52565b6006600b81111561172a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8960c00151600b811115611767577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1480156117e857506006600b8111156117a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8860c00151600b8111156117e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b145b156118a457600061181b602a60405180604001604052908160008201548152602001600182015481525050600185612d8b565b905061182a8482856000612f51565b9350611863848b600001518b6000015160266040518060400160405290816000820154815260200160018201548152505087600161306c565b935061189c848b600001518b6000015160286040518060400160405290816000820154815260200160018201548152505087600061306c565b935050611a51565b6118db838a600001518a6000015160266040518060400160405290816000820154815260200160018201548152505086600161306c565b9250611914838a600001518a6000015160286040518060400160405290816000820154815260200160018201548152505086600061306c565b925061194d838a600001518a60000151602a6040518060400160405290816000820154815260200160018201548152505086600061306c565b92506005871080156119655750611964878361300f565b5b156119cb5760008061199785602860405180604001604052908160008201548152602001600182015481525050613197565b9150915060006119aa82600085876132c8565b90506119c1866119bb86600061333b565b83613387565b9550505050611a50565b6005871480156119db5750600586105b80156119ed57506119ec86836133a4565b5b15611a4f57600080611a1f85602a60405180604001604052908160008201548152602001600182015481525050613197565b915091506000611a3282600085876132c8565b9050611a4986611a4386600061333b565b83613387565b95505050505b5b5b5b6000841115611aa857611aa7611a6f85611a6a612249565b613401565b85611a7a91906156c7565b611a838e61220c565b73ffffffffffffffffffffffffffffffffffffffff1661251190919063ffffffff16565b5b611ab0610e7c565b73ffffffffffffffffffffffffffffffffffffffff166337a3191f8e8e86611ad6612509565b6040518563ffffffff1660e01b8152600401611af5949392919061552d565b602060405180830381600087803b158015611b0f57600080fd5b505af1158015611b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b479190614593565b5050505050505050505050505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc81565b7fefa080c67ecf4a6bf40c9dc64173420c08f359250ca6562d7c80f7c7b9b13969611bad81611ba8612509565b612605565b611bb6836124f6565b15611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed9061541b565b60405180910390fd5b81602560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4591906155e6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff16611c6b612509565b73ffffffffffffffffffffffffffffffffffffffff167f0f7cde3c0518e1cc590491be5861d70a2e333f7e65af2e1ebd91a3c9a3cc638d84604051611cb09190615512565b60405180910390a3505050565b6000600f82600a8110611cf9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050919050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc611d3481611d2f612509565b612605565b816019906005611d45929190614016565b505050565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d81565b600080611d7a83612126565b905060006002811115611db6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81608001516002811115611df3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611e06578060000151915050611fb9565b6000611e1a82600001518360200151613432565b90506000611e308360000151846020015161344c565b90506000611e47828461346590919063ffffffff16565b90506000611e6285606001518361347b90919063ffffffff16565b90506000611eb5603c611ea7611e76613491565b611e99603c8b60a0015142611e8b91906156c7565b61347b90919063ffffffff16565b61349a90919063ffffffff16565b61347b90919063ffffffff16565b9050600082821115611ecd5786602001519050611fae565b600280811115611f06577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b87608001516002811115611f43577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611f7d57611f76611f6383896060015161349a90919063ffffffff16565b886000015161346590919063ffffffff16565b9050611fad565b611faa611f9783896060015161349a90919063ffffffff16565b88600001516134b090919063ffffffff16565b90505b5b809750505050505050505b919050565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d611ff081611feb612509565b612605565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4ca142703425bec1d507d5581fac3a3e61eadcbeafbd7c0a03e2897d96de1cc5818460405161208992919061549b565b60405180910390a1505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc6120c8816120c3612509565b612605565b81601e9060056120d9929190614016565b505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc6121108161210b612509565b612605565b81600f90600a612121929190613fd6565b505050565b61212e614056565b600360008381526020019081526020016000206040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff1660028111156121bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028111156121f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81526020016005820154815250509050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600454905090565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d61228581612280612509565b612605565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4ca142703425bec1d507d5581fac3a3e61eadcbeafbd7c0a03e2897d96de1cc5818460405161231c9291906152df565b60405180910390a1505050565b600080612334610d9f565b905060008173ffffffffffffffffffffffffffffffffffffffff1663225b38fd866040518263ffffffff1660e01b81526004016123719190615512565b60e06040518083038186803b15801561238957600080fd5b505afa15801561239d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123c19190614541565b60000151905060008273ffffffffffffffffffffffffffffffffffffffff1663225b38fd866040518263ffffffff1660e01b81526004016124029190615512565b60e06040518083038186803b15801561241a57600080fd5b505afa15801561242e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124529190614541565b6000015190506000806124658484612984565b9150915061247d818361247891906155e6565b610868565b9550505050505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600080823b905060008111915050919050565b600033905090565b80471015612554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254b906153fb565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161257a9061505b565b60006040518083038185875af1925050503d80600081146125b7576040519150601f19603f3d011682016040523d82523d6000602084013e6125bc565b606091505b5050905080612600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f7906153db565b60405180910390fd5b505050565b61260f828261102e565b61269e576126348173ffffffffffffffffffffffffffffffffffffffff1660146134c6565b6126428360001c60206134c6565b604051602001612653929190615070565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126959190615201565b60405180910390fd5b5050565b806126ab612509565b73ffffffffffffffffffffffffffffffffffffffff166126ca8261220c565b73ffffffffffffffffffffffffffffffffffffffff1614612720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127179061531b565b60405180910390fd5b612729826137c0565b612731612509565b73ffffffffffffffffffffffffffffffffffffffff167f61dc2e6e64c7a742717c1eae2958f9bc011c40d616afd06af648eff740c2b04d836040516127769190615512565b60405180910390a25050565b806002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f9ecfd70e9ff36df72989324a49559383d39f9290d700b10cf5ac10dcb68d26438360405161281a9190615512565b60405180910390a25050565b6000612830610d9f565b73ffffffffffffffffffffffffffffffffffffffff1663225b38fd856040518263ffffffff1660e01b81526004016128689190615512565b60e06040518083038186803b15801561288057600080fd5b505afa158015612894573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b89190614541565b9050600b808111156128f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160c00151600b811115612930577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129689061527f565b60405180910390fd5b61297d85858585613885565b5050505050565b60008060006c0f000000000000000000000000905060008060005b600a811015612a075760008489161180156129bc57506000848816115b156129ed5760058110156129dd5781806129d59061581c565b9250506129ec565b82806129e89061581c565b9350505b5b600484901c935080806129ff9061581c565b91505061299f565b508181945094505050509250929050565b6000444283604051602001612a2f939291906150aa565b6040516020818303038152906040528051906020012060001c9050919050565b60008060006402540be40084612a65919061586f565b9050600f6000600a8110612aa2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d7157600f6001600a8110612ae6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d6757600f6002600a8110612b2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d5d57600f6003600a8110612b6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d5357600f6004600a8110612bb2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d4957600f6005600a8110612bf6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d3f57600f6006600a8110612c3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d3557600f6007600a8110612c7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d2b57600f6008600a8110612cc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d2157600f6009600a8110612d06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d1757600080612d1c565b600160005b612d26565b600260005b612d30565b600360005b612d3a565b600460005b612d44565b600560005b612d4e565b600560015b612d58565b600560025b612d62565b600560035b612d6c565b600560045b612d75565b6005805b8160ff1691508060ff1690509250925050915091565b60606000831115612ed7576000612db3612dad86600001518760200151613aef565b84613bea565b905060008467ffffffffffffffff811115612df7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612e255781602001602082028036833780820191505090505b50905060005b85811015612ecc57828181518110612e6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151828281518110612ead577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080612ec49061581c565b915050612e2b565b508092505050612f4a565b600067ffffffffffffffff811115612f18577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612f465781602001602082028036833780820191505090505b5090505b9392505050565b600080600090505b845181101561300357612fee86612fa86000600285612f78919061586f565b11612f87578387901c19612fa2565b83670123456789abcdef901c8488901c612fa191906155e6565b5b8661333b565b878481518110612fe1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151613387565b95508080612ffb9061581c565b915050612f59565b50849050949350505050565b6000806402540be40083613023919061586f565b90506019846005811061305f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811091505092915050565b600080846000015190505b846020015181101561318957600061308f8883613d4f565b9050600061309d8884613d4f565b905084806130b757506000821180156130b65750600081115b5b15613174576000806002856130cc919061586f565b146130db578387901c196130f6565b83670123456789abcdef901c8488901c6130f591906155e6565b5b9050600061310e606483613d6c90919063ffffffff16565b9050602d81101561312b576131248c8587613387565b9b50613171565b602d811015801561313c5750605a81105b156131535761314c8c8487613387565b9b50613170565b600061315f838961333b565b905061316c8d8288613387565b9c50505b5b50505b505080806131819061581c565b915050613077565b508690509695505050505050565b600060606000836000015184602001516131b191906156c7565b67ffffffffffffffff8111156131f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561321e5781602001602082028036833780820191505090505b509050600080856000015190505b85602001518110156132b85760006132448883613d4f565b905060008114156132a45781848481518110613289577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505082806132a09061581c565b9350505b5080806132b09061581c565b91505061322c565b5080829350935050509250929050565b60008084846132d791906156c7565b90508581846132e6919061586f565b866132f191906155e6565b81518110613328577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151915050949350505050565b6000811561335e57613357601084613d6c90919063ffffffff16565b9050613381565b613372600f84613d6c90919063ffffffff16565b600161337e91906155e6565b90505b92915050565b6000600482613396919061566d565b83901b841790509392505050565b6000806402540be400836133b8919061586f565b9050601e84600581106133f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811091505092915050565b600061342a8261341c6127108661347b90919063ffffffff16565b61349a90919063ffffffff16565b905092915050565b6000818310156134425781613444565b825b905092915050565b600081831061345b578161345d565b825b905092915050565b6000818361347391906156c7565b905092915050565b60008183613489919061563c565b905092915050565b6000601e905090565b600081836134a8919061566d565b905092915050565b600081836134be91906155e6565b905092915050565b6060600060028360026134d9919061566d565b6134e391906155e6565b67ffffffffffffffff811115613522577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135545781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106135b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061363c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261367c919061566d565b61368691906155e6565b90505b6001811115613772577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106136ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811061372b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061376b906157f2565b9050613689565b50600084146137b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ad90615223565b60405180910390fd5b8091505092915050565b60006137cb8261220c565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461388157613809610d9f565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3083856040518463ffffffff1660e01b815260040161384593929190615102565b600060405180830381600087803b15801561385f57600080fd5b505af1158015613873573d6000803e3d6000fd5b5050505061388082613d82565b5b5050565b60008060006138948585613dbb565b92509250925060006138a4613ecb565b905060006138b0613ed0565b9050600082111561390b578185101580156138cb5750818410155b61390a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139019061535b565b60405180910390fd5b5b60008111156139bb5780831115613957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394e906154d7565b60405180910390fd5b600c831015801561397b57506000613979600c85613d6c90919063ffffffff16565b145b6139ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139b19061539b565b60405180910390fd5b5b6000806139d18787876139cc613491565b613eda565b809250819350505060006040518060c00160405280898152602001888152602001878152602001848152602001836002811115613a37577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b815260200142815250905080600360008d81526020019081526020016000206000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548160ff02191690836002811115613acf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555060a08201518160050155905050505050505050505050505050565b606060008383613aff91906156c7565b67ffffffffffffffff811115613b3e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613b6c5781602001602082028036833780820191505090505b50905060005b8151811015613bdf578085613b8791906155e6565b828281518110613bc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080613bd79061581c565b915050613b72565b508091505092915050565b606060005b8351811015613d45576000818551613c0791906156c7565b84613c12919061586f565b82613c1d91906155e6565b90506000858281518110613c5a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050858381518110613c9d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151868381518110613cde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080868481518110613d24577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505050508080613d3d9061581c565b915050613bef565b5082905092915050565b6000600f600483613d60919061566d565b84901c16905092915050565b60008183613d7a919061586f565b905092915050565b6002600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550565b600080600080613e1086868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506000613f6f565b90506000613e6387878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506020613f6f565b90506000613eb688888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506040613f6f565b90508282829550955095505050509250925092565b600090565b6000610960905090565b60008084861415613ef15760008091509150613f66565b6000613efd8787613432565b90506000613f0b888861344c565b90506000613f22828461346590919063ffffffff16565b905060006002905088841415613f3757600190505b613f5c613f4d888a61349a90919063ffffffff16565b8361347b90919063ffffffff16565b8195509550505050505b94509492505050565b6000602082613f7e91906155e6565b83511015613fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fb89061545b565b60405180910390fd5b60008260208501015190508091505092915050565b82600a8101928215614005579160200282015b82811115614004578235825591602001919060010190613fe9565b5b50905061401291906140c4565b5090565b8260058101928215614045579160200282015b82811115614044578235825591602001919060010190614029565b5b50905061405291906140c4565b5090565b6040518060c0016040528060008152602001600081526020016000815260200160008152602001600060028111156140b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8152602001600081525090565b5b808211156140dd5760008160009055506001016140c5565b5090565b6000813590506140f081615981565b92915050565b60008151905061410581615981565b92915050565b60008135905061411a81615998565b92915050565b6000819050826020600a028201111561413857600080fd5b92915050565b60008190508260206005028201111561415657600080fd5b92915050565b60008151905061416b816159af565b92915050565b600081359050614180816159c6565b92915050565b60008083601f84011261419857600080fd5b8235905067ffffffffffffffff8111156141b157600080fd5b6020830191508360018202830111156141c957600080fd5b9250929050565b6000815190506141df816159dd565b92915050565b600060e082840312156141f757600080fd5b61420160e0615572565b90506000614211848285016142aa565b6000830152506020614225848285016142aa565b6020830152506040614239848285016142aa565b604083015250606061424d848285016142aa565b6060830152506080614261848285016142aa565b60808301525060a0614275848285016142aa565b60a08301525060c0614289848285016141d0565b60c08301525092915050565b6000813590506142a4816159ed565b92915050565b6000815190506142b9816159ed565b92915050565b6000602082840312156142d157600080fd5b60006142df848285016140e1565b91505092915050565b6000602082840312156142fa57600080fd5b6000614308848285016140f6565b91505092915050565b6000806040838503121561432457600080fd5b60006143328582860161410b565b925050602061434385828601614295565b9150509250929050565b60008060008060006080868803121561436557600080fd5b6000614373888289016140e1565b9550506020614384888289016140e1565b945050604061439588828901614295565b935050606086013567ffffffffffffffff8111156143b257600080fd5b6143be88828901614186565b92509250509295509295909350565b600080604083850312156143e057600080fd5b60006143ee858286016140e1565b92505060206143ff85828601614295565b9150509250929050565b60008060008060006080868803121561442157600080fd5b600061442f888289016140e1565b955050602061444088828901614295565b9450506040614451888289016140e1565b935050606086013567ffffffffffffffff81111561446e57600080fd5b61447a88828901614186565b92509250509295509295909350565b6000610140828403121561449c57600080fd5b60006144aa84828501614120565b91505092915050565b600060a082840312156144c557600080fd5b60006144d38482850161413e565b91505092915050565b6000602082840312156144ee57600080fd5b60006144fc8482850161415c565b91505092915050565b6000806040838503121561451857600080fd5b600061452685828601614171565b9250506020614537858286016140e1565b9150509250929050565b600060e0828403121561455357600080fd5b6000614561848285016141e5565b91505092915050565b60006020828403121561457c57600080fd5b600061458a84828501614295565b91505092915050565b6000602082840312156145a557600080fd5b60006145b3848285016142aa565b91505092915050565b600080604083850312156145cf57600080fd5b60006145dd85828601614295565b92505060206145ee8582860161410b565b9150509250929050565b6000806040838503121561460b57600080fd5b600061461985828601614295565b925050602061462a85828601614295565b9150509250929050565b60008060006060848603121561464957600080fd5b600061465786828701614295565b935050602061466886828701614295565b925050604061467986828701614295565b9150509250925092565b61468c816156fb565b82525050565b61469b8161571f565b82525050565b6146aa8161572b565b82525050565b6146b981615735565b82525050565b60006146cb83856155ae565b93506146d88385846157b0565b6146e18361595c565b840190509392505050565b6146f58161579e565b82525050565b6000614706826155a3565b61471081856155ca565b93506147208185602086016157bf565b6147298161595c565b840191505092915050565b600061473f826155a3565b61474981856155db565b93506147598185602086016157bf565b80840191505092915050565b60006147726020836155ca565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b60006147b2600d836155ca565b91507f647261676f6e43726561746f72000000000000000000000000000000000000006000830152602082019050919050565b60006147f26037836155ca565b91507f447261676f6e43726f737362726565643a2074686520647261676f6e2063616e60008301527f6e6f742062652061204c6567656e646172792d747970650000000000000000006020830152604082019050919050565b6000614858603a836155ca565b91507f4c6f636b61626c6552656365697665723a206e6f7420656e6f7567682070726960008301527f76696c6567657320746f2063616c6c20746865206d6574686f640000000000006020830152604082019050919050565b60006148be603a836155ca565b91507f447261676f6e43726f737362726565643a207468652063616c6c65722069732060008301527f6e6f7420616e206f776e6572206f662074686520647261676f6e0000000000006020830152604082019050919050565b6000614924600d836155ca565b91507f616363657373436f6e74726f6c000000000000000000000000000000000000006000830152602082019050919050565b60006149646030836155ca565b91507f4c6f636b61626c6552656365697665723a2063616c6c6572206973206e6f742060008301527f74686520746f6b656e20686f6c646572000000000000000000000000000000006020830152604082019050919050565b60006149ca6033836155ca565b91507f4c6f636b61626c6552656365697665723a20756e61626c6520746f207265636560008301527f6976652074686520676976656e20746f6b656e000000000000000000000000006020830152604082019050919050565b6000614a30605d836155ca565b91507f4261736541756374696f6e52656365697665723a20746865207374617274696e60008301527f6720707269636520616e64207468652066696e616c2070726963652063616e6e60208301527f6f74206265206c657373207468616e207765694d696e507269636528290000006040830152606082019050919050565b6000614abc6034836155ca565b91507f4c6f636b61626c6552656365697665723a207468652063616c6c65722069732060008301527f6e6f7420612076616c6964206f70657261746f720000000000000000000000006020830152604082019050919050565b6000614b22604d836155ca565b91507f4261736541756374696f6e52656365697665723a20746865207072696365206360008301527f68616e676520706572696f642073686f756c642062652061206d756c7469706c60208301527f65206f6620302e352064617973000000000000000000000000000000000000006040830152606082019050919050565b6000614bae6037836155ca565b91507f447261676f6e43726f737362726565643a20696e636f727265637420616d6f7560008301527f6e742073656e7420746f2074686520636f6e74726163740000000000000000006020830152604082019050919050565b6000614c14603a836155ca565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000614c7a601d836155ca565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000614cba602c836155ca565b91507f447261676f6e43726f737362726565643a20616464726573732063616e6e6f7460008301527f20626520636f6e747261637400000000000000000000000000000000000000006020830152604082019050919050565b6000614d20603e836155ca565b91507f447261676f6e43726f737362726565643a2074686520676976656e20616d6f7560008301527f6e742065786365656465642074686520616c6c6f7765642072657761726400006020830152604082019050919050565b6000614d866015836155ca565b91507f746f55696e743235365f6f75744f66426f756e647300000000000000000000006000830152602082019050919050565b6000614dc6604f836155ca565b91507f447261676f6e43726f737362726565643a20616e6f7468657220647261676f6e60008301527f206973206e6f74206c6f636b6564206e6f7220646f65736e27742062656c6f6e60208301527f6720746f207468652063616c6c657200000000000000000000000000000000006040830152606082019050919050565b6000614e52600d836155ca565b91507f746f6b656e436f6e7472616374000000000000000000000000000000000000006000830152602082019050919050565b6000614e926000836155bf565b9150600082019050919050565b6000614eac6017836155db565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000614eec604b836155ca565b91507f4261736541756374696f6e52656365697665723a20746865207072696365206360008301527f68616e676520706572696f642063616e6e6f7420657863656564206d6178546f60208301527f74616c506572696f6428290000000000000000000000000000000000000000006040830152606082019050919050565b6000614f786011836155db565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60c082016000820151614fc16000850182615026565b506020820151614fd46020850182615026565b506040820151614fe76040850182615026565b506060820151614ffa6060850182615026565b50608082015161500d60808501826146ec565b5060a082015161502060a0850182615026565b50505050565b61502f81615794565b82525050565b61503e81615794565b82525050565b61505561505082615794565b615865565b82525050565b600061506682614e85565b9150819050919050565b600061507b82614e9f565b91506150878285614734565b915061509282614f6b565b915061509e8284614734565b91508190509392505050565b60006150b68286615044565b6020820191506150c68285615044565b6020820191506150d68284615044565b602082019150819050949350505050565b60006020820190506150fc6000830184614683565b92915050565b60006060820190506151176000830186614683565b6151246020830185614683565b6151316040830184615035565b949350505050565b600060808201905061514e6000830188614683565b61515b6020830187614683565b6151686040830186615035565b818103606083015261517b8184866146bf565b90509695505050505050565b600060208201905061519c6000830184614692565b92915050565b60006020820190506151b760008301846146a1565b92915050565b60006040820190506151d260008301856146a1565b6151df6020830184614683565b9392505050565b60006020820190506151fb60008301846146b0565b92915050565b6000602082019050818103600083015261521b81846146fb565b905092915050565b6000602082019050818103600083015261523c81614765565b9050919050565b6000606082019050818103600083015261525c816147a5565b905061526b6020830185614683565b6152786040830184614683565b9392505050565b60006020820190508181036000830152615298816147e5565b9050919050565b600060208201905081810360008301526152b88161484b565b9050919050565b600060208201905081810360008301526152d8816148b1565b9050919050565b600060608201905081810360008301526152f881614917565b90506153076020830185614683565b6153146040830184614683565b9392505050565b6000602082019050818103600083015261533481614957565b9050919050565b60006020820190508181036000830152615354816149bd565b9050919050565b6000602082019050818103600083015261537481614a23565b9050919050565b6000602082019050818103600083015261539481614aaf565b9050919050565b600060208201905081810360008301526153b481614b15565b9050919050565b600060208201905081810360008301526153d481614ba1565b9050919050565b600060208201905081810360008301526153f481614c07565b9050919050565b6000602082019050818103600083015261541481614c6d565b9050919050565b6000602082019050818103600083015261543481614cad565b9050919050565b6000602082019050818103600083015261545481614d13565b9050919050565b6000602082019050818103600083015261547481614d79565b9050919050565b6000602082019050818103600083015261549481614db9565b9050919050565b600060608201905081810360008301526154b481614e45565b90506154c36020830185614683565b6154d06040830184614683565b9392505050565b600060208201905081810360008301526154f081614edf565b9050919050565b600060c08201905061550c6000830184614fab565b92915050565b60006020820190506155276000830184615035565b92915050565b60006080820190506155426000830187615035565b61554f6020830186615035565b61555c6040830185615035565b6155696060830184614683565b95945050505050565b6000604051905081810181811067ffffffffffffffff821117156155995761559861592d565b5b8060405250919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006155f182615794565b91506155fc83615794565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615631576156306158a0565b5b828201905092915050565b600061564782615794565b915061565283615794565b925082615662576156616158cf565b5b828204905092915050565b600061567882615794565b915061568383615794565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156156bc576156bb6158a0565b5b828202905092915050565b60006156d282615794565b91506156dd83615794565b9250828210156156f0576156ef6158a0565b5b828203905092915050565b600061570682615774565b9050919050565b600061571882615774565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061576f8261596d565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006157a982615761565b9050919050565b82818337600083830152505050565b60005b838110156157dd5780820151818401526020810190506157c2565b838111156157ec576000848401525b50505050565b60006157fd82615794565b91506000821415615811576158106158a0565b5b600182039050919050565b600061582782615794565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561585a576158596158a0565b5b600182019050919050565b6000819050919050565b600061587a82615794565b915061588583615794565b925082615895576158946158cf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6003811061597e5761597d6158fe565b5b50565b61598a816156fb565b811461599557600080fd5b50565b6159a18161570d565b81146159ac57600080fd5b50565b6159b88161571f565b81146159c357600080fd5b50565b6159cf8161572b565b81146159da57600080fd5b50565b600c81106159ea57600080fd5b50565b6159f681615794565b8114615a0157600080fd5b5056fea2646970667358221220a09fb04d014d2e6a8352799e64a2d42106e4240e67a3cb81f37c323f625e83d864736f6c63430008000033000000000000000000000000c713a40aa9bff56aee0e8ff9542b758d83af9fea0000000000000000000000003943cf9bd3aca41a66ec911a6395727db274856e0000000000000000000000008e095d160c1056dca391c076107c5df4e184ae0c000000000000000000000000000000000000000000000000000000000000012c

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80639b5e168711610102578063c2ce81a811610095578063dfbfbab311610064578063dfbfbab314610717578063e8d56b8b14610742578063f468ea591461076b578063f6aacfb1146107a8576101e3565b8063c2ce81a81461064b578063ccbde5c214610674578063d7c8e7711461069d578063dbacc237146106da576101e3565b8063abad25c2116100d1578063abad25c214610591578063b514be63146105ba578063b9186d7d146105e5578063bbcd5bbe14610622576101e3565b80639b5e1687146104e45780639f6f50ed146105005780639feb8f501461052b578063a131c06314610554576101e3565b80633acfd44f1161017a5780636df93a47116101495780636df93a4714610416578063766650e5146104535780638f4ffcb11461047e57806391d14854146104a7576101e3565b80633acfd44f1461035857806355a373d614610383578063617c6169146103ae57806366741377146103eb576101e3565b8063263f8811116101b6578063263f8811146102b45780632a6e5e11146102dd5780632e1a7d4d1461030657806332ede77f1461032f576101e3565b8063150b7a02146101e85780631715af2614610225578063174e31c4146102625780631c6b7fbb1461028b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061434d565b6107e5565b60405161021c91906151e6565b60405180910390f35b34801561023157600080fd5b5061024c6004803603810190610247919061456a565b610868565b6040516102599190615512565b60405180910390f35b34801561026e57600080fd5b5061028960048036038101906102849190614311565b6108ad565b005b34801561029757600080fd5b506102b260048036038101906102ad91906142bf565b610a75565b005b3480156102c057600080fd5b506102db60048036038101906102d6919061456a565b610b4d565b005b3480156102e957600080fd5b5061030460048036038101906102ff91906145bc565b610b8a565b005b34801561031257600080fd5b5061032d6004803603810190610328919061456a565b610c56565b005b34801561033b57600080fd5b5061035660048036038101906103519190614489565b610d33565b005b34801561036457600080fd5b5061036d610d7b565b60405161037a91906151a2565b60405180910390f35b34801561038f57600080fd5b50610398610d9f565b6040516103a591906150e7565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d0919061456a565b610dc9565b6040516103e29190615512565b60405180910390f35b3480156103f757600080fd5b50610400610e0e565b60405161040d91906150e7565b60405180910390f35b34801561042257600080fd5b5061043d6004803603810190610438919061456a565b610e37565b60405161044a9190615512565b60405180910390f35b34801561045f57600080fd5b50610468610e7c565b60405161047591906150e7565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190614409565b610ea6565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190614505565b61102e565b6040516104db9190615187565b60405180910390f35b6104fe60048036038101906104f99190614634565b6110ca565b005b34801561050c57600080fd5b50610515611b57565b60405161052291906151a2565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d91906143cd565b611b7b565b005b34801561056057600080fd5b5061057b6004803603810190610576919061456a565b611cbd565b6040516105889190615512565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b391906144b3565b611d02565b005b3480156105c657600080fd5b506105cf611d4a565b6040516105dc91906151a2565b60405180910390f35b3480156105f157600080fd5b5061060c6004803603810190610607919061456a565b611d6e565b6040516106199190615512565b60405180910390f35b34801561062e57600080fd5b50610649600480360381019061064491906142bf565b611fbe565b005b34801561065757600080fd5b50610672600480360381019061066d91906144b3565b612096565b005b34801561068057600080fd5b5061069b60048036038101906106969190614489565b6120de565b005b3480156106a957600080fd5b506106c460048036038101906106bf919061456a565b612126565b6040516106d191906154f7565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc919061456a565b61220c565b60405161070e91906150e7565b60405180910390f35b34801561072357600080fd5b5061072c612249565b6040516107399190615512565b60405180910390f35b34801561074e57600080fd5b50610769600480360381019061076491906142bf565b612253565b005b34801561077757600080fd5b50610792600480360381019061078d91906145f8565b612329565b60405161079f9190615512565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca919061456a565b61248a565b6040516107dc9190615187565b60405180910390f35b60003073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c9061537b565b60405180910390fd5b63150b7a0260e01b905095945050505050565b6000600582600a81106108a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050919050565b6108b6826124f6565b156108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed9061541b565b60405180910390fd5b60256000610902612509565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561097f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109769061543b565b60405180910390fd5b6109a8818373ffffffffffffffffffffffffffffffffffffffff1661251190919063ffffffff16565b80602560006109b5612509565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109fe91906156c7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16610a24612509565b73ffffffffffffffffffffffffffffffffffffffff167f0aa4d283470c904c551d18bb894d37e17674920f3261a7f854be501e25f421b783604051610a699190615512565b60405180910390a35050565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d610aa781610aa2612509565b612605565b6000602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082602360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4ca142703425bec1d507d5581fac3a3e61eadcbeafbd7c0a03e2897d96de1cc58184604051610b40929190615243565b60405180910390a1505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc610b7f81610b7a612509565b612605565b816004819055505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc610bbc81610bb7612509565b612605565b610be5838373ffffffffffffffffffffffffffffffffffffffff1661251190919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff16610c04612509565b73ffffffffffffffffffffffffffffffffffffffff167f372bb9ce23c45af0229f3ad425305ebadfb790c0b0453fa3077a02d7d8c987bb85604051610c499190615512565b60405180910390a3505050565b80610c5f612509565b73ffffffffffffffffffffffffffffffffffffffff16610c7e8261220c565b73ffffffffffffffffffffffffffffffffffffffff1614610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb9061531b565b60405180910390fd5b600360008381526020019081526020016000206000808201600090556001820160009055600282016000905560038201600090556004820160006101000a81549060ff021916905560058201600090555050610d2f826126a2565b5050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc610d6581610d60612509565b612605565b81600590600a610d76929190613fd6565b505050565b7fefa080c67ecf4a6bf40c9dc64173420c08f359250ca6562d7c80f7c7b9b1396981565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601e8260058110610e05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060198260058110610e73577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050919050565b6000602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610eae612509565b73ffffffffffffffffffffffffffffffffffffffff16610ecc610d9f565b73ffffffffffffffffffffffffffffffffffffffff1614610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f199061529f565b60405180910390fd5b610f2a610d9f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e9061533b565b60405180910390fd5b610f9f610d9f565b73ffffffffffffffffffffffffffffffffffffffff1663b88d4fde86308786866040518663ffffffff1660e01b8152600401610fdf959493929190615139565b600060405180830381600087803b158015610ff957600080fd5b505af115801561100d573d6000803e3d6000fd5b5050505061101b8486612782565b61102785858484612826565b5050505050565b6000611038610e0e565b73ffffffffffffffffffffffffffffffffffffffff166391d1485484846040518363ffffffff1660e01b81526004016110729291906151bd565b60206040518083038186803b15801561108a57600080fd5b505afa15801561109e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c291906144dc565b905092915050565b60006110d4610d9f565b90506110de612509565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e866040518263ffffffff1660e01b815260040161112d9190615512565b60206040518083038186803b15801561114557600080fd5b505afa158015611159573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117d91906142e8565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca906152bf565b60405180910390fd5b6111dc8361248a565b806112a157506111ea612509565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b81526004016112399190615512565b60206040518083038186803b15801561125157600080fd5b505afa158015611265573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128991906142e8565b73ffffffffffffffffffffffffffffffffffffffff16145b6112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d79061547b565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1663225b38fd866040518263ffffffff1660e01b815260040161131b9190615512565b60e06040518083038186803b15801561133357600080fd5b505afa158015611347573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136b9190614541565b905060008273ffffffffffffffffffffffffffffffffffffffff1663225b38fd866040518263ffffffff1660e01b81526004016113a89190615512565b60e06040518083038186803b1580156113c057600080fd5b505afa1580156113d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f89190614541565b905060008061140f84600001518460000151612984565b915091506000611429828461142491906155e6565b610868565b905060006114368961248a565b156114475761144489611d6e565b90505b808261145391906155e6565b341015611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c906153bb565b60405180910390fd5b6000806114a18a612a18565b905060006114b2448c841818612a18565b90506001600b8111156114ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8960c00151600b81111561152b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1480156115ac57506001600b81111561156d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8860c00151600b8111156115aa577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b145b156116f0576000806115bd84612a4f565b91509150600082111561160a5760006115f76028604051806040016040529081600082015481526020016001820154815250508487612d8b565b90506116068682876000612f51565b9550505b6000811115611653576000611640602a604051806040016040529081600082015481526020016001820154815250508387612d8b565b905061164f8682876000612f51565b9550505b60008514801561166a575061166960008461300f565b5b156116b057600061169d602860405180604001604052908160008201548152602001600182015481525050600186612d8b565b90506116ac8682866000612f51565b9550505b6116e7858c600001518c6000015160266040518060400160405290816000820154815260200160018201548152505088600161306c565b94505050611a52565b6006600b81111561172a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8960c00151600b811115611767577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1480156117e857506006600b8111156117a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8860c00151600b8111156117e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b145b156118a457600061181b602a60405180604001604052908160008201548152602001600182015481525050600185612d8b565b905061182a8482856000612f51565b9350611863848b600001518b6000015160266040518060400160405290816000820154815260200160018201548152505087600161306c565b935061189c848b600001518b6000015160286040518060400160405290816000820154815260200160018201548152505087600061306c565b935050611a51565b6118db838a600001518a6000015160266040518060400160405290816000820154815260200160018201548152505086600161306c565b9250611914838a600001518a6000015160286040518060400160405290816000820154815260200160018201548152505086600061306c565b925061194d838a600001518a60000151602a6040518060400160405290816000820154815260200160018201548152505086600061306c565b92506005871080156119655750611964878361300f565b5b156119cb5760008061199785602860405180604001604052908160008201548152602001600182015481525050613197565b9150915060006119aa82600085876132c8565b90506119c1866119bb86600061333b565b83613387565b9550505050611a50565b6005871480156119db5750600586105b80156119ed57506119ec86836133a4565b5b15611a4f57600080611a1f85602a60405180604001604052908160008201548152602001600182015481525050613197565b915091506000611a3282600085876132c8565b9050611a4986611a4386600061333b565b83613387565b95505050505b5b5b5b6000841115611aa857611aa7611a6f85611a6a612249565b613401565b85611a7a91906156c7565b611a838e61220c565b73ffffffffffffffffffffffffffffffffffffffff1661251190919063ffffffff16565b5b611ab0610e7c565b73ffffffffffffffffffffffffffffffffffffffff166337a3191f8e8e86611ad6612509565b6040518563ffffffff1660e01b8152600401611af5949392919061552d565b602060405180830381600087803b158015611b0f57600080fd5b505af1158015611b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b479190614593565b5050505050505050505050505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc81565b7fefa080c67ecf4a6bf40c9dc64173420c08f359250ca6562d7c80f7c7b9b13969611bad81611ba8612509565b612605565b611bb6836124f6565b15611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed9061541b565b60405180910390fd5b81602560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4591906155e6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff16611c6b612509565b73ffffffffffffffffffffffffffffffffffffffff167f0f7cde3c0518e1cc590491be5861d70a2e333f7e65af2e1ebd91a3c9a3cc638d84604051611cb09190615512565b60405180910390a3505050565b6000600f82600a8110611cf9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050919050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc611d3481611d2f612509565b612605565b816019906005611d45929190614016565b505050565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d81565b600080611d7a83612126565b905060006002811115611db6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81608001516002811115611df3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611e06578060000151915050611fb9565b6000611e1a82600001518360200151613432565b90506000611e308360000151846020015161344c565b90506000611e47828461346590919063ffffffff16565b90506000611e6285606001518361347b90919063ffffffff16565b90506000611eb5603c611ea7611e76613491565b611e99603c8b60a0015142611e8b91906156c7565b61347b90919063ffffffff16565b61349a90919063ffffffff16565b61347b90919063ffffffff16565b9050600082821115611ecd5786602001519050611fae565b600280811115611f06577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b87608001516002811115611f43577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611f7d57611f76611f6383896060015161349a90919063ffffffff16565b886000015161346590919063ffffffff16565b9050611fad565b611faa611f9783896060015161349a90919063ffffffff16565b88600001516134b090919063ffffffff16565b90505b5b809750505050505050505b919050565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d611ff081611feb612509565b612605565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4ca142703425bec1d507d5581fac3a3e61eadcbeafbd7c0a03e2897d96de1cc5818460405161208992919061549b565b60405180910390a1505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc6120c8816120c3612509565b612605565b81601e9060056120d9929190614016565b505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc6121108161210b612509565b612605565b81600f90600a612121929190613fd6565b505050565b61212e614056565b600360008381526020019081526020016000206040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff1660028111156121bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028111156121f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81526020016005820154815250509050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600454905090565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d61228581612280612509565b612605565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4ca142703425bec1d507d5581fac3a3e61eadcbeafbd7c0a03e2897d96de1cc5818460405161231c9291906152df565b60405180910390a1505050565b600080612334610d9f565b905060008173ffffffffffffffffffffffffffffffffffffffff1663225b38fd866040518263ffffffff1660e01b81526004016123719190615512565b60e06040518083038186803b15801561238957600080fd5b505afa15801561239d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123c19190614541565b60000151905060008273ffffffffffffffffffffffffffffffffffffffff1663225b38fd866040518263ffffffff1660e01b81526004016124029190615512565b60e06040518083038186803b15801561241a57600080fd5b505afa15801561242e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124529190614541565b6000015190506000806124658484612984565b9150915061247d818361247891906155e6565b610868565b9550505050505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600080823b905060008111915050919050565b600033905090565b80471015612554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254b906153fb565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161257a9061505b565b60006040518083038185875af1925050503d80600081146125b7576040519150601f19603f3d011682016040523d82523d6000602084013e6125bc565b606091505b5050905080612600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f7906153db565b60405180910390fd5b505050565b61260f828261102e565b61269e576126348173ffffffffffffffffffffffffffffffffffffffff1660146134c6565b6126428360001c60206134c6565b604051602001612653929190615070565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126959190615201565b60405180910390fd5b5050565b806126ab612509565b73ffffffffffffffffffffffffffffffffffffffff166126ca8261220c565b73ffffffffffffffffffffffffffffffffffffffff1614612720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127179061531b565b60405180910390fd5b612729826137c0565b612731612509565b73ffffffffffffffffffffffffffffffffffffffff167f61dc2e6e64c7a742717c1eae2958f9bc011c40d616afd06af648eff740c2b04d836040516127769190615512565b60405180910390a25050565b806002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f9ecfd70e9ff36df72989324a49559383d39f9290d700b10cf5ac10dcb68d26438360405161281a9190615512565b60405180910390a25050565b6000612830610d9f565b73ffffffffffffffffffffffffffffffffffffffff1663225b38fd856040518263ffffffff1660e01b81526004016128689190615512565b60e06040518083038186803b15801561288057600080fd5b505afa158015612894573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b89190614541565b9050600b808111156128f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160c00151600b811115612930577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129689061527f565b60405180910390fd5b61297d85858585613885565b5050505050565b60008060006c0f000000000000000000000000905060008060005b600a811015612a075760008489161180156129bc57506000848816115b156129ed5760058110156129dd5781806129d59061581c565b9250506129ec565b82806129e89061581c565b9350505b5b600484901c935080806129ff9061581c565b91505061299f565b508181945094505050509250929050565b6000444283604051602001612a2f939291906150aa565b6040516020818303038152906040528051906020012060001c9050919050565b60008060006402540be40084612a65919061586f565b9050600f6000600a8110612aa2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d7157600f6001600a8110612ae6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d6757600f6002600a8110612b2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d5d57600f6003600a8110612b6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d5357600f6004600a8110612bb2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d4957600f6005600a8110612bf6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d3f57600f6006600a8110612c3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d3557600f6007600a8110612c7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d2b57600f6008600a8110612cc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d2157600f6009600a8110612d06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811115612d1757600080612d1c565b600160005b612d26565b600260005b612d30565b600360005b612d3a565b600460005b612d44565b600560005b612d4e565b600560015b612d58565b600560025b612d62565b600560035b612d6c565b600560045b612d75565b6005805b8160ff1691508060ff1690509250925050915091565b60606000831115612ed7576000612db3612dad86600001518760200151613aef565b84613bea565b905060008467ffffffffffffffff811115612df7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612e255781602001602082028036833780820191505090505b50905060005b85811015612ecc57828181518110612e6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151828281518110612ead577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080612ec49061581c565b915050612e2b565b508092505050612f4a565b600067ffffffffffffffff811115612f18577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612f465781602001602082028036833780820191505090505b5090505b9392505050565b600080600090505b845181101561300357612fee86612fa86000600285612f78919061586f565b11612f87578387901c19612fa2565b83670123456789abcdef901c8488901c612fa191906155e6565b5b8661333b565b878481518110612fe1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151613387565b95508080612ffb9061581c565b915050612f59565b50849050949350505050565b6000806402540be40083613023919061586f565b90506019846005811061305f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811091505092915050565b600080846000015190505b846020015181101561318957600061308f8883613d4f565b9050600061309d8884613d4f565b905084806130b757506000821180156130b65750600081115b5b15613174576000806002856130cc919061586f565b146130db578387901c196130f6565b83670123456789abcdef901c8488901c6130f591906155e6565b5b9050600061310e606483613d6c90919063ffffffff16565b9050602d81101561312b576131248c8587613387565b9b50613171565b602d811015801561313c5750605a81105b156131535761314c8c8487613387565b9b50613170565b600061315f838961333b565b905061316c8d8288613387565b9c50505b5b50505b505080806131819061581c565b915050613077565b508690509695505050505050565b600060606000836000015184602001516131b191906156c7565b67ffffffffffffffff8111156131f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561321e5781602001602082028036833780820191505090505b509050600080856000015190505b85602001518110156132b85760006132448883613d4f565b905060008114156132a45781848481518110613289577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505082806132a09061581c565b9350505b5080806132b09061581c565b91505061322c565b5080829350935050509250929050565b60008084846132d791906156c7565b90508581846132e6919061586f565b866132f191906155e6565b81518110613328577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151915050949350505050565b6000811561335e57613357601084613d6c90919063ffffffff16565b9050613381565b613372600f84613d6c90919063ffffffff16565b600161337e91906155e6565b90505b92915050565b6000600482613396919061566d565b83901b841790509392505050565b6000806402540be400836133b8919061586f565b9050601e84600581106133f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154811091505092915050565b600061342a8261341c6127108661347b90919063ffffffff16565b61349a90919063ffffffff16565b905092915050565b6000818310156134425781613444565b825b905092915050565b600081831061345b578161345d565b825b905092915050565b6000818361347391906156c7565b905092915050565b60008183613489919061563c565b905092915050565b6000601e905090565b600081836134a8919061566d565b905092915050565b600081836134be91906155e6565b905092915050565b6060600060028360026134d9919061566d565b6134e391906155e6565b67ffffffffffffffff811115613522577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135545781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106135b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061363c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261367c919061566d565b61368691906155e6565b90505b6001811115613772577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106136ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811061372b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061376b906157f2565b9050613689565b50600084146137b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ad90615223565b60405180910390fd5b8091505092915050565b60006137cb8261220c565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461388157613809610d9f565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3083856040518463ffffffff1660e01b815260040161384593929190615102565b600060405180830381600087803b15801561385f57600080fd5b505af1158015613873573d6000803e3d6000fd5b5050505061388082613d82565b5b5050565b60008060006138948585613dbb565b92509250925060006138a4613ecb565b905060006138b0613ed0565b9050600082111561390b578185101580156138cb5750818410155b61390a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139019061535b565b60405180910390fd5b5b60008111156139bb5780831115613957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394e906154d7565b60405180910390fd5b600c831015801561397b57506000613979600c85613d6c90919063ffffffff16565b145b6139ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139b19061539b565b60405180910390fd5b5b6000806139d18787876139cc613491565b613eda565b809250819350505060006040518060c00160405280898152602001888152602001878152602001848152602001836002811115613a37577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b815260200142815250905080600360008d81526020019081526020016000206000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548160ff02191690836002811115613acf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555060a08201518160050155905050505050505050505050505050565b606060008383613aff91906156c7565b67ffffffffffffffff811115613b3e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613b6c5781602001602082028036833780820191505090505b50905060005b8151811015613bdf578085613b8791906155e6565b828281518110613bc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080613bd79061581c565b915050613b72565b508091505092915050565b606060005b8351811015613d45576000818551613c0791906156c7565b84613c12919061586f565b82613c1d91906155e6565b90506000858281518110613c5a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050858381518110613c9d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151868381518110613cde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080868481518110613d24577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505050508080613d3d9061581c565b915050613bef565b5082905092915050565b6000600f600483613d60919061566d565b84901c16905092915050565b60008183613d7a919061586f565b905092915050565b6002600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550565b600080600080613e1086868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506000613f6f565b90506000613e6387878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506020613f6f565b90506000613eb688888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506040613f6f565b90508282829550955095505050509250925092565b600090565b6000610960905090565b60008084861415613ef15760008091509150613f66565b6000613efd8787613432565b90506000613f0b888861344c565b90506000613f22828461346590919063ffffffff16565b905060006002905088841415613f3757600190505b613f5c613f4d888a61349a90919063ffffffff16565b8361347b90919063ffffffff16565b8195509550505050505b94509492505050565b6000602082613f7e91906155e6565b83511015613fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fb89061545b565b60405180910390fd5b60008260208501015190508091505092915050565b82600a8101928215614005579160200282015b82811115614004578235825591602001919060010190613fe9565b5b50905061401291906140c4565b5090565b8260058101928215614045579160200282015b82811115614044578235825591602001919060010190614029565b5b50905061405291906140c4565b5090565b6040518060c0016040528060008152602001600081526020016000815260200160008152602001600060028111156140b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8152602001600081525090565b5b808211156140dd5760008160009055506001016140c5565b5090565b6000813590506140f081615981565b92915050565b60008151905061410581615981565b92915050565b60008135905061411a81615998565b92915050565b6000819050826020600a028201111561413857600080fd5b92915050565b60008190508260206005028201111561415657600080fd5b92915050565b60008151905061416b816159af565b92915050565b600081359050614180816159c6565b92915050565b60008083601f84011261419857600080fd5b8235905067ffffffffffffffff8111156141b157600080fd5b6020830191508360018202830111156141c957600080fd5b9250929050565b6000815190506141df816159dd565b92915050565b600060e082840312156141f757600080fd5b61420160e0615572565b90506000614211848285016142aa565b6000830152506020614225848285016142aa565b6020830152506040614239848285016142aa565b604083015250606061424d848285016142aa565b6060830152506080614261848285016142aa565b60808301525060a0614275848285016142aa565b60a08301525060c0614289848285016141d0565b60c08301525092915050565b6000813590506142a4816159ed565b92915050565b6000815190506142b9816159ed565b92915050565b6000602082840312156142d157600080fd5b60006142df848285016140e1565b91505092915050565b6000602082840312156142fa57600080fd5b6000614308848285016140f6565b91505092915050565b6000806040838503121561432457600080fd5b60006143328582860161410b565b925050602061434385828601614295565b9150509250929050565b60008060008060006080868803121561436557600080fd5b6000614373888289016140e1565b9550506020614384888289016140e1565b945050604061439588828901614295565b935050606086013567ffffffffffffffff8111156143b257600080fd5b6143be88828901614186565b92509250509295509295909350565b600080604083850312156143e057600080fd5b60006143ee858286016140e1565b92505060206143ff85828601614295565b9150509250929050565b60008060008060006080868803121561442157600080fd5b600061442f888289016140e1565b955050602061444088828901614295565b9450506040614451888289016140e1565b935050606086013567ffffffffffffffff81111561446e57600080fd5b61447a88828901614186565b92509250509295509295909350565b6000610140828403121561449c57600080fd5b60006144aa84828501614120565b91505092915050565b600060a082840312156144c557600080fd5b60006144d38482850161413e565b91505092915050565b6000602082840312156144ee57600080fd5b60006144fc8482850161415c565b91505092915050565b6000806040838503121561451857600080fd5b600061452685828601614171565b9250506020614537858286016140e1565b9150509250929050565b600060e0828403121561455357600080fd5b6000614561848285016141e5565b91505092915050565b60006020828403121561457c57600080fd5b600061458a84828501614295565b91505092915050565b6000602082840312156145a557600080fd5b60006145b3848285016142aa565b91505092915050565b600080604083850312156145cf57600080fd5b60006145dd85828601614295565b92505060206145ee8582860161410b565b9150509250929050565b6000806040838503121561460b57600080fd5b600061461985828601614295565b925050602061462a85828601614295565b9150509250929050565b60008060006060848603121561464957600080fd5b600061465786828701614295565b935050602061466886828701614295565b925050604061467986828701614295565b9150509250925092565b61468c816156fb565b82525050565b61469b8161571f565b82525050565b6146aa8161572b565b82525050565b6146b981615735565b82525050565b60006146cb83856155ae565b93506146d88385846157b0565b6146e18361595c565b840190509392505050565b6146f58161579e565b82525050565b6000614706826155a3565b61471081856155ca565b93506147208185602086016157bf565b6147298161595c565b840191505092915050565b600061473f826155a3565b61474981856155db565b93506147598185602086016157bf565b80840191505092915050565b60006147726020836155ca565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b60006147b2600d836155ca565b91507f647261676f6e43726561746f72000000000000000000000000000000000000006000830152602082019050919050565b60006147f26037836155ca565b91507f447261676f6e43726f737362726565643a2074686520647261676f6e2063616e60008301527f6e6f742062652061204c6567656e646172792d747970650000000000000000006020830152604082019050919050565b6000614858603a836155ca565b91507f4c6f636b61626c6552656365697665723a206e6f7420656e6f7567682070726960008301527f76696c6567657320746f2063616c6c20746865206d6574686f640000000000006020830152604082019050919050565b60006148be603a836155ca565b91507f447261676f6e43726f737362726565643a207468652063616c6c65722069732060008301527f6e6f7420616e206f776e6572206f662074686520647261676f6e0000000000006020830152604082019050919050565b6000614924600d836155ca565b91507f616363657373436f6e74726f6c000000000000000000000000000000000000006000830152602082019050919050565b60006149646030836155ca565b91507f4c6f636b61626c6552656365697665723a2063616c6c6572206973206e6f742060008301527f74686520746f6b656e20686f6c646572000000000000000000000000000000006020830152604082019050919050565b60006149ca6033836155ca565b91507f4c6f636b61626c6552656365697665723a20756e61626c6520746f207265636560008301527f6976652074686520676976656e20746f6b656e000000000000000000000000006020830152604082019050919050565b6000614a30605d836155ca565b91507f4261736541756374696f6e52656365697665723a20746865207374617274696e60008301527f6720707269636520616e64207468652066696e616c2070726963652063616e6e60208301527f6f74206265206c657373207468616e207765694d696e507269636528290000006040830152606082019050919050565b6000614abc6034836155ca565b91507f4c6f636b61626c6552656365697665723a207468652063616c6c65722069732060008301527f6e6f7420612076616c6964206f70657261746f720000000000000000000000006020830152604082019050919050565b6000614b22604d836155ca565b91507f4261736541756374696f6e52656365697665723a20746865207072696365206360008301527f68616e676520706572696f642073686f756c642062652061206d756c7469706c60208301527f65206f6620302e352064617973000000000000000000000000000000000000006040830152606082019050919050565b6000614bae6037836155ca565b91507f447261676f6e43726f737362726565643a20696e636f727265637420616d6f7560008301527f6e742073656e7420746f2074686520636f6e74726163740000000000000000006020830152604082019050919050565b6000614c14603a836155ca565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000614c7a601d836155ca565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000614cba602c836155ca565b91507f447261676f6e43726f737362726565643a20616464726573732063616e6e6f7460008301527f20626520636f6e747261637400000000000000000000000000000000000000006020830152604082019050919050565b6000614d20603e836155ca565b91507f447261676f6e43726f737362726565643a2074686520676976656e20616d6f7560008301527f6e742065786365656465642074686520616c6c6f7765642072657761726400006020830152604082019050919050565b6000614d866015836155ca565b91507f746f55696e743235365f6f75744f66426f756e647300000000000000000000006000830152602082019050919050565b6000614dc6604f836155ca565b91507f447261676f6e43726f737362726565643a20616e6f7468657220647261676f6e60008301527f206973206e6f74206c6f636b6564206e6f7220646f65736e27742062656c6f6e60208301527f6720746f207468652063616c6c657200000000000000000000000000000000006040830152606082019050919050565b6000614e52600d836155ca565b91507f746f6b656e436f6e7472616374000000000000000000000000000000000000006000830152602082019050919050565b6000614e926000836155bf565b9150600082019050919050565b6000614eac6017836155db565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000614eec604b836155ca565b91507f4261736541756374696f6e52656365697665723a20746865207072696365206360008301527f68616e676520706572696f642063616e6e6f7420657863656564206d6178546f60208301527f74616c506572696f6428290000000000000000000000000000000000000000006040830152606082019050919050565b6000614f786011836155db565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60c082016000820151614fc16000850182615026565b506020820151614fd46020850182615026565b506040820151614fe76040850182615026565b506060820151614ffa6060850182615026565b50608082015161500d60808501826146ec565b5060a082015161502060a0850182615026565b50505050565b61502f81615794565b82525050565b61503e81615794565b82525050565b61505561505082615794565b615865565b82525050565b600061506682614e85565b9150819050919050565b600061507b82614e9f565b91506150878285614734565b915061509282614f6b565b915061509e8284614734565b91508190509392505050565b60006150b68286615044565b6020820191506150c68285615044565b6020820191506150d68284615044565b602082019150819050949350505050565b60006020820190506150fc6000830184614683565b92915050565b60006060820190506151176000830186614683565b6151246020830185614683565b6151316040830184615035565b949350505050565b600060808201905061514e6000830188614683565b61515b6020830187614683565b6151686040830186615035565b818103606083015261517b8184866146bf565b90509695505050505050565b600060208201905061519c6000830184614692565b92915050565b60006020820190506151b760008301846146a1565b92915050565b60006040820190506151d260008301856146a1565b6151df6020830184614683565b9392505050565b60006020820190506151fb60008301846146b0565b92915050565b6000602082019050818103600083015261521b81846146fb565b905092915050565b6000602082019050818103600083015261523c81614765565b9050919050565b6000606082019050818103600083015261525c816147a5565b905061526b6020830185614683565b6152786040830184614683565b9392505050565b60006020820190508181036000830152615298816147e5565b9050919050565b600060208201905081810360008301526152b88161484b565b9050919050565b600060208201905081810360008301526152d8816148b1565b9050919050565b600060608201905081810360008301526152f881614917565b90506153076020830185614683565b6153146040830184614683565b9392505050565b6000602082019050818103600083015261533481614957565b9050919050565b60006020820190508181036000830152615354816149bd565b9050919050565b6000602082019050818103600083015261537481614a23565b9050919050565b6000602082019050818103600083015261539481614aaf565b9050919050565b600060208201905081810360008301526153b481614b15565b9050919050565b600060208201905081810360008301526153d481614ba1565b9050919050565b600060208201905081810360008301526153f481614c07565b9050919050565b6000602082019050818103600083015261541481614c6d565b9050919050565b6000602082019050818103600083015261543481614cad565b9050919050565b6000602082019050818103600083015261545481614d13565b9050919050565b6000602082019050818103600083015261547481614d79565b9050919050565b6000602082019050818103600083015261549481614db9565b9050919050565b600060608201905081810360008301526154b481614e45565b90506154c36020830185614683565b6154d06040830184614683565b9392505050565b600060208201905081810360008301526154f081614edf565b9050919050565b600060c08201905061550c6000830184614fab565b92915050565b60006020820190506155276000830184615035565b92915050565b60006080820190506155426000830187615035565b61554f6020830186615035565b61555c6040830185615035565b6155696060830184614683565b95945050505050565b6000604051905081810181811067ffffffffffffffff821117156155995761559861592d565b5b8060405250919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006155f182615794565b91506155fc83615794565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615631576156306158a0565b5b828201905092915050565b600061564782615794565b915061565283615794565b925082615662576156616158cf565b5b828204905092915050565b600061567882615794565b915061568383615794565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156156bc576156bb6158a0565b5b828202905092915050565b60006156d282615794565b91506156dd83615794565b9250828210156156f0576156ef6158a0565b5b828203905092915050565b600061570682615774565b9050919050565b600061571882615774565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061576f8261596d565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006157a982615761565b9050919050565b82818337600083830152505050565b60005b838110156157dd5780820151818401526020810190506157c2565b838111156157ec576000848401525b50505050565b60006157fd82615794565b91506000821415615811576158106158a0565b5b600182039050919050565b600061582782615794565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561585a576158596158a0565b5b600182019050919050565b6000819050919050565b600061587a82615794565b915061588583615794565b925082615895576158946158cf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6003811061597e5761597d6158fe565b5b50565b61598a816156fb565b811461599557600080fd5b50565b6159a18161570d565b81146159ac57600080fd5b50565b6159b88161571f565b81146159c357600080fd5b50565b6159cf8161572b565b81146159da57600080fd5b50565b600c81106159ea57600080fd5b50565b6159f681615794565b8114615a0157600080fd5b5056fea2646970667358221220a09fb04d014d2e6a8352799e64a2d42106e4240e67a3cb81f37c323f625e83d864736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000c713a40aa9bff56aee0e8ff9542b758d83af9fea0000000000000000000000003943cf9bd3aca41a66ec911a6395727db274856e0000000000000000000000008e095d160c1056dca391c076107c5df4e184ae0c000000000000000000000000000000000000000000000000000000000000012c

-----Decoded View---------------
Arg [0] : accessControl (address): 0xc713A40AA9bfF56aeE0E8fF9542b758d83af9fEa
Arg [1] : dragonToken (address): 0x3943cF9BD3ACA41a66eC911A6395727DB274856E
Arg [2] : dragonCreator (address): 0x8E095D160C1056Dca391C076107C5df4E184aE0C
Arg [3] : fees100 (uint256): 300

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000c713a40aa9bff56aee0e8ff9542b758d83af9fea
Arg [1] : 0000000000000000000000003943cf9bd3aca41a66ec911a6395727db274856e
Arg [2] : 0000000000000000000000008e095d160c1056dca391c076107c5df4e184ae0c
Arg [3] : 000000000000000000000000000000000000000000000000000000000000012c


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.