diff --git a/composer.json b/composer.json index 3cce643b66d..9061efb3bfe 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ "mobiledetect/mobiledetectlib": "2.8.3", "phpoffice/phpexcel": "1.8.1", "restler/framework": "^3.0", - "tecnick.com/tcpdf": "6.2.6", + "tecnickcom/tcpdf": "6.2.6", "raven/raven": "^0.12.0", "firephp/firephp-core": "^0.4.0" }, diff --git a/composer.lock b/composer.lock index 9b2eb93c792..99bf8d6fa10 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "hash": "1c6ca041da94484642adcbde492ad50b", + "hash": "335eb7bd5c2eb116fd2da80b4f48e857", "packages": [ { "name": "ccampbell/chromephp", @@ -422,7 +422,7 @@ "time": "2015-08-04 07:52:49" }, { - "name": "tecnick.com/tcpdf", + "name": "tecnickcom/tcpdf", "version": "6.2.6", "source": { "type": "git", @@ -482,7 +482,6 @@ "pdf417", "qrcode" ], - "abandoned": "tecnickcom/tcpdf", "time": "2015-01-28 18:51:40" } ], diff --git a/dev/dolibarr_changes.txt b/dev/dolibarr_changes.txt index 9d449070a5f..f761bc940db 100644 --- a/dev/dolibarr_changes.txt +++ b/dev/dolibarr_changes.txt @@ -69,7 +69,7 @@ Add tcpdi.php Add tcpdi_parser.php and replace: require_once(dirname(__FILE__).'/include/tcpdf_filters.php'); with: -require_once(dirname(__FILE__).'/../tecnick.com/tcpdf/include/tcpdf_filters.php'); +require_once(dirname(__FILE__).'/../tecnickcom/tcpdf/include/tcpdf_filters.php'); diff --git a/dev/test/testtcpdf.php b/dev/test/testtcpdf.php index 6b600c630d3..ad67bce8af9 100755 --- a/dev/test/testtcpdf.php +++ b/dev/test/testtcpdf.php @@ -27,8 +27,8 @@ * @since 2008-03-04 */ -require_once('../../htdocs/includes/tecnick.com/tcpdf/config/tcpdf_config.php'); -require_once('../../htdocs/includes/tecnick.com/tcpdf/tcpdf.php'); +require_once('../../htdocs/includes/tecnickcom/tcpdf/config/tcpdf_config.php'); +require_once('../../htdocs/includes/tecnickcom/tcpdf/tcpdf.php'); // create new PDF document $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); diff --git a/dev/test/testutf.php b/dev/test/testutf.php index f60f9d195a3..cb83f431b93 100644 --- a/dev/test/testutf.php +++ b/dev/test/testutf.php @@ -47,8 +47,8 @@ print 'Files has been created. Check its name from your explorer'."\n"; * @since 2008-09-15 */ -require_once('../../htdocs/includes/tecnick.com/tcpdf/config/tcpdf_config.php'); -require_once('../../htdocs/includes/tecnick.com/tcpdf/tcpdf.php'); +require_once('../../htdocs/includes/tecnickcom/tcpdf/config/tcpdf_config.php'); +require_once('../../htdocs/includes/tecnickcom/tcpdf/tcpdf.php'); // create new PDF document $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); diff --git a/htdocs/filefunc.inc.php b/htdocs/filefunc.inc.php index 5a492940cf1..7abc17b49cd 100644 --- a/htdocs/filefunc.inc.php +++ b/htdocs/filefunc.inc.php @@ -208,7 +208,7 @@ define('MAIN_DB_PREFIX',$dolibarr_main_db_prefix); // Path to root libraries if (! defined('ADODB_PATH')) { define('ADODB_PATH', (!isset($dolibarr_lib_ADODB_PATH))?DOL_DOCUMENT_ROOT.'/includes/adodbtime/':(empty($dolibarr_lib_ADODB_PATH)?'':$dolibarr_lib_ADODB_PATH.'/')); } if (! defined('FPDF_PATH')) { define('FPDF_PATH', (empty($dolibarr_lib_FPDF_PATH))?DOL_DOCUMENT_ROOT.'/includes/fpdf/':$dolibarr_lib_FPDF_PATH.'/'); } // Used only for package that can't include tcpdf -if (! defined('TCPDF_PATH')) { define('TCPDF_PATH', (empty($dolibarr_lib_TCPDF_PATH))?DOL_DOCUMENT_ROOT.'/includes/tecnick.com/tcpdf/':$dolibarr_lib_TCPDF_PATH.'/'); } +if (! defined('TCPDF_PATH')) { define('TCPDF_PATH', (empty($dolibarr_lib_TCPDF_PATH))?DOL_DOCUMENT_ROOT.'/includes/tecnickcom/tcpdf/':$dolibarr_lib_TCPDF_PATH.'/'); } if (! defined('FPDI_PATH')) { define('FPDI_PATH', (empty($dolibarr_lib_FPDI_PATH))?DOL_DOCUMENT_ROOT.'/includes/fpdfi/':$dolibarr_lib_FPDI_PATH.'/'); } if (! defined('TCPDI_PATH')) { define('TCPDI_PATH', (empty($dolibarr_lib_TCPDI_PATH))?DOL_DOCUMENT_ROOT.'/includes/tcpdi/':$dolibarr_lib_TCPDI_PATH.'/'); } if (! defined('NUSOAP_PATH')) { define('NUSOAP_PATH', (!isset($dolibarr_lib_NUSOAP_PATH))?DOL_DOCUMENT_ROOT.'/includes/nusoap/lib/':(empty($dolibarr_lib_NUSOAP_PATH)?'':$dolibarr_lib_NUSOAP_PATH.'/')); } diff --git a/htdocs/includes/tcpdi/tcpdi_parser.php b/htdocs/includes/tcpdi/tcpdi_parser.php index 3059bc2c479..c97d9c74dac 100644 --- a/htdocs/includes/tcpdi/tcpdi_parser.php +++ b/htdocs/includes/tcpdi/tcpdi_parser.php @@ -48,7 +48,7 @@ */ // include class for decoding filters -require_once(dirname(__FILE__).'/../tecnick.com/tcpdf/include/tcpdf_filters.php'); +require_once(dirname(__FILE__).'/../tecnickcom/tcpdf/include/tcpdf_filters.php'); if (!defined ('PDF_TYPE_NULL')) define ('PDF_TYPE_NULL', 0); diff --git a/htdocs/includes/tecnick.com/tcpdf/CHANGELOG.TXT b/htdocs/includes/tecnickcom/tcpdf/CHANGELOG.TXT similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/CHANGELOG.TXT rename to htdocs/includes/tecnickcom/tcpdf/CHANGELOG.TXT diff --git a/htdocs/includes/tecnick.com/tcpdf/LICENSE.TXT b/htdocs/includes/tecnickcom/tcpdf/LICENSE.TXT similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/LICENSE.TXT rename to htdocs/includes/tecnickcom/tcpdf/LICENSE.TXT diff --git a/htdocs/includes/tecnick.com/tcpdf/README.TXT b/htdocs/includes/tecnickcom/tcpdf/README.TXT similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/README.TXT rename to htdocs/includes/tecnickcom/tcpdf/README.TXT diff --git a/htdocs/includes/tecnick.com/tcpdf/composer.json b/htdocs/includes/tecnickcom/tcpdf/composer.json similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/composer.json rename to htdocs/includes/tecnickcom/tcpdf/composer.json diff --git a/htdocs/includes/tecnick.com/tcpdf/config/tcpdf_config.php b/htdocs/includes/tecnickcom/tcpdf/config/tcpdf_config.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/config/tcpdf_config.php rename to htdocs/includes/tecnickcom/tcpdf/config/tcpdf_config.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_1d_html.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_1d_html.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_1d_html.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_1d_html.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_1d_png.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_1d_png.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_1d_png.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_1d_png.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_1d_svg.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_1d_svg.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_1d_svg.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_1d_svg.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_1d_svgi.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_1d_svgi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_1d_svgi.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_1d_svgi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_datamatrix_html.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_datamatrix_html.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_datamatrix_html.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_datamatrix_html.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_datamatrix_png.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_datamatrix_png.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_datamatrix_png.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_datamatrix_png.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_datamatrix_svg.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_datamatrix_svg.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_datamatrix_svg.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_datamatrix_svg.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_datamatrix_svgi.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_datamatrix_svgi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_datamatrix_svgi.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_datamatrix_svgi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_pdf417_html.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_pdf417_html.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_pdf417_html.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_pdf417_html.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_pdf417_png.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_pdf417_png.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_pdf417_png.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_pdf417_png.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_pdf417_svg.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_pdf417_svg.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_pdf417_svg.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_pdf417_svg.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_pdf417_svgi.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_pdf417_svgi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_pdf417_svgi.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_pdf417_svgi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_qrcode_html.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_qrcode_html.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_qrcode_html.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_qrcode_html.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_qrcode_png.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_qrcode_png.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_qrcode_png.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_qrcode_png.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_qrcode_svg.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_qrcode_svg.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_qrcode_svg.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_qrcode_svg.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_qrcode_svgi.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_qrcode_svgi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/example_2d_qrcode_svgi.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/example_2d_qrcode_svgi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/tcpdf_barcodes_1d_include.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/tcpdf_barcodes_1d_include.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/tcpdf_barcodes_1d_include.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/tcpdf_barcodes_1d_include.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/barcodes/tcpdf_barcodes_2d_include.php b/htdocs/includes/tecnickcom/tcpdf/examples/barcodes/tcpdf_barcodes_2d_include.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/barcodes/tcpdf_barcodes_2d_include.php rename to htdocs/includes/tecnickcom/tcpdf/examples/barcodes/tcpdf_barcodes_2d_include.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/config/tcpdf_config_alt.php b/htdocs/includes/tecnickcom/tcpdf/examples/config/tcpdf_config_alt.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/config/tcpdf_config_alt.php rename to htdocs/includes/tecnickcom/tcpdf/examples/config/tcpdf_config_alt.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/data/cert/tcpdf.crt b/htdocs/includes/tecnickcom/tcpdf/examples/data/cert/tcpdf.crt similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/data/cert/tcpdf.crt rename to htdocs/includes/tecnickcom/tcpdf/examples/data/cert/tcpdf.crt diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/data/cert/tcpdf.fdf b/htdocs/includes/tecnickcom/tcpdf/examples/data/cert/tcpdf.fdf similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/data/cert/tcpdf.fdf rename to htdocs/includes/tecnickcom/tcpdf/examples/data/cert/tcpdf.fdf diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/data/cert/tcpdf.p12 b/htdocs/includes/tecnickcom/tcpdf/examples/data/cert/tcpdf.p12 similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/data/cert/tcpdf.p12 rename to htdocs/includes/tecnickcom/tcpdf/examples/data/cert/tcpdf.p12 diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/data/chapter_demo_1.txt b/htdocs/includes/tecnickcom/tcpdf/examples/data/chapter_demo_1.txt similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/data/chapter_demo_1.txt rename to htdocs/includes/tecnickcom/tcpdf/examples/data/chapter_demo_1.txt diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/data/chapter_demo_2.txt b/htdocs/includes/tecnickcom/tcpdf/examples/data/chapter_demo_2.txt similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/data/chapter_demo_2.txt rename to htdocs/includes/tecnickcom/tcpdf/examples/data/chapter_demo_2.txt diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/data/table_data_demo.txt b/htdocs/includes/tecnickcom/tcpdf/examples/data/table_data_demo.txt similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/data/table_data_demo.txt rename to htdocs/includes/tecnickcom/tcpdf/examples/data/table_data_demo.txt diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/data/utf8test.txt b/htdocs/includes/tecnickcom/tcpdf/examples/data/utf8test.txt similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/data/utf8test.txt rename to htdocs/includes/tecnickcom/tcpdf/examples/data/utf8test.txt diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_001.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_001.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_001.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_001.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_002.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_002.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_002.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_002.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_003.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_003.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_003.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_003.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_004.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_004.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_004.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_004.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_005.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_005.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_005.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_005.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_006.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_006.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_006.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_006.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_007.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_007.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_007.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_007.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_008.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_008.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_008.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_008.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_009.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_009.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_009.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_009.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_010.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_010.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_010.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_010.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_011.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_011.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_011.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_011.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_012.pdf b/htdocs/includes/tecnickcom/tcpdf/examples/example_012.pdf similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_012.pdf rename to htdocs/includes/tecnickcom/tcpdf/examples/example_012.pdf diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_012.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_012.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_012.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_012.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_013.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_013.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_013.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_013.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_014.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_014.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_014.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_014.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_015.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_015.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_015.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_015.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_016.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_016.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_016.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_016.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_017.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_017.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_017.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_017.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_018.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_018.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_018.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_018.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_019.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_019.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_019.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_019.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_020.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_020.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_020.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_020.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_021.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_021.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_021.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_021.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_022.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_022.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_022.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_022.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_023.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_023.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_023.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_023.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_024.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_024.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_024.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_024.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_025.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_025.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_025.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_025.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_026.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_026.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_026.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_026.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_027.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_027.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_027.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_027.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_028.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_028.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_028.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_028.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_029.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_029.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_029.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_029.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_030.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_030.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_030.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_030.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_031.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_031.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_031.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_031.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_032.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_032.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_032.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_032.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_033.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_033.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_033.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_033.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_034.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_034.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_034.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_034.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_035.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_035.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_035.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_035.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_036.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_036.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_036.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_036.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_037.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_037.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_037.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_037.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_038.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_038.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_038.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_038.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_039.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_039.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_039.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_039.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_040.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_040.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_040.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_040.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_041.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_041.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_041.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_041.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_042.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_042.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_042.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_042.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_043.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_043.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_043.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_043.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_044.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_044.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_044.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_044.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_045.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_045.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_045.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_045.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_046.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_046.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_046.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_046.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_047.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_047.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_047.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_047.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_048.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_048.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_048.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_048.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_049.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_049.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_049.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_049.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_050.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_050.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_050.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_050.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_051.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_051.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_051.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_051.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_052.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_052.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_052.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_052.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_053.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_053.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_053.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_053.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_054.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_054.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_054.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_054.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_055.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_055.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_055.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_055.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_056.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_056.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_056.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_056.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_057.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_057.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_057.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_057.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_058.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_058.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_058.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_058.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_059.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_059.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_059.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_059.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_060.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_060.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_060.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_060.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_061.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_061.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_061.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_061.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_062.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_062.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_062.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_062.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_063.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_063.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_063.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_063.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_064.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_064.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_064.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_064.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/example_065.php b/htdocs/includes/tecnickcom/tcpdf/examples/example_065.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/example_065.php rename to htdocs/includes/tecnickcom/tcpdf/examples/example_065.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/_blank.png b/htdocs/includes/tecnickcom/tcpdf/examples/images/_blank.png similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/_blank.png rename to htdocs/includes/tecnickcom/tcpdf/examples/images/_blank.png diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/alpha.png b/htdocs/includes/tecnickcom/tcpdf/examples/images/alpha.png similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/alpha.png rename to htdocs/includes/tecnickcom/tcpdf/examples/images/alpha.png diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/image_demo.jpg b/htdocs/includes/tecnickcom/tcpdf/examples/images/image_demo.jpg similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/image_demo.jpg rename to htdocs/includes/tecnickcom/tcpdf/examples/images/image_demo.jpg diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/image_with_alpha.png b/htdocs/includes/tecnickcom/tcpdf/examples/images/image_with_alpha.png similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/image_with_alpha.png rename to htdocs/includes/tecnickcom/tcpdf/examples/images/image_with_alpha.png diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/img.png b/htdocs/includes/tecnickcom/tcpdf/examples/images/img.png similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/img.png rename to htdocs/includes/tecnickcom/tcpdf/examples/images/img.png diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/logo_example.gif b/htdocs/includes/tecnickcom/tcpdf/examples/images/logo_example.gif similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/logo_example.gif rename to htdocs/includes/tecnickcom/tcpdf/examples/images/logo_example.gif diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/logo_example.jpg b/htdocs/includes/tecnickcom/tcpdf/examples/images/logo_example.jpg similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/logo_example.jpg rename to htdocs/includes/tecnickcom/tcpdf/examples/images/logo_example.jpg diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/logo_example.png b/htdocs/includes/tecnickcom/tcpdf/examples/images/logo_example.png similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/logo_example.png rename to htdocs/includes/tecnickcom/tcpdf/examples/images/logo_example.png diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/tcpdf_box.ai b/htdocs/includes/tecnickcom/tcpdf/examples/images/tcpdf_box.ai similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/tcpdf_box.ai rename to htdocs/includes/tecnickcom/tcpdf/examples/images/tcpdf_box.ai diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/tcpdf_box.svg b/htdocs/includes/tecnickcom/tcpdf/examples/images/tcpdf_box.svg similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/tcpdf_box.svg rename to htdocs/includes/tecnickcom/tcpdf/examples/images/tcpdf_box.svg diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/tcpdf_cell.png b/htdocs/includes/tecnickcom/tcpdf/examples/images/tcpdf_cell.png similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/tcpdf_cell.png rename to htdocs/includes/tecnickcom/tcpdf/examples/images/tcpdf_cell.png diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/tcpdf_logo.jpg b/htdocs/includes/tecnickcom/tcpdf/examples/images/tcpdf_logo.jpg similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/tcpdf_logo.jpg rename to htdocs/includes/tecnickcom/tcpdf/examples/images/tcpdf_logo.jpg diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/tcpdf_signature.png b/htdocs/includes/tecnickcom/tcpdf/examples/images/tcpdf_signature.png similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/tcpdf_signature.png rename to htdocs/includes/tecnickcom/tcpdf/examples/images/tcpdf_signature.png diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/testsvg.svg b/htdocs/includes/tecnickcom/tcpdf/examples/images/testsvg.svg similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/testsvg.svg rename to htdocs/includes/tecnickcom/tcpdf/examples/images/testsvg.svg diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/images/tux.svg b/htdocs/includes/tecnickcom/tcpdf/examples/images/tux.svg similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/images/tux.svg rename to htdocs/includes/tecnickcom/tcpdf/examples/images/tux.svg diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/index.php b/htdocs/includes/tecnickcom/tcpdf/examples/index.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/index.php rename to htdocs/includes/tecnickcom/tcpdf/examples/index.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/afr.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/afr.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/afr.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/afr.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/ara.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/ara.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/ara.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/ara.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/aze.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/aze.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/aze.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/aze.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/bel.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/bel.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/bel.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/bel.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/bra.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/bra.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/bra.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/bra.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/bul.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/bul.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/bul.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/bul.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/cat.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/cat.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/cat.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/cat.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/ces.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/ces.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/ces.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/ces.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/chi.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/chi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/chi.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/chi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/cym.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/cym.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/cym.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/cym.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/dan.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/dan.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/dan.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/dan.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/eng.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/eng.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/eng.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/eng.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/est.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/est.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/est.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/est.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/eus.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/eus.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/eus.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/eus.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/far.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/far.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/far.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/far.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/fra.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/fra.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/fra.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/fra.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/ger.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/ger.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/ger.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/ger.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/gle.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/gle.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/gle.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/gle.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/glg.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/glg.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/glg.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/glg.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/hat.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/hat.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/hat.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/hat.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/heb.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/heb.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/heb.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/heb.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/hrv.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/hrv.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/hrv.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/hrv.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/hun.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/hun.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/hun.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/hun.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/hye.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/hye.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/hye.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/hye.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/ind.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/ind.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/ind.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/ind.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/ita.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/ita.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/ita.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/ita.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/jpn.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/jpn.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/jpn.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/jpn.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/kat.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/kat.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/kat.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/kat.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/kor.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/kor.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/kor.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/kor.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/mkd.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/mkd.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/mkd.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/mkd.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/mlt.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/mlt.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/mlt.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/mlt.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/msa.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/msa.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/msa.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/msa.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/nld.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/nld.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/nld.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/nld.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/nob.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/nob.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/nob.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/nob.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/pol.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/pol.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/pol.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/pol.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/por.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/por.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/por.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/por.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/ron.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/ron.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/ron.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/ron.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/rus.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/rus.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/rus.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/rus.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/slv.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/slv.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/slv.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/slv.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/spa.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/spa.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/spa.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/spa.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/sqi.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/sqi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/sqi.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/sqi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/srp.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/srp.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/srp.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/srp.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/swa.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/swa.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/swa.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/swa.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/swe.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/swe.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/swe.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/swe.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/ukr.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/ukr.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/ukr.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/ukr.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/urd.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/urd.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/urd.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/urd.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/yid.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/yid.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/yid.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/yid.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/lang/zho.php b/htdocs/includes/tecnickcom/tcpdf/examples/lang/zho.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/lang/zho.php rename to htdocs/includes/tecnickcom/tcpdf/examples/lang/zho.php diff --git a/htdocs/includes/tecnick.com/tcpdf/examples/tcpdf_include.php b/htdocs/includes/tecnickcom/tcpdf/examples/tcpdf_include.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/examples/tcpdf_include.php rename to htdocs/includes/tecnickcom/tcpdf/examples/tcpdf_include.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/ae_fonts_2.0/COPYING b/htdocs/includes/tecnickcom/tcpdf/fonts/ae_fonts_2.0/COPYING similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/ae_fonts_2.0/COPYING rename to htdocs/includes/tecnickcom/tcpdf/fonts/ae_fonts_2.0/COPYING diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/ae_fonts_2.0/ChangeLog b/htdocs/includes/tecnickcom/tcpdf/fonts/ae_fonts_2.0/ChangeLog similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/ae_fonts_2.0/ChangeLog rename to htdocs/includes/tecnickcom/tcpdf/fonts/ae_fonts_2.0/ChangeLog diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/ae_fonts_2.0/ChangeLog.9745.BAK b/htdocs/includes/tecnickcom/tcpdf/fonts/ae_fonts_2.0/ChangeLog.9745.BAK similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/ae_fonts_2.0/ChangeLog.9745.BAK rename to htdocs/includes/tecnickcom/tcpdf/fonts/ae_fonts_2.0/ChangeLog.9745.BAK diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/ae_fonts_2.0/README b/htdocs/includes/tecnickcom/tcpdf/fonts/ae_fonts_2.0/README similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/ae_fonts_2.0/README rename to htdocs/includes/tecnickcom/tcpdf/fonts/ae_fonts_2.0/README diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/aealarabiya.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/aealarabiya.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/aealarabiya.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/aealarabiya.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/aealarabiya.php b/htdocs/includes/tecnickcom/tcpdf/fonts/aealarabiya.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/aealarabiya.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/aealarabiya.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/aealarabiya.z b/htdocs/includes/tecnickcom/tcpdf/fonts/aealarabiya.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/aealarabiya.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/aealarabiya.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/aefurat.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/aefurat.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/aefurat.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/aefurat.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/aefurat.php b/htdocs/includes/tecnickcom/tcpdf/fonts/aefurat.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/aefurat.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/aefurat.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/aefurat.z b/htdocs/includes/tecnickcom/tcpdf/fonts/aefurat.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/aefurat.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/aefurat.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/cid0cs.php b/htdocs/includes/tecnickcom/tcpdf/fonts/cid0cs.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/cid0cs.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/cid0cs.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/cid0ct.php b/htdocs/includes/tecnickcom/tcpdf/fonts/cid0ct.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/cid0ct.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/cid0ct.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/cid0jp.php b/htdocs/includes/tecnickcom/tcpdf/fonts/cid0jp.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/cid0jp.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/cid0jp.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/cid0kr.php b/htdocs/includes/tecnickcom/tcpdf/fonts/cid0kr.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/cid0kr.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/cid0kr.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/courier.php b/htdocs/includes/tecnickcom/tcpdf/fonts/courier.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/courier.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/courier.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/courierb.php b/htdocs/includes/tecnickcom/tcpdf/fonts/courierb.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/courierb.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/courierb.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/courierbi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/courierbi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/courierbi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/courierbi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/courieri.php b/htdocs/includes/tecnickcom/tcpdf/fonts/courieri.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/courieri.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/courieri.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/AUTHORS b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/AUTHORS similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/AUTHORS rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/AUTHORS diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/BUGS b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/BUGS similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/BUGS rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/BUGS diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/LICENSE b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/LICENSE similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/LICENSE rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/LICENSE diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/NEWS b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/NEWS similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/NEWS rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/NEWS diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/README b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/README similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/README rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/README diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/langcover.txt b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/langcover.txt similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/langcover.txt rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/langcover.txt diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/status.txt b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/status.txt similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/status.txt rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/status.txt diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/unicover.txt b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/unicover.txt similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.33/unicover.txt rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.33/unicover.txt diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/AUTHORS b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/AUTHORS similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/AUTHORS rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/AUTHORS diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/BUGS b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/BUGS similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/BUGS rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/BUGS diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/LICENSE b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/LICENSE similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/LICENSE rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/LICENSE diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/NEWS b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/NEWS similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/NEWS rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/NEWS diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/README b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/README similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/README rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/README diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/langcover.txt b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/langcover.txt similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/langcover.txt rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/langcover.txt diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/status.txt b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/status.txt similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/status.txt rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/status.txt diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/unicover.txt b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/unicover.txt similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavu-fonts-ttf-2.34/unicover.txt rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavu-fonts-ttf-2.34/unicover.txt diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusans.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusans.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusans.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusans.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusans.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusans.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusans.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusans.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusans.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusans.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusans.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusans.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansb.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansb.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansb.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansb.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansb.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansb.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansb.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansb.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansb.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansb.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansb.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansb.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansbi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansbi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansbi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansbi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansbi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansbi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansbi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansbi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansbi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansbi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansbi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansbi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensed.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensed.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensed.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensed.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensed.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensed.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensed.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensed.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensed.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensed.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensed.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensed.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedb.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedb.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedb.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedb.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedb.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedb.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedb.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedb.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedb.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedb.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedb.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedb.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedbi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedbi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedbi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedbi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedbi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedbi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedbi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedbi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedbi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedbi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedbi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedbi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusanscondensedi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusanscondensedi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansextralight.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansextralight.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansextralight.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansextralight.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansextralight.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansextralight.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansextralight.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansextralight.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansextralight.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansextralight.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansextralight.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansextralight.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmono.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmono.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmono.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmono.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmono.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmono.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmono.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmono.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmono.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmono.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmono.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmono.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonob.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonob.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonob.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonob.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonob.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonob.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonob.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonob.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonob.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonob.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonob.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonob.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonobi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonobi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonobi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonobi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonobi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonobi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonobi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonobi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonobi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonobi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonobi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonobi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonoi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonoi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonoi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonoi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonoi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonoi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonoi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonoi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonoi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonoi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavusansmonoi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavusansmonoi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserif.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserif.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserif.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserif.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserif.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserif.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserif.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserif.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserif.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserif.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserif.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserif.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifb.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifb.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifb.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifb.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifb.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifb.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifb.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifb.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifb.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifb.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifb.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifb.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifbi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifbi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifbi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifbi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifbi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifbi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifbi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifbi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifbi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifbi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifbi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifbi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensed.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensed.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensed.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensed.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensed.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensed.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensed.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensed.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensed.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensed.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensed.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensed.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedb.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedb.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedb.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedb.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedb.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedb.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedb.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedb.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedb.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedb.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedb.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedb.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedbi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedbi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedbi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedbi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedbi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedbi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedbi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedbi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedbi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedbi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedbi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedbi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifcondensedi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifcondensedi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/dejavuserifi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/dejavuserifi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20100919/AUTHORS b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20100919/AUTHORS similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20100919/AUTHORS rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20100919/AUTHORS diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20100919/COPYING b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20100919/COPYING similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20100919/COPYING rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20100919/COPYING diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20100919/CREDITS b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20100919/CREDITS similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20100919/CREDITS rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20100919/CREDITS diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20100919/ChangeLog b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20100919/ChangeLog similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20100919/ChangeLog rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20100919/ChangeLog diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20100919/INSTALL b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20100919/INSTALL similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20100919/INSTALL rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20100919/INSTALL diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20100919/README b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20100919/README similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20100919/README rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20100919/README diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/AUTHORS b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/AUTHORS similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/AUTHORS rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/AUTHORS diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/COPYING b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/COPYING similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/COPYING rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/COPYING diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/CREDITS b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/CREDITS similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/CREDITS rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/CREDITS diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/ChangeLog b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/ChangeLog similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/ChangeLog rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/ChangeLog diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/ChangeLog.10070.BAK b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/ChangeLog.10070.BAK similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/ChangeLog.10070.BAK rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/ChangeLog.10070.BAK diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/INSTALL b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/INSTALL similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/INSTALL rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/INSTALL diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/README b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/README similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/README rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/README diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/TROUBLESHOOTING b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/TROUBLESHOOTING similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/TROUBLESHOOTING rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/TROUBLESHOOTING diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/USAGE b/htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/USAGE similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freefont-20120503/USAGE rename to htdocs/includes/tecnickcom/tcpdf/fonts/freefont-20120503/USAGE diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freemono.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freemono.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freemono.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freemono.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freemono.php b/htdocs/includes/tecnickcom/tcpdf/fonts/freemono.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freemono.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/freemono.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freemono.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freemono.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freemono.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freemono.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freemonob.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freemonob.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freemonob.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freemonob.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freemonob.php b/htdocs/includes/tecnickcom/tcpdf/fonts/freemonob.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freemonob.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/freemonob.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freemonob.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freemonob.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freemonob.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freemonob.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freemonobi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freemonobi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freemonobi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freemonobi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freemonobi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/freemonobi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freemonobi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/freemonobi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freemonobi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freemonobi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freemonobi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freemonobi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freemonoi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freemonoi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freemonoi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freemonoi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freemonoi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/freemonoi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freemonoi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/freemonoi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freemonoi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freemonoi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freemonoi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freemonoi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freesans.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freesans.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freesans.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freesans.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freesans.php b/htdocs/includes/tecnickcom/tcpdf/fonts/freesans.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freesans.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/freesans.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freesans.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freesans.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freesans.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freesans.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freesansb.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freesansb.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freesansb.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freesansb.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freesansb.php b/htdocs/includes/tecnickcom/tcpdf/fonts/freesansb.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freesansb.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/freesansb.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freesansb.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freesansb.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freesansb.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freesansb.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freesansbi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freesansbi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freesansbi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freesansbi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freesansbi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/freesansbi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freesansbi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/freesansbi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freesansbi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freesansbi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freesansbi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freesansbi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freesansi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freesansi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freesansi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freesansi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freesansi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/freesansi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freesansi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/freesansi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freesansi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freesansi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freesansi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freesansi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freeserif.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freeserif.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freeserif.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freeserif.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freeserif.php b/htdocs/includes/tecnickcom/tcpdf/fonts/freeserif.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freeserif.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/freeserif.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freeserif.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freeserif.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freeserif.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freeserif.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freeserifb.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freeserifb.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freeserifb.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freeserifb.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freeserifb.php b/htdocs/includes/tecnickcom/tcpdf/fonts/freeserifb.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freeserifb.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/freeserifb.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freeserifb.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freeserifb.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freeserifb.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freeserifb.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freeserifbi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freeserifbi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freeserifbi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freeserifbi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freeserifbi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/freeserifbi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freeserifbi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/freeserifbi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freeserifbi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freeserifbi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freeserifbi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freeserifbi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freeserifi.ctg.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freeserifi.ctg.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freeserifi.ctg.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freeserifi.ctg.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freeserifi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/freeserifi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freeserifi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/freeserifi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/freeserifi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/freeserifi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/freeserifi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/freeserifi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/helvetica.php b/htdocs/includes/tecnickcom/tcpdf/fonts/helvetica.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/helvetica.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/helvetica.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/helveticab.php b/htdocs/includes/tecnickcom/tcpdf/fonts/helveticab.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/helveticab.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/helveticab.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/helveticabi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/helveticabi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/helveticabi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/helveticabi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/helveticai.php b/htdocs/includes/tecnickcom/tcpdf/fonts/helveticai.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/helveticai.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/helveticai.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/hysmyeongjostdmedium.php b/htdocs/includes/tecnickcom/tcpdf/fonts/hysmyeongjostdmedium.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/hysmyeongjostdmedium.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/hysmyeongjostdmedium.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/kozgopromedium.php b/htdocs/includes/tecnickcom/tcpdf/fonts/kozgopromedium.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/kozgopromedium.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/kozgopromedium.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/kozminproregular.php b/htdocs/includes/tecnickcom/tcpdf/fonts/kozminproregular.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/kozminproregular.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/kozminproregular.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/msungstdlight.php b/htdocs/includes/tecnickcom/tcpdf/fonts/msungstdlight.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/msungstdlight.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/msungstdlight.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourier.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourier.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourier.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourier.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourier.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourier.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourier.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourier.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourierb.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourierb.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourierb.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourierb.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourierb.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourierb.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourierb.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourierb.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourierbi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourierbi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourierbi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourierbi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourierbi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourierbi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourierbi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourierbi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourieri.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourieri.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourieri.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourieri.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourieri.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourieri.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfacourieri.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfacourieri.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelvetica.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelvetica.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelvetica.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelvetica.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelvetica.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelvetica.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelvetica.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelvetica.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelveticab.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelveticab.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelveticab.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelveticab.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelveticab.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelveticab.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelveticab.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelveticab.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelveticabi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelveticabi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelveticabi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelveticabi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelveticabi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelveticabi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelveticabi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelveticabi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelveticai.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelveticai.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelveticai.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelveticai.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelveticai.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelveticai.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfahelveticai.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfahelveticai.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfasymbol.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfasymbol.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfasymbol.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfasymbol.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfasymbol.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfasymbol.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfasymbol.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfasymbol.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimes.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimes.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimes.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimes.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimes.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimes.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimes.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimes.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimesb.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimesb.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimesb.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimesb.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimesb.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimesb.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimesb.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimesb.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimesbi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimesbi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimesbi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimesbi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimesbi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimesbi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimesbi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimesbi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimesi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimesi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimesi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimesi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimesi.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimesi.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfatimesi.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfatimesi.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfazapfdingbats.php b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfazapfdingbats.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfazapfdingbats.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfazapfdingbats.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/pdfazapfdingbats.z b/htdocs/includes/tecnickcom/tcpdf/fonts/pdfazapfdingbats.z similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/pdfazapfdingbats.z rename to htdocs/includes/tecnickcom/tcpdf/fonts/pdfazapfdingbats.z diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/stsongstdlight.php b/htdocs/includes/tecnickcom/tcpdf/fonts/stsongstdlight.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/stsongstdlight.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/stsongstdlight.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/symbol.php b/htdocs/includes/tecnickcom/tcpdf/fonts/symbol.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/symbol.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/symbol.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/times.php b/htdocs/includes/tecnickcom/tcpdf/fonts/times.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/times.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/times.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/timesb.php b/htdocs/includes/tecnickcom/tcpdf/fonts/timesb.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/timesb.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/timesb.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/timesbi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/timesbi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/timesbi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/timesbi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/timesi.php b/htdocs/includes/tecnickcom/tcpdf/fonts/timesi.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/timesi.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/timesi.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/uni2cid_ac15.php b/htdocs/includes/tecnickcom/tcpdf/fonts/uni2cid_ac15.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/uni2cid_ac15.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/uni2cid_ac15.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/uni2cid_ag15.php b/htdocs/includes/tecnickcom/tcpdf/fonts/uni2cid_ag15.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/uni2cid_ag15.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/uni2cid_ag15.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/uni2cid_aj16.php b/htdocs/includes/tecnickcom/tcpdf/fonts/uni2cid_aj16.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/uni2cid_aj16.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/uni2cid_aj16.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/uni2cid_ak12.php b/htdocs/includes/tecnickcom/tcpdf/fonts/uni2cid_ak12.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/uni2cid_ak12.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/uni2cid_ak12.php diff --git a/htdocs/includes/tecnick.com/tcpdf/fonts/zapfdingbats.php b/htdocs/includes/tecnickcom/tcpdf/fonts/zapfdingbats.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/fonts/zapfdingbats.php rename to htdocs/includes/tecnickcom/tcpdf/fonts/zapfdingbats.php diff --git a/htdocs/includes/tecnick.com/tcpdf/include/barcodes/datamatrix.php b/htdocs/includes/tecnickcom/tcpdf/include/barcodes/datamatrix.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/include/barcodes/datamatrix.php rename to htdocs/includes/tecnickcom/tcpdf/include/barcodes/datamatrix.php diff --git a/htdocs/includes/tecnick.com/tcpdf/include/barcodes/pdf417.php b/htdocs/includes/tecnickcom/tcpdf/include/barcodes/pdf417.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/include/barcodes/pdf417.php rename to htdocs/includes/tecnickcom/tcpdf/include/barcodes/pdf417.php diff --git a/htdocs/includes/tecnick.com/tcpdf/include/barcodes/qrcode.php b/htdocs/includes/tecnickcom/tcpdf/include/barcodes/qrcode.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/include/barcodes/qrcode.php rename to htdocs/includes/tecnickcom/tcpdf/include/barcodes/qrcode.php diff --git a/htdocs/includes/tecnick.com/tcpdf/include/sRGB.icc b/htdocs/includes/tecnickcom/tcpdf/include/sRGB.icc similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/include/sRGB.icc rename to htdocs/includes/tecnickcom/tcpdf/include/sRGB.icc diff --git a/htdocs/includes/tecnick.com/tcpdf/include/tcpdf_colors.php b/htdocs/includes/tecnickcom/tcpdf/include/tcpdf_colors.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/include/tcpdf_colors.php rename to htdocs/includes/tecnickcom/tcpdf/include/tcpdf_colors.php diff --git a/htdocs/includes/tecnick.com/tcpdf/include/tcpdf_filters.php b/htdocs/includes/tecnickcom/tcpdf/include/tcpdf_filters.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/include/tcpdf_filters.php rename to htdocs/includes/tecnickcom/tcpdf/include/tcpdf_filters.php diff --git a/htdocs/includes/tecnick.com/tcpdf/include/tcpdf_font_data.php b/htdocs/includes/tecnickcom/tcpdf/include/tcpdf_font_data.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/include/tcpdf_font_data.php rename to htdocs/includes/tecnickcom/tcpdf/include/tcpdf_font_data.php diff --git a/htdocs/includes/tecnick.com/tcpdf/include/tcpdf_fonts.php b/htdocs/includes/tecnickcom/tcpdf/include/tcpdf_fonts.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/include/tcpdf_fonts.php rename to htdocs/includes/tecnickcom/tcpdf/include/tcpdf_fonts.php diff --git a/htdocs/includes/tecnick.com/tcpdf/include/tcpdf_images.php b/htdocs/includes/tecnickcom/tcpdf/include/tcpdf_images.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/include/tcpdf_images.php rename to htdocs/includes/tecnickcom/tcpdf/include/tcpdf_images.php diff --git a/htdocs/includes/tecnick.com/tcpdf/include/tcpdf_static.php b/htdocs/includes/tecnickcom/tcpdf/include/tcpdf_static.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/include/tcpdf_static.php rename to htdocs/includes/tecnickcom/tcpdf/include/tcpdf_static.php diff --git a/htdocs/includes/tecnick.com/tcpdf/tcpdf.php b/htdocs/includes/tecnickcom/tcpdf/tcpdf.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/tcpdf.php rename to htdocs/includes/tecnickcom/tcpdf/tcpdf.php diff --git a/htdocs/includes/tecnick.com/tcpdf/tcpdf_autoconfig.php b/htdocs/includes/tecnickcom/tcpdf/tcpdf_autoconfig.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/tcpdf_autoconfig.php rename to htdocs/includes/tecnickcom/tcpdf/tcpdf_autoconfig.php diff --git a/htdocs/includes/tecnick.com/tcpdf/tcpdf_barcodes_1d.php b/htdocs/includes/tecnickcom/tcpdf/tcpdf_barcodes_1d.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/tcpdf_barcodes_1d.php rename to htdocs/includes/tecnickcom/tcpdf/tcpdf_barcodes_1d.php diff --git a/htdocs/includes/tecnick.com/tcpdf/tcpdf_barcodes_2d.php b/htdocs/includes/tecnickcom/tcpdf/tcpdf_barcodes_2d.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/tcpdf_barcodes_2d.php rename to htdocs/includes/tecnickcom/tcpdf/tcpdf_barcodes_2d.php diff --git a/htdocs/includes/tecnick.com/tcpdf/tcpdf_import.php b/htdocs/includes/tecnickcom/tcpdf/tcpdf_import.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/tcpdf_import.php rename to htdocs/includes/tecnickcom/tcpdf/tcpdf_import.php diff --git a/htdocs/includes/tecnick.com/tcpdf/tcpdf_parser.php b/htdocs/includes/tecnickcom/tcpdf/tcpdf_parser.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/tcpdf_parser.php rename to htdocs/includes/tecnickcom/tcpdf/tcpdf_parser.php diff --git a/htdocs/includes/tecnick.com/tcpdf/tools/.htaccess b/htdocs/includes/tecnickcom/tcpdf/tools/.htaccess similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/tools/.htaccess rename to htdocs/includes/tecnickcom/tcpdf/tools/.htaccess diff --git a/htdocs/includes/tecnick.com/tcpdf/tools/convert_fonts_examples.txt b/htdocs/includes/tecnickcom/tcpdf/tools/convert_fonts_examples.txt similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/tools/convert_fonts_examples.txt rename to htdocs/includes/tecnickcom/tcpdf/tools/convert_fonts_examples.txt diff --git a/htdocs/includes/tecnick.com/tcpdf/tools/tcpdf_addfont.php b/htdocs/includes/tecnickcom/tcpdf/tools/tcpdf_addfont.php similarity index 100% rename from htdocs/includes/tecnick.com/tcpdf/tools/tcpdf_addfont.php rename to htdocs/includes/tecnickcom/tcpdf/tools/tcpdf_addfont.php