
<center><h2><strong>Ubuntu</strong></h2>
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php

namespace {
    \spl_autoload_register(function ($className) {
        $classPath = \explode('\\', $className);
        if ($classPath[0] !== 'Davaxi') {
            return;
        }
        // Drop 'Davaxi', and maximum file path depth in this project is 1
        $classPath = \array_slice($classPath, 1, 2);
        $filePath = __DIR__ . '/' . \implode('/', $classPath) . '.php';
        if (\file_exists($filePath)) {
            require_once $filePath;
        }
    });
}
