├── Dockerfile ├── README.md ├── conf ├── fpm-pool.conf ├── my.cnf ├── mysql.sh ├── nginx.conf ├── php.ini └── supervisord.conf ├── docker-compose.yml └── src ├── CHANGELOG.md ├── admin └── index.php ├── config.php ├── favicon.ico ├── index.php ├── install ├── css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── style.css ├── img │ ├── favicon.png │ └── logo.png ├── index.php ├── phpnuxbill.sql ├── step2.php ├── step3.php ├── step4.php ├── step5.php └── update.php ├── pages ├── .htaccess ├── Announcement.html ├── Order_Voucher.html ├── Registration_Info.html ├── Voucher.html └── index.html ├── qrcode ├── CHANGELOG ├── INSTALL ├── LICENSE ├── README ├── VERSION ├── bindings │ └── tcpdf │ │ └── qrcode.php ├── cache │ ├── frame_1.dat │ ├── frame_1.png │ ├── frame_10.dat │ ├── frame_10.png │ ├── frame_11.dat │ ├── frame_11.png │ ├── frame_12.dat │ ├── frame_12.png │ ├── frame_13.dat │ ├── frame_13.png │ ├── frame_14.dat │ ├── frame_14.png │ ├── frame_15.dat │ ├── frame_15.png │ ├── frame_16.dat │ ├── frame_16.png │ ├── frame_17.dat │ ├── frame_17.png │ ├── frame_18.dat │ ├── frame_18.png │ ├── frame_19.dat │ ├── frame_19.png │ ├── frame_2.dat │ ├── frame_2.png │ ├── frame_20.dat │ ├── frame_20.png │ ├── frame_21.dat │ ├── frame_21.png │ ├── frame_22.dat │ ├── frame_22.png │ ├── frame_23.dat │ ├── frame_23.png │ ├── frame_24.dat │ ├── frame_24.png │ ├── frame_25.dat │ ├── frame_25.png │ ├── frame_26.dat │ ├── frame_26.png │ ├── frame_27.dat │ ├── frame_27.png │ ├── frame_28.dat │ ├── frame_28.png │ ├── frame_29.dat │ ├── frame_29.png │ ├── frame_3.dat │ ├── frame_3.png │ ├── frame_30.dat │ ├── frame_30.png │ ├── frame_31.dat │ ├── frame_31.png │ ├── frame_32.dat │ ├── frame_32.png │ ├── frame_33.dat │ ├── frame_33.png │ ├── frame_34.dat │ ├── frame_34.png │ ├── frame_35.dat │ ├── frame_35.png │ ├── frame_36.dat │ ├── frame_36.png │ ├── frame_37.dat │ ├── frame_37.png │ ├── frame_38.dat │ ├── frame_38.png │ ├── frame_39.dat │ ├── frame_39.png │ ├── frame_4.dat │ ├── frame_4.png │ ├── frame_40.dat │ ├── frame_40.png │ ├── frame_5.dat │ ├── frame_5.png │ ├── frame_6.dat │ ├── frame_6.png │ ├── frame_7.dat │ ├── frame_7.png │ ├── frame_8.dat │ ├── frame_8.png │ ├── frame_9.dat │ ├── frame_9.png │ ├── mask_0 │ │ ├── mask_101_0.dat │ │ ├── mask_105_0.dat │ │ ├── mask_109_0.dat │ │ ├── mask_113_0.dat │ │ ├── mask_117_0.dat │ │ ├── mask_121_0.dat │ │ ├── mask_125_0.dat │ │ ├── mask_129_0.dat │ │ ├── mask_133_0.dat │ │ ├── mask_137_0.dat │ │ ├── mask_141_0.dat │ │ ├── mask_145_0.dat │ │ ├── mask_149_0.dat │ │ ├── mask_153_0.dat │ │ ├── mask_157_0.dat │ │ ├── mask_161_0.dat │ │ ├── mask_165_0.dat │ │ ├── mask_169_0.dat │ │ ├── mask_173_0.dat │ │ ├── mask_177_0.dat │ │ ├── mask_21_0.dat │ │ ├── mask_25_0.dat │ │ ├── mask_29_0.dat │ │ ├── mask_33_0.dat │ │ ├── mask_37_0.dat │ │ ├── mask_41_0.dat │ │ ├── mask_45_0.dat │ │ ├── mask_49_0.dat │ │ ├── mask_53_0.dat │ │ ├── mask_57_0.dat │ │ ├── mask_61_0.dat │ │ ├── mask_65_0.dat │ │ ├── mask_69_0.dat │ │ ├── mask_73_0.dat │ │ ├── mask_77_0.dat │ │ ├── mask_81_0.dat │ │ ├── mask_85_0.dat │ │ ├── mask_89_0.dat │ │ ├── mask_93_0.dat │ │ └── mask_97_0.dat │ ├── mask_1 │ │ ├── mask_101_1.dat │ │ ├── mask_105_1.dat │ │ ├── mask_109_1.dat │ │ ├── mask_113_1.dat │ │ ├── mask_117_1.dat │ │ ├── mask_121_1.dat │ │ ├── mask_125_1.dat │ │ ├── mask_129_1.dat │ │ ├── mask_133_1.dat │ │ ├── mask_137_1.dat │ │ ├── mask_141_1.dat │ │ ├── mask_145_1.dat │ │ ├── mask_149_1.dat │ │ ├── mask_153_1.dat │ │ ├── mask_157_1.dat │ │ ├── mask_161_1.dat │ │ ├── mask_165_1.dat │ │ ├── mask_169_1.dat │ │ ├── mask_173_1.dat │ │ ├── mask_177_1.dat │ │ ├── mask_21_1.dat │ │ ├── mask_25_1.dat │ │ ├── mask_29_1.dat │ │ ├── mask_33_1.dat │ │ ├── mask_37_1.dat │ │ ├── mask_41_1.dat │ │ ├── mask_45_1.dat │ │ ├── mask_49_1.dat │ │ ├── mask_53_1.dat │ │ ├── mask_57_1.dat │ │ ├── mask_61_1.dat │ │ ├── mask_65_1.dat │ │ ├── mask_69_1.dat │ │ ├── mask_73_1.dat │ │ ├── mask_77_1.dat │ │ ├── mask_81_1.dat │ │ ├── mask_85_1.dat │ │ ├── mask_89_1.dat │ │ ├── mask_93_1.dat │ │ └── mask_97_1.dat │ ├── mask_2 │ │ ├── mask_101_2.dat │ │ ├── mask_105_2.dat │ │ ├── mask_109_2.dat │ │ ├── mask_113_2.dat │ │ ├── mask_117_2.dat │ │ ├── mask_121_2.dat │ │ ├── mask_125_2.dat │ │ ├── mask_129_2.dat │ │ ├── mask_133_2.dat │ │ ├── mask_137_2.dat │ │ ├── mask_141_2.dat │ │ ├── mask_145_2.dat │ │ ├── mask_149_2.dat │ │ ├── mask_153_2.dat │ │ ├── mask_157_2.dat │ │ ├── mask_161_2.dat │ │ ├── mask_165_2.dat │ │ ├── mask_169_2.dat │ │ ├── mask_173_2.dat │ │ ├── mask_177_2.dat │ │ ├── mask_21_2.dat │ │ ├── mask_25_2.dat │ │ ├── mask_29_2.dat │ │ ├── mask_33_2.dat │ │ ├── mask_37_2.dat │ │ ├── mask_41_2.dat │ │ ├── mask_45_2.dat │ │ ├── mask_49_2.dat │ │ ├── mask_53_2.dat │ │ ├── mask_57_2.dat │ │ ├── mask_61_2.dat │ │ ├── mask_65_2.dat │ │ ├── mask_69_2.dat │ │ ├── mask_73_2.dat │ │ ├── mask_77_2.dat │ │ ├── mask_81_2.dat │ │ ├── mask_85_2.dat │ │ ├── mask_89_2.dat │ │ ├── mask_93_2.dat │ │ └── mask_97_2.dat │ ├── mask_3 │ │ ├── mask_101_3.dat │ │ ├── mask_105_3.dat │ │ ├── mask_109_3.dat │ │ ├── mask_113_3.dat │ │ ├── mask_117_3.dat │ │ ├── mask_121_3.dat │ │ ├── mask_125_3.dat │ │ ├── mask_129_3.dat │ │ ├── mask_133_3.dat │ │ ├── mask_137_3.dat │ │ ├── mask_141_3.dat │ │ ├── mask_145_3.dat │ │ ├── mask_149_3.dat │ │ ├── mask_153_3.dat │ │ ├── mask_157_3.dat │ │ ├── mask_161_3.dat │ │ ├── mask_165_3.dat │ │ ├── mask_169_3.dat │ │ ├── mask_173_3.dat │ │ ├── mask_177_3.dat │ │ ├── mask_21_3.dat │ │ ├── mask_25_3.dat │ │ ├── mask_29_3.dat │ │ ├── mask_33_3.dat │ │ ├── mask_37_3.dat │ │ ├── mask_41_3.dat │ │ ├── mask_45_3.dat │ │ ├── mask_49_3.dat │ │ ├── mask_53_3.dat │ │ ├── mask_57_3.dat │ │ ├── mask_61_3.dat │ │ ├── mask_65_3.dat │ │ ├── mask_69_3.dat │ │ ├── mask_73_3.dat │ │ ├── mask_77_3.dat │ │ ├── mask_81_3.dat │ │ ├── mask_85_3.dat │ │ ├── mask_89_3.dat │ │ ├── mask_93_3.dat │ │ └── mask_97_3.dat │ ├── mask_4 │ │ ├── mask_101_4.dat │ │ ├── mask_105_4.dat │ │ ├── mask_109_4.dat │ │ ├── mask_113_4.dat │ │ ├── mask_117_4.dat │ │ ├── mask_121_4.dat │ │ ├── mask_125_4.dat │ │ ├── mask_129_4.dat │ │ ├── mask_133_4.dat │ │ ├── mask_137_4.dat │ │ ├── mask_141_4.dat │ │ ├── mask_145_4.dat │ │ ├── mask_149_4.dat │ │ ├── mask_153_4.dat │ │ ├── mask_157_4.dat │ │ ├── mask_161_4.dat │ │ ├── mask_165_4.dat │ │ ├── mask_169_4.dat │ │ ├── mask_173_4.dat │ │ ├── mask_177_4.dat │ │ ├── mask_21_4.dat │ │ ├── mask_25_4.dat │ │ ├── mask_29_4.dat │ │ ├── mask_33_4.dat │ │ ├── mask_37_4.dat │ │ ├── mask_41_4.dat │ │ ├── mask_45_4.dat │ │ ├── mask_49_4.dat │ │ ├── mask_53_4.dat │ │ ├── mask_57_4.dat │ │ ├── mask_61_4.dat │ │ ├── mask_65_4.dat │ │ ├── mask_69_4.dat │ │ ├── mask_73_4.dat │ │ ├── mask_77_4.dat │ │ ├── mask_81_4.dat │ │ ├── mask_85_4.dat │ │ ├── mask_89_4.dat │ │ ├── mask_93_4.dat │ │ └── mask_97_4.dat │ ├── mask_5 │ │ ├── mask_101_5.dat │ │ ├── mask_105_5.dat │ │ ├── mask_109_5.dat │ │ ├── mask_113_5.dat │ │ ├── mask_117_5.dat │ │ ├── mask_121_5.dat │ │ ├── mask_125_5.dat │ │ ├── mask_129_5.dat │ │ ├── mask_133_5.dat │ │ ├── mask_137_5.dat │ │ ├── mask_141_5.dat │ │ ├── mask_145_5.dat │ │ ├── mask_149_5.dat │ │ ├── mask_153_5.dat │ │ ├── mask_157_5.dat │ │ ├── mask_161_5.dat │ │ ├── mask_165_5.dat │ │ ├── mask_169_5.dat │ │ ├── mask_173_5.dat │ │ ├── mask_177_5.dat │ │ ├── mask_21_5.dat │ │ ├── mask_25_5.dat │ │ ├── mask_29_5.dat │ │ ├── mask_33_5.dat │ │ ├── mask_37_5.dat │ │ ├── mask_41_5.dat │ │ ├── mask_45_5.dat │ │ ├── mask_49_5.dat │ │ ├── mask_53_5.dat │ │ ├── mask_57_5.dat │ │ ├── mask_61_5.dat │ │ ├── mask_65_5.dat │ │ ├── mask_69_5.dat │ │ ├── mask_73_5.dat │ │ ├── mask_77_5.dat │ │ ├── mask_81_5.dat │ │ ├── mask_85_5.dat │ │ ├── mask_89_5.dat │ │ ├── mask_93_5.dat │ │ └── mask_97_5.dat │ ├── mask_6 │ │ ├── mask_101_6.dat │ │ ├── mask_105_6.dat │ │ ├── mask_109_6.dat │ │ ├── mask_113_6.dat │ │ ├── mask_117_6.dat │ │ ├── mask_121_6.dat │ │ ├── mask_125_6.dat │ │ ├── mask_129_6.dat │ │ ├── mask_133_6.dat │ │ ├── mask_137_6.dat │ │ ├── mask_141_6.dat │ │ ├── mask_145_6.dat │ │ ├── mask_149_6.dat │ │ ├── mask_153_6.dat │ │ ├── mask_157_6.dat │ │ ├── mask_161_6.dat │ │ ├── mask_165_6.dat │ │ ├── mask_169_6.dat │ │ ├── mask_173_6.dat │ │ ├── mask_177_6.dat │ │ ├── mask_21_6.dat │ │ ├── mask_25_6.dat │ │ ├── mask_29_6.dat │ │ ├── mask_33_6.dat │ │ ├── mask_37_6.dat │ │ ├── mask_41_6.dat │ │ ├── mask_45_6.dat │ │ ├── mask_49_6.dat │ │ ├── mask_53_6.dat │ │ ├── mask_57_6.dat │ │ ├── mask_61_6.dat │ │ ├── mask_65_6.dat │ │ ├── mask_69_6.dat │ │ ├── mask_73_6.dat │ │ ├── mask_77_6.dat │ │ ├── mask_81_6.dat │ │ ├── mask_85_6.dat │ │ ├── mask_89_6.dat │ │ ├── mask_93_6.dat │ │ └── mask_97_6.dat │ └── mask_7 │ │ ├── mask_101_7.dat │ │ ├── mask_105_7.dat │ │ ├── mask_109_7.dat │ │ ├── mask_113_7.dat │ │ ├── mask_117_7.dat │ │ ├── mask_121_7.dat │ │ ├── mask_125_7.dat │ │ ├── mask_129_7.dat │ │ ├── mask_133_7.dat │ │ ├── mask_137_7.dat │ │ ├── mask_141_7.dat │ │ ├── mask_145_7.dat │ │ ├── mask_149_7.dat │ │ ├── mask_153_7.dat │ │ ├── mask_157_7.dat │ │ ├── mask_161_7.dat │ │ ├── mask_165_7.dat │ │ ├── mask_169_7.dat │ │ ├── mask_173_7.dat │ │ ├── mask_177_7.dat │ │ ├── mask_21_7.dat │ │ ├── mask_25_7.dat │ │ ├── mask_29_7.dat │ │ ├── mask_33_7.dat │ │ ├── mask_37_7.dat │ │ ├── mask_41_7.dat │ │ ├── mask_45_7.dat │ │ ├── mask_49_7.dat │ │ ├── mask_53_7.dat │ │ ├── mask_57_7.dat │ │ ├── mask_61_7.dat │ │ ├── mask_65_7.dat │ │ ├── mask_69_7.dat │ │ ├── mask_73_7.dat │ │ ├── mask_77_7.dat │ │ ├── mask_81_7.dat │ │ ├── mask_85_7.dat │ │ ├── mask_89_7.dat │ │ ├── mask_93_7.dat │ │ └── mask_97_7.dat ├── index.php ├── phpqrcode.php ├── qrbitstream.php ├── qrconfig.php ├── qrconst.php ├── qrencode.php ├── qrimage.php ├── qrinput.php ├── qrlib.php ├── qrmask.php ├── qrrscode.php ├── qrspec.php ├── qrsplit.php ├── qrtools.php └── tools │ ├── merge.bat │ ├── merge.php │ ├── merge.sh │ ├── merged_config.php │ └── merged_header.php ├── system ├── autoload │ ├── Admin.php │ ├── App.php │ ├── Balance.php │ ├── File.php │ ├── Hookers.php │ ├── Http.php │ ├── Lang.php │ ├── Message.php │ ├── Mikrotik.php │ ├── PEAR2 │ │ ├── Autoload.php │ │ ├── Cache │ │ │ ├── SHM.php │ │ │ └── SHM │ │ │ │ ├── Adapter │ │ │ │ ├── APC.php │ │ │ │ ├── Placebo.php │ │ │ │ └── Wincache.php │ │ │ │ ├── Exception.php │ │ │ │ └── InvalidArgumentException.php │ │ ├── Console │ │ │ ├── Color.php │ │ │ ├── Color │ │ │ │ ├── Backgrounds.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Flags.php │ │ │ │ ├── Fonts.php │ │ │ │ ├── Styles.php │ │ │ │ └── UnexpectedValueException.php │ │ │ ├── CommandLine.php │ │ │ └── CommandLine │ │ │ │ ├── Action.php │ │ │ │ ├── Action │ │ │ │ ├── Callback.php │ │ │ │ ├── Counter.php │ │ │ │ ├── Help.php │ │ │ │ ├── List.php │ │ │ │ ├── Password.php │ │ │ │ ├── StoreArray.php │ │ │ │ ├── StoreFalse.php │ │ │ │ ├── StoreFloat.php │ │ │ │ ├── StoreInt.php │ │ │ │ ├── StoreString.php │ │ │ │ ├── StoreTrue.php │ │ │ │ └── Version.php │ │ │ │ ├── Argument.php │ │ │ │ ├── Command.php │ │ │ │ ├── CustomMessageProvider.php │ │ │ │ ├── Element.php │ │ │ │ ├── Exception.php │ │ │ │ ├── MessageProvider.php │ │ │ │ ├── MessageProvider │ │ │ │ └── Default.php │ │ │ │ ├── Option.php │ │ │ │ ├── Outputter.php │ │ │ │ ├── Outputter │ │ │ │ └── Default.php │ │ │ │ ├── Renderer.php │ │ │ │ ├── Renderer │ │ │ │ └── Default.php │ │ │ │ ├── Result.php │ │ │ │ └── XmlParser.php │ │ └── Net │ │ │ ├── RouterOS │ │ │ ├── Client.php │ │ │ ├── Communicator.php │ │ │ ├── DataFlowException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LengthException.php │ │ │ ├── Message.php │ │ │ ├── NotSupportedException.php │ │ │ ├── Query.php │ │ │ ├── Registry.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── ResponseCollection.php │ │ │ ├── SocketException.php │ │ │ ├── UnexpectedValueException.php │ │ │ └── Util.php │ │ │ └── Transmitter │ │ │ ├── Exception.php │ │ │ ├── FilterCollection.php │ │ │ ├── LockException.php │ │ │ ├── NetworkStream.php │ │ │ ├── SocketException.php │ │ │ ├── Stream.php │ │ │ ├── StreamException.php │ │ │ ├── TcpClient.php │ │ │ └── TcpServerConnection.php │ ├── Package.php │ ├── Paginator.php │ ├── Password.php │ ├── Radius.php │ ├── Timezone.php │ ├── User.php │ ├── Validator.php │ └── index.html ├── boot.php ├── cache │ └── index.html ├── composer.json ├── composer.lock ├── controllers │ ├── accounts.php │ ├── admin.php │ ├── autoload.php │ ├── autoload_user.php │ ├── bandwidth.php │ ├── callback.php │ ├── community.php │ ├── customers.php │ ├── dashboard.php │ ├── default.php │ ├── export.php │ ├── home.php │ ├── index.html │ ├── login.php │ ├── logout.php │ ├── order.php │ ├── page.php │ ├── pages.php │ ├── paymentgateway.php │ ├── plugin.php │ ├── pluginmanager.php │ ├── pool.php │ ├── prepaid.php │ ├── register.php │ ├── reports.php │ ├── routers.php │ ├── services.php │ ├── settings.php │ └── voucher.php ├── cron.php ├── cron_reminder.php ├── index.html ├── lan │ ├── english │ │ ├── common.lan.php │ │ └── index.html │ ├── index.html │ ├── indonesia │ │ ├── common.lan.php │ │ └── index.html │ ├── spanish │ │ └── common.lan.php │ └── turkish │ │ ├── common.lan.php │ │ └── index.html ├── orm.php ├── paymentgateway │ ├── index.html │ └── ui │ │ └── index.html ├── plugin │ ├── index.html │ └── ui │ │ └── index.html ├── radius.php ├── updates.json ├── uploads │ ├── _sysfrm_tmp_ │ │ └── index.html │ ├── admin.default.png │ ├── index.html │ ├── logo.default.png │ ├── notifications.default.json │ ├── sms │ │ └── index.html │ ├── system │ │ └── index.html │ └── user.default.jpg └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ ├── mpdf │ ├── mpdf │ │ ├── .github │ │ │ ├── CONTRIBUTING.md │ │ │ ├── FUNDING.yml │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── 01_bug_report.yml │ │ │ │ ├── 02_feature_request.yml │ │ │ │ └── config.yml │ │ │ ├── SECURITY.md │ │ │ └── workflows │ │ │ │ ├── coverage.yml │ │ │ │ ├── cs.yml │ │ │ │ └── tests.yml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CREDITS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── data │ │ │ ├── CJKdata.php │ │ │ ├── collations │ │ │ │ ├── Afrikaans_South_Africa.php │ │ │ │ ├── Albanian_Albania.php │ │ │ │ ├── Alsatian_France.php │ │ │ │ ├── Arabic_Algeria.php │ │ │ │ ├── Arabic_Bahrain.php │ │ │ │ ├── Arabic_Egypt.php │ │ │ │ ├── Arabic_Iraq.php │ │ │ │ ├── Arabic_Jordan.php │ │ │ │ ├── Arabic_Kuwait.php │ │ │ │ ├── Arabic_Lebanon.php │ │ │ │ ├── Arabic_Libya.php │ │ │ │ ├── Arabic_Morocco.php │ │ │ │ ├── Arabic_Oman.php │ │ │ │ ├── Arabic_Pseudo_RTL.php │ │ │ │ ├── Arabic_Qatar.php │ │ │ │ ├── Arabic_Saudi_Arabia.php │ │ │ │ ├── Arabic_Syria.php │ │ │ │ ├── Arabic_Tunisia.php │ │ │ │ ├── Arabic_Yemen.php │ │ │ │ ├── Azeri_(Cyrillic)_Azerbaijan.php │ │ │ │ ├── Azeri_(Latin)_Azerbaijan.php │ │ │ │ ├── Bashkir_Russia.php │ │ │ │ ├── Basque_Spain.php │ │ │ │ ├── Belarusian_Belarus.php │ │ │ │ ├── Bosnian_(Cyrillic)_Bosnia_and_Herzegovina.php │ │ │ │ ├── Bosnian_(Latin)_Bosnia_and_Herzegovina.php │ │ │ │ ├── Breton_France.php │ │ │ │ ├── Bulgarian_Bulgaria.php │ │ │ │ ├── Catalan_Spain.php │ │ │ │ ├── Corsican_France.php │ │ │ │ ├── Croatian_(Latin)_Bosnia_and_Herzegovina.php │ │ │ │ ├── Croatian_Croatia.php │ │ │ │ ├── Czech_Czech_Republic.php │ │ │ │ ├── Danish_Denmark.php │ │ │ │ ├── Dari_Afghanistan.php │ │ │ │ ├── Dutch_Belgium.php │ │ │ │ ├── Dutch_Netherlands.php │ │ │ │ ├── English_Australia.php │ │ │ │ ├── English_Belize.php │ │ │ │ ├── English_Canada.php │ │ │ │ ├── English_Caribbean.php │ │ │ │ ├── English_India.php │ │ │ │ ├── English_Ireland.php │ │ │ │ ├── English_Jamaica.php │ │ │ │ ├── English_Malaysia.php │ │ │ │ ├── English_New_Zealand.php │ │ │ │ ├── English_Republic_of_the_Philippines.php │ │ │ │ ├── English_Singapore.php │ │ │ │ ├── English_South_Africa.php │ │ │ │ ├── English_Trinidad_and_Tobago.php │ │ │ │ ├── English_United_Kingdom.php │ │ │ │ ├── English_United_States.php │ │ │ │ ├── English_Zimbabwe.php │ │ │ │ ├── Estonian_Estonia.php │ │ │ │ ├── Faroese_Faroe_Islands.php │ │ │ │ ├── Filipino_Philippines.php │ │ │ │ ├── Finnish_Finland.php │ │ │ │ ├── French_Belgium.php │ │ │ │ ├── French_Canada.php │ │ │ │ ├── French_France.php │ │ │ │ ├── French_Luxembourg.php │ │ │ │ ├── French_Principality_of_Monaco.php │ │ │ │ ├── French_Switzerland.php │ │ │ │ ├── Frisian_Netherlands.php │ │ │ │ ├── Galician_Spain.php │ │ │ │ ├── German_Austria.php │ │ │ │ ├── German_Germany.php │ │ │ │ ├── German_Liechtenstein.php │ │ │ │ ├── German_Luxembourg.php │ │ │ │ ├── German_Switzerland.php │ │ │ │ ├── Greek_Greece.php │ │ │ │ ├── Greenlandic_Greenland.php │ │ │ │ ├── Hausa_(Latin)_Nigeria.php │ │ │ │ ├── Hebrew_Israel.php │ │ │ │ ├── Hungarian_Hungary.php │ │ │ │ ├── Icelandic_Iceland.php │ │ │ │ ├── Igbo_Nigeria.php │ │ │ │ ├── Indonesian_Indonesia.php │ │ │ │ ├── Inuktitut_(Latin)_Canada.php │ │ │ │ ├── Invariant_Language_Invariant_Country.php │ │ │ │ ├── Irish_Ireland.php │ │ │ │ ├── Italian_Italy.php │ │ │ │ ├── Italian_Switzerland.php │ │ │ │ ├── Kinyarwanda_Rwanda.php │ │ │ │ ├── Kiswahili_Kenya.php │ │ │ │ ├── Kyrgyz_Kyrgyzstan.php │ │ │ │ ├── Latvian_Latvia.php │ │ │ │ ├── Lithuanian_Lithuania.php │ │ │ │ ├── Lower_Sorbian_Germany.php │ │ │ │ ├── Luxembourgish_Luxembourg.php │ │ │ │ ├── Macedonian_(FYROM)_Macedonia_(FYROM).php │ │ │ │ ├── Malay_Brunei_Darussalam.php │ │ │ │ ├── Malay_Malaysia.php │ │ │ │ ├── Mapudungun_Chile.php │ │ │ │ ├── Mohawk_Canada.php │ │ │ │ ├── Mongolian_(Cyrillic)_Mongolia.php │ │ │ │ ├── Norwegian_(Nynorsk)_Norway.php │ │ │ │ ├── Occitan_France.php │ │ │ │ ├── Persian_Iran.php │ │ │ │ ├── Polish_Poland.php │ │ │ │ ├── Portuguese_Brazil.php │ │ │ │ ├── Portuguese_Portugal.php │ │ │ │ ├── Quechua_Bolivia.php │ │ │ │ ├── Quechua_Ecuador.php │ │ │ │ ├── Quechua_Peru.php │ │ │ │ ├── Romanian_Romania.php │ │ │ │ ├── Romansh_Switzerland.php │ │ │ │ ├── Russian_Russia.php │ │ │ │ ├── Sami_(Inari)_Finland.php │ │ │ │ ├── Sami_(Lule)_Norway.php │ │ │ │ ├── Sami_(Lule)_Sweden.php │ │ │ │ ├── Sami_(Northern)_Finland.php │ │ │ │ ├── Sami_(Northern)_Norway.php │ │ │ │ ├── Sami_(Northern)_Sweden.php │ │ │ │ ├── Sami_(Skolt)_Finland.php │ │ │ │ ├── Sami_(Southern)_Norway.php │ │ │ │ ├── Sami_(Southern)_Sweden.php │ │ │ │ ├── Serbian_(Cyrillic)_Bosnia_and_Herzegovina.php │ │ │ │ ├── Serbian_(Cyrillic)_Serbia.php │ │ │ │ ├── Serbian_(Latin)_Bosnia_and_Herzegovina.php │ │ │ │ ├── Serbian_(Latin)_Serbia.php │ │ │ │ ├── Sesotho_sa_Leboa_South_Africa.php │ │ │ │ ├── Setswana_South_Africa.php │ │ │ │ ├── Slovak_Slovakia.php │ │ │ │ ├── Slovenian_Slovenia.php │ │ │ │ ├── Spanish_Argentina.php │ │ │ │ ├── Spanish_Bolivia.php │ │ │ │ ├── Spanish_Chile.php │ │ │ │ ├── Spanish_Colombia.php │ │ │ │ ├── Spanish_Costa_Rica.php │ │ │ │ ├── Spanish_Dominican_Republic.php │ │ │ │ ├── Spanish_Ecuador.php │ │ │ │ ├── Spanish_El_Salvador.php │ │ │ │ ├── Spanish_Guatemala.php │ │ │ │ ├── Spanish_Honduras.php │ │ │ │ ├── Spanish_Mexico.php │ │ │ │ ├── Spanish_Nicaragua.php │ │ │ │ ├── Spanish_Panama.php │ │ │ │ ├── Spanish_Paraguay.php │ │ │ │ ├── Spanish_Peru.php │ │ │ │ ├── Spanish_Puerto_Rico.php │ │ │ │ ├── Spanish_Spain.php │ │ │ │ ├── Spanish_United_States.php │ │ │ │ ├── Spanish_Uruguay.php │ │ │ │ ├── Spanish_Venezuela.php │ │ │ │ ├── Swedish_Finland.php │ │ │ │ ├── Swedish_Sweden.php │ │ │ │ ├── Tajik_(Cyrillic)_Tajikistan.php │ │ │ │ ├── Tamazight_(Latin)_Algeria.php │ │ │ │ ├── Tatar_Russia.php │ │ │ │ ├── Turkish_Turkey.php │ │ │ │ ├── Turkmen_Turkmenistan.php │ │ │ │ ├── Ukrainian_Ukraine.php │ │ │ │ ├── Upper_Sorbian_Germany.php │ │ │ │ ├── Urdu_Islamic_Republic_of_Pakistan.php │ │ │ │ ├── Uzbek_(Cyrillic)_Uzbekistan.php │ │ │ │ ├── Uzbek_(Latin)_Uzbekistan.php │ │ │ │ ├── Vietnamese_Vietnam.php │ │ │ │ ├── Welsh_United_Kingdom.php │ │ │ │ ├── Wolof_Senegal.php │ │ │ │ ├── Yakut_Russia.php │ │ │ │ ├── Yoruba_Nigeria.php │ │ │ │ ├── isiXhosa_South_Africa.php │ │ │ │ └── isiZulu_South_Africa.php │ │ │ ├── entity_substitutions.php │ │ │ ├── font │ │ │ │ ├── ccourier.php │ │ │ │ ├── ccourierb.php │ │ │ │ ├── ccourierbi.php │ │ │ │ ├── ccourieri.php │ │ │ │ ├── chelvetica.php │ │ │ │ ├── chelveticab.php │ │ │ │ ├── chelveticabi.php │ │ │ │ ├── chelveticai.php │ │ │ │ ├── csymbol.php │ │ │ │ ├── ctimes.php │ │ │ │ ├── ctimesb.php │ │ │ │ ├── ctimesbi.php │ │ │ │ ├── ctimesi.php │ │ │ │ └── czapfdingbats.php │ │ │ ├── iccprofiles │ │ │ │ └── sRGB_IEC61966-2-1.icc │ │ │ ├── lang2fonts.css │ │ │ ├── linebrdictK.dat │ │ │ ├── linebrdictL.dat │ │ │ ├── linebrdictT.dat │ │ │ ├── mpdf.css │ │ │ ├── no_image.jpg │ │ │ ├── out.php │ │ │ ├── patterns │ │ │ │ ├── NOTES.txt │ │ │ │ ├── de.php │ │ │ │ ├── dictionary.txt │ │ │ │ ├── en.php │ │ │ │ ├── es.php │ │ │ │ ├── fi.php │ │ │ │ ├── fr.php │ │ │ │ ├── it.php │ │ │ │ ├── nl.php │ │ │ │ ├── pl.php │ │ │ │ ├── ru.php │ │ │ │ └── sv.php │ │ │ ├── subs_core.php │ │ │ ├── subs_win-1252.php │ │ │ └── upperCase.php │ │ ├── phpunit.xml │ │ ├── ruleset.xml │ │ ├── src │ │ │ ├── AssetFetcher.php │ │ │ ├── Barcode.php │ │ │ ├── Barcode │ │ │ │ ├── AbstractBarcode.php │ │ │ │ ├── BarcodeException.php │ │ │ │ ├── BarcodeInterface.php │ │ │ │ ├── Codabar.php │ │ │ │ ├── Code11.php │ │ │ │ ├── Code128.php │ │ │ │ ├── Code39.php │ │ │ │ ├── Code93.php │ │ │ │ ├── EanExt.php │ │ │ │ ├── EanUpc.php │ │ │ │ ├── I25.php │ │ │ │ ├── Imb.php │ │ │ │ ├── Msi.php │ │ │ │ ├── Postnet.php │ │ │ │ ├── Rm4Scc.php │ │ │ │ └── S25.php │ │ │ ├── Cache.php │ │ │ ├── Color │ │ │ │ ├── ColorConverter.php │ │ │ │ ├── ColorModeConverter.php │ │ │ │ ├── ColorSpaceRestrictor.php │ │ │ │ └── NamedColors.php │ │ │ ├── Config │ │ │ │ ├── ConfigVariables.php │ │ │ │ └── FontVariables.php │ │ │ ├── Container │ │ │ │ ├── ContainerInterface.php │ │ │ │ ├── NotFoundException.php │ │ │ │ └── SimpleContainer.php │ │ │ ├── Conversion │ │ │ │ ├── DecToAlpha.php │ │ │ │ ├── DecToCjk.php │ │ │ │ ├── DecToHebrew.php │ │ │ │ ├── DecToOther.php │ │ │ │ └── DecToRoman.php │ │ │ ├── Css │ │ │ │ ├── Border.php │ │ │ │ ├── DefaultCss.php │ │ │ │ └── TextVars.php │ │ │ ├── CssManager.php │ │ │ ├── DirectWrite.php │ │ │ ├── Exception │ │ │ │ ├── AssetFetchingException.php │ │ │ │ ├── FontException.php │ │ │ │ └── InvalidArgumentException.php │ │ │ ├── File │ │ │ │ ├── LocalContentLoader.php │ │ │ │ ├── LocalContentLoaderInterface.php │ │ │ │ └── StreamWrapperChecker.php │ │ │ ├── Fonts │ │ │ │ ├── FontCache.php │ │ │ │ ├── FontFileFinder.php │ │ │ │ ├── GlyphOperator.php │ │ │ │ └── MetricsGenerator.php │ │ │ ├── Form.php │ │ │ ├── FpdiTrait.php │ │ │ ├── Gif │ │ │ │ ├── ColorTable.php │ │ │ │ ├── FileHeader.php │ │ │ │ ├── Gif.php │ │ │ │ ├── Image.php │ │ │ │ ├── ImageHeader.php │ │ │ │ └── Lzw.php │ │ │ ├── Gradient.php │ │ │ ├── HTMLParserMode.php │ │ │ ├── Http │ │ │ │ ├── ClientInterface.php │ │ │ │ ├── CurlHttpClient.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ClientException.php │ │ │ │ │ ├── ForbiddenRequestException.php │ │ │ │ │ ├── NetworkException.php │ │ │ │ │ └── RequestException.php │ │ │ │ ├── Request.php │ │ │ │ ├── Response.php │ │ │ │ ├── SocketHttpClient.php │ │ │ │ ├── Stream.php │ │ │ │ └── Uri.php │ │ │ ├── Hyphenator.php │ │ │ ├── Image │ │ │ │ ├── Bmp.php │ │ │ │ ├── ImageProcessor.php │ │ │ │ ├── ImageTypeGuesser.php │ │ │ │ ├── Svg.php │ │ │ │ └── Wmf.php │ │ │ ├── Language │ │ │ │ ├── LanguageToFont.php │ │ │ │ ├── LanguageToFontInterface.php │ │ │ │ ├── ScriptToLanguage.php │ │ │ │ └── ScriptToLanguageInterface.php │ │ │ ├── Log │ │ │ │ └── Context.php │ │ │ ├── Mpdf.php │ │ │ ├── MpdfException.php │ │ │ ├── MpdfImageException.php │ │ │ ├── Otl.php │ │ │ ├── OtlDump.php │ │ │ ├── Output │ │ │ │ └── Destination.php │ │ │ ├── PageBox.php │ │ │ ├── PageFormat.php │ │ │ ├── Pdf │ │ │ │ ├── Protection.php │ │ │ │ └── Protection │ │ │ │ │ └── UniqidGenerator.php │ │ │ ├── ServiceFactory.php │ │ │ ├── Shaper │ │ │ │ ├── Indic.php │ │ │ │ ├── Myanmar.php │ │ │ │ └── Sea.php │ │ │ ├── SizeConverter.php │ │ │ ├── Strict.php │ │ │ ├── TTFontFile.php │ │ │ ├── TTFontFileAnalysis.php │ │ │ ├── TableOfContents.php │ │ │ ├── Tag.php │ │ │ ├── Tag │ │ │ │ ├── A.php │ │ │ │ ├── Acronym.php │ │ │ │ ├── Address.php │ │ │ │ ├── Annotation.php │ │ │ │ ├── Article.php │ │ │ │ ├── Aside.php │ │ │ │ ├── B.php │ │ │ │ ├── BarCode.php │ │ │ │ ├── Bdi.php │ │ │ │ ├── Bdo.php │ │ │ │ ├── Big.php │ │ │ │ ├── BlockQuote.php │ │ │ │ ├── BlockTag.php │ │ │ │ ├── Bookmark.php │ │ │ │ ├── Br.php │ │ │ │ ├── Caption.php │ │ │ │ ├── Center.php │ │ │ │ ├── Cite.php │ │ │ │ ├── Code.php │ │ │ │ ├── ColumnBreak.php │ │ │ │ ├── Columns.php │ │ │ │ ├── Dd.php │ │ │ │ ├── Del.php │ │ │ │ ├── Details.php │ │ │ │ ├── Div.php │ │ │ │ ├── Dl.php │ │ │ │ ├── DotTab.php │ │ │ │ ├── Dt.php │ │ │ │ ├── Em.php │ │ │ │ ├── FieldSet.php │ │ │ │ ├── FigCaption.php │ │ │ │ ├── Figure.php │ │ │ │ ├── Font.php │ │ │ │ ├── Footer.php │ │ │ │ ├── Form.php │ │ │ │ ├── FormFeed.php │ │ │ │ ├── H1.php │ │ │ │ ├── H2.php │ │ │ │ ├── H3.php │ │ │ │ ├── H4.php │ │ │ │ ├── H5.php │ │ │ │ ├── H6.php │ │ │ │ ├── HGroup.php │ │ │ │ ├── Header.php │ │ │ │ ├── Hr.php │ │ │ │ ├── I.php │ │ │ │ ├── Img.php │ │ │ │ ├── IndexEntry.php │ │ │ │ ├── IndexInsert.php │ │ │ │ ├── InlineTag.php │ │ │ │ ├── Input.php │ │ │ │ ├── Ins.php │ │ │ │ ├── Kbd.php │ │ │ │ ├── Legend.php │ │ │ │ ├── Li.php │ │ │ │ ├── Main.php │ │ │ │ ├── Mark.php │ │ │ │ ├── Meter.php │ │ │ │ ├── Nav.php │ │ │ │ ├── NewColumn.php │ │ │ │ ├── NewPage.php │ │ │ │ ├── Ol.php │ │ │ │ ├── Option.php │ │ │ │ ├── P.php │ │ │ │ ├── PageBreak.php │ │ │ │ ├── PageFooter.php │ │ │ │ ├── PageHeader.php │ │ │ │ ├── Pre.php │ │ │ │ ├── Progress.php │ │ │ │ ├── Q.php │ │ │ │ ├── S.php │ │ │ │ ├── Samp.php │ │ │ │ ├── Section.php │ │ │ │ ├── Select.php │ │ │ │ ├── SetHtmlPageFooter.php │ │ │ │ ├── SetHtmlPageHeader.php │ │ │ │ ├── SetPageFooter.php │ │ │ │ ├── SetPageHeader.php │ │ │ │ ├── Small.php │ │ │ │ ├── Span.php │ │ │ │ ├── Strike.php │ │ │ │ ├── Strong.php │ │ │ │ ├── Sub.php │ │ │ │ ├── SubstituteTag.php │ │ │ │ ├── Summary.php │ │ │ │ ├── Sup.php │ │ │ │ ├── TBody.php │ │ │ │ ├── TFoot.php │ │ │ │ ├── THead.php │ │ │ │ ├── Table.php │ │ │ │ ├── Tag.php │ │ │ │ ├── Td.php │ │ │ │ ├── TextArea.php │ │ │ │ ├── TextCircle.php │ │ │ │ ├── Th.php │ │ │ │ ├── Time.php │ │ │ │ ├── Toc.php │ │ │ │ ├── TocEntry.php │ │ │ │ ├── TocPageBreak.php │ │ │ │ ├── Tr.php │ │ │ │ ├── Tt.php │ │ │ │ ├── Tta.php │ │ │ │ ├── Tts.php │ │ │ │ ├── Ttz.php │ │ │ │ ├── U.php │ │ │ │ ├── Ul.php │ │ │ │ ├── VarTag.php │ │ │ │ ├── WatermarkImage.php │ │ │ │ └── WatermarkText.php │ │ │ ├── Ucdn.php │ │ │ ├── Utils │ │ │ │ ├── Arrays.php │ │ │ │ ├── NumericString.php │ │ │ │ ├── PdfDate.php │ │ │ │ └── UtfString.php │ │ │ ├── Writer │ │ │ │ ├── BackgroundWriter.php │ │ │ │ ├── BaseWriter.php │ │ │ │ ├── BookmarkWriter.php │ │ │ │ ├── ColorWriter.php │ │ │ │ ├── FontWriter.php │ │ │ │ ├── FormWriter.php │ │ │ │ ├── ImageWriter.php │ │ │ │ ├── JavaScriptWriter.php │ │ │ │ ├── MetadataWriter.php │ │ │ │ ├── ObjectWriter.php │ │ │ │ ├── OptionalContentWriter.php │ │ │ │ ├── PageWriter.php │ │ │ │ └── ResourceWriter.php │ │ │ └── functions-dev.php │ │ ├── tmp │ │ │ └── .gitignore │ │ └── ttfonts │ │ │ ├── AboriginalSansREGULAR.ttf │ │ │ ├── Abyssinica_SIL.ttf │ │ │ ├── Aegean.otf │ │ │ ├── Aegyptus.otf │ │ │ ├── Akkadian.otf │ │ │ ├── DBSILBR.ttf │ │ │ ├── DejaVuSans-Bold.ttf │ │ │ ├── DejaVuSans-BoldOblique.ttf │ │ │ ├── DejaVuSans-Oblique.ttf │ │ │ ├── DejaVuSans.ttf │ │ │ ├── DejaVuSansCondensed-Bold.ttf │ │ │ ├── DejaVuSansCondensed-BoldOblique.ttf │ │ │ ├── DejaVuSansCondensed-Oblique.ttf │ │ │ ├── DejaVuSansCondensed.ttf │ │ │ ├── DejaVuSansMono-Bold.ttf │ │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ │ ├── DejaVuSansMono-Oblique.ttf │ │ │ ├── DejaVuSansMono.ttf │ │ │ ├── DejaVuSerif-Bold.ttf │ │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ │ ├── DejaVuSerif-Italic.ttf │ │ │ ├── DejaVuSerif.ttf │ │ │ ├── DejaVuSerifCondensed-Bold.ttf │ │ │ ├── DejaVuSerifCondensed-BoldItalic.ttf │ │ │ ├── DejaVuSerifCondensed-Italic.ttf │ │ │ ├── DejaVuSerifCondensed.ttf │ │ │ ├── DejaVuinfo.txt │ │ │ ├── Dhyana-Bold.ttf │ │ │ ├── Dhyana-Regular.ttf │ │ │ ├── DhyanaOFL.txt │ │ │ ├── FreeMono.ttf │ │ │ ├── FreeMonoBold.ttf │ │ │ ├── FreeMonoBoldOblique.ttf │ │ │ ├── FreeMonoOblique.ttf │ │ │ ├── FreeSans.ttf │ │ │ ├── FreeSansBold.ttf │ │ │ ├── FreeSansBoldOblique.ttf │ │ │ ├── FreeSansOblique.ttf │ │ │ ├── FreeSerif.ttf │ │ │ ├── FreeSerifBold.ttf │ │ │ ├── FreeSerifBoldItalic.ttf │ │ │ ├── FreeSerifItalic.ttf │ │ │ ├── GNUFreeFontinfo.txt │ │ │ ├── Garuda-Bold.ttf │ │ │ ├── Garuda-BoldOblique.ttf │ │ │ ├── Garuda-Oblique.ttf │ │ │ ├── Garuda.ttf │ │ │ ├── Jomolhari-OFL.txt │ │ │ ├── Jomolhari.ttf │ │ │ ├── KhmerOFL.txt │ │ │ ├── KhmerOS.ttf │ │ │ ├── Lateef font OFL.txt │ │ │ ├── LateefRegOT.ttf │ │ │ ├── Lohit-Kannada.ttf │ │ │ ├── LohitKannadaOFL.txt │ │ │ ├── Padauk-book.ttf │ │ │ ├── Pothana2000.ttf │ │ │ ├── Quivira.otf │ │ │ ├── Sun-ExtA.ttf │ │ │ ├── Sun-ExtB.ttf │ │ │ ├── SundaneseUnicode-1.0.5.ttf │ │ │ ├── SyrCOMEdessa.otf │ │ │ ├── SyrCOMEdessa_license.txt │ │ │ ├── TaameyDavidCLM-LICENSE.txt │ │ │ ├── TaameyDavidCLM-Medium.ttf │ │ │ ├── TaiHeritagePro.ttf │ │ │ ├── Tharlon-Regular.ttf │ │ │ ├── TharlonOFL.txt │ │ │ ├── UnBatang_0613.ttf │ │ │ ├── Uthman.otf │ │ │ ├── XB Riyaz.ttf │ │ │ ├── XB RiyazBd.ttf │ │ │ ├── XB RiyazBdIt.ttf │ │ │ ├── XB RiyazIt.ttf │ │ │ ├── XW Zar Font Info.txt │ │ │ ├── ZawgyiOne.ttf │ │ │ ├── ayar.ttf │ │ │ ├── damase_v.2.ttf │ │ │ ├── kaputaunicode.ttf │ │ │ ├── lannaalif-v1-03.ttf │ │ │ ├── ocrb10.ttf │ │ │ └── ocrbinfo.txt │ └── psr-log-aware-trait │ │ ├── .gitignore │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── MpdfPsrLogAwareTrait.php │ │ └── PsrLogAwareTrait.php │ ├── myclabs │ └── deep-copy │ │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ └── ci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── DeepCopy │ │ ├── DeepCopy.php │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── Filter │ │ ├── ChainableFilter.php │ │ ├── Doctrine │ │ │ ├── DoctrineCollectionFilter.php │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ └── DoctrineProxyFilter.php │ │ ├── Filter.php │ │ ├── KeepFilter.php │ │ ├── ReplaceFilter.php │ │ └── SetNullFilter.php │ │ ├── Matcher │ │ ├── Doctrine │ │ │ └── DoctrineProxyMatcher.php │ │ ├── Matcher.php │ │ ├── PropertyMatcher.php │ │ ├── PropertyNameMatcher.php │ │ └── PropertyTypeMatcher.php │ │ ├── Reflection │ │ └── ReflectionHelper.php │ │ ├── TypeFilter │ │ ├── Date │ │ │ └── DateIntervalFilter.php │ │ ├── ReplaceFilter.php │ │ ├── ShallowCopyFilter.php │ │ ├── Spl │ │ │ ├── ArrayObjectFilter.php │ │ │ ├── SplDoublyLinkedList.php │ │ │ └── SplDoublyLinkedListFilter.php │ │ └── TypeFilter.php │ │ ├── TypeMatcher │ │ └── TypeMatcher.php │ │ └── deep_copy.php │ ├── paragonie │ └── random_compat │ │ ├── LICENSE │ │ ├── build-phar.sh │ │ ├── composer.json │ │ ├── dist │ │ ├── random_compat.phar.pubkey │ │ └── random_compat.phar.pubkey.asc │ │ ├── lib │ │ └── random.php │ │ ├── other │ │ └── build_phar.php │ │ ├── psalm-autoload.php │ │ └── psalm.xml │ ├── psr │ ├── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ ├── PSR7-Interfaces.md │ │ │ └── PSR7-Usage.md │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ └── log │ │ ├── LICENSE │ │ ├── Psr │ │ └── Log │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ ├── NullLogger.php │ │ │ └── Test │ │ │ ├── DummyTest.php │ │ │ ├── LoggerInterfaceTest.php │ │ │ └── TestLogger.php │ │ ├── README.md │ │ └── composer.json │ ├── setasign │ └── fpdi │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ ├── FpdfTpl.php │ │ ├── FpdfTplTrait.php │ │ ├── Fpdi.php │ │ ├── FpdiException.php │ │ ├── FpdiTrait.php │ │ ├── PdfParser │ │ ├── CrossReference │ │ │ ├── AbstractReader.php │ │ │ ├── CrossReference.php │ │ │ ├── CrossReferenceException.php │ │ │ ├── FixedReader.php │ │ │ ├── LineReader.php │ │ │ └── ReaderInterface.php │ │ ├── Filter │ │ │ ├── Ascii85.php │ │ │ ├── Ascii85Exception.php │ │ │ ├── AsciiHex.php │ │ │ ├── FilterException.php │ │ │ ├── FilterInterface.php │ │ │ ├── Flate.php │ │ │ ├── FlateException.php │ │ │ ├── Lzw.php │ │ │ └── LzwException.php │ │ ├── PdfParser.php │ │ ├── PdfParserException.php │ │ ├── StreamReader.php │ │ ├── Tokenizer.php │ │ └── Type │ │ │ ├── PdfArray.php │ │ │ ├── PdfBoolean.php │ │ │ ├── PdfDictionary.php │ │ │ ├── PdfHexString.php │ │ │ ├── PdfIndirectObject.php │ │ │ ├── PdfIndirectObjectReference.php │ │ │ ├── PdfName.php │ │ │ ├── PdfNull.php │ │ │ ├── PdfNumeric.php │ │ │ ├── PdfStream.php │ │ │ ├── PdfString.php │ │ │ ├── PdfToken.php │ │ │ ├── PdfType.php │ │ │ └── PdfTypeException.php │ │ ├── PdfReader │ │ ├── DataStructure │ │ │ └── Rectangle.php │ │ ├── Page.php │ │ ├── PageBoundaries.php │ │ ├── PdfReader.php │ │ └── PdfReaderException.php │ │ ├── Tcpdf │ │ └── Fpdi.php │ │ ├── TcpdfFpdi.php │ │ ├── Tfpdf │ │ ├── FpdfTpl.php │ │ └── Fpdi.php │ │ └── autoload.php │ └── smarty │ └── smarty │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ ├── demo │ ├── configs │ │ └── test.conf │ ├── index.php │ ├── plugins │ │ ├── cacheresource.apc.php │ │ ├── cacheresource.memcache.php │ │ ├── cacheresource.mysql.php │ │ ├── cacheresource.pdo.php │ │ ├── cacheresource.pdo_gzip.php │ │ ├── resource.extendsall.php │ │ ├── resource.mysql.php │ │ └── resource.mysqls.php │ └── templates │ │ ├── footer.tpl │ │ ├── header.tpl │ │ └── index.tpl │ ├── docs │ ├── _config.yml │ ├── appendixes │ │ ├── tips.md │ │ └── troubleshooting.md │ ├── designers │ │ ├── chapter-debugging-console.md │ │ ├── config-files.md │ │ ├── language-basic-syntax │ │ │ ├── index.md │ │ │ ├── language-escaping.md │ │ │ ├── language-math.md │ │ │ ├── language-syntax-attributes.md │ │ │ ├── language-syntax-comments.md │ │ │ ├── language-syntax-functions.md │ │ │ ├── language-syntax-quotes.md │ │ │ └── language-syntax-variables.md │ │ ├── language-builtin-functions │ │ │ ├── index.md │ │ │ ├── language-function-append.md │ │ │ ├── language-function-assign.md │ │ │ ├── language-function-block.md │ │ │ ├── language-function-call.md │ │ │ ├── language-function-capture.md │ │ │ ├── language-function-config-load.md │ │ │ ├── language-function-debug.md │ │ │ ├── language-function-extends.md │ │ │ ├── language-function-for.md │ │ │ ├── language-function-foreach.md │ │ │ ├── language-function-function.md │ │ │ ├── language-function-if.md │ │ │ ├── language-function-include.md │ │ │ ├── language-function-insert.md │ │ │ ├── language-function-ldelim.md │ │ │ ├── language-function-literal.md │ │ │ ├── language-function-nocache.md │ │ │ ├── language-function-section.md │ │ │ ├── language-function-setfilter.md │ │ │ ├── language-function-strip.md │ │ │ └── language-function-while.md │ │ ├── language-combining-modifiers.md │ │ ├── language-custom-functions │ │ │ ├── index.md │ │ │ ├── language-function-counter.md │ │ │ ├── language-function-cycle.md │ │ │ ├── language-function-debug.md │ │ │ ├── language-function-eval.md │ │ │ ├── language-function-fetch.md │ │ │ ├── language-function-html-checkboxes.md │ │ │ ├── language-function-html-image.md │ │ │ ├── language-function-html-options.md │ │ │ ├── language-function-html-radios.md │ │ │ ├── language-function-html-select-date.md │ │ │ ├── language-function-html-select-time.md │ │ │ ├── language-function-html-table.md │ │ │ ├── language-function-mailto.md │ │ │ ├── language-function-math.md │ │ │ └── language-function-textformat.md │ │ ├── language-modifiers │ │ │ ├── index.md │ │ │ ├── language-modifier-capitalize.md │ │ │ ├── language-modifier-cat.md │ │ │ ├── language-modifier-count-characters.md │ │ │ ├── language-modifier-count-paragraphs.md │ │ │ ├── language-modifier-count-sentences.md │ │ │ ├── language-modifier-count-words.md │ │ │ ├── language-modifier-date-format.md │ │ │ ├── language-modifier-default.md │ │ │ ├── language-modifier-escape.md │ │ │ ├── language-modifier-from-charset.md │ │ │ ├── language-modifier-indent.md │ │ │ ├── language-modifier-lower.md │ │ │ ├── language-modifier-nl2br.md │ │ │ ├── language-modifier-regex-replace.md │ │ │ ├── language-modifier-replace.md │ │ │ ├── language-modifier-spacify.md │ │ │ ├── language-modifier-string-format.md │ │ │ ├── language-modifier-strip-tags.md │ │ │ ├── language-modifier-strip.md │ │ │ ├── language-modifier-to-charset.md │ │ │ ├── language-modifier-truncate.md │ │ │ ├── language-modifier-unescape.md │ │ │ ├── language-modifier-upper.md │ │ │ └── language-modifier-wordwrap.md │ │ └── language-variables │ │ │ ├── index.md │ │ │ ├── language-assigned-variables.md │ │ │ ├── language-config-variables.md │ │ │ ├── language-variable-scopes.md │ │ │ └── language-variables-smarty.md │ ├── features.md │ ├── getting-started.md │ ├── index.md │ ├── philosophy.md │ └── programmers │ │ ├── advanced-features.md │ │ ├── advanced-features │ │ ├── advanced-features-objects.md │ │ ├── advanced-features-outputfilters.md │ │ ├── advanced-features-postfilters.md │ │ ├── advanced-features-prefilters.md │ │ ├── advanced-features-security.md │ │ ├── advanced-features-static-classes.md │ │ ├── advanced-features-streams.md │ │ ├── advanced-features-template-inheritance.md │ │ └── advanced-features-template-settings.md │ │ ├── api-functions.md │ │ ├── api-functions │ │ ├── api-add-config-dir.md │ │ ├── api-add-plugins-dir.md │ │ ├── api-add-template-dir.md │ │ ├── api-append-by-ref.md │ │ ├── api-append.md │ │ ├── api-assign-by-ref.md │ │ ├── api-assign.md │ │ ├── api-clear-all-assign.md │ │ ├── api-clear-all-cache.md │ │ ├── api-clear-assign.md │ │ ├── api-clear-cache.md │ │ ├── api-clear-compiled-tpl.md │ │ ├── api-clear-config.md │ │ ├── api-compile-all-config.md │ │ ├── api-compile-all-templates.md │ │ ├── api-config-load.md │ │ ├── api-create-data.md │ │ ├── api-create-template.md │ │ ├── api-disable-security.md │ │ ├── api-display.md │ │ ├── api-enable-security.md │ │ ├── api-fetch.md │ │ ├── api-get-cache-dir.md │ │ ├── api-get-compile-dir.md │ │ ├── api-get-config-dir.md │ │ ├── api-get-config-vars.md │ │ ├── api-get-plugins-dir.md │ │ ├── api-get-registered-object.md │ │ ├── api-get-tags.md │ │ ├── api-get-template-dir.md │ │ ├── api-get-template-vars.md │ │ ├── api-is-cached.md │ │ ├── api-load-filter.md │ │ ├── api-mute-expected-errors.md │ │ ├── api-register-cacheresource.md │ │ ├── api-register-class.md │ │ ├── api-register-default-plugin-handler.md │ │ ├── api-register-filter.md │ │ ├── api-register-object.md │ │ ├── api-register-plugin.md │ │ ├── api-register-resource.md │ │ ├── api-set-cache-dir.md │ │ ├── api-set-compile-dir.md │ │ ├── api-set-config-dir.md │ │ ├── api-set-plugins-dir.md │ │ ├── api-set-template-dir.md │ │ ├── api-template-exists.md │ │ ├── api-test-install.md │ │ ├── api-unregister-cacheresource.md │ │ ├── api-unregister-filter.md │ │ ├── api-unregister-object.md │ │ ├── api-unregister-plugin.md │ │ └── api-unregister-resource.md │ │ ├── api-variables.md │ │ ├── api-variables │ │ ├── variable-allow-php-templates.md │ │ ├── variable-auto-literal.md │ │ ├── variable-autoload-filters.md │ │ ├── variable-cache-dir.md │ │ ├── variable-cache-id.md │ │ ├── variable-cache-lifetime.md │ │ ├── variable-cache-locking.md │ │ ├── variable-cache-modified-check.md │ │ ├── variable-caching-type.md │ │ ├── variable-caching.md │ │ ├── variable-compile-check.md │ │ ├── variable-compile-dir.md │ │ ├── variable-compile-id.md │ │ ├── variable-compile-locking.md │ │ ├── variable-compiler-class.md │ │ ├── variable-config-booleanize.md │ │ ├── variable-config-dir.md │ │ ├── variable-config-overwrite.md │ │ ├── variable-config-read-hidden.md │ │ ├── variable-debug-template.md │ │ ├── variable-debugging-ctrl.md │ │ ├── variable-debugging.md │ │ ├── variable-default-config-handler-func.md │ │ ├── variable-default-config-type.md │ │ ├── variable-default-modifiers.md │ │ ├── variable-default-resource-type.md │ │ ├── variable-default-template-handler-func.md │ │ ├── variable-direct-access-security.md │ │ ├── variable-error-reporting.md │ │ ├── variable-escape-html.md │ │ ├── variable-force-cache.md │ │ ├── variable-force-compile.md │ │ ├── variable-left-delimiter.md │ │ ├── variable-locking-timeout.md │ │ ├── variable-merge-compiled-includes.md │ │ ├── variable-plugins-dir.md │ │ ├── variable-right-delimiter.md │ │ ├── variable-smarty-debug-id.md │ │ ├── variable-template-dir.md │ │ ├── variable-trusted-dir.md │ │ ├── variable-use-include-path.md │ │ └── variable-use-sub-dirs.md │ │ ├── caching.md │ │ ├── caching │ │ ├── caching-cacheable.md │ │ ├── caching-custom.md │ │ ├── caching-groups.md │ │ ├── caching-multiple-caches.md │ │ └── caching-setting-up.md │ │ ├── charset.md │ │ ├── plugins.md │ │ ├── plugins │ │ ├── plugins-block-functions.md │ │ ├── plugins-compiler-functions.md │ │ ├── plugins-functions.md │ │ ├── plugins-howto.md │ │ ├── plugins-inserts.md │ │ ├── plugins-modifiers.md │ │ ├── plugins-naming-conventions.md │ │ ├── plugins-outputfilters.md │ │ ├── plugins-prefilters-postfilters.md │ │ ├── plugins-resources.md │ │ └── plugins-writing.md │ │ ├── resources.md │ │ ├── resources │ │ ├── resources-custom.md │ │ ├── resources-extends.md │ │ ├── resources-file.md │ │ ├── resources-streams.md │ │ ├── resources-string.md │ │ └── template-resources.md │ │ └── smarty-constants.md │ ├── lexer │ ├── smarty_internal_configfilelexer.plex │ ├── smarty_internal_configfileparser.y │ ├── smarty_internal_templatelexer.plex │ └── smarty_internal_templateparser.y │ ├── libs │ ├── Autoloader.php │ ├── Smarty.class.php │ ├── bootstrap.php │ ├── debug.tpl │ ├── functions.php │ ├── plugins │ │ ├── block.textformat.php │ │ ├── function.counter.php │ │ ├── function.cycle.php │ │ ├── function.fetch.php │ │ ├── function.html_checkboxes.php │ │ ├── function.html_image.php │ │ ├── function.html_options.php │ │ ├── function.html_radios.php │ │ ├── function.html_select_date.php │ │ ├── function.html_select_time.php │ │ ├── function.html_table.php │ │ ├── function.mailto.php │ │ ├── function.math.php │ │ ├── modifier.capitalize.php │ │ ├── modifier.count.php │ │ ├── modifier.date_format.php │ │ ├── modifier.debug_print_var.php │ │ ├── modifier.escape.php │ │ ├── modifier.explode.php │ │ ├── modifier.mb_wordwrap.php │ │ ├── modifier.number_format.php │ │ ├── modifier.regex_replace.php │ │ ├── modifier.replace.php │ │ ├── modifier.spacify.php │ │ ├── modifier.truncate.php │ │ ├── modifiercompiler.cat.php │ │ ├── modifiercompiler.count_characters.php │ │ ├── modifiercompiler.count_paragraphs.php │ │ ├── modifiercompiler.count_sentences.php │ │ ├── modifiercompiler.count_words.php │ │ ├── modifiercompiler.default.php │ │ ├── modifiercompiler.escape.php │ │ ├── modifiercompiler.from_charset.php │ │ ├── modifiercompiler.indent.php │ │ ├── modifiercompiler.lower.php │ │ ├── modifiercompiler.nl2br.php │ │ ├── modifiercompiler.noprint.php │ │ ├── modifiercompiler.round.php │ │ ├── modifiercompiler.str_repeat.php │ │ ├── modifiercompiler.string_format.php │ │ ├── modifiercompiler.strip.php │ │ ├── modifiercompiler.strip_tags.php │ │ ├── modifiercompiler.strlen.php │ │ ├── modifiercompiler.to_charset.php │ │ ├── modifiercompiler.unescape.php │ │ ├── modifiercompiler.upper.php │ │ ├── modifiercompiler.wordwrap.php │ │ ├── outputfilter.trimwhitespace.php │ │ ├── shared.escape_special_chars.php │ │ ├── shared.literal_compiler_param.php │ │ ├── shared.make_timestamp.php │ │ ├── shared.mb_str_replace.php │ │ ├── shared.mb_unicode.php │ │ └── variablefilter.htmlspecialchars.php │ └── sysplugins │ │ ├── smarty_cacheresource.php │ │ ├── smarty_cacheresource_custom.php │ │ ├── smarty_cacheresource_keyvaluestore.php │ │ ├── smarty_data.php │ │ ├── smarty_internal_block.php │ │ ├── smarty_internal_cacheresource_file.php │ │ ├── smarty_internal_compile_append.php │ │ ├── smarty_internal_compile_assign.php │ │ ├── smarty_internal_compile_block.php │ │ ├── smarty_internal_compile_block_child.php │ │ ├── smarty_internal_compile_block_parent.php │ │ ├── smarty_internal_compile_break.php │ │ ├── smarty_internal_compile_call.php │ │ ├── smarty_internal_compile_capture.php │ │ ├── smarty_internal_compile_child.php │ │ ├── smarty_internal_compile_config_load.php │ │ ├── smarty_internal_compile_continue.php │ │ ├── smarty_internal_compile_debug.php │ │ ├── smarty_internal_compile_eval.php │ │ ├── smarty_internal_compile_extends.php │ │ ├── smarty_internal_compile_for.php │ │ ├── smarty_internal_compile_foreach.php │ │ ├── smarty_internal_compile_function.php │ │ ├── smarty_internal_compile_if.php │ │ ├── smarty_internal_compile_include.php │ │ ├── smarty_internal_compile_insert.php │ │ ├── smarty_internal_compile_ldelim.php │ │ ├── smarty_internal_compile_make_nocache.php │ │ ├── smarty_internal_compile_nocache.php │ │ ├── smarty_internal_compile_parent.php │ │ ├── smarty_internal_compile_private_block_plugin.php │ │ ├── smarty_internal_compile_private_foreachsection.php │ │ ├── smarty_internal_compile_private_function_plugin.php │ │ ├── smarty_internal_compile_private_modifier.php │ │ ├── smarty_internal_compile_private_object_block_function.php │ │ ├── smarty_internal_compile_private_object_function.php │ │ ├── smarty_internal_compile_private_print_expression.php │ │ ├── smarty_internal_compile_private_registered_block.php │ │ ├── smarty_internal_compile_private_registered_function.php │ │ ├── smarty_internal_compile_private_special_variable.php │ │ ├── smarty_internal_compile_rdelim.php │ │ ├── smarty_internal_compile_section.php │ │ ├── smarty_internal_compile_setfilter.php │ │ ├── smarty_internal_compile_shared_inheritance.php │ │ ├── smarty_internal_compile_while.php │ │ ├── smarty_internal_compilebase.php │ │ ├── smarty_internal_config_file_compiler.php │ │ ├── smarty_internal_configfilelexer.php │ │ ├── smarty_internal_configfileparser.php │ │ ├── smarty_internal_data.php │ │ ├── smarty_internal_debug.php │ │ ├── smarty_internal_errorhandler.php │ │ ├── smarty_internal_extension_handler.php │ │ ├── smarty_internal_method_addautoloadfilters.php │ │ ├── smarty_internal_method_adddefaultmodifiers.php │ │ ├── smarty_internal_method_append.php │ │ ├── smarty_internal_method_appendbyref.php │ │ ├── smarty_internal_method_assignbyref.php │ │ ├── smarty_internal_method_assignglobal.php │ │ ├── smarty_internal_method_clearallassign.php │ │ ├── smarty_internal_method_clearallcache.php │ │ ├── smarty_internal_method_clearassign.php │ │ ├── smarty_internal_method_clearcache.php │ │ ├── smarty_internal_method_clearcompiledtemplate.php │ │ ├── smarty_internal_method_clearconfig.php │ │ ├── smarty_internal_method_compileallconfig.php │ │ ├── smarty_internal_method_compilealltemplates.php │ │ ├── smarty_internal_method_configload.php │ │ ├── smarty_internal_method_createdata.php │ │ ├── smarty_internal_method_getautoloadfilters.php │ │ ├── smarty_internal_method_getconfigvariable.php │ │ ├── smarty_internal_method_getconfigvars.php │ │ ├── smarty_internal_method_getdebugtemplate.php │ │ ├── smarty_internal_method_getdefaultmodifiers.php │ │ ├── smarty_internal_method_getglobal.php │ │ ├── smarty_internal_method_getregisteredobject.php │ │ ├── smarty_internal_method_getstreamvariable.php │ │ ├── smarty_internal_method_gettags.php │ │ ├── smarty_internal_method_gettemplatevars.php │ │ ├── smarty_internal_method_literals.php │ │ ├── smarty_internal_method_loadfilter.php │ │ ├── smarty_internal_method_loadplugin.php │ │ ├── smarty_internal_method_mustcompile.php │ │ ├── smarty_internal_method_registercacheresource.php │ │ ├── smarty_internal_method_registerclass.php │ │ ├── smarty_internal_method_registerdefaultconfighandler.php │ │ ├── smarty_internal_method_registerdefaultpluginhandler.php │ │ ├── smarty_internal_method_registerdefaulttemplatehandler.php │ │ ├── smarty_internal_method_registerfilter.php │ │ ├── smarty_internal_method_registerobject.php │ │ ├── smarty_internal_method_registerplugin.php │ │ ├── smarty_internal_method_registerresource.php │ │ ├── smarty_internal_method_setautoloadfilters.php │ │ ├── smarty_internal_method_setdebugtemplate.php │ │ ├── smarty_internal_method_setdefaultmodifiers.php │ │ ├── smarty_internal_method_unloadfilter.php │ │ ├── smarty_internal_method_unregistercacheresource.php │ │ ├── smarty_internal_method_unregisterfilter.php │ │ ├── smarty_internal_method_unregisterobject.php │ │ ├── smarty_internal_method_unregisterplugin.php │ │ ├── smarty_internal_method_unregisterresource.php │ │ ├── smarty_internal_nocache_insert.php │ │ ├── smarty_internal_parsetree.php │ │ ├── smarty_internal_parsetree_code.php │ │ ├── smarty_internal_parsetree_dq.php │ │ ├── smarty_internal_parsetree_dqcontent.php │ │ ├── smarty_internal_parsetree_tag.php │ │ ├── smarty_internal_parsetree_template.php │ │ ├── smarty_internal_parsetree_text.php │ │ ├── smarty_internal_resource_eval.php │ │ ├── smarty_internal_resource_extends.php │ │ ├── smarty_internal_resource_file.php │ │ ├── smarty_internal_resource_php.php │ │ ├── smarty_internal_resource_stream.php │ │ ├── smarty_internal_resource_string.php │ │ ├── smarty_internal_runtime_cachemodify.php │ │ ├── smarty_internal_runtime_cacheresourcefile.php │ │ ├── smarty_internal_runtime_capture.php │ │ ├── smarty_internal_runtime_codeframe.php │ │ ├── smarty_internal_runtime_filterhandler.php │ │ ├── smarty_internal_runtime_foreach.php │ │ ├── smarty_internal_runtime_getincludepath.php │ │ ├── smarty_internal_runtime_inheritance.php │ │ ├── smarty_internal_runtime_make_nocache.php │ │ ├── smarty_internal_runtime_tplfunction.php │ │ ├── smarty_internal_runtime_updatecache.php │ │ ├── smarty_internal_runtime_updatescope.php │ │ ├── smarty_internal_runtime_writefile.php │ │ ├── smarty_internal_smartytemplatecompiler.php │ │ ├── smarty_internal_template.php │ │ ├── smarty_internal_templatebase.php │ │ ├── smarty_internal_templatecompilerbase.php │ │ ├── smarty_internal_templatelexer.php │ │ ├── smarty_internal_templateparser.php │ │ ├── smarty_internal_testinstall.php │ │ ├── smarty_internal_undefined.php │ │ ├── smarty_resource.php │ │ ├── smarty_resource_custom.php │ │ ├── smarty_resource_recompiled.php │ │ ├── smarty_resource_uncompiled.php │ │ ├── smarty_security.php │ │ ├── smarty_template_cached.php │ │ ├── smarty_template_compiled.php │ │ ├── smarty_template_config.php │ │ ├── smarty_template_resource_base.php │ │ ├── smarty_template_source.php │ │ ├── smarty_undefined_variable.php │ │ ├── smarty_variable.php │ │ ├── smartycompilerexception.php │ │ └── smartyexception.php │ ├── mkdocs.yml │ ├── run-tests-for-all-php-versions.sh │ └── run-tests.sh ├── ui ├── cache │ └── index.html ├── compiled │ └── index.html ├── conf │ └── index.html ├── index.html ├── lib │ ├── c │ │ ├── bandwidth.js │ │ ├── customers.js │ │ ├── hotspot.js │ │ ├── index.html │ │ ├── pool.js │ │ ├── pppoe.js │ │ ├── prepaid.js │ │ ├── routers.js │ │ ├── users.js │ │ └── voucher.js │ ├── css │ │ ├── bootstrap-rtl.min.css │ │ └── index.html │ ├── dt │ │ ├── dataTables.bootstrap.js │ │ ├── datatables.js │ │ ├── index.html │ │ ├── jquery.dataTables.js │ │ ├── jquery.dataTables.min.css │ │ └── jquery.dataTables.min.js │ ├── index.html │ └── js │ │ ├── bootbox.min.js │ │ ├── index.html │ │ └── select2 │ │ ├── edit.js │ │ ├── img │ │ ├── droparrows.png │ │ ├── select2-spinner.gif │ │ ├── select2.png │ │ └── select2x2.png │ │ ├── select2.css │ │ └── select2.min.js ├── ui │ ├── 404.tpl │ ├── a404.tpl │ ├── admin-login.tpl │ ├── app-localisation.tpl │ ├── app-notifications.tpl │ ├── app-settings.tpl │ ├── autoload-pool.tpl │ ├── autoload-server.tpl │ ├── autoload.tpl │ ├── balance-add.tpl │ ├── balance-edit.tpl │ ├── balance.tpl │ ├── bandwidth-add.tpl │ ├── bandwidth-edit.tpl │ ├── bandwidth.tpl │ ├── change-password.tpl │ ├── community.tpl │ ├── customers-add.tpl │ ├── customers-edit.tpl │ ├── customers-view.tpl │ ├── customers.tpl │ ├── dashboard.tpl │ ├── dbstatus.tpl │ ├── deposit.tpl │ ├── fonts │ │ ├── MaterialDesign │ │ │ ├── .github │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ ├── css │ │ │ │ ├── materialdesignicons.min.css │ │ │ │ └── materialdesignicons.min.css.map │ │ │ └── fonts │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── font-awesome.min.css │ │ │ │ └── index.html │ │ │ ├── fonts │ │ │ │ ├── fontawesome-webfontd41d.eot │ │ │ │ ├── fontawesome-webfonte0a5.eot │ │ │ │ ├── fontawesome-webfonte0a5.svg │ │ │ │ ├── fontawesome-webfonte0a5.ttf │ │ │ │ ├── fontawesome-webfonte0a5.woff │ │ │ │ ├── fontawesome-webfonte0a5.woff2 │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── index.html │ │ └── ionicons │ │ │ ├── css │ │ │ ├── index.html │ │ │ └── ionicons.min.css │ │ │ ├── fonts │ │ │ ├── index.html │ │ │ ├── ionicons28b5.eot │ │ │ ├── ionicons28b5.svg │ │ │ ├── ionicons28b5.ttf │ │ │ └── ionicons28b5.woff │ │ │ └── index.html │ ├── hotspot-add.tpl │ ├── hotspot-edit.tpl │ ├── hotspot.tpl │ ├── images │ │ ├── admin.png │ │ ├── index.html │ │ ├── logo.png │ │ └── phpnuxbill_transparan.png │ ├── index.html │ ├── invoice-print.tpl │ ├── invoice.tpl │ ├── language-add.tpl │ ├── page-edit.tpl │ ├── paymentgateway.tpl │ ├── plugin-manager.tpl │ ├── pool-add.tpl │ ├── pool-edit.tpl │ ├── pool.tpl │ ├── pppoe-add.tpl │ ├── pppoe-edit.tpl │ ├── pppoe.tpl │ ├── prepaid-edit.tpl │ ├── prepaid.tpl │ ├── print-by-date.tpl │ ├── print-by-period.tpl │ ├── print-voucher.tpl │ ├── recharge-user.tpl │ ├── recharge.tpl │ ├── refill.tpl │ ├── register-otp.tpl │ ├── register-rotp.tpl │ ├── register.tpl │ ├── reports-daily.tpl │ ├── reports-period-view.tpl │ ├── reports-period.tpl │ ├── router-error.tpl │ ├── routers-add.tpl │ ├── routers-edit.tpl │ ├── routers.tpl │ ├── scripts │ │ ├── adminlte.min.js │ │ ├── bootstrap.min.js │ │ ├── c3.init.js │ │ ├── calendar.init.js │ │ ├── custom.js │ │ ├── index.html │ │ ├── jquery.min.js │ │ ├── nicEdit.js │ │ ├── nicEditorIcons.gif │ │ ├── plugins │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ ├── bootstrap-datepicker.min.js │ │ │ ├── bootstrap-rating.min.js │ │ │ ├── bootstrap-slider.min.js │ │ │ ├── c3.min.js │ │ │ ├── d3.min.js │ │ │ ├── fullcalendar.min.js │ │ │ ├── index.html │ │ │ ├── jquery.dataTables.min.js │ │ │ ├── jquery.easypiechart.min.js │ │ │ ├── jquery.sparkline.min.js │ │ │ ├── moment.min.js │ │ │ ├── perfect-scrollbar.min.js │ │ │ ├── screenfull.js │ │ │ ├── select2.min.js │ │ │ └── waves.min.js │ │ ├── sparklines.init.js │ │ ├── tables.init.js │ │ └── vendors.js │ ├── sections │ │ ├── footer.tpl │ │ ├── header.tpl │ │ ├── index.html │ │ ├── user-footer.tpl │ │ └── user-header.tpl │ ├── styles │ │ ├── adminlte.min.css │ │ ├── adminlte.min.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── index.html │ │ ├── main.min.css │ │ ├── plugins │ │ │ ├── c3.css │ │ │ ├── fullcalendar.css │ │ │ ├── index.html │ │ │ ├── perfect-scrollbar.css │ │ │ └── waves.css │ │ ├── select2-bootstrap.min.css │ │ ├── select2.min.css │ │ └── skin-blue.min.css │ ├── user-activation-list.tpl │ ├── user-activation.tpl │ ├── user-change-password.tpl │ ├── user-dashboard.tpl │ ├── user-login.tpl │ ├── user-orderHistory.tpl │ ├── user-orderPlan.tpl │ ├── user-orderView.tpl │ ├── user-pages.tpl │ ├── user-profile.tpl │ ├── users-add.tpl │ ├── users-edit.tpl │ ├── users.tpl │ ├── voucher-add.tpl │ └── voucher.tpl └── ui_custom │ ├── README.md │ └── index.html ├── update.php └── version.json /conf/my.cnf: -------------------------------------------------------------------------------- 1 | [mysqld] 2 | user = root 3 | datadir = /app/mysql 4 | port = 3306 5 | log-bin = /app/mysql/mysql-bin 6 | -------------------------------------------------------------------------------- /conf/php.ini: -------------------------------------------------------------------------------- 1 | [Date] 2 | date.timezone="UTC" 3 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: "2.1" 2 | services: 3 | mikhmon: 4 | image: animegasan/phpnuxbill:latest 5 | container_name: phpnuxbill 6 | ports: 7 | - 8080:80 8 | restart: unless-stopped 9 | -------------------------------------------------------------------------------- /src/admin/index.php: -------------------------------------------------------------------------------- 1 | Besok libur

Announcement!!
Tomorrow holiday
-------------------------------------------------------------------------------- /src/pages/Order_Voucher.html: -------------------------------------------------------------------------------- 1 | You can buy a voucher in my home


Dapatkan Voucher Internet di Warung terdekat -------------------------------------------------------------------------------- /src/pages/Registration_Info.html: -------------------------------------------------------------------------------- 1 | Before you registered, you must Buy Voucher first

2 | Sebelum mendaftar pastikan anda membeli voucher terlebih dahulu -------------------------------------------------------------------------------- /src/pages/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/qrcode/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.4 2 | 2010100721 -------------------------------------------------------------------------------- /src/qrcode/cache/frame_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_1.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_10.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_10.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_11.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_11.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_12.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_12.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_13.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_13.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_14.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_14.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_15.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_15.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_16.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_16.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_17.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_17.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_18.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_18.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_18.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_19.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_19.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_19.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_2.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_20.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_20.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_21.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_21.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_21.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_22.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_22.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_22.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_23.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_23.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_23.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_24.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_24.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_24.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_25.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_25.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_25.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_26.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_26.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_26.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_27.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_27.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_27.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_28.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_28.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_28.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_29.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_29.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_29.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_3.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_30.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_30.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_31.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_31.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_31.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_32.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_32.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_33.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_33.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_33.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_34.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_34.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_34.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_35.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_35.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_35.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_36.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_36.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_36.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_37.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_37.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_37.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_38.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_38.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_38.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_39.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_39.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_39.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_4.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_40.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_40.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_5.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_6.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_7.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_8.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_8.png -------------------------------------------------------------------------------- /src/qrcode/cache/frame_9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_9.dat -------------------------------------------------------------------------------- /src/qrcode/cache/frame_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/frame_9.png -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_101_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_101_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_105_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_105_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_109_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_109_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_113_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_113_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_117_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_117_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_121_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_121_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_125_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_125_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_129_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_129_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_133_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_133_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_137_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_137_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_141_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_141_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_145_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_145_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_149_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_149_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_153_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_153_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_157_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_157_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_161_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_161_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_165_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_165_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_169_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_169_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_173_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_173_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_177_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_177_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_21_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_21_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_25_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_25_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_29_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_29_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_33_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_33_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_37_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_37_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_41_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_41_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_45_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_45_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_49_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_49_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_53_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_53_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_57_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_57_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_61_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_61_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_65_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_65_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_69_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_69_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_73_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_73_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_77_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_77_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_81_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_81_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_85_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_85_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_89_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_89_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_93_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_93_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_0/mask_97_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_0/mask_97_0.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_101_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_101_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_105_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_105_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_109_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_109_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_113_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_113_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_117_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_117_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_121_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_121_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_125_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_125_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_129_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_129_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_133_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_133_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_137_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_137_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_141_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_141_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_145_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_145_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_149_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_149_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_153_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_153_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_157_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_157_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_161_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_161_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_165_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_165_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_169_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_169_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_173_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_173_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_177_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_177_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_21_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_21_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_25_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_25_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_29_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_29_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_33_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_33_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_37_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_37_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_41_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_41_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_45_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_45_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_49_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_49_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_53_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_53_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_57_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_57_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_61_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_61_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_65_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_65_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_69_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_69_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_73_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_73_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_77_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_77_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_81_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_81_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_85_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_85_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_89_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_89_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_93_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_93_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_1/mask_97_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_1/mask_97_1.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_101_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_101_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_105_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_105_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_109_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_109_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_113_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_113_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_117_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_117_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_121_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_121_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_125_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_125_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_129_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_129_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_133_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_133_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_137_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_137_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_141_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_141_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_145_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_145_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_149_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_149_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_153_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_153_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_157_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_157_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_161_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_161_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_165_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_165_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_169_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_169_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_173_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_173_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_177_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_177_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_21_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_21_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_25_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_25_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_29_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_29_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_33_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_33_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_37_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_37_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_41_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_41_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_45_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_45_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_49_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_49_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_53_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_53_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_57_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_57_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_61_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_61_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_65_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_65_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_69_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_69_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_73_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_73_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_77_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_77_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_81_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_81_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_85_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_85_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_89_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_89_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_93_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_93_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_2/mask_97_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_2/mask_97_2.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_101_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_101_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_105_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_105_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_109_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_109_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_113_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_113_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_117_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_117_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_121_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_121_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_125_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_125_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_129_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_129_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_133_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_133_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_137_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_137_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_141_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_141_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_145_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_145_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_149_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_149_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_153_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_153_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_157_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_157_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_161_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_161_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_165_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_165_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_169_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_169_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_173_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_173_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_177_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_177_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_21_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_21_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_25_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_25_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_29_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_29_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_33_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_33_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_37_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_37_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_41_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_41_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_45_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_45_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_49_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_49_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_53_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_53_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_57_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_57_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_61_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_61_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_65_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_65_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_69_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_69_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_73_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_73_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_77_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_77_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_81_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_81_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_85_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_85_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_89_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_89_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_93_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_93_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_3/mask_97_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_3/mask_97_3.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_101_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_101_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_105_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_105_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_109_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_109_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_113_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_113_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_117_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_117_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_121_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_121_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_125_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_125_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_129_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_129_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_133_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_133_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_137_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_137_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_141_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_141_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_145_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_145_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_149_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_149_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_153_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_153_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_157_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_157_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_161_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_161_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_165_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_165_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_169_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_169_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_173_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_173_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_177_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_177_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_21_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_21_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_25_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_25_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_29_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_29_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_33_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_33_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_37_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_37_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_41_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_41_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_45_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_45_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_49_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_49_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_53_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_53_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_57_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_57_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_61_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_61_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_65_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_65_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_69_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_69_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_73_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_73_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_77_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_77_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_81_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_81_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_85_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_85_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_89_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_89_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_93_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_93_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_4/mask_97_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_4/mask_97_4.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_101_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_101_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_105_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_105_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_109_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_109_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_113_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_113_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_117_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_117_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_121_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_121_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_125_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_125_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_129_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_129_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_133_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_133_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_137_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_137_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_141_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_141_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_145_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_145_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_149_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_149_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_153_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_153_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_157_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_157_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_161_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_161_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_165_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_165_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_169_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_169_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_173_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_173_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_177_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_177_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_21_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_21_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_25_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_25_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_29_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_29_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_33_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_33_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_37_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_37_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_41_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_41_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_45_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_45_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_49_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_49_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_53_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_53_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_57_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_57_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_61_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_61_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_65_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_65_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_69_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_69_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_73_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_73_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_77_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_77_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_81_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_81_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_85_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_85_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_89_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_89_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_93_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_93_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_5/mask_97_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_5/mask_97_5.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_101_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_101_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_105_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_105_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_109_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_109_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_113_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_113_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_117_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_117_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_121_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_121_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_125_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_125_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_129_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_129_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_133_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_133_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_137_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_137_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_141_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_141_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_145_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_145_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_149_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_149_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_153_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_153_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_157_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_157_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_161_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_161_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_165_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_165_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_169_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_169_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_173_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_173_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_177_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_177_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_21_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_21_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_25_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_25_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_29_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_29_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_33_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_33_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_37_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_37_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_41_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_41_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_45_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_45_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_49_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_49_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_53_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_53_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_57_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_57_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_61_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_61_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_65_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_65_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_69_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_69_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_73_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_73_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_77_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_77_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_81_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_81_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_85_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_85_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_89_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_89_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_93_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_93_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_6/mask_97_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_6/mask_97_6.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_101_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_101_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_105_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_105_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_109_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_109_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_113_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_113_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_117_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_117_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_121_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_121_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_125_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_125_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_129_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_129_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_133_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_133_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_137_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_137_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_141_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_141_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_145_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_145_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_149_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_149_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_153_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_153_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_157_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_157_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_161_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_161_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_165_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_165_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_169_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_169_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_173_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_173_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_177_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_177_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_21_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_21_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_25_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_25_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_29_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_29_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_33_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_33_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_37_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_37_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_41_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_41_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_45_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_45_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_49_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_49_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_53_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_53_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_57_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_57_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_61_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_61_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_65_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_65_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_69_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_69_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_73_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_73_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_77_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_77_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_81_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_81_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_85_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_85_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_89_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_89_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_93_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_93_7.dat -------------------------------------------------------------------------------- /src/qrcode/cache/mask_7/mask_97_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/qrcode/cache/mask_7/mask_97_7.dat -------------------------------------------------------------------------------- /src/qrcode/tools/merge.bat: -------------------------------------------------------------------------------- 1 | php ./merge.php 2 | pause -------------------------------------------------------------------------------- /src/qrcode/tools/merge.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | php ./merge.php -------------------------------------------------------------------------------- /src/system/autoload/Admin.php: -------------------------------------------------------------------------------- 1 | find_one($id); 10 | return $d; 11 | } 12 | } -------------------------------------------------------------------------------- /src/system/autoload/App.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/system/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/system/cache/index.html -------------------------------------------------------------------------------- /src/system/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "mpdf/mpdf": "^8.1", 4 | "smarty/smarty": "^4.3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/system/controllers/community.php: -------------------------------------------------------------------------------- 1 | assign('_title', 'Community'); 7 | $ui->assign('_system_menu', 'community'); 8 | 9 | $action = $routes['1']; 10 | $admin = Admin::_info(); 11 | $ui->assign('_admin', $admin); 12 | 13 | $ui->display('community.tpl'); -------------------------------------------------------------------------------- /src/system/controllers/default.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/system/controllers/logout.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/system/lan/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/system/lan/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/system/lan/indonesia/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/system/lan/turkish/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/system/paymentgateway/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/system/paymentgateway/index.html -------------------------------------------------------------------------------- /src/system/paymentgateway/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/system/paymentgateway/ui/index.html -------------------------------------------------------------------------------- /src/system/plugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/system/plugin/index.html -------------------------------------------------------------------------------- /src/system/plugin/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/system/plugin/ui/index.html -------------------------------------------------------------------------------- /src/system/uploads/_sysfrm_tmp_/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/system/uploads/admin.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/system/uploads/admin.default.png -------------------------------------------------------------------------------- /src/system/uploads/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/system/uploads/logo.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/system/uploads/logo.default.png -------------------------------------------------------------------------------- /src/system/uploads/sms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/system/uploads/sms/index.html -------------------------------------------------------------------------------- /src/system/uploads/system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/system/uploads/user.default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/system/uploads/user.default.jpg -------------------------------------------------------------------------------- /src/system/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', 10 | ); 11 | -------------------------------------------------------------------------------- /src/system/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | mpdf->ispre = true; // ADDED - Prevents left trim of textbuffer in printbuffer() 11 | parent::open($attr, $ahtml, $ihtml); // TODO: Change the autogenerated stub 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/system/vendor/mpdf/mpdf/src/Tag/Q.php: -------------------------------------------------------------------------------- 1 | mpdf->SetStyle('B', false); 11 | parent::close($ahtml, $ihtml); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/system/vendor/mpdf/mpdf/src/Tag/Time.php: -------------------------------------------------------------------------------- 1 | tableOfContents->openTagTOC($attr); 12 | } 13 | 14 | public function close(&$ahtml, &$ihtml) 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/system/vendor/mpdf/mpdf/src/Tag/Tt.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/system/vendor/smarty/smarty/demo/templates/header.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | {$title} - {$Name} 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/system/vendor/smarty/smarty/docs/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-minimal -------------------------------------------------------------------------------- /src/system/vendor/smarty/smarty/docs/programmers/api-functions/api-disable-security.md: -------------------------------------------------------------------------------- 1 | disableSecurity() 2 | 3 | disables template security 4 | 5 | Description 6 | =========== 7 | 8 | string 9 | 10 | disableSecurity 11 | 12 | This disables security checking on templates. 13 | 14 | See also [`enableSecurity()`](#api.enable.security), and 15 | [Security](#advanced.features.security). 16 | -------------------------------------------------------------------------------- /src/system/vendor/smarty/smarty/docs/programmers/api-functions/api-unregister-object.md: -------------------------------------------------------------------------------- 1 | unregisterObject() 2 | 3 | dynamically unregister an object 4 | 5 | Description 6 | =========== 7 | 8 | void 9 | 10 | unregisterObject 11 | 12 | string 13 | 14 | object\_name 15 | 16 | See also [`registerObject()`](#api.register.object) and [objects 17 | section](#advanced.features.objects) 18 | -------------------------------------------------------------------------------- /src/system/vendor/smarty/smarty/docs/programmers/api-variables/variable-compile-locking.md: -------------------------------------------------------------------------------- 1 | \$compile\_locking {#variable.compile.locking} 2 | ================== 3 | 4 | Compile locking avoids concurrent compilation of the same template. 5 | 6 | Compile locking is enabled by default. To disable it set 7 | `$compile_locking` to FALSE. 8 | -------------------------------------------------------------------------------- /src/system/vendor/smarty/smarty/docs/programmers/api-variables/variable-compiler-class.md: -------------------------------------------------------------------------------- 1 | \$compiler\_class {#variable.compiler.class} 2 | ================= 3 | 4 | Specifies the name of the compiler class that Smarty will use to compile 5 | the templates. The default is \'Smarty\_Compiler\'. For advanced users 6 | only. 7 | -------------------------------------------------------------------------------- /src/system/vendor/smarty/smarty/docs/programmers/api-variables/variable-force-cache.md: -------------------------------------------------------------------------------- 1 | \$force\_cache {#variable.force.cache} 2 | ============== 3 | 4 | This forces Smarty to (re)cache templates on every invocation. It does 5 | not override the [`$caching`](#variable.caching) level, but merely 6 | pretends the template has never been cached before. 7 | -------------------------------------------------------------------------------- /src/system/vendor/smarty/smarty/docs/programmers/api-variables/variable-left-delimiter.md: -------------------------------------------------------------------------------- 1 | \$left\_delimiter {#variable.left.delimiter} 2 | ================= 3 | 4 | This is the left delimiter used by the template language. Default is 5 | `{`. 6 | 7 | See also [`$right_delimiter`](#variable.right.delimiter) and [escaping 8 | smarty parsing](#language.escaping) . 9 | -------------------------------------------------------------------------------- /src/system/vendor/smarty/smarty/docs/programmers/api-variables/variable-locking-timeout.md: -------------------------------------------------------------------------------- 1 | \$locking\_timeout {#variable.locking.timeout} 2 | ================== 3 | 4 | This is maximum time in seconds a cache lock is valid to avoid dead 5 | locks. The default value is 10 seconds. 6 | 7 | See also [`$cache_locking`](#variable.cache.locking) 8 | -------------------------------------------------------------------------------- /src/system/vendor/smarty/smarty/docs/programmers/api-variables/variable-right-delimiter.md: -------------------------------------------------------------------------------- 1 | \$right\_delimiter {#variable.right.delimiter} 2 | ================== 3 | 4 | This is the right delimiter used by the template language. Default is 5 | `}`. 6 | 7 | See also [`$left_delimiter`](#variable.left.delimiter) and [escaping 8 | smarty parsing](#language.escaping). 9 | -------------------------------------------------------------------------------- /src/system/vendor/smarty/smarty/run-tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Runs composer update, echoes php version and runs PHPUnit 4 | # Usage examples: 5 | # - ./run-tests.sh --group 20221124 6 | # - ./run-tests.sh --exclude-group slow 7 | 8 | composer update --quiet 9 | #php -r 'echo "\nPHP version " . phpversion() . ". ";' 10 | php ./vendor/phpunit/phpunit/phpunit $@ 11 | -------------------------------------------------------------------------------- /src/ui/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/compiled/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/conf/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/lib/c/bandwidth.js: -------------------------------------------------------------------------------- 1 | $(document).on("click", ".cdelete", function(e) { 2 | e.preventDefault(); 3 | var id = this.id; 4 | bootbox.confirm("Are you sure?", function(result) { 5 | if(result){ 6 | window.location.href = "index.php?_route=bandwidth/delete/" + id; 7 | } 8 | }); 9 | }); -------------------------------------------------------------------------------- /src/ui/lib/c/customers.js: -------------------------------------------------------------------------------- 1 | $(document).on("click", ".cdelete", function(e) { 2 | e.preventDefault(); 3 | var id = this.id; 4 | bootbox.confirm("Are you sure?", function(result) { 5 | if(result){ 6 | window.location.href = "index.php?_route=customers/delete/" + id; 7 | } 8 | }); 9 | }); -------------------------------------------------------------------------------- /src/ui/lib/c/hotspot.js: -------------------------------------------------------------------------------- 1 | $(document).on("click", ".cdelete", function(e) { 2 | e.preventDefault(); 3 | var id = this.id; 4 | bootbox.confirm("Are you sure?", function(result) { 5 | if(result){ 6 | window.location.href = "index.php?_route=services/delete/" + id; 7 | } 8 | }); 9 | }); -------------------------------------------------------------------------------- /src/ui/lib/c/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/lib/c/pool.js: -------------------------------------------------------------------------------- 1 | $(document).on("click", ".cdelete", function(e) { 2 | e.preventDefault(); 3 | var id = this.id; 4 | bootbox.confirm("Are you sure?", function(result) { 5 | if(result){ 6 | window.location.href = "index.php?_route=pool/delete/" + id; 7 | } 8 | }); 9 | }); -------------------------------------------------------------------------------- /src/ui/lib/c/pppoe.js: -------------------------------------------------------------------------------- 1 | $(document).on("click", ".cdelete", function(e) { 2 | e.preventDefault(); 3 | var id = this.id; 4 | bootbox.confirm("Are you sure?", function(result) { 5 | if(result){ 6 | window.location.href = "index.php?_route=services/pppoe-delete/" + id; 7 | } 8 | }); 9 | }); -------------------------------------------------------------------------------- /src/ui/lib/c/prepaid.js: -------------------------------------------------------------------------------- 1 | $(document).on("click", ".cdelete", function(e) { 2 | e.preventDefault(); 3 | var id = this.id; 4 | bootbox.confirm("Are you sure?", function(result) { 5 | if(result){ 6 | window.location.href = "index.php?_route=prepaid/delete/" + id; 7 | } 8 | }); 9 | }); -------------------------------------------------------------------------------- /src/ui/lib/c/routers.js: -------------------------------------------------------------------------------- 1 | $(document).on("click", ".cdelete", function(e) { 2 | e.preventDefault(); 3 | var id = this.id; 4 | bootbox.confirm("Are you sure?", function(result) { 5 | if(result){ 6 | window.location.href = "index.php?_route=routers/delete/" + id; 7 | } 8 | }); 9 | }); -------------------------------------------------------------------------------- /src/ui/lib/c/users.js: -------------------------------------------------------------------------------- 1 | $(document).on("click", ".cdelete", function(e) { 2 | e.preventDefault(); 3 | var id = this.id; 4 | bootbox.confirm("Are you sure?", function(result) { 5 | if(result){ 6 | window.location.href = "index.php?_route=settings/users-delete/" + id; 7 | } 8 | }); 9 | }); -------------------------------------------------------------------------------- /src/ui/lib/c/voucher.js: -------------------------------------------------------------------------------- 1 | $(document).on("click", ".cdelete", function(e) { 2 | e.preventDefault(); 3 | var id = this.id; 4 | bootbox.confirm("Are you sure?", function(result) { 5 | if(result){ 6 | window.location.href = "index.php?_route=prepaid/voucher-delete/" + id; 7 | } 8 | }); 9 | }); -------------------------------------------------------------------------------- /src/ui/lib/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/lib/dt/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/lib/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/lib/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/lib/js/select2/img/droparrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/lib/js/select2/img/droparrows.png -------------------------------------------------------------------------------- /src/ui/lib/js/select2/img/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/lib/js/select2/img/select2-spinner.gif -------------------------------------------------------------------------------- /src/ui/lib/js/select2/img/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/lib/js/select2/img/select2.png -------------------------------------------------------------------------------- /src/ui/lib/js/select2/img/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/lib/js/select2/img/select2x2.png -------------------------------------------------------------------------------- /src/ui/ui/a404.tpl: -------------------------------------------------------------------------------- 1 | {include file="sections/header.tpl"} 2 | 3 |
4 |
5 |

404

6 |
7 |
8 | 9 | {include file="sections/footer.tpl"} -------------------------------------------------------------------------------- /src/ui/ui/autoload-pool.tpl: -------------------------------------------------------------------------------- 1 | 2 | {foreach $d as $ds} 3 | 4 | {/foreach} -------------------------------------------------------------------------------- /src/ui/ui/autoload-server.tpl: -------------------------------------------------------------------------------- 1 | 2 | {foreach $d as $ds} 3 | 4 | {/foreach} -------------------------------------------------------------------------------- /src/ui/ui/autoload.tpl: -------------------------------------------------------------------------------- 1 | 2 | {foreach $d as $ds} 3 | 4 | {/foreach} -------------------------------------------------------------------------------- /src/ui/ui/fonts/MaterialDesign/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Disclaimer: 2 | Hi there, thanks for contributing! Before anything else, please ensure you didn't mean to create an issue on the main MaterialDesign repo instead. 3 | If this is intentional, just erase this message. Thanks! 4 | -------------------------------------------------------------------------------- /src/ui/ui/fonts/MaterialDesign/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/MaterialDesign/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /src/ui/ui/fonts/MaterialDesign/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/MaterialDesign/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /src/ui/ui/fonts/MaterialDesign/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/MaterialDesign/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /src/ui/ui/fonts/MaterialDesign/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/MaterialDesign/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /src/ui/ui/fonts/font-awesome/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui/fonts/font-awesome/fonts/fontawesome-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/font-awesome/fonts/fontawesome-webfontd41d.eot -------------------------------------------------------------------------------- /src/ui/ui/fonts/font-awesome/fonts/fontawesome-webfonte0a5.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/font-awesome/fonts/fontawesome-webfonte0a5.eot -------------------------------------------------------------------------------- /src/ui/ui/fonts/font-awesome/fonts/fontawesome-webfonte0a5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/font-awesome/fonts/fontawesome-webfonte0a5.ttf -------------------------------------------------------------------------------- /src/ui/ui/fonts/font-awesome/fonts/fontawesome-webfonte0a5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/font-awesome/fonts/fontawesome-webfonte0a5.woff -------------------------------------------------------------------------------- /src/ui/ui/fonts/font-awesome/fonts/fontawesome-webfonte0a5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/font-awesome/fonts/fontawesome-webfonte0a5.woff2 -------------------------------------------------------------------------------- /src/ui/ui/fonts/font-awesome/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui/fonts/font-awesome/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/ui/ui/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/ui/ui/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/ui/ui/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/ui/ui/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui/fonts/ionicons/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui/fonts/ionicons/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui/fonts/ionicons/fonts/ionicons28b5.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/ionicons/fonts/ionicons28b5.eot -------------------------------------------------------------------------------- /src/ui/ui/fonts/ionicons/fonts/ionicons28b5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/ionicons/fonts/ionicons28b5.ttf -------------------------------------------------------------------------------- /src/ui/ui/fonts/ionicons/fonts/ionicons28b5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/fonts/ionicons/fonts/ionicons28b5.woff -------------------------------------------------------------------------------- /src/ui/ui/fonts/ionicons/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui/images/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/images/admin.png -------------------------------------------------------------------------------- /src/ui/ui/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/images/logo.png -------------------------------------------------------------------------------- /src/ui/ui/images/phpnuxbill_transparan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/images/phpnuxbill_transparan.png -------------------------------------------------------------------------------- /src/ui/ui/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui/scripts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui/scripts/nicEditorIcons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui/scripts/nicEditorIcons.gif -------------------------------------------------------------------------------- /src/ui/ui/scripts/plugins/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui/scripts/sparklines.init.js: -------------------------------------------------------------------------------- 1 | jQuery(function(){"use strict";function initSparklines(){$(".content-container").find(".sparkline").sparkline("html",{enableTagOptions:!0,tagOptionsPrefix:"data-"})}function _init(){initSparklines()}_init()}); -------------------------------------------------------------------------------- /src/ui/ui/sections/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui/styles/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui/styles/plugins/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 |

Directory access is forbidden.

7 | 8 | -------------------------------------------------------------------------------- /src/ui/ui_custom/README.md: -------------------------------------------------------------------------------- 1 | # CUSTOM DESIGN 2 | 3 | If you want to change the UI, copy the file from UI, to here, and edit as you need, so it will not be overwrite when updating 4 | 5 | Jika mau mengubah tampilan UI, salin filenya dari folder UI kesini, lalu ubah sesuai keinginan, sehingga tidak akan ditimpa saat ada update -------------------------------------------------------------------------------- /src/ui/ui_custom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animegasan/phpnuxbill/13b4dc3bdd6badb80d50c916159d46e5762df766/src/ui/ui_custom/index.html -------------------------------------------------------------------------------- /src/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2023.9.1.1" 3 | } --------------------------------------------------------------------------------