├── README.md ├── pingpp ├── assets │ ├── css │ │ ├── admin_main.css │ │ ├── public_main.css │ │ └── vendor │ │ │ ├── toggle_switch.css │ │ │ └── toggle_switch.min.css │ ├── img │ │ └── logo-16x16.png │ └── js │ │ ├── admin_main.js │ │ └── pingpp_pc.js ├── classes │ ├── mm_settings.php │ ├── mm_settings_output.php │ ├── phpqrcode │ │ ├── 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 │ │ ├── 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 │ ├── pingpp_wp_pay.php │ ├── pingpp_wp_pay_admin.php │ ├── pingpp_wp_pay_functions.php │ ├── pingpp_wp_pay_notices.php │ ├── pingpp_wp_pay_scripts.php │ ├── pingpp_wp_pay_settings_extended.php │ └── pingpp_wp_pay_shortcodes.php ├── pingpp.php ├── sdk │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── composer.json │ ├── data │ │ └── ca-certificates.crt │ ├── example │ │ ├── event.php │ │ ├── pay.php │ │ ├── pingpp_rsa_public_key.pem │ │ ├── redenvelope.php │ │ ├── refund.php │ │ ├── retrieve.php │ │ ├── transfer.php │ │ ├── webhooks.php │ │ ├── your_rsa_private_key.pem │ │ └── your_rsa_public_key.pem │ ├── init.php │ └── lib │ │ ├── ApiRequestor.php │ │ ├── ApiResource.php │ │ ├── AttachedObject.php │ │ ├── Card.php │ │ ├── CardInfo.php │ │ ├── Charge.php │ │ ├── Collection.php │ │ ├── Customer.php │ │ ├── Error │ │ ├── Api.php │ │ ├── ApiConnection.php │ │ ├── Authentication.php │ │ ├── Base.php │ │ ├── Channel.php │ │ ├── InvalidRequest.php │ │ └── RateLimit.php │ │ ├── Event.php │ │ ├── JsonSerializable.php │ │ ├── Pingpp.php │ │ ├── PingppObject.php │ │ ├── RedEnvelope.php │ │ ├── Refund.php │ │ ├── SingletonApiResource.php │ │ ├── SmsCode.php │ │ ├── Source.php │ │ ├── Token.php │ │ ├── Transfer.php │ │ ├── Util │ │ ├── RequestOptions.php │ │ ├── Set.php │ │ └── Util.php │ │ └── WxpubOAuth.php └── views │ ├── admin-main-tab-default.php │ ├── admin-main-tab-pingpp-keys.php │ ├── admin-main.php │ ├── admin-notice-install.php │ └── pay-pc.php ├── pingxx-wp-plugin-screenshot-1.png ├── pingxx-wp-plugin-screenshot-2.png └── pingxx-wp-plugin-screenshot-3.png /README.md: -------------------------------------------------------------------------------- 1 | # Ping++ 支付集成插件 2 | 3 | ## 安装 4 | 5 | 将 `pingpp` 目录放到 `/wp-content/plugins/` 下, 登录 wordpress 后台,启用Ping++(即pingxx)插件 6 | 7 | 8 | 9 | ## 配置 10 | 11 | 登录 [Ping++管理平台](https://dashboard.pingxx.com/), 将对应的 test/live keys 填入插件配置页面 12 | 13 | 14 | 15 | ## 使用 16 | 17 | 在文章中插入一句短代码(shortcode): 18 | 19 | ``` 20 | [pingpp amount=100] 21 | [pingpp amount=100 channel="alipay_pc_direct"] 22 | [pingpp amount=100 selectable=true] 23 | ``` 24 | 25 | 即可生成一个支付按钮,实现轻松支付: 26 | 27 | 28 | 29 | ## 更新日志 30 | 31 | **0.1.0** 发布日期: 2016年03月22日 32 | 33 | * 支持支付宝即时到账, 微信公众号扫码, 银联网关, 企业付款四个PC端渠道的一键付款 34 | * 支付用户自定义 shortcode 等 35 | 36 | 37 | -------------------------------------------------------------------------------- /pingpp/assets/css/admin_main.css: -------------------------------------------------------------------------------- 1 | /* Default admin CSS. */ 2 | 3 | #ppp-settings { 4 | margin-right: 310px; 5 | } 6 | 7 | #ppp-settings-content { 8 | width: 100%; 9 | float: left; 10 | } 11 | 12 | #ppp-settings-sidebar { 13 | float: right; 14 | margin-right: -310px; 15 | width: 290px; 16 | } 17 | 18 | #ppp-settings-sidebar .centered { 19 | text-align: center; 20 | } 21 | 22 | #ppp-settings-sidebar .button-large { 23 | font-size: 17px; 24 | line-height: 30px; 25 | height: 32px; 26 | } 27 | 28 | #ppp-settings-sidebar .last-blurb { 29 | font-size: 17px; 30 | } 31 | 32 | /* Alternative postbox class with no background or border. */ 33 | #ppp-settings-sidebar .postbox-nobg { 34 | position: relative; 35 | min-width: 255px; 36 | } 37 | 38 | /* postbox overrides */ 39 | #ppp-settings-sidebar .sidebar-container .postbox .inside { 40 | margin-bottom: 0; 41 | } 42 | 43 | /* Toggle switch wrap */ 44 | .sc_settings-toggle-switch-wrap { 45 | width: 300px; 46 | margin-left: -88px; 47 | } 48 | 49 | /* Used to hide settings on page load */ 50 | .ppp-admin-hidden { 51 | display: none; 52 | } 53 | 54 | /* Content block for admin tabs */ 55 | #ppp-settings-content .tab-content { 56 | display: block; 57 | padding-top: 15px; 58 | } 59 | 60 | /* Labels for admin settings */ 61 | #ppp-settings-content .tab-content label { 62 | font-weight: bold; 63 | display: block; 64 | margin-top: 15px; 65 | } 66 | 67 | #ppp-settings-content .tab-content input[type="radio"] + label { 68 | display: inline; 69 | margin-top: 0px; 70 | font-weight: normal; 71 | } 72 | 73 | /* System Status CSS */ 74 | #ppp-system-status-report textarea { 75 | font-family: monospace; 76 | min-height: 200px; 77 | padding: 5px 20px; 78 | white-space: pre; 79 | width: 100%; 80 | } 81 | 82 | .ppp-system-status-report-panel { 83 | margin: 20px 0; 84 | } 85 | 86 | .ppp-system-status-report-panel thead th { 87 | font-weight: bold; 88 | } 89 | 90 | .ppp-system-status-report-panel tbody td, 91 | .ppp-system-status-report-panel thead th { 92 | font-size: 14px; 93 | vertical-align: top; 94 | } 95 | 96 | .ppp-system-status-report-panel tbody .tooltip { 97 | text-align: center; 98 | width: 20px; 99 | } 100 | 101 | .ppp-system-status-report-panel tbody .label { 102 | width: 30%; 103 | } 104 | 105 | .ppp-system-status-report-panel tbody tr:nth-child(odd) td { 106 | background-color: rgba(0, 0, 0, 0.02); 107 | } 108 | 109 | .ppp-system-status-report-panel dl { 110 | margin: 0; 111 | padding: 0; 112 | } 113 | 114 | .ppp-system-status-report-panel dt { 115 | float: left; 116 | font-style: italic; 117 | margin: 0 4px 0 0; 118 | } 119 | 120 | .ppp-system-status-report-panel dd { 121 | margin: 0; 122 | } 123 | 124 | .ppp-system-status-report-panel mark { 125 | background-color: transparent; 126 | font-weight: bold; 127 | } 128 | 129 | .ppp-system-status-report-panel mark.ok { 130 | color: green; 131 | } 132 | 133 | .ppp-system-status-report-panel mark.error { 134 | color: red; 135 | } 136 | 137 | .ppp-code {font-family: monospace, monospace; } 138 | .ppp-code * {color: #4c4c4d; font-size: 1em;} -------------------------------------------------------------------------------- /pingpp/assets/css/public_main.css: -------------------------------------------------------------------------------- 1 | /* Public CSS file */ 2 | 3 | /* Payment details at the top of the post. */ 4 | .ppp-payment-details-wrap { 5 | background: #dff0d8; 6 | border: 0; 7 | padding: 15px; 8 | margin-bottom: 15px; 9 | } 10 | 11 | .ppp-payment-details-error { 12 | background: #ffbaba; 13 | } 14 | 15 | /* Basic form styles. Most based off Bootstrap 3. */ 16 | 17 | .ppp-checkout-form { 18 | margin-bottom: 15px; 19 | } 20 | 21 | 22 | 23 | /* 24 | by Aaron 25 | */ 26 | .wp_pingxx_form{ 27 | display: inline-block; 28 | line-height: 2; 29 | } 30 | .wp_pingxx_channel { 31 | position: absolute; 32 | display: block; 33 | top: -99999px; 34 | left: -99999px; 35 | -webkit-appearance: none; 36 | } 37 | 38 | .wp_pingxx_channel_box { 39 | display: inline-block; 40 | margin-right: 8px; 41 | padding: 4px 10px; 42 | /*min-width: 145px;*/ 43 | vertical-align: top; 44 | text-align: center; 45 | font-size: 14px; 46 | font-weight: normal; 47 | color: #76858c; 48 | background-color: #fff; 49 | border: 2px solid #f7f9fa; 50 | cursor: pointer; 51 | } 52 | 53 | .wp_pingxx_channel_box:hover { 54 | background-color: #f7f9fa; 55 | } 56 | 57 | .wp_pingxx_channel_box img{ 58 | margin-right: 4px; 59 | line-height: 28px; 60 | vertical-align: middle; 61 | } 62 | .wp_pingxx_channel:checked + .wp_pingxx_channel_box, 63 | .wp_pingxx_channel:focus + .wp_pingxx_channel_box { 64 | border-color: #f0f0f0; 65 | background-color: #f0f0f0; 66 | } 67 | 68 | .wp_pingxx_form .wp_pingxx_submit { 69 | display: block; 70 | min-width: 120px; 71 | margin: 16px auto; 72 | padding: 2px; 73 | text-align: center; 74 | font-weight: normal; 75 | font-size: 16px; 76 | line-height: 2; 77 | vertical-align: top; 78 | cursor: pointer; 79 | border: none; 80 | color: #fff; 81 | background-color: #35c8e6; 82 | white-space: nowrap; 83 | outline-style: none; 84 | } 85 | .wp_pingxx_form .wp_pingxx_submit:hover, 86 | .wp_pingxx_form .wp_pingxx_submit:active { 87 | background-color: #05a8d6; 88 | } -------------------------------------------------------------------------------- /pingpp/assets/img/logo-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/assets/img/logo-16x16.png -------------------------------------------------------------------------------- /pingpp/assets/js/admin_main.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 'use strict'; 3 | 4 | $(function () { 5 | function get_hash() { 6 | if(window.location.hash) { 7 | return window.location.hash.substring(1); 8 | } else { 9 | return 'pingpp-keys'; 10 | } 11 | } 12 | 13 | $('#' + get_hash() + '-settings-tab').addClass('tab-content').show(); 14 | 15 | $('.nav-tab-wrapper').children( '.nav-tab' ).each( function(index) { 16 | if($(this).data('tab-id') == get_hash() ) { 17 | $(this).addClass('nav-tab-active'); 18 | } 19 | }); 20 | 21 | $('.ppp-nav-tab').click( function() { 22 | var tab_id = $(this).data('tab-id'); 23 | 24 | $('.tab-content').hide().removeClass('tab-content'); 25 | $('#' + tab_id + '-settings-tab').addClass('tab-content').show(); 26 | }); 27 | 28 | $('.nav-tab').click( function() { 29 | $(this).parent().children( '.nav-tab' ).each( function(index) { 30 | $(this).removeClass('nav-tab-active'); 31 | }); 32 | 33 | $(this).addClass('nav-tab-active'); 34 | }); 35 | 36 | $('#sc-settings-content form #submit').on('click', function() { 37 | //event.preventDefault(); 38 | $(this).closest('form').attr('action', 'options.php#' + get_hash() ); 39 | //$(this).closest('form').submit(); 40 | }); 41 | 42 | 43 | 44 | console.log('admin_main.js loaded'); 45 | }); 46 | }(jQuery)); 47 | -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_1.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_10.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_10.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_11.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_11.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_12.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_12.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_13.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_13.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_14.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_14.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_15.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_15.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_16.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_16.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_17.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_17.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_18.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_18.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_18.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_19.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_19.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_19.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_2.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_20.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_20.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_21.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_21.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_21.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_22.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_22.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_22.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_23.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_23.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_23.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_24.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_24.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_24.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_25.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_25.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_25.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_26.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_26.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_26.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_27.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_27.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_27.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_28.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_28.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_28.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_29.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_29.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_29.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_3.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_30.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_30.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_31.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_31.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_31.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_32.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_32.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_33.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_33.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_33.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_34.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_34.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_34.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_35.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_35.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_35.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_36.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_36.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_36.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_37.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_37.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_37.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_38.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_38.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_38.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_39.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_39.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_39.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_4.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_40.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_40.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_5.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_6.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_7.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_8.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_8.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_9.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/frame_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/frame_9.png -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_101_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_101_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_105_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_105_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_109_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_109_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_113_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_113_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_117_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_117_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_121_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_121_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_125_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_125_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_129_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_129_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_133_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_133_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_137_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_137_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_141_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_141_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_145_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_145_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_149_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_149_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_153_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_153_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_157_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_157_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_161_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_161_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_165_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_165_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_169_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_169_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_173_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_173_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_177_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_177_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_21_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_21_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_25_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_25_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_29_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_29_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_33_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_33_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_37_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_37_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_41_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_41_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_45_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_45_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_49_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_49_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_53_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_53_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_57_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_57_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_61_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_61_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_65_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_65_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_69_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_69_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_73_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_73_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_77_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_77_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_81_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_81_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_85_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_85_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_89_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_89_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_93_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_93_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_0/mask_97_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_0/mask_97_0.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_101_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_101_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_105_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_105_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_109_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_109_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_113_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_113_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_117_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_117_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_121_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_121_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_125_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_125_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_129_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_129_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_133_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_133_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_137_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_137_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_141_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_141_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_145_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_145_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_149_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_149_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_153_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_153_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_157_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_157_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_161_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_161_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_165_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_165_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_169_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_169_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_173_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_173_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_177_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_177_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_21_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_21_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_25_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_25_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_29_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_29_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_33_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_33_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_37_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_37_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_41_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_41_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_45_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_45_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_49_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_49_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_53_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_53_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_57_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_57_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_61_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_61_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_65_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_65_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_69_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_69_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_73_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_73_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_77_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_77_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_81_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_81_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_85_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_85_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_89_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_89_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_93_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_93_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_1/mask_97_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_1/mask_97_1.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_101_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_101_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_105_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_105_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_109_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_109_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_113_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_113_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_117_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_117_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_121_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_121_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_125_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_125_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_129_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_129_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_133_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_133_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_137_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_137_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_141_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_141_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_145_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_145_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_149_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_149_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_153_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_153_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_157_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_157_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_161_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_161_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_165_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_165_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_169_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_169_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_173_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_173_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_177_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_177_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_21_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_21_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_25_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_25_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_29_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_29_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_33_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_33_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_37_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_37_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_41_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_41_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_45_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_45_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_49_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_49_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_53_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_53_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_57_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_57_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_61_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_61_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_65_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_65_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_69_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_69_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_73_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_73_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_77_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_77_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_81_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_81_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_85_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_85_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_89_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_89_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_93_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_93_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_2/mask_97_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_2/mask_97_2.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_101_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_101_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_105_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_105_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_109_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_109_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_113_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_113_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_117_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_117_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_121_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_121_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_125_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_125_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_129_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_129_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_133_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_133_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_137_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_137_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_141_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_141_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_145_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_145_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_149_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_149_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_153_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_153_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_157_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_157_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_161_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_161_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_165_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_165_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_169_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_169_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_173_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_173_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_177_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_177_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_21_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_21_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_25_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_25_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_29_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_29_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_33_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_33_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_37_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_37_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_41_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_41_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_45_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_45_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_49_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_49_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_53_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_53_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_57_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_57_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_61_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_61_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_65_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_65_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_69_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_69_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_73_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_73_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_77_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_77_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_81_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_81_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_85_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_85_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_89_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_89_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_93_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_93_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_3/mask_97_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_3/mask_97_3.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_101_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_101_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_105_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_105_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_109_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_109_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_113_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_113_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_117_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_117_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_121_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_121_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_125_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_125_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_129_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_129_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_133_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_133_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_137_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_137_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_141_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_141_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_145_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_145_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_149_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_149_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_153_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_153_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_157_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_157_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_161_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_161_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_165_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_165_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_169_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_169_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_173_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_173_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_177_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_177_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_21_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_21_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_25_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_25_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_29_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_29_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_33_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_33_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_37_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_37_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_41_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_41_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_45_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_45_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_49_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_49_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_53_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_53_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_57_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_57_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_61_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_61_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_65_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_65_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_69_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_69_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_73_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_73_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_77_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_77_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_81_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_81_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_85_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_85_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_89_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_89_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_93_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_93_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_4/mask_97_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_4/mask_97_4.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_101_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_101_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_105_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_105_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_109_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_109_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_113_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_113_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_117_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_117_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_121_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_121_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_125_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_125_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_129_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_129_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_133_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_133_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_137_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_137_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_141_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_141_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_145_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_145_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_149_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_149_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_153_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_153_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_157_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_157_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_161_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_161_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_165_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_165_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_169_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_169_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_173_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_173_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_177_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_177_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_21_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_21_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_25_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_25_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_29_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_29_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_33_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_33_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_37_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_37_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_41_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_41_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_45_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_45_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_49_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_49_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_53_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_53_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_57_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_57_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_61_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_61_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_65_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_65_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_69_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_69_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_73_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_73_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_77_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_77_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_81_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_81_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_85_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_85_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_89_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_89_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_93_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_93_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_5/mask_97_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_5/mask_97_5.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_101_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_101_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_105_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_105_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_109_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_109_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_113_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_113_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_117_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_117_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_121_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_121_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_125_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_125_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_129_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_129_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_133_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_133_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_137_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_137_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_141_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_141_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_145_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_145_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_149_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_149_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_153_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_153_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_157_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_157_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_161_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_161_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_165_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_165_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_169_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_169_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_173_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_173_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_177_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_177_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_21_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_21_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_25_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_25_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_29_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_29_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_33_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_33_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_37_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_37_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_41_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_41_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_45_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_45_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_49_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_49_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_53_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_53_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_57_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_57_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_61_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_61_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_65_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_65_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_69_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_69_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_73_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_73_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_77_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_77_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_81_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_81_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_85_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_85_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_89_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_89_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_93_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_93_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_6/mask_97_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_6/mask_97_6.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_101_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_101_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_105_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_105_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_109_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_109_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_113_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_113_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_117_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_117_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_121_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_121_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_125_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_125_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_129_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_129_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_133_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_133_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_137_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_137_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_141_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_141_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_145_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_145_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_149_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_149_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_153_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_153_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_157_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_157_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_161_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_161_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_165_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_165_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_169_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_169_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_173_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_173_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_177_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_177_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_21_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_21_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_25_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_25_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_29_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_29_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_33_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_33_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_37_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_37_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_41_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_41_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_45_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_45_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_49_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_49_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_53_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_53_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_57_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_57_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_61_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_61_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_65_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_65_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_69_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_69_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_73_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_73_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_77_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_77_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_81_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_81_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_85_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_85_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_89_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_89_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_93_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_93_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/cache/mask_7/mask_97_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingpp/classes/phpqrcode/cache/mask_7/mask_97_7.dat -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/qrconfig.php: -------------------------------------------------------------------------------- 1 | 10 | * 11 | * PHP QR Code is distributed under LGPL 3 12 | * Copyright (C) 2010 Dominik Dzienia 13 | * 14 | * This library is free software; you can redistribute it and/or 15 | * modify it under the terms of the GNU Lesser General Public 16 | * License as published by the Free Software Foundation; either 17 | * version 3 of the License, or any later version. 18 | * 19 | * This library is distributed in the hope that it will be useful, 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 22 | * Lesser General Public License for more details. 23 | * 24 | * You should have received a copy of the GNU Lesser General Public 25 | * License along with this library; if not, write to the Free Software 26 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 27 | */ 28 | 29 | // Encoding modes 30 | 31 | define('QR_MODE_NUL', -1); 32 | define('QR_MODE_NUM', 0); 33 | define('QR_MODE_AN', 1); 34 | define('QR_MODE_8', 2); 35 | define('QR_MODE_KANJI', 3); 36 | define('QR_MODE_STRUCTURE', 4); 37 | 38 | // Levels of error correction. 39 | 40 | define('QR_ECLEVEL_L', 0); 41 | define('QR_ECLEVEL_M', 1); 42 | define('QR_ECLEVEL_Q', 2); 43 | define('QR_ECLEVEL_H', 3); 44 | 45 | // Supported output formats 46 | 47 | define('QR_FORMAT_TEXT', 0); 48 | define('QR_FORMAT_PNG', 1); 49 | 50 | class qrstr { 51 | public static function set(&$srctab, $x, $y, $repl, $replLen = false) { 52 | $srctab[$y] = substr_replace($srctab[$y], ($replLen !== false)?substr($repl,0,$replLen):$repl, $x, ($replLen !== false)?$replLen:strlen($repl)); 53 | } 54 | } -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/qrlib.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * PHP QR Code is distributed under LGPL 3 11 | * Copyright (C) 2010 Dominik Dzienia 12 | * 13 | * This library is free software; you can redistribute it and/or 14 | * modify it under the terms of the GNU Lesser General Public 15 | * License as published by the Free Software Foundation; either 16 | * version 3 of the License, or any later version. 17 | * 18 | * This library is distributed in the hope that it will be useful, 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21 | * Lesser General Public License for more details. 22 | * 23 | * You should have received a copy of the GNU Lesser General Public 24 | * License along with this library; if not, write to the Free Software 25 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 26 | */ 27 | 28 | $QR_BASEDIR = dirname(__FILE__).DIRECTORY_SEPARATOR; 29 | 30 | // Required libs 31 | 32 | include $QR_BASEDIR."qrconst.php"; 33 | include $QR_BASEDIR."qrconfig.php"; 34 | include $QR_BASEDIR."qrtools.php"; 35 | include $QR_BASEDIR."qrspec.php"; 36 | include $QR_BASEDIR."qrimage.php"; 37 | include $QR_BASEDIR."qrinput.php"; 38 | include $QR_BASEDIR."qrbitstream.php"; 39 | include $QR_BASEDIR."qrsplit.php"; 40 | include $QR_BASEDIR."qrrscode.php"; 41 | include $QR_BASEDIR."qrmask.php"; 42 | include $QR_BASEDIR."qrencode.php"; 43 | 44 | -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/tools/merge.bat: -------------------------------------------------------------------------------- 1 | php ./merge.php 2 | pause -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/tools/merge.php: -------------------------------------------------------------------------------- 1 | 12 | * 13 | * This library is free software; you can redistribute it and/or 14 | * modify it under the terms of the GNU Lesser General Public 15 | * License as published by the Free Software Foundation; either 16 | * version 3 of the License, or any later version. 17 | * 18 | * This library is distributed in the hope that it will be useful, 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21 | * Lesser General Public License for more details. 22 | * 23 | * You should have received a copy of the GNU Lesser General Public 24 | * License along with this library; if not, write to the Free Software 25 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 26 | */ 27 | 28 | $QR_BASEDIR = dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR; 29 | $QR_TOOLSDIR = dirname(__FILE__).DIRECTORY_SEPARATOR; 30 | 31 | $outputFile = $QR_BASEDIR.'phpqrcode.php'; 32 | 33 | // Required libs 34 | 35 | $fileList = array( 36 | $QR_BASEDIR.'qrconst.php', 37 | $QR_TOOLSDIR.'merged_config.php', 38 | $QR_BASEDIR.'qrtools.php', 39 | $QR_BASEDIR.'qrspec.php', 40 | $QR_BASEDIR.'qrimage.php', 41 | $QR_BASEDIR.'qrinput.php', 42 | $QR_BASEDIR.'qrbitstream.php', 43 | $QR_BASEDIR.'qrsplit.php', 44 | $QR_BASEDIR.'qrrscode.php', 45 | $QR_BASEDIR.'qrmask.php', 46 | $QR_BASEDIR.'qrencode.php' 47 | ); 48 | 49 | $headerFile = $QR_TOOLSDIR.'merged_header.php'; 50 | $versionFile = $QR_BASEDIR.'VERSION'; 51 | 52 | $outputCode = ''; 53 | 54 | foreach($fileList as $fileName) { 55 | $outputCode .= "\n\n".'//---- '.basename($fileName).' -----------------------------'."\n\n"; 56 | $anotherCode = file_get_contents($fileName); 57 | $anotherCode = preg_replace ('/^<\?php/', '', $anotherCode); 58 | $anotherCode = preg_replace ('/\?>\*$/', '', $anotherCode); 59 | $outputCode .= "\n\n".$anotherCode."\n\n"; 60 | } 61 | 62 | $versionDataEx = explode("\n", file_get_contents($versionFile)); 63 | 64 | $outputContents = file_get_contents($headerFile); 65 | $outputContents .= "\n\n/*\n * Version: ".trim($versionDataEx[0])."\n * Build: ".trim($versionDataEx[1])."\n */\n\n"; 66 | $outputContents .= $outputCode; 67 | 68 | file_put_contents($outputFile, $outputContents); 69 | 70 | -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/tools/merge.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | php ./merge.php -------------------------------------------------------------------------------- /pingpp/classes/phpqrcode/tools/merged_config.php: -------------------------------------------------------------------------------- 1 | 20 | * 21 | * This library is free software; you can redistribute it and/or 22 | * modify it under the terms of the GNU Lesser General Public 23 | * License as published by the Free Software Foundation; either 24 | * version 3 of the License, or any later version. 25 | * 26 | * This library is distributed in the hope that it will be useful, 27 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 28 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 29 | * Lesser General Public License for more details. 30 | * 31 | * You should have received a copy of the GNU Lesser General Public 32 | * License along with this library; if not, write to the Free Software 33 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 34 | */ 35 | 36 | -------------------------------------------------------------------------------- /pingpp/classes/pingpp_wp_pay.php: -------------------------------------------------------------------------------- 1 | _includes(); 21 | 22 | // 注册设置 23 | add_action( 'init', array( $this, 'register_settings' ), 0 ); 24 | 25 | add_action( 'init', array( $this, 'init' ), 1 ); 26 | } 27 | 28 | public function register_settings() { 29 | global $ppp_options; 30 | 31 | $ppp_options = new Pingpp_Wp_Pay_Settings_Extended( 'ppp_settings' ); 32 | } 33 | 34 | public function init() { 35 | Pingpp_Wp_Pay_Scripts::get_instance(); 36 | Pingpp_Wp_Pay_Shortcodes::get_instance(); 37 | 38 | if ( is_admin() ) { 39 | Pingpp_Wp_Pay_Admin::get_instance(); 40 | Pingpp_Wp_Pay_Notices::get_instance(); 41 | } else { 42 | Pingpp_Wp_Pay_Functions::get_instance(); 43 | } 44 | } 45 | 46 | public static function get_instance() { 47 | if ( null == self::$instance ) { 48 | self::$instance = new self; 49 | } 50 | 51 | return self::$instance; 52 | } 53 | 54 | public static function activate() { 55 | update_option( 'ppp_show_admin_install_notice', 1 ); 56 | } 57 | 58 | private function _includes() { 59 | include_once( PINGPP_WP_PAY_PLUGIN_DIR . 'classes/mm_settings.php' ); 60 | include_once( PINGPP_WP_PAY_PLUGIN_DIR . 'classes/mm_settings_output.php' ); 61 | include_once( PINGPP_WP_PAY_PLUGIN_DIR . 'classes/pingpp_wp_pay_settings_extended.php' ); 62 | include_once( PINGPP_WP_PAY_PLUGIN_DIR . 'classes/pingpp_wp_pay_scripts.php' ); 63 | include_once( PINGPP_WP_PAY_PLUGIN_DIR . 'classes/pingpp_wp_pay_shortcodes.php' ); 64 | 65 | // 管理界面 66 | include_once( PINGPP_WP_PAY_PLUGIN_DIR . 'classes/pingpp_wp_pay_admin.php' ); 67 | include_once( PINGPP_WP_PAY_PLUGIN_DIR . 'classes/pingpp_wp_pay_notices.php' ); 68 | 69 | // 公共界面 70 | include_once( PINGPP_WP_PAY_PLUGIN_DIR . 'classes/pingpp_wp_pay_functions.php' ); 71 | } 72 | 73 | public static function get_plugin_title() { 74 | return 'Ping++ 支付集成插件'; 75 | } 76 | 77 | public static function get_plugin_menu_title() { 78 | return 'Ping++'; 79 | } 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /pingpp/classes/pingpp_wp_pay_admin.php: -------------------------------------------------------------------------------- 1 | add_setting( 'always_enqueue', 1 ); 29 | $ppp_options->add_setting( 'selectable', 0 ); 30 | $ppp_options->add_setting( 'show_channel_alipay_pc_direct', 1 ); 31 | $ppp_options->add_setting( 'show_channel_wx_pub_qr', 1 ); 32 | $ppp_options->add_setting( 'show_channel_upacp_pc', 0 ); 33 | $ppp_options->add_setting( 'show_channel_cp_b2b', 0 ); 34 | $ppp_options->add_setting( 'button_name', '去支付' ); 35 | $ppp_options->add_setting( 'shortcode_name', 'pingpp' ); 36 | $ppp_options->add_setting( 'success_redirect_url', site_url() ); 37 | 38 | add_option( 'ppp_set_defaults', 1 ); 39 | } 40 | 41 | // 设置管理后台的标签 42 | public function set_admin_tabs( $tabs ) { 43 | global $ppp_options; 44 | 45 | $tabs = array( 46 | 'pingpp-keys' => 'Ping++ Keys', 47 | 'default' => '默认设置', 48 | ); 49 | 50 | $tabs = apply_filters( 'ppp_admin_tabs', $tabs ); 51 | 52 | $ppp_options->set_tabs( $tabs ); 53 | } 54 | 55 | // 设置插件菜单 56 | public function add_plugin_admin_menu() { 57 | 58 | global $ppp_base_class; 59 | 60 | // 创建顶级菜单 61 | $this->plugin_screen_hook_suffix[] = add_menu_page( 62 | $ppp_base_class->get_plugin_title() . ' ' .'设置', 63 | $ppp_base_class->get_plugin_menu_title(), 64 | 'manage_options', 65 | $ppp_base_class->plugin_slug, 66 | array( $this, 'display_plugin_admin_page' ), 67 | PINGPP_WP_PAY_PLUGIN_URL. 'assets/img/logo-16x16.png' 68 | ); 69 | 70 | // 创建子菜单 71 | /* 72 | $this->plugin_screen_hook_suffix[] = add_submenu_page( 73 | // ... 74 | ); 75 | */ 76 | } 77 | 78 | public function viewing_this_plugin() { 79 | 80 | $screen = get_current_screen(); 81 | 82 | if ( ! empty( $this->plugin_screen_hook_suffix ) && in_array( $screen->id, $this->plugin_screen_hook_suffix ) ) { 83 | return true; 84 | } 85 | 86 | return false; 87 | } 88 | 89 | // 显示插件的管理模版 90 | public function display_plugin_admin_page() { 91 | include_once( PINGPP_WP_PAY_PLUGIN_DIR . 'views/admin-main.php' ); 92 | } 93 | 94 | public static function get_instance() { 95 | 96 | if ( null == self::$instance ) { 97 | self::$instance = new self; 98 | } 99 | 100 | return self::$instance; 101 | } 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /pingpp/classes/pingpp_wp_pay_notices.php: -------------------------------------------------------------------------------- 1 | viewing_this_plugin() ) { 21 | delete_option( 'ppp_show_admin_install_notice' ); 22 | return; 23 | } 24 | 25 | if( 'plugins' == get_current_screen()->id ) { 26 | include_once( PINGPP_WP_PAY_PLUGIN_DIR . 'views/admin-notice-install.php' ); 27 | } 28 | } 29 | 30 | public static function get_instance() { 31 | 32 | if ( null == self::$instance ) { 33 | self::$instance = new self; 34 | } 35 | 36 | return self::$instance; 37 | } 38 | } 39 | } -------------------------------------------------------------------------------- /pingpp/classes/pingpp_wp_pay_scripts.php: -------------------------------------------------------------------------------- 1 | post_content, '['.$ppp_options->get_setting_value('shortcode_name') ) ) 32 | || ( null !== $ppp_options->get_setting_value( 'always_enqueue' ) ) ) { 33 | wp_enqueue_style( $ppp_base_class->plugin_slug . '_public' ); 34 | break; 35 | } 36 | } 37 | 38 | return $posts; 39 | } 40 | 41 | public function enqueue_public_styles() { 42 | 43 | global $ppp_options, $ppp_base_class; 44 | 45 | if ( null === $ppp_options->get_setting_value( 'disable_css' ) ) { 46 | wp_register_style( $ppp_base_class->plugin_slug . '_public', PINGPP_WP_PAY_PLUGIN_URL . 'assets/css/public_main.css', array() ); 47 | } 48 | } 49 | 50 | public function enqueue_admin_styles() { 51 | 52 | global $ppp_base_class; 53 | 54 | if ( Pingpp_Wp_Pay_Admin::get_instance()->viewing_this_plugin() ) { 55 | wp_enqueue_style( $ppp_base_class->plugin_slug .'_toggle_switch', PINGPP_WP_PAY_PLUGIN_URL . 'assets/css/vendor/toggle_switch.css', array() ); 56 | wp_enqueue_style( $ppp_base_class->plugin_slug .'_admin_styles', PINGPP_WP_PAY_PLUGIN_URL . 'assets/css/admin_main.css', array( $ppp_base_class->plugin_slug .'_toggle_switch' ) ); 57 | } 58 | 59 | wp_enqueue_script( $ppp_base_class->plugin_slug . '_admin', PINGPP_WP_PAY_PLUGIN_URL . 'assets/js/admin_main.js', array(), false, true ); 60 | } 61 | 62 | public static function get_instance() { 63 | if ( null == self::$instance ) { 64 | self::$instance = new self; 65 | } 66 | 67 | return self::$instance; 68 | } 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /pingpp/classes/pingpp_wp_pay_settings_extended.php: -------------------------------------------------------------------------------- 1 | '; 28 | return; 29 | } 30 | 31 | // Default classes 32 | if( null === $classes ) { 33 | $classes = 'switch-light switch-candy switch-candy-blue'; 34 | } 35 | 36 | $value = $this->get_setting_value( $id ); 37 | 38 | $checked = ( ! empty( $value ) ? checked( 1, $value, false ) : '' ); 39 | 40 | $html = '
'; 41 | $html .= '
'; 52 | 53 | echo $html; 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /pingpp/pingpp.php: -------------------------------------------------------------------------------- 1 | =5.3.3", 19 | "ext-curl": "*", 20 | "ext-json": "*", 21 | "ext-mbstring": "*" 22 | }, 23 | "require-dev": { 24 | }, 25 | "autoload": { 26 | "psr-4": { "Pingpp\\" : "lib/" } 27 | }, 28 | "extra": { 29 | "branch-alias": { 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /pingpp/sdk/example/event.php: -------------------------------------------------------------------------------- 1 | 'charge.succeeded')); 19 | echo $evts; 20 | -------------------------------------------------------------------------------- /pingpp/sdk/example/pay.php: -------------------------------------------------------------------------------- 1 | 'http://example.com/success', 39 | 'cancel_url' => 'http://example.com/cancel' 40 | ); 41 | break; 42 | case 'bfb_wap': 43 | $extra = array( 44 | 'result_url' => 'http://example.com/result', 45 | 'bfb_login' => true 46 | ); 47 | break; 48 | case 'upacp_wap': 49 | $extra = array( 50 | 'result_url' => 'http://example.com/result' 51 | ); 52 | break; 53 | case 'wx_pub': 54 | $extra = array( 55 | 'open_id' => 'openidxxxxxxxxxxxx' 56 | ); 57 | break; 58 | case 'wx_pub_qr': 59 | $extra = array( 60 | 'product_id' => 'Productid' 61 | ); 62 | break; 63 | case 'yeepay_wap': 64 | $extra = array( 65 | 'product_category' => '1', 66 | 'identity_id'=> 'your identity_id', 67 | 'identity_type' => 1, 68 | 'terminal_type' => 1, 69 | 'terminal_id'=>'your terminal_id', 70 | 'user_ua'=>'your user_ua', 71 | 'result_url'=>'http://example.com/result' 72 | ); 73 | break; 74 | case 'jdpay_wap': 75 | $extra = array( 76 | 'success_url' => 'http://example.com/success', 77 | 'fail_url'=> 'http://example.com/fail', 78 | 'token' => 'dsafadsfasdfadsjuyhfnhujkijunhaf' 79 | ); 80 | break; 81 | } 82 | 83 | // 设置 API Key 84 | \Pingpp\Pingpp::setApiKey($api_key); 85 | try { 86 | $ch = \Pingpp\Charge::create( 87 | array( 88 | 'subject' => 'Your Subject', 89 | 'body' => 'Your Body', 90 | 'amount' => $amount, 91 | 'order_no' => $orderNo, 92 | 'currency' => 'cny', 93 | 'extra' => $extra, 94 | 'channel' => $channel, 95 | 'client_ip' => $_SERVER['REMOTE_ADDR'], 96 | 'app' => array('id' => $app_id) 97 | ) 98 | ); 99 | echo $ch; 100 | } catch (\Pingpp\Error\Base $e) { 101 | // 捕获报错信息 102 | if ($e->getHttpStatus() != NULL) { 103 | header('Status: ' . $e->getHttpStatus()); 104 | echo $e->getHttpBody(); 105 | } else { 106 | echo $e->getMessage(); 107 | } 108 | } 109 | -------------------------------------------------------------------------------- /pingpp/sdk/example/pingpp_rsa_public_key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy0d0QxZFYeHXGeWWneib 3 | 4Q0jUFjj4ro7bMnIJ8DjZ4w2NtLJi8p1mcFMbrIS5g95U5FUBCfAZXFb2QIaJfft 4 | BByCQRbon7Jb97XoTP6kfk65tLz8Q9Cank1Ah/qivPIY0aNwvq8stedq9rcuJ6OQ 5 | ncbfQ1217/Za50vKotYa+MEcFo9Y65biEmzq7BZeNYzuU4dGrPaCi917cfwNa8ey 6 | ZSpoIOBe8e5JGOtZKCfgsgfecbXxdh6jq8Qn6mmrJILapEdxlj4xfzBzAuM3snqt 7 | 5XnDzzFWlI5Z+4lhyZr7eFVmnQSqn1HWt4VPzz/EWvxP8Rkvy89XuRXBAiO3/7Ur 8 | 8wIDAQAB 9 | -----END PUBLIC KEY----- -------------------------------------------------------------------------------- /pingpp/sdk/example/redenvelope.php: -------------------------------------------------------------------------------- 1 | 'Your Subject', 20 | 'body' => 'Your Body', 21 | 'amount' => 100, 22 | 'order_no' => date('YmdHis') . (microtime(true) % 1) * 1000 . mt_rand(0, 9999), 23 | 'currency' => 'cny', 24 | 'extra' => array( 25 | 'nick_name' => 'Nick Name', 26 | 'send_name' => 'Send Name' 27 | ), 28 | 'recipient' => 'Openid', 29 | 'channel' => 'wx_pub', 30 | 'app' => array('id' => $app_id), 31 | 'description' => 'Your Description' 32 | ) 33 | ); 34 | echo $red; 35 | } catch (\Pingpp\Error\Base $e) { 36 | header('Status: ' . $e->getHttpStatus()); 37 | echo($e->getHttpBody()); 38 | } 39 | -------------------------------------------------------------------------------- /pingpp/sdk/example/refund.php: -------------------------------------------------------------------------------- 1 | refunds->create( 14 | array( 15 | 'amount' => 1, 16 | 'description' => 'Your Descripton' 17 | ) 18 | ); 19 | echo $re; -------------------------------------------------------------------------------- /pingpp/sdk/example/retrieve.php: -------------------------------------------------------------------------------- 1 | 100, 20 | 'order_no' => date('YmdHis') . (microtime(true) % 1) * 1000 . mt_rand(0, 9999), 21 | 'currency' => 'cny', 22 | 'channel' => 'wx_pub', 23 | 'app' => array('id' => $app_id), 24 | 'type' => 'b2c', 25 | 'recipient' => 'o9zpMs9jIaLynQY9N6yxcZ', 26 | 'description' => 'testing', 27 | 'extra' => array('user_name' => 'User Name', 'force_check' => false) 28 | ) 29 | ); 30 | echo $tr; 31 | } catch (\Pingpp\Error\Base $e) { 32 | header('Status: ' . $e->getHttpStatus()); 33 | echo($e->getHttpBody()); 34 | } 35 | -------------------------------------------------------------------------------- /pingpp/sdk/example/webhooks.php: -------------------------------------------------------------------------------- 1 | _values), array_keys($properties)); 16 | // Don't unset, but rather set to null so we send up '' for deletion. 17 | foreach ($removed as $k) { 18 | $this->$k = null; 19 | } 20 | 21 | foreach ($properties as $k => $v) { 22 | $this->$k = $v; 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /pingpp/sdk/lib/Card.php: -------------------------------------------------------------------------------- 1 | _save($options); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /pingpp/sdk/lib/Collection.php: -------------------------------------------------------------------------------- 1 | extractPathAndUpdateParams($params); 10 | 11 | list($response, $opts) = $this->_request('get', $url, $params, $opts); 12 | return Util\Util::convertToPingppObject($response, $opts); 13 | } 14 | 15 | public function create($params = null, $opts = null) 16 | { 17 | list($url, $params) = $this->extractPathAndUpdateParams($params); 18 | 19 | list($response, $opts) = $this->_request('post', $url, $params, $opts); 20 | return Util\Util::convertToPingppObject($response, $opts); 21 | } 22 | 23 | public function retrieve($id, $params = null, $opts = null) 24 | { 25 | list($url, $params) = $this->extractPathAndUpdateParams($params); 26 | 27 | $id = Util\Util::utf8($id); 28 | $extn = urlencode($id); 29 | list($response, $opts) = $this->_request( 30 | 'get', 31 | "$url/$extn", 32 | $params, 33 | $opts 34 | ); 35 | return Util\Util::convertToPingppObject($response, $opts); 36 | } 37 | 38 | private function extractPathAndUpdateParams($params) 39 | { 40 | $url = parse_url($this->url); 41 | if (!isset($url['path'])) { 42 | throw new Error\Api("Could not parse list url into parts: $url"); 43 | } 44 | 45 | if (isset($url['query'])) { 46 | // If the URL contains a query param, parse it out into $params so they 47 | // don't interact weirdly with each other. 48 | $query = array(); 49 | parse_str($url['query'], $query); 50 | // PHP 5.2 doesn't support the ?: operator 51 | $params = array_merge($params ? $params : array(), $query); 52 | } 53 | 54 | return array($url['path'], $params); 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /pingpp/sdk/lib/Customer.php: -------------------------------------------------------------------------------- 1 | _save($options); 48 | } 49 | 50 | /** 51 | * @param array|null $params 52 | * @param array|string|null $opts 53 | * 54 | * @return Customer The deleted customer. 55 | */ 56 | public function delete($params = null, $opts = null) 57 | { 58 | return $this->_delete($params, $opts); 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /pingpp/sdk/lib/Error/Api.php: -------------------------------------------------------------------------------- 1 | httpStatus = $httpStatus; 15 | $this->httpBody = $httpBody; 16 | $this->jsonBody = $jsonBody; 17 | } 18 | 19 | public function getHttpStatus() 20 | { 21 | return $this->httpStatus; 22 | } 23 | 24 | public function getHttpBody() 25 | { 26 | return $this->httpBody; 27 | } 28 | 29 | public function getJsonBody() 30 | { 31 | return $this->jsonBody; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /pingpp/sdk/lib/Error/Channel.php: -------------------------------------------------------------------------------- 1 | errcode = $errcode; 13 | $this->param = $param; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /pingpp/sdk/lib/Error/InvalidRequest.php: -------------------------------------------------------------------------------- 1 | param = $param; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /pingpp/sdk/lib/Error/RateLimit.php: -------------------------------------------------------------------------------- 1 | _save($options); 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /pingpp/sdk/lib/Refund.php: -------------------------------------------------------------------------------- 1 | _save($opts); 38 | } 39 | } -------------------------------------------------------------------------------- /pingpp/sdk/lib/SingletonApiResource.php: -------------------------------------------------------------------------------- 1 | refresh(); 12 | return $instance; 13 | } 14 | 15 | /** 16 | * @param SingletonApiResource $class 17 | * @return string The endpoint associated with this singleton class. 18 | */ 19 | public static function classUrl() 20 | { 21 | $base = static::className(); 22 | return "/v1/${base}"; 23 | } 24 | 25 | /** 26 | * @return string The endpoint associated with this singleton API resource. 27 | */ 28 | public function instanceUrl() 29 | { 30 | return static::classUrl(); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /pingpp/sdk/lib/SmsCode.php: -------------------------------------------------------------------------------- 1 | _delete($params, $opts); 43 | } 44 | 45 | /** 46 | * @param array|string|null $opts 47 | * 48 | * @return Source The saved source. 49 | */ 50 | public function save($opts = null) 51 | { 52 | return $this->_save($opts); 53 | } 54 | } -------------------------------------------------------------------------------- /pingpp/sdk/lib/Token.php: -------------------------------------------------------------------------------- 1 | apiKey = $key; 15 | $this->headers = $headers; 16 | } 17 | 18 | /** 19 | * Unpacks an options array and merges it into the existing RequestOptions 20 | * object. 21 | * @param array|string|null $options a key => value array 22 | * 23 | * @return RequestOptions 24 | */ 25 | public function merge($options) 26 | { 27 | $other_options = self::parse($options); 28 | if ($other_options->apiKey === null) { 29 | $other_options->apiKey = $this->apiKey; 30 | } 31 | $other_options->headers = array_merge($this->headers, $other_options->headers); 32 | return $other_options; 33 | } 34 | 35 | /** 36 | * Unpacks an options array into an RequestOptions object 37 | * @param array|string|null $options a key => value array 38 | * 39 | * @return RequestOptions 40 | */ 41 | public static function parse($options) 42 | { 43 | if ($options instanceof self) { 44 | return $options; 45 | } 46 | 47 | if (is_null($options)) { 48 | return new RequestOptions(null, array()); 49 | } 50 | 51 | if (is_string($options)) { 52 | return new RequestOptions($options, array()); 53 | } 54 | 55 | if (is_array($options)) { 56 | $headers = array(); 57 | $key = null; 58 | if (array_key_exists('api_key', $options)) { 59 | $key = $options['api_key']; 60 | } 61 | if (array_key_exists('pingpp_version', $options)) { 62 | $headers['Pingpp-Version'] = $options['pingpp_version']; 63 | } 64 | return new RequestOptions($key, $headers); 65 | } 66 | 67 | $message = 'The second argument to Pingpp API method calls is an ' 68 | . 'optional per-request apiKey, which must be a string, or ' 69 | . 'per-request options, which must be an array. (HINT: you can set ' 70 | . 'a global apiKey by "Pingpp::setApiKey()")'; 71 | throw new Error\Api($message); 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /pingpp/sdk/lib/Util/Set.php: -------------------------------------------------------------------------------- 1 | _elts = array(); 15 | foreach ($members as $item) { 16 | $this->_elts[$item] = true; 17 | } 18 | } 19 | 20 | public function includes($elt) 21 | { 22 | return isset($this->_elts[$elt]); 23 | } 24 | 25 | public function add($elt) 26 | { 27 | $this->_elts[$elt] = true; 28 | } 29 | 30 | public function discard($elt) 31 | { 32 | unset($this->_elts[$elt]); 33 | } 34 | 35 | public function toArray() 36 | { 37 | return array_keys($this->_elts); 38 | } 39 | 40 | public function getIterator() 41 | { 42 | return new ArrayIterator($this->toArray()); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /pingpp/views/admin-main-tab-default.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 |
7 |
8 | 9 | 查看 shortcode 例子 10 | 11 | description( 'Shortcode 属性会覆盖默认设置' ); ?> 12 |
13 | 14 |
15 | 17 | textbox( 'shortcode_name', 'regular-text' ); ?> 19 |
20 | 21 |
22 | 24 | textbox( 'button_name', 'regular-text' ); 26 | $ppp_options->description( '支付按钮的文本' );?> 27 |
28 | 29 |
30 | 31 | textbox( 'success_redirect_url', 'regular-text' ); 33 | $ppp_options->description( '支付成功后, 跳转到的地址' ); 34 | ?> 35 |
36 | 37 |
38 | 39 | selectbox( 'default_channel', array( 41 | '支付宝即时到账' => 'alipay_pc_direct', 42 | '微信公众号扫码' => 'wx_pub_qr', 43 | '银联网关支付' => 'upacp_pc', 44 | '企业网银支付' =>'cp_b2b') 45 | ); 46 | $ppp_options->description( '默认使用的支付渠道' ); 47 | ?> 48 |
49 | 50 |
51 | 52 | checkbox( 'always_enqueue' ); ?> 53 | 在每个页面加载插件所需脚本 54 |
55 | 56 |
57 | 58 | checkbox( 'selectable' ); ?> 59 | 允许用户选择支付方式 60 |
61 | 62 |
63 | 64 | checkbox( 'show_channel_alipay_pc_direct' ); ?>支付宝即时到账 65 | checkbox( 'show_channel_wx_pub_qr' ); ?>微信公众号扫码 66 | checkbox( 'show_channel_upacp_pc' ); ?>银联网关支付 67 | checkbox( 'show_channel_cp_b2b' ); ?>企业网银支付 68 |
69 | 70 | 71 | 72 |
73 | -------------------------------------------------------------------------------- /pingpp/views/admin-main-tab-pingpp-keys.php: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 |
8 |
9 | 10 | checkbox( 'live_mode' ); ?> Live/Test模式 (勾选时产生真实的交易) 11 |
12 | 13 |
14 | 16 | textbox( 'app_id', 'regular-text' ); ?> 17 |
18 | 19 |
20 | 22 | textbox( 'test_secret_key', 'regular-text' ); ?> 23 |
24 | 25 |
26 | 28 | textbox( 'live_secret_key', 'regular-text' ); ?> 29 |
30 |
31 | 32 | -------------------------------------------------------------------------------- /pingpp/views/admin-main.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 | 9 |
10 |
11 | 12 |

13 | 14 | 23 | 24 |
25 |
26 | get_option() ); 28 | $ppp_options->load_template( PINGPP_WP_PAY_PLUGIN_DIR . 'views/admin-main-tab-pingpp-keys.php' ); 29 | $ppp_options->load_template( PINGPP_WP_PAY_PLUGIN_DIR . 'views/admin-main-tab-default.php' ); 30 | 31 | 32 | do_action( 'ppp_admin_tab_content' ); 33 | 34 | submit_button(); 35 | ?> 36 |
37 |
38 |
39 | 40 |
41 |
42 | -------------------------------------------------------------------------------- /pingpp/views/admin-notice-install.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 15 | 16 |
17 |

18 | get_plugin_title() . '已成功安装'; ?> 19 | 开始配置Ping++ Keys 20 | 隐藏 21 |

22 |
23 | -------------------------------------------------------------------------------- /pingpp/views/pay-pc.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /pingxx-wp-plugin-screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingxx-wp-plugin-screenshot-1.png -------------------------------------------------------------------------------- /pingxx-wp-plugin-screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingxx-wp-plugin-screenshot-2.png -------------------------------------------------------------------------------- /pingxx-wp-plugin-screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PingPlusPlus/pingpp-wordpress/4f5b239265e2840ea2b35649b7ff8d2ca3351e77/pingxx-wp-plugin-screenshot-3.png --------------------------------------------------------------------------------