repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
DATA-DOG/DataDogAuditBundle
https://github.com/DATA-DOG/DataDogAuditBundle/blob/c85c0cf8596181376a9f00e44da9950572067743/src/EventListener/AuditListener.php
src/EventListener/AuditListener.php
<?php namespace DataDog\AuditBundle\EventListener; use DataDog\AuditBundle\DBAL\Middleware\AuditFlushMiddleware; use DataDog\AuditBundle\Entity\Association; use DataDog\AuditBundle\Entity\AuditLog; use Doctrine\DBAL\Types\Type; use Doctrine\DBAL\Types\Types; use Doctrine\ORM\EntityManager; use Doctrine\ORM\EntityMana...
php
MIT
c85c0cf8596181376a9f00e44da9950572067743
2026-01-05T04:58:02.995658Z
false
DATA-DOG/DataDogAuditBundle
https://github.com/DATA-DOG/DataDogAuditBundle/blob/c85c0cf8596181376a9f00e44da9950572067743/src/Command/AuditLogDeleteOldLogsCommand.php
src/Command/AuditLogDeleteOldLogsCommand.php
<?php declare(strict_types=1); namespace DataDog\AuditBundle\Command; use Doctrine\DBAL\Connection; use Doctrine\DBAL\ParameterType; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output...
php
MIT
c85c0cf8596181376a9f00e44da9950572067743
2026-01-05T04:58:02.995658Z
false
DATA-DOG/DataDogAuditBundle
https://github.com/DATA-DOG/DataDogAuditBundle/blob/c85c0cf8596181376a9f00e44da9950572067743/tests/TestKernel.php
tests/TestKernel.php
<?php declare(strict_types=1); namespace DataDog\AuditBundle\Tests; use DataDog\AuditBundle\DataDogAuditBundle; use Doctrine\Bundle\DoctrineBundle\DoctrineBundle; use Psr\Log\NullLogger; use Symfony\Bundle\FrameworkBundle\FrameworkBundle; use Symfony\Bundle\SecurityBundle\SecurityBundle; use Symfony\Component\Config...
php
MIT
c85c0cf8596181376a9f00e44da9950572067743
2026-01-05T04:58:02.995658Z
false
DATA-DOG/DataDogAuditBundle
https://github.com/DATA-DOG/DataDogAuditBundle/blob/c85c0cf8596181376a9f00e44da9950572067743/tests/OrmTestCase.php
tests/OrmTestCase.php
<?php declare(strict_types=1); namespace DataDog\AuditBundle\Tests; use DataDog\AuditBundle\Tests\Entity\Tag; use Doctrine\Bundle\DoctrineBundle\Registry; use Doctrine\ORM\Tools\SchemaTool; use PHPUnit\Framework\TestCase; use Symfony\Component\HttpKernel\KernelInterface; abstract class OrmTestCase extends TestCase ...
php
MIT
c85c0cf8596181376a9f00e44da9950572067743
2026-01-05T04:58:02.995658Z
false
DATA-DOG/DataDogAuditBundle
https://github.com/DATA-DOG/DataDogAuditBundle/blob/c85c0cf8596181376a9f00e44da9950572067743/tests/Entity/Account.php
tests/Entity/Account.php
<?php declare(strict_types=1); namespace DataDog\AuditBundle\Tests\Entity; use Doctrine\DBAL\Types\Types; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity() * @ORM\Table() */ #[ORM\Entity] #[ORM\Table] class Account { /** * @ORM\Id() * @ORM\GeneratedValue() * @ORM\Column(type="integer") ...
php
MIT
c85c0cf8596181376a9f00e44da9950572067743
2026-01-05T04:58:02.995658Z
false
DATA-DOG/DataDogAuditBundle
https://github.com/DATA-DOG/DataDogAuditBundle/blob/c85c0cf8596181376a9f00e44da9950572067743/tests/Entity/Tag.php
tests/Entity/Tag.php
<?php declare(strict_types=1); namespace DataDog\AuditBundle\Tests\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; use Doctrine\DBAL\Types\Types; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity() * @ORM\Table() */ #[ORM\Entity] #[ORM\Table] class Tag { ...
php
MIT
c85c0cf8596181376a9f00e44da9950572067743
2026-01-05T04:58:02.995658Z
false
DATA-DOG/DataDogAuditBundle
https://github.com/DATA-DOG/DataDogAuditBundle/blob/c85c0cf8596181376a9f00e44da9950572067743/tests/Entity/Post.php
tests/Entity/Post.php
<?php declare(strict_types=1); namespace DataDog\AuditBundle\Tests\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; use Doctrine\DBAL\Types\Types; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity() * @ORM\Table() */ #[ORM\Entity] #[ORM\Table] class Post { ...
php
MIT
c85c0cf8596181376a9f00e44da9950572067743
2026-01-05T04:58:02.995658Z
false
DATA-DOG/DataDogAuditBundle
https://github.com/DATA-DOG/DataDogAuditBundle/blob/c85c0cf8596181376a9f00e44da9950572067743/tests/EventListener/AuditListenerTest.php
tests/EventListener/AuditListenerTest.php
<?php declare(strict_types=1); namespace DataDog\AuditBundle\Tests\EventListener; use DataDog\AuditBundle\Entity\AuditLog; use DataDog\AuditBundle\Tests\Entity\Post; use DataDog\AuditBundle\Tests\Entity\Tag; use DataDog\AuditBundle\Tests\OrmTestCase; use DataDog\AuditBundle\Tests\TestKernel; final class AuditListen...
php
MIT
c85c0cf8596181376a9f00e44da9950572067743
2026-01-05T04:58:02.995658Z
false
DATA-DOG/DataDogAuditBundle
https://github.com/DATA-DOG/DataDogAuditBundle/blob/c85c0cf8596181376a9f00e44da9950572067743/tests/EventListener/AuditListenerExtendsVersionTest.php
tests/EventListener/AuditListenerExtendsVersionTest.php
<?php declare(strict_types=1); namespace DataDog\AuditBundle\Tests\EventListener; use DataDog\AuditBundle\Entity\AuditLog; use DataDog\AuditBundle\Tests\Entity\Account; use DataDog\AuditBundle\Tests\OrmTestCase; use DataDog\AuditBundle\Tests\TestKernel; final class AuditListenerExtendsVersionTest extends OrmTestCas...
php
MIT
c85c0cf8596181376a9f00e44da9950572067743
2026-01-05T04:58:02.995658Z
false
DATA-DOG/DataDogAuditBundle
https://github.com/DATA-DOG/DataDogAuditBundle/blob/c85c0cf8596181376a9f00e44da9950572067743/config/services.php
config/services.php
<?php namespace Symfony\Component\DependencyInjection\Loader\Configurator; use DataDog\AuditBundle\Command\AuditLogDeleteOldLogsCommand; use DataDog\AuditBundle\DBAL\Middleware\AuditFlushMiddleware; use DataDog\AuditBundle\EventListener\AuditListener; use Doctrine\DBAL\Connection; use Doctrine\ORM\EntityManagerInterf...
php
MIT
c85c0cf8596181376a9f00e44da9950572067743
2026-01-05T04:58:02.995658Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/Resource/Indexer/Attribute.php
app/code/community/Catalin/SEO/Model/Resource/Indexer/Attribute.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/Resource/Attribute/Urlkey.php
app/code/community/Catalin/SEO/Model/Resource/Attribute/Urlkey.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/Enterprise/Catalog/Layer/Filter/Attribute.php
app/code/community/Catalin/SEO/Model/Enterprise/Catalog/Layer/Filter/Attribute.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/Enterprise/Catalog/Layer/Filter/Category.php
app/code/community/Catalin/SEO/Model/Enterprise/Catalog/Layer/Filter/Category.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/Indexer/Attribute.php
app/code/community/Catalin/SEO/Model/Indexer/Attribute.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/Catalog/Layer.php
app/code/community/Catalin/SEO/Model/Catalog/Layer.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/Catalog/Resource/Layer/Filter/Attribute.php
app/code/community/Catalin/SEO/Model/Catalog/Resource/Layer/Filter/Attribute.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/Catalog/Resource/Layer/Filter/Price.php
app/code/community/Catalin/SEO/Model/Catalog/Resource/Layer/Filter/Price.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/Catalog/Layer/Filter/Attribute.php
app/code/community/Catalin/SEO/Model/Catalog/Layer/Filter/Attribute.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/Catalog/Layer/Filter/Category.php
app/code/community/Catalin/SEO/Model/Catalog/Layer/Filter/Category.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/Catalog/Layer/Filter/Price.php
app/code/community/Catalin/SEO/Model/Catalog/Layer/Filter/Price.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/Catalog/Layer/Filter/Item.php
app/code/community/Catalin/SEO/Model/Catalog/Layer/Filter/Item.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/CatalogSearch/Layer.php
app/code/community/Catalin/SEO/Model/CatalogSearch/Layer.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/CatalogSearch/Layer/Filter/Attribute.php
app/code/community/Catalin/SEO/Model/CatalogSearch/Layer/Filter/Attribute.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Model/System/Config/Backend/Seo/Catalog.php
app/code/community/Catalin/SEO/Model/System/Config/Backend/Seo/Catalog.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Block/ConfigurableSwatches/Catalog/Layer/State/Swatch.php
app/code/community/Catalin/SEO/Block/ConfigurableSwatches/Catalog/Layer/State/Swatch.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Block/Enterprise/Catalog/Layer/Filter/Attribute.php
app/code/community/Catalin/SEO/Block/Enterprise/Catalog/Layer/Filter/Attribute.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Block/Enterprise/CatalogSearch/Layer/Filter/Attribute.php
app/code/community/Catalin/SEO/Block/Enterprise/CatalogSearch/Layer/Filter/Attribute.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Block/Catalog/Layer/State.php
app/code/community/Catalin/SEO/Block/Catalog/Layer/State.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Block/Catalog/Layer/Filter/Attribute.php
app/code/community/Catalin/SEO/Block/Catalog/Layer/Filter/Attribute.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Block/Catalog/Layer/Filter/Category.php
app/code/community/Catalin/SEO/Block/Catalog/Layer/Filter/Category.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Block/Catalog/Layer/Filter/Price.php
app/code/community/Catalin/SEO/Block/Catalog/Layer/Filter/Price.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Block/Catalog/Product/List/Toolbar.php
app/code/community/Catalin/SEO/Block/Catalog/Product/List/Toolbar.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Block/Catalog/Product/List/Pager.php
app/code/community/Catalin/SEO/Block/Catalog/Product/List/Pager.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Block/CatalogSearch/Layer/Filter/Attribute.php
app/code/community/Catalin/SEO/Block/CatalogSearch/Layer/Filter/Attribute.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Controller/Router.php
app/code/community/Catalin/SEO/Controller/Router.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrigh...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/controllers/ResultController.php
app/code/community/Catalin/SEO/controllers/ResultController.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/controllers/CategoryController.php
app/code/community/Catalin/SEO/controllers/CategoryController.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/Data.php
app/code/community/Catalin/SEO/Helper/Data.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/ConfigurableSwatches/Productlist.php
app/code/community/Catalin/SEO/Helper/ConfigurableSwatches/Productlist.php
<?php /** * Catalin Ciobanu * * NOTICE OF LICENSE * * This source file is subject to the MIT License (MIT) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/MIT * * @package Catalin_Seo * @copyrig...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xb3.php
app/code/community/Catalin/SEO/Helper/data/xb3.php
<?php $UTF8_TO_ASCII[0xb3] = array( 'Ci ','Xiang ','She ','Luo ','Qin ','Ying ','Chai ','Li ','Ze ','Xuan ','Lian ','Zhu ','Ze ','Xie ','Mang ','Xie ','Qi ','Rong ','Jian ','Meng ','Hao ','Ruan ','Huo ','Zhuo ','Jie ','Bin ','He ','Mie ','Fan ','Lei ','Jie ','La ','Mi ','Li ','Chun ','Li ','Qiu ','Nie ','Lu ','Du ','Xi...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xff.php
app/code/community/Catalin/SEO/Helper/data/xff.php
<?php $UTF8_TO_ASCII[0xff] = array( 'dae','daeg','daegg','daegs','daen','daenj','daenh','daed','dael','daelg','daelm','daelb','daels','daelt','daelp','daelh','daem','daeb','daebs','daes','daess','daeng','daej','daec','daek','daet','daep','daeh','dya','dyag','dyagg','dyags','dyan','dyanj','dyanh','dyad','dyal','dyalg','...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x8e.php
app/code/community/Catalin/SEO/Helper/data/x8e.php
<?php $UTF8_TO_ASCII[0x8e] = array( 'Di ','Zhuang ','Le ','Lang ','Chen ','Cong ','Li ','Xiu ','Qing ','Shuang ','Fan ','Tong ','Guan ','Ji ','Suo ','Lei ','Lu ','Liang ','Mi ','Lou ','Chao ','Su ','Ke ','Shu ','Tang ','Biao ','Lu ','Jiu ','Shu ','Zha ','Shu ','Zhang ','Men ','Mo ','Niao ','Yang ','Tiao ','Peng ','Zhu ...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x9c.php
app/code/community/Catalin/SEO/Helper/data/x9c.php
<?php $UTF8_TO_ASCII[0x9c] = array( 'Dang ','Ma ','Sha ','Dan ','Jue ','Li ','Fu ','Min ','Nuo ','Huo ','Kang ','Zhi ','Qi ','Kan ','Jie ','Fen ','E ','Ya ','Pi ','Zhe ','Yan ','Sui ','Zhuan ','Che ','Dun ','Pan ','Yan ','[?] ','Feng ','Fa ','Mo ','Zha ','Qu ','Yu ','Luo ','Tuo ','Tuo ','Di ','Zhai ','Zhen ','Ai ','Fei...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x32.php
app/code/community/Catalin/SEO/Helper/data/x32.php
<?php $UTF8_TO_ASCII[0x32] = array( '[?]','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x17.php
app/code/community/Catalin/SEO/Helper/data/x17.php
<?php $UTF8_TO_ASCII[0x17] = array( 'kka','kk','nu','no','ne','nee','ni','na','mu','mo','me','mee','mi','ma','yu','yo','ye','yee','yi','ya','ju','ju','jo','je','jee','ji','ji','ja','jju','jjo','jje','jjee','jji','jja','lu','lo','le','lee','li','la','dlu','dlo','dle','dlee','dli','dla','lhu','lho','lhe','lhee','lhi','lh...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x58.php
app/code/community/Catalin/SEO/Helper/data/x58.php
<?php $UTF8_TO_ASCII[0x58] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x4f.php
app/code/community/Catalin/SEO/Helper/data/x4f.php
<?php $UTF8_TO_ASCII[0x4f] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xce.php
app/code/community/Catalin/SEO/Helper/data/xce.php
<?php $UTF8_TO_ASCII[0xce] = array( 'nzup','nzurx','nzur','nzyt','nzyx','nzy','nzyp','nzyrx','nzyr','sit','six','si','sip','siex','sie','siep','sat','sax','sa','sap','suox','suo','suop','sot','sox','so','sop','sex','se','sep','sut','sux','su','sup','surx','sur','syt','syx','sy','syp','syrx','syr','ssit','ssix','ssi','s...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x8b.php
app/code/community/Catalin/SEO/Helper/data/x8b.php
<?php $UTF8_TO_ASCII[0x8b] = array( 'Zui ','Can ','Xu ','Hui ','Yin ','Qie ','Fen ','Pi ','Yue ','You ','Ruan ','Peng ','Ban ','Fu ','Ling ','Fei ','Qu ','[?] ','Nu ','Tiao ','Shuo ','Zhen ','Lang ','Lang ','Juan ','Ming ','Huang ','Wang ','Tun ','Zhao ','Ji ','Qi ','Ying ','Zong ','Wang ','Tong ','Lang ','[?] ','Meng ...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x11.php
app/code/community/Catalin/SEO/Helper/data/x11.php
<?php $UTF8_TO_ASCII[0x11] = array( 'k','kh','g','gh','ng','c','ch','j','jh','ny','nny','tt','tth','dd','ddh','nn','tt','th','d','dh','n','p','ph','b','bh','m','y','r','l','w','s','h','ll','a','[?]','i','ii','u','uu','e','[?]','o','au','[?]','aa','i','ii','u','uu','e','ai','[?]','[?]','[?]','N',"'",':','','[?]','[?]','...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xbf.php
app/code/community/Catalin/SEO/Helper/data/xbf.php
<?php $UTF8_TO_ASCII[0xbf] = array( 'Kui ','Si ','Liu ','Nao ','Heng ','Pie ','Sui ','Fan ','Qiao ','Quan ','Yang ','Tang ','Xiang ','Jue ','Jiao ','Zun ','Liao ','Jie ','Lao ','Dui ','Tan ','Zan ','Ji ','Jian ','Zhong ','Deng ','Ya ','Ying ','Dui ','Jue ','Nou ','Ti ','Pu ','Tie ','[?] ','[?] ','Ding ','Shan ','Kai ',...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x9f.php
app/code/community/Catalin/SEO/Helper/data/x9f.php
<?php $UTF8_TO_ASCII[0x9f] = array( 'Mang ','Zhu ','Utsubo ','Du ','Ji ','Xiao ','Ba ','Suan ','Ji ','Zhen ','Zhao ','Sun ','Ya ','Zhui ','Yuan ','Hu ','Gang ','Xiao ','Cen ','Pi ','Bi ','Jian ','Yi ','Dong ','Shan ','Sheng ','Xia ','Di ','Zhu ','Na ','Chi ','Gu ','Li ','Qie ','Min ','Bao ','Tiao ','Si ','Fu ','Ce ','B...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x61.php
app/code/community/Catalin/SEO/Helper/data/x61.php
<?php $UTF8_TO_ASCII[0x61] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x80.php
app/code/community/Catalin/SEO/Helper/data/x80.php
<?php $UTF8_TO_ASCII[0x80] = array( 'Po ','Feng ','Zhuan ','Fu ','She ','Ke ','Jiang ','Jiang ','Zhuan ','Wei ','Zun ','Xun ','Shu ','Dui ','Dao ','Xiao ','Ji ','Shao ','Er ','Er ','Er ','Ga ','Jian ','Shu ','Chen ','Shang ','Shang ','Mo ','Ga ','Chang ','Liao ','Xian ','Xian ','[?] ','Wang ','Wang ','You ','Liao ','Li...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x52.php
app/code/community/Catalin/SEO/Helper/data/x52.php
<?php $UTF8_TO_ASCII[0x52] = array( '[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x64.php
app/code/community/Catalin/SEO/Helper/data/x64.php
<?php $UTF8_TO_ASCII[0x64] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xa0.php
app/code/community/Catalin/SEO/Helper/data/xa0.php
<?php $UTF8_TO_ASCII[0xa0] = array( 'Ze ','Xi ','Guo ','Yi ','Hu ','Chan ','Kou ','Cu ','Ping ','Chou ','Ji ','Gui ','Su ','Lou ','Zha ','Lu ','Nian ','Suo ','Cuan ','Sasara ','Suo ','Le ','Duan ','Yana ','Xiao ','Bo ','Mi ','Si ','Dang ','Liao ','Dan ','Dian ','Fu ','Jian ','Min ','Kui ','Dai ','Qiao ','Deng ','Huang ...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x30.php
app/code/community/Catalin/SEO/Helper/data/x30.php
<?php $UTF8_TO_ASCII[0x30] = array( '-','-','|','|','-','-','|','|','-','-','|','|','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+','+',...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xbc.php
app/code/community/Catalin/SEO/Helper/data/xbc.php
<?php $UTF8_TO_ASCII[0xbc] = array( 'Ruo ','Bei ','E ','Yu ','Juan ','Yu ','Yun ','Hou ','Kui ','Xiang ','Xiang ','Sou ','Tang ','Ming ','Xi ','Ru ','Chu ','Zi ','Zou ','Ju ','Wu ','Xiang ','Yun ','Hao ','Yong ','Bi ','Mo ','Chao ','Fu ','Liao ','Yin ','Zhuan ','Hu ','Qiao ','Yan ','Zhang ','Fan ','Qiao ','Xu ','Deng '...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x8a.php
app/code/community/Catalin/SEO/Helper/data/x8a.php
<?php $UTF8_TO_ASCII[0x8a] = array( 'Yun ','Bei ','Ang ','Ze ','Ban ','Jie ','Kun ','Sheng ','Hu ','Fang ','Hao ','Gui ','Chang ','Xuan ','Ming ','Hun ','Fen ','Qin ','Hu ','Yi ','Xi ','Xin ','Yan ','Ze ','Fang ','Tan ','Shen ','Ju ','Yang ','Zan ','Bing ','Xing ','Ying ','Xuan ','Pei ','Zhen ','Ling ','Chun ','Hao ','...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x5b.php
app/code/community/Catalin/SEO/Helper/data/x5b.php
<?php $UTF8_TO_ASCII[0x5b] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x14.php
app/code/community/Catalin/SEO/Helper/data/x14.php
<?php $UTF8_TO_ASCII[0x14] = array( 'ja','ju','ji','jaa','jee','je','jo','jwa','ga','gu','gi','gaa','gee','ge','go','[?]','gwa','[?]','gwi','gwaa','gwee','gwe','[?]','[?]','gga','ggu','ggi','ggaa','ggee','gge','ggo','[?]','tha','thu','thi','thaa','thee','the','tho','thwa','cha','chu','chi','chaa','chee','che','cho','ch...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x62.php
app/code/community/Catalin/SEO/Helper/data/x62.php
<?php $UTF8_TO_ASCII[0x62] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xcf.php
app/code/community/Catalin/SEO/Helper/data/xcf.php
<?php $UTF8_TO_ASCII[0xcf] = array( 'qiet','qiex','qie','qiep','quot','quox','quo','quop','qot','qox','qo','qop','qut','qux','qu','qup','qurx','qur','qyt','qyx','qy','qyp','qyrx','qyr','jjit','jjix','jji','jjip','jjiet','jjiex','jjie','jjiep','jjuox','jjuo','jjuop','jjot','jjox','jjo','jjop','jjut','jjux','jju','jjup',...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x9b.php
app/code/community/Catalin/SEO/Helper/data/x9b.php
<?php $UTF8_TO_ASCII[0x9b] = array( 'Ming ','Sheng ','Shi ','Yun ','Mian ','Pan ','Fang ','Miao ','Dan ','Mei ','Mao ','Kan ','Xian ','Ou ','Shi ','Yang ','Zheng ','Yao ','Shen ','Huo ','Da ','Zhen ','Kuang ','Ju ','Shen ','Chi ','Sheng ','Mei ','Mo ','Zhu ','Zhen ','Zhen ','Mian ','Di ','Yuan ','Die ','Yi ','Zi ','Zi ...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xba.php
app/code/community/Catalin/SEO/Helper/data/xba.php
<?php $UTF8_TO_ASCII[0xba] = array( 'Er ','Qiong ','Ju ','Jiao ','Guang ','Lu ','Kai ','Quan ','Zhou ','Zai ','Zhi ','She ','Liang ','Yu ','Shao ','You ','Huan ','Yun ','Zhe ','Wan ','Fu ','Qing ','Zhou ','Ni ','Ling ','Zhe ','Zhan ','Liang ','Zi ','Hui ','Wang ','Chuo ','Guo ','Kan ','Yi ','Peng ','Qian ','Gun ','Nian...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x31.php
app/code/community/Catalin/SEO/Helper/data/x31.php
<?php $UTF8_TO_ASCII[0x31] = array( '','','','','','','','','','','','','','','','','','','','','[?]','[?]','[?]','[?]','[?]','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xc6.php
app/code/community/Catalin/SEO/Helper/data/xc6.php
<?php $UTF8_TO_ASCII[0xc6] = array( 'Ti ','Li ','Bin ','Zong ','Ti ','Peng ','Song ','Zheng ','Quan ','Zong ','Shun ','Jian ','Duo ','Hu ','La ','Jiu ','Qi ','Lian ','Zhen ','Bin ','Peng ','Mo ','San ','Man ','Man ','Seng ','Xu ','Lie ','Qian ','Qian ','Nong ','Huan ','Kuai ','Ning ','Bin ','Lie ','Rang ','Dou ','Dou '...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x88.php
app/code/community/Catalin/SEO/Helper/data/x88.php
<?php $UTF8_TO_ASCII[0x88] = array( 'Chan ','Ge ','Lou ','Zong ','Geng ','Jiao ','Gou ','Qin ','Yong ','Que ','Chou ','Chi ','Zhan ','Sun ','Sun ','Bo ','Chu ','Rong ','Beng ','Cuo ','Sao ','Ke ','Yao ','Dao ','Zhi ','Nu ','Xie ','Jian ','Sou ','Qiu ','Gao ','Xian ','Shuo ','Sang ','Jin ','Mie ','E ','Chui ','Nuo ','Sh...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x6b.php
app/code/community/Catalin/SEO/Helper/data/x6b.php
<?php $UTF8_TO_ASCII[0x6b] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xcb.php
app/code/community/Catalin/SEO/Helper/data/xcb.php
<?php $UTF8_TO_ASCII[0xcb] = array( 'it','ix','i','ip','iet','iex','ie','iep','at','ax','a','ap','uox','uo','uop','ot','ox','o','op','ex','e','wu','bit','bix','bi','bip','biet','biex','bie','biep','bat','bax','ba','bap','buox','buo','buop','bot','box','bo','bop','bex','be','bep','but','bux','bu','bup','burx','bur','byt...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x86.php
app/code/community/Catalin/SEO/Helper/data/x86.php
<?php $UTF8_TO_ASCII[0x86] = array( 'Lian ','Nan ','Mi ','Tang ','Jue ','Gang ','Gang ','Gang ','Ge ','Yue ','Wu ','Jian ','Xu ','Shu ','Rong ','Xi ','Cheng ','Wo ','Jie ','Ge ','Jian ','Qiang ','Huo ','Qiang ','Zhan ','Dong ','Qi ','Jia ','Die ','Zei ','Jia ','Ji ','Shi ','Kan ','Ji ','Kui ','Gai ','Deng ','Zhan ','Ch...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x8c.php
app/code/community/Catalin/SEO/Helper/data/x8c.php
<?php $UTF8_TO_ASCII[0x8c] = array( 'Zhi ','Liu ','Mei ','Hoy ','Rong ','Zha ','[?] ','Biao ','Zhan ','Jie ','Long ','Dong ','Lu ','Sayng ','Li ','Lan ','Yong ','Shu ','Xun ','Shuan ','Qi ','Zhen ','Qi ','Li ','Yi ','Xiang ','Zhen ','Li ','Su ','Gua ','Kan ','Bing ','Ren ','Xiao ','Bo ','Ren ','Bing ','Zi ','Chou ','Yi...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x00.php
app/code/community/Catalin/SEO/Helper/data/x00.php
<?php $UTF8_TO_ASCII[0x00] = array( '','','','','','','','','','',' ','','','','','','','','','','','','','','','','','','','','','',' ','!','"','#','$','%','&',"'",'(',')','*','+',',','-','.','/','0','1','2','3','4','5','6','7','8','9',':',';','<','=','>','?','@','A','B','C','D','E','F','G','H','I','J','K','L','M','N'...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x78.php
app/code/community/Catalin/SEO/Helper/data/x78.php
<?php $UTF8_TO_ASCII[0x78] = array( 'Mie ','Xu ','Mang ','Chi ','Ge ','Xuan ','Yao ','Zi ','He ','Ji ','Diao ','Cun ','Tong ','Ming ','Hou ','Li ','Tu ','Xiang ','Zha ','Xia ','Ye ','Lu ','A ','Ma ','Ou ','Xue ','Yi ','Jun ','Chou ','Lin ','Tun ','Yin ','Fei ','Bi ','Qin ','Qin ','Jie ','Bu ','Fou ','Ba ','Dun ','Fen '...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xd3.php
app/code/community/Catalin/SEO/Helper/data/xd3.php
<?php $UTF8_TO_ASCII[0xd3] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x93.php
app/code/community/Catalin/SEO/Helper/data/x93.php
<?php $UTF8_TO_ASCII[0x93] = array( 'Qing ','Yu ','Piao ','Ji ','Ya ','Jiao ','Qi ','Xi ','Ji ','Lu ','Lu ','Long ','Jin ','Guo ','Cong ','Lou ','Zhi ','Gai ','Qiang ','Li ','Yan ','Cao ','Jiao ','Cong ','Qun ','Tuan ','Ou ','Teng ','Ye ','Xi ','Mi ','Tang ','Mo ','Shang ','Han ','Lian ','Lan ','Wa ','Li ','Qian ','Fen...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x0b.php
app/code/community/Catalin/SEO/Helper/data/x0b.php
<?php $UTF8_TO_ASCII[0x0b] = array( '[?]','[?]','N','[?]','[?]','a','aa','i','ii','u','uu','[?]','[?]','[?]','[?]','ee','ai','[?]','[?]','oo','au','k','kh','g','gh','ng','c','ch','j','jh','ny','tt','tth','dd','ddh','nn','t','th','d','dh','n','[?]','p','ph','b','bb','m','y','r','[?]','l','ll','[?]','v','sh','[?]','s','h...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x4d.php
app/code/community/Catalin/SEO/Helper/data/x4d.php
<?php $UTF8_TO_ASCII[0x4d] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xb1.php
app/code/community/Catalin/SEO/Helper/data/xb1.php
<?php $UTF8_TO_ASCII[0xb1] = array( 'Tuo ','Wu ','Rui ','Rui ','Qi ','Heng ','Lu ','Su ','Tui ','Mang ','Yun ','Pin ','Yu ','Xun ','Ji ','Jiong ','Xian ','Mo ','Hagi ','Su ','Jiong ','[?] ','Nie ','Bo ','Rang ','Yi ','Xian ','Yu ','Ju ','Lian ','Lian ','Yin ','Qiang ','Ying ','Long ','Tong ','Wei ','Yue ','Ling ','Qu '...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x87.php
app/code/community/Catalin/SEO/Helper/data/x87.php
<?php $UTF8_TO_ASCII[0x87] = array( 'Bo ','Chi ','Gua ','Zhi ','Kuo ','Duo ','Duo ','Zhi ','Qie ','An ','Nong ','Zhen ','Ge ','Jiao ','Ku ','Dong ','Ru ','Tiao ','Lie ','Zha ','Lu ','Die ','Wa ','Jue ','Mushiru ','Ju ','Zhi ','Luan ','Ya ','Zhua ','Ta ','Xie ','Nao ','Dang ','Jiao ','Zheng ','Ji ','Hui ','Xun ','Ku ','...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x5f.php
app/code/community/Catalin/SEO/Helper/data/x5f.php
<?php $UTF8_TO_ASCII[0x5f] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xc8.php
app/code/community/Catalin/SEO/Helper/data/xc8.php
<?php $UTF8_TO_ASCII[0xc8] = array( 'Fou ','Yiao ','Jue ','Jue ','Pi ','Huan ','Zhen ','Bao ','Yan ','Ya ','Zheng ','Fang ','Feng ','Wen ','Ou ','Te ','Jia ','Nu ','Ling ','Mie ','Fu ','Tuo ','Wen ','Li ','Bian ','Zhi ','Ge ','Yuan ','Zi ','Qu ','Xiao ','Zhi ','Dan ','Ju ','You ','Gu ','Zhong ','Yu ','Yang ','Rong ','Y...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xd0.php
app/code/community/Catalin/SEO/Helper/data/xd0.php
<?php $UTF8_TO_ASCII[0xd0] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x57.php
app/code/community/Catalin/SEO/Helper/data/x57.php
<?php $UTF8_TO_ASCII[0x57] = array( 'apartment','alpha','ampere','are','inning','inch','won','escudo','acre','ounce','ohm','kai-ri','carat','calorie','gallon','gamma','giga','guinea','curie','guilder','kilo','kilogram','kilometer','kilowatt','gram','gram ton','cruzeiro','krone','case','koruna','co-op','cycle','centime'...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xfa.php
app/code/community/Catalin/SEO/Helper/data/xfa.php
<?php $UTF8_TO_ASCII[0xfa] = array( 'geul','geulg','geulm','geulb','geuls','geult','geulp','geulh','geum','geub','geubs','geus','geuss','geung','geuj','geuc','geuk','geut','geup','geuh','gyi','gyig','gyigg','gyigs','gyin','gyinj','gyinh','gyid','gyil','gyilg','gyilm','gyilb','gyils','gyilt','gyilp','gyilh','gyim','gyib...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x7b.php
app/code/community/Catalin/SEO/Helper/data/x7b.php
<?php $UTF8_TO_ASCII[0x7b] = array( 'Guo ','Yin ','Hun ','Pu ','Yu ','Han ','Yuan ','Lun ','Quan ','Yu ','Qing ','Guo ','Chuan ','Wei ','Yuan ','Quan ','Ku ','Fu ','Yuan ','Yuan ','E ','Tu ','Tu ','Tu ','Tuan ','Lue ','Hui ','Yi ','Yuan ','Luan ','Luan ','Tu ','Ya ','Tu ','Ting ','Sheng ','Pu ','Lu ','Iri ','Ya ','Zai ...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xfb.php
app/code/community/Catalin/SEO/Helper/data/xfb.php
<?php $UTF8_TO_ASCII[0xfb] = array( 'ggyeols','ggyeolt','ggyeolp','ggyeolh','ggyeom','ggyeob','ggyeobs','ggyeos','ggyeoss','ggyeong','ggyeoj','ggyeoc','ggyeok','ggyeot','ggyeop','ggyeoh','ggye','ggyeg','ggyegg','ggyegs','ggyen','ggyenj','ggyenh','ggyed','ggyel','ggyelg','ggyelm','ggyelb','ggyels','ggyelt','ggyelp','ggy...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x68.php
app/code/community/Catalin/SEO/Helper/data/x68.php
<?php $UTF8_TO_ASCII[0x68] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xb4.php
app/code/community/Catalin/SEO/Helper/data/xb4.php
<?php $UTF8_TO_ASCII[0xb4] = array( 'Ji ','Zhi ','Gua ','Ken ','Che ','Ti ','Ti ','Fu ','Chong ','Xie ','Bian ','Die ','Kun ','Duan ','Xiu ','Xiu ','He ','Yuan ','Bao ','Bao ','Fu ','Yu ','Tuan ','Yan ','Hui ','Bei ','Chu ','Lu ','Ena ','Hitoe ','Yun ','Da ','Gou ','Da ','Huai ','Rong ','Yuan ','Ru ','Nai ','Jiong ','S...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x6d.php
app/code/community/Catalin/SEO/Helper/data/x6d.php
<?php $UTF8_TO_ASCII[0x6d] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x21.php
app/code/community/Catalin/SEO/Helper/data/x21.php
<?php $UTF8_TO_ASCII[0x21] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xbe.php
app/code/community/Catalin/SEO/Helper/data/xbe.php
<?php $UTF8_TO_ASCII[0xbe] = array( 'Lun ','Kua ','Ling ','Bei ','Lu ','Li ','Qiang ','Pou ','Juan ','Min ','Zui ','Peng ','An ','Pi ','Xian ','Ya ','Zhui ','Lei ','A ','Kong ','Ta ','Kun ','Du ','Wei ','Chui ','Zi ','Zheng ','Ben ','Nie ','Cong ','Qun ','Tan ','Ding ','Qi ','Qian ','Zhuo ','Qi ','Yu ','Jin ','Guan ','...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x50.php
app/code/community/Catalin/SEO/Helper/data/x50.php
<?php $UTF8_TO_ASCII[0x50] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xc3.php
app/code/community/Catalin/SEO/Helper/data/xc3.php
<?php $UTF8_TO_ASCII[0xc3] = array( 'Hu ','Ye ','Ding ','Qing ','Pan ','Xiang ','Shun ','Han ','Xu ','Yi ','Xu ','Gu ','Song ','Kui ','Qi ','Hang ','Yu ','Wan ','Ban ','Dun ','Di ','Dan ','Pan ','Po ','Ling ','Ce ','Jing ','Lei ','He ','Qiao ','E ','E ','Wei ','Jie ','Gua ','Shen ','Yi ','Shen ','Hai ','Dui ','Pian ','...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xca.php
app/code/community/Catalin/SEO/Helper/data/xca.php
<?php $UTF8_TO_ASCII[0xca] = array( 'Cu ','Qu ','Chao ','Wa ','Zhu ','Zhi ','Mang ','Ao ','Bie ','Tuo ','Bi ','Yuan ','Chao ','Tuo ','Ding ','Mi ','Nai ','Ding ','Zi ','Gu ','Gu ','Dong ','Fen ','Tao ','Yuan ','Pi ','Chang ','Gao ','Qi ','Yuan ','Tang ','Teng ','Shu ','Shu ','Fen ','Fei ','Wen ','Ba ','Diao ','Tuo ','T...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x2f.php
app/code/community/Catalin/SEO/Helper/data/x2f.php
<?php $UTF8_TO_ASCII[0x2f] = array( '','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','[?]','','','','','',''...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/xc2.php
app/code/community/Catalin/SEO/Helper/data/xc2.php
<?php $UTF8_TO_ASCII[0xc2] = array( 'Xu ','Ji ','Mu ','Chen ','Xiao ','Zha ','Ting ','Zhen ','Pei ','Mei ','Ling ','Qi ','Chou ','Huo ','Sha ','Fei ','Weng ','Zhan ','Yin ','Ni ','Chou ','Tun ','Lin ','[?] ','Dong ','Ying ','Wu ','Ling ','Shuang ','Ling ','Xia ','Hong ','Yin ','Mo ','Mai ','Yun ','Liu ','Meng ','Bin ',...
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false
caciobanu/improved-magento-layered-navigation
https://github.com/caciobanu/improved-magento-layered-navigation/blob/3e59498798b62b44b9cc3aca5f9275d95cb2fdb7/app/code/community/Catalin/SEO/Helper/data/x67.php
app/code/community/Catalin/SEO/Helper/data/x67.php
<?php $UTF8_TO_ASCII[0x67] = array( );
php
MIT
3e59498798b62b44b9cc3aca5f9275d95cb2fdb7
2026-01-05T04:58:11.914985Z
false