<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1869472713763906021</id><updated>2024-09-13T13:47:45.691-07:00</updated><category term="Belajar PHP"/><category term="Document"/><title type='text'>Teknologi Informasi</title><subtitle type='html'>Welcome to Faithful Bloggers</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://hidayatulllah95.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1869472713763906021/posts/default'/><link rel='alternate' type='text/html' href='http://hidayatulllah95.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Teknopers</name><uri>http://www.blogger.com/profile/01668947525518345939</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1869472713763906021.post-2344115252078146771</id><published>2014-10-13T08:32:00.002-07:00</published><updated>2014-10-13T09:05:12.378-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Belajar PHP"/><title type='text'>Variabel pada PHP</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;h3 style=&quot;text-align: justify;&quot;&gt;
Pengertian Variabel dalam PHP&lt;/h3&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Dalam pemograman, &lt;b&gt;variabel&lt;/b&gt; &lt;i&gt;adalah suatu lokasi penyimpanan 
(di dalam memori komputer) yang berisikan nilai atau informasi yang 
nilainya tidak diketahui maupun telah diketahui&lt;/i&gt; (&lt;a href=&quot;http://en.wikipedia.org/wiki/Variable_%28computer_science%29&quot;&gt;wikipedia&lt;/a&gt;).&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Dalam defenisi bebasnya, variabel adalah &lt;i&gt;kode program yang digunakan untuk menampung nilai tertentu&lt;/i&gt;. Nilai yang disimpan di dalam variabel selanjutnya dapat dipindahkan ke dalam database, atau ditampilkan kembali ke pengguna.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Nilai dari &lt;b&gt;variabel&lt;/b&gt; dapat di isi dengan informasi yang diinginkan dan dapat dirubah nilainya pada saat kode program sedang berjalan. Sebuah &lt;b&gt;variabel&lt;/b&gt; memiliki &lt;i&gt;nama&lt;/i&gt; yang digunakan untuk mengakses nilai dari &lt;b&gt;variabel&lt;/b&gt; itu. Jika anda memiliki pengetahuan dasar tentang bahasa pemograman, tentunya tidak asing dengan istilah &lt;b&gt;variabel&lt;/b&gt;.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Sama seperti &lt;b&gt;variabel&lt;/b&gt; dalam bahasa pemograman lainnya, 
variabel dalam PHP digunakan untuk menampung nilai inputan dari user, 
atau nilai yang kita definisikan sendiri. Namun PHP memiliki beberapa 
aturan tentang cara penggunaan dan penulisan &lt;b&gt;variabel.&lt;/b&gt;&lt;/div&gt;
&lt;hr style=&quot;margin-left: 0px; margin-right: 0px;&quot; /&gt;
&lt;h3 style=&quot;text-align: justify;&quot;&gt;
Aturan Penulisan Variabel dalam PHP&lt;/h3&gt;
&lt;h4 style=&quot;text-align: justify;&quot;&gt;
1. Penulisan variabel harus diawali dengan tanda $&lt;/h4&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;Variabel&lt;/b&gt; di dalam PHP harus diawali dengan &lt;b&gt;dollar sign&lt;/b&gt; atau &lt;b&gt;tanda dollar&lt;/b&gt; ($).&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Setelah tanda &lt;b&gt;$&lt;/b&gt;, sebuah &lt;b&gt;variabel&lt;/b&gt; PHP harus diikuti dengan karakter pertama berupa huruf atau &lt;i&gt;underscore&lt;/i&gt; (_), kemudian untuk karakter kedua dan seterusny bisa menggunakan huruf, angka atau &lt;i&gt;underscore&lt;/i&gt; (_). Dengan aturan tersebut, variabel di dalam PHP&lt;i&gt; tidak bisa&lt;/i&gt; diawali dengan angka.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Minimal panjang variabel adalah 1 karakter setelah tanda $.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Berikut adalah contoh penulisan variabel yang benar dalam PHP:&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;lt;?php
   $i;
   $nama;
   $Umur;
   $_lokasi_memori;
   $ANGKA_MAKSIMUM;
?&amp;gt;&lt;/pre&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Dan berikut adalah contoh penulisan variabel yang salah:&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;lt;?php
   $4ever; //variabel tidak boleh diawali dengan angka
   $_salah satu; //varibel tidak boleh mengandung spasi
   $nama*^; //variabel tidak boleh mengandung karakter khusus: * dan ^
?&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;hr style=&quot;margin-left: 0px; margin-right: 0px;&quot; /&gt;
&lt;h4 style=&quot;text-align: justify;&quot;&gt;
2. Variabel dalam PHP bersifat case sensitif&lt;/h4&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
PHP membedakan variabel yang ditulis dengan huruf besar dan kecil (bersifat &lt;b&gt;case sensitif&lt;/b&gt;) , sehingga &lt;b&gt;$belajar&lt;/b&gt; tidak sama dengan &lt;b&gt;$Belajar&lt;/b&gt; dan &lt;b&gt;$BELAJAR&lt;/b&gt;, ketiganya akan dianggap sebagai variabel yang berbeda.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Untuk menghindari kesalahan program yang dikarenakan salah merujuk &lt;b&gt;variabel&lt;/b&gt;, disarankan menggunakan huruf kecil untuk seluruh nama &lt;b&gt;variabel&lt;/b&gt;.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;lt;?php
   $andi=&quot;Andi&quot;;
   echo $Andi; // Notice: Undefined variable: Andi
?&amp;gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Dalam contoh diatas, PHP mengeluarkan error karena tidak menemukan variabel &lt;i&gt;$Andi&lt;/i&gt;.&lt;/div&gt;
&lt;hr style=&quot;margin-left: 0px; margin-right: 0px;&quot; /&gt;
&lt;h4 style=&quot;text-align: justify;&quot;&gt;
3. Cara Memberikan Nilai kepada Variabel&lt;/h4&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Sama seperti sebagian besar bahasa pemograman lainnya, untuk memberikan nilai kepada sebuah &lt;b&gt;variabel&lt;/b&gt;, PHP menggunakan tanda &lt;b&gt;sama dengan&lt;/b&gt; (=). Operator &lt;i&gt;‘sama dengan&lt;/i&gt;‘ ini dikenal dengan istilah &lt;i&gt;&lt;b&gt;Assignment Operators&lt;/b&gt;.&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Perintah pemberian nilai kepada sebuah variabel disebut dengan &lt;b&gt;&lt;i&gt;assignment&lt;/i&gt;. &lt;/b&gt;Jika &lt;i&gt;variabel&lt;/i&gt; tersebut belum pernah digunakan, dan langsung diberikan nilai awal, maka disebut juga dengan proses &lt;i&gt;&lt;b&gt;inisialisasi&lt;/b&gt;&lt;/i&gt;.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Berikut contoh cara memberikan nilai awal (&lt;i&gt;inisialisasi&lt;/i&gt;) kepada variabel:&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;lt;?php
   $nama = &quot;andi&quot;;
   $umur = 17;
   $pesan = &quot;Saya sedang belajar PHP di duniailkom.com&quot;;
?&amp;gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;hr style=&quot;margin-left: 0px; margin-right: 0px;&quot; /&gt;
&lt;h4 style=&quot;text-align: justify;&quot;&gt;
4. Variabel dalam PHP tidak memerlukan deklarasi terlebih dahulu&lt;/h4&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Jika anda pernah mempelajari bahasa pemograman desktop seperti &lt;b&gt;Pascal&lt;/b&gt;, &lt;b&gt;C&lt;/b&gt;, &lt;b&gt;C++&lt;/b&gt;, dan &lt;b&gt;Visual Basic&lt;/b&gt;, di dalam bahasa pemograman tersebut, sebuah variabel harus dideklarasikan terlebih dahulu sebelum digunakan.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Namun di dalam PHP, &lt;b&gt;variabel&lt;/b&gt; tidak perlu deklarasikan terlebih
 dahulu. Anda bebas membuat variabel baru di tengah-tengah kode program,
 dan langsung menggunakannya tanpa di deklarasikan terlebih dahulu.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;lt;?php
   $andi=&quot;Andi&quot;;
   echo $andi;
?&amp;gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;div class=&quot;stb-container-css stb-info-container stb-image-big stb-ltr stb-corners stb-border stb-side-none&quot; id=&quot;stb-container-3469&quot; style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;aside class=&quot;stb-icon&quot;&gt;&lt;img data-lazy-src=&quot;http://www.duniailkom.com/wp-content/plugins/wp-special-textboxes/images/info-b.png&quot; src=&quot;http://www.duniailkom.com/wp-content/plugins/lazy-load/images/1x1.trans.gif&quot; /&gt;&lt;/aside&gt;&lt;br /&gt;
&lt;div class=&quot;stb-info_box stb-box&quot; id=&quot;stb-box-3469&quot;&gt;
&lt;br /&gt;
PHP memiliki keyword &lt;b&gt;&lt;i&gt;var&lt;/i&gt; &lt;/b&gt;untuk
 mendefenisikan variable, keyword ini digunakan untuk PHP versi 4 
kebawah. PHP versi 5 tidak membutuhkan keyword ini, dan penggunaannya 
akan menghasilkan error, seperti contoh berikut ini:
&lt;br /&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;lt;?php
   // kode program dibawah ini akan menghasilkan error
   // Parse error: syntax error, unexpected &#39;var&#39; (T_VAR)
   var $andi=&quot;Andi&quot;;
   echo $andi;
?&amp;gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;hr style=&quot;margin-left: 0px; margin-right: 0px;&quot; /&gt;
&lt;h4 style=&quot;text-align: justify;&quot;&gt;
5. Variabel dalam PHP tidak bertipe&lt;/h4&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Dalam kelompok bahasa pemograman, PHP termasuk &lt;b&gt;Loosely Type Language&lt;/b&gt;, yaitu jenis bahasa pemograman yang variabelnya tidak terikat pada sebuah tipe tertentu.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Hal ini berbeda jika dibandingkan dengan bahasa pemograman desktop seperti &lt;b&gt;Pascal&lt;/b&gt; atau &lt;b&gt;C&lt;/b&gt;, dimana jika anda membuat sebuah variabel bertipe &lt;b&gt;integer&lt;/b&gt;, maka variabel itu hanya bisa menampung nilai angka, dan anda tidak akan bisa mengisinya dengan huruf.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Di dalam PHP, setiap variabel bebas diisi dengan nilai apa saja, seperti contoh berikut:&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre class=&quot;brush: php; gutter: true; first-line: 1&quot;&gt;&amp;lt;?php
   $a = 17; // nilai variabel a berisi angka (integer)
   $a = &quot;aku&quot;; // nilai variabel a diubah menjadi kata (string)
   $a = 17.42; // nilai variabel a diubah menjadi desimal (float)
?&amp;gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;hr style=&quot;margin-left: 0px; margin-right: 0px;&quot; /&gt;
&lt;h4 style=&quot;text-align: justify;&quot;&gt;
6. Variabel Sistem PHP (Predefined Variables)&lt;/h4&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;Predefined Variables&lt;/b&gt; atau terjemahan bebasnya &lt;b&gt;Variabel Sistem PHP&lt;/b&gt;,
 adalah beberapa variabel yang telah didefenisikan secara sistem oleh 
PHP, dan kita sebaiknya tidak membuat variabel dengan nama yang sama.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Beberapa contoh&lt;b&gt; &lt;/b&gt;&lt;b&gt;Predefined Variables&lt;/b&gt; dalam PHP adalah:&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
$GLOBALS , $_SERVER , $_GET , $_POST , $_FILES , $_COOKIE , $_SESSION
 , $_REQUEST , $_ENV, $php_errormsg, $HTTP_RAW_POST_DATA, 
$http_response_header, $argc, $argv, $this.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Daftar list &lt;b&gt;Predefined Variables&lt;/b&gt; tersebut saya ambil dari &lt;b&gt;manual PHP&lt;/b&gt; di &lt;a href=&quot;http://www.php.net/reserved.variables&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/reserved.variables&lt;/a&gt;,
 di dalam manual tersebut juga dijelaskan bahwa mungkin masih terdapat 
beberapa variabel sistem PHP selain list diatas, hal ini tergantung 
dengan jenis web server, versi PHP yang digunakan, dan beberapa faktor 
lainnya. Namun kebanyakan varibel sistem PHP menggunakan tanda &lt;b&gt;$_&lt;/b&gt; pada awal nama variabel, namun tidak selalu.&lt;/div&gt;
&lt;hr style=&quot;margin-left: 0px; margin-right: 0px;&quot; /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;Variabel&lt;/b&gt; dapat dikatakan sebagai inti dari sebuah bahasa pemograman. Karena melalui &lt;i&gt;variabel&lt;/i&gt; inilah kita memanipulasi data inputan agar menjadi nilai yang diinginkan. Selain &lt;b&gt;variabel&lt;/b&gt;, PHP juga menyediakan sebuah solusi lain untuk menampung nilai data dengan &lt;b&gt;konstanta&lt;/b&gt; (&lt;b&gt;constant&lt;/b&gt;).&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://hidayatulllah95.blogspot.com/feeds/2344115252078146771/comments/default' title='Posting Komentar'/><link rel='replies' type='text/html' href='http://hidayatulllah95.blogspot.com/2014/10/variabel-pada-php.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1869472713763906021/posts/default/2344115252078146771'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1869472713763906021/posts/default/2344115252078146771'/><link rel='alternate' type='text/html' href='http://hidayatulllah95.blogspot.com/2014/10/variabel-pada-php.html' title='Variabel pada PHP'/><author><name>Teknopers</name><uri>http://www.blogger.com/profile/01668947525518345939</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1869472713763906021.post-3308635049148796565</id><published>2013-10-24T07:24:00.003-07:00</published><updated>2013-10-24T07:24:58.267-07:00</updated><title type='text'>Review: Razer Deathstalker Ultimate Gaming Keyboard</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;270&quot; src=&quot;//www.youtube.com/embed/lUSV44_KtXk&quot; width=&quot;480&quot;&gt;&lt;/iframe&gt;</content><link rel='replies' type='application/atom+xml' href='http://hidayatulllah95.blogspot.com/feeds/3308635049148796565/comments/default' title='Posting Komentar'/><link rel='replies' type='text/html' href='http://hidayatulllah95.blogspot.com/2013/10/review-razer-deathstalker-ultimate_24.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1869472713763906021/posts/default/3308635049148796565'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1869472713763906021/posts/default/3308635049148796565'/><link rel='alternate' type='text/html' href='http://hidayatulllah95.blogspot.com/2013/10/review-razer-deathstalker-ultimate_24.html' title='Review: Razer Deathstalker Ultimate Gaming Keyboard'/><author><name>Teknopers</name><uri>http://www.blogger.com/profile/01668947525518345939</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1869472713763906021.post-131050359117354660</id><published>2013-10-24T07:24:00.001-07:00</published><updated>2013-10-24T07:24:35.307-07:00</updated><title type='text'>Review: Razer Deathstalker Ultimate Gaming Keyboard</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;270&quot; src=&quot;//www.youtube.com/embed/lUSV44_KtXk&quot; width=&quot;480&quot;&gt;&lt;/iframe&gt;</content><link rel='replies' type='application/atom+xml' href='http://hidayatulllah95.blogspot.com/feeds/131050359117354660/comments/default' title='Posting Komentar'/><link rel='replies' type='text/html' href='http://hidayatulllah95.blogspot.com/2013/10/review-razer-deathstalker-ultimate.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1869472713763906021/posts/default/131050359117354660'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1869472713763906021/posts/default/131050359117354660'/><link rel='alternate' type='text/html' href='http://hidayatulllah95.blogspot.com/2013/10/review-razer-deathstalker-ultimate.html' title='Review: Razer Deathstalker Ultimate Gaming Keyboard'/><author><name>Teknopers</name><uri>http://www.blogger.com/profile/01668947525518345939</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1869472713763906021.post-383444495629125652</id><published>2013-10-24T07:23:00.001-07:00</published><updated>2013-10-24T07:23:02.804-07:00</updated><title type='text'>Gaming PC Desk Setup 2013 - Razer Style</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;270&quot; src=&quot;//www.youtube.com/embed/GpI47SnYjHg&quot; width=&quot;480&quot;&gt;&lt;/iframe&gt;</content><link rel='replies' type='application/atom+xml' href='http://hidayatulllah95.blogspot.com/feeds/383444495629125652/comments/default' title='Posting Komentar'/><link rel='replies' type='text/html' href='http://hidayatulllah95.blogspot.com/2013/10/gaming-pc-desk-setup-2013-razer-style.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1869472713763906021/posts/default/383444495629125652'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1869472713763906021/posts/default/383444495629125652'/><link rel='alternate' type='text/html' href='http://hidayatulllah95.blogspot.com/2013/10/gaming-pc-desk-setup-2013-razer-style.html' title='Gaming PC Desk Setup 2013 - Razer Style'/><author><name>Teknopers</name><uri>http://www.blogger.com/profile/01668947525518345939</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1869472713763906021.post-3304629845269075902</id><published>2013-10-23T02:43:00.001-07:00</published><updated>2013-10-23T02:43:09.680-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Document"/><title type='text'>Modul Microsoft_Office_Word_2007</title><content type='html'>&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.dropbox.com/s/4v56uaeiqwqyhg4/Microsoft_Office_Word_2007.pdf&quot; target=&quot;_blank&quot;&gt;Microsoft_Office_Word_2007.pdf&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='http://hidayatulllah95.blogspot.com/feeds/3304629845269075902/comments/default' title='Posting Komentar'/><link rel='replies' type='text/html' href='http://hidayatulllah95.blogspot.com/2013/10/modul-microsoftofficeword2007_23.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1869472713763906021/posts/default/3304629845269075902'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1869472713763906021/posts/default/3304629845269075902'/><link rel='alternate' type='text/html' href='http://hidayatulllah95.blogspot.com/2013/10/modul-microsoftofficeword2007_23.html' title='Modul Microsoft_Office_Word_2007'/><author><name>Teknopers</name><uri>http://www.blogger.com/profile/01668947525518345939</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1869472713763906021.post-4465915590686090000</id><published>2013-09-20T05:32:00.002-07:00</published><updated>2013-09-20T05:33:38.360-07:00</updated><title type='text'>Rangkuman Geografi</title><content type='html'>&lt;!--[if !mso]&gt;
&lt;style&gt;
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
&lt;/style&gt;
&lt;![endif]--&gt;

&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 14.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;BAB VII&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 14.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;KONSEP
WILAYAH DAN PUSAT PERTUMBUHAN&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoListParagraphCxSpFirst&quot; style=&quot;line-height: 150%; margin-left: 21.3pt; text-align: justify; text-indent: -21.3pt;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-bidi-font-family: Cambria; mso-bidi-theme-font: major-latin; mso-fareast-font-family: Cambria; mso-fareast-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;A.&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span dir=&quot;LTR&quot;&gt;&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;Wilayah
Formal dan Fungsional&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;line-height: 150%; margin-left: 21.3pt; text-align: justify; text-indent: 35.4pt;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;Tempat&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt; merupakan
bagian ruang di Bumi, baik berukuran luas atau sempit yang bermanfaat bagi
kehidupan manusia. Wujud tempat dapat berupa Benua, Pulau, Negara, Kota, Desa,
Dusun, dan daerah tidak berpenghuni. Tempat tersebut biasanya mempunyai nama
dan batas-batas serta ciri-ciri yang bersifat fisik maupun sosial. &lt;i&gt;Ciri
fisik&lt;/i&gt; suatu tempat misalnya iklim, bentuk lahan, tanah, hidrosfer, flora,
dan fauna. &lt;i&gt;Ciri sosial &lt;/i&gt;suatu tempat misalnya bahasa, agama, sistem
ekonomi, sistem politik, dan penyebaran penduduk.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;line-height: 150%; margin-left: 21.3pt; text-align: justify; text-indent: 35.4pt;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;Wilayah &lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;merupakan
suatu konsep yang digunakan untuk mengidentifikasi dan mengorganisasi daerah
(area) di muka Bumi untuk berbagai tujuan. Wilayah dapat berukuran sekecil
rukun tetangga (RT) atau sebesar Negara. Orang-orang yang hidup dalam suatu
wiayah dapat menyebabkan konflik baik secara internal maupun eksternal.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;line-height: 150%; margin-left: 21.3pt; text-align: justify; text-indent: 35.4pt;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;Para ahli
kewilayahan secara umum membedakan wilayah menjadi dua meskipun kadang ada yang
membedakan wilayah menjadi tiga. Pembedaan wilayah di Bumi menjadi dua sebagai
berikut.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;margin-left: 21.3pt; text-align: justify; text-indent: 35.4pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;line-height: 150%; margin-left: 39.3pt; text-align: justify; text-indent: -18pt;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-bidi-font-family: Cambria; mso-bidi-theme-font: major-latin; mso-fareast-font-family: Cambria; mso-fareast-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;1.&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span dir=&quot;LTR&quot;&gt;&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;Wilayah
Formal&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;line-height: 150%; margin-left: 39.3pt; text-align: justify; text-indent: 31.6pt;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;Wilayah
formal &lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;dicirikan oleh sesuatu yang
dimiliki atau melekat pada manusia dan alam secara umum, seperti bahasa
tertentu yang digunakan penduduk, agama, kebangsaan, budaya, dan identitas
politik serta tipe iklim tertentu, bentuk lahan, dan vegetasi.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;line-height: 150%; margin-left: 39.3pt; text-align: justify; text-indent: 31.6pt;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;Wilayah
formal dapat ditentukan dengan ukuran-ukuran penduduk, pendapatan per kapita,
latar belakang suku bangsa, hasil pertanian, penyebaran dan kepadatan penduduk,
hasil industri, serta juga pemetaan karakteristik fisik seperti temperatur,
curah hujan, dan jenis musim.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;line-height: 150%; margin-left: 39.3pt; text-align: justify; text-indent: 31.6pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;line-height: 150%; margin-left: 39.3pt; text-align: justify; text-indent: -18pt;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-bidi-font-family: Cambria; mso-bidi-theme-font: major-latin; mso-fareast-font-family: Cambria; mso-fareast-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;2.&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span dir=&quot;LTR&quot;&gt;&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;Wilayah
Fungsional&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;line-height: 150%; margin-left: 39.3pt; text-align: justify; text-indent: 31.6pt;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;Wilayah
fungsional berada di sekeliling titik pertumbuhan dan terjalin dengan titik
pertumbuhan melalui system transportasi, sistem komunikasi, atau kelompok
ekonomi, seperti manufaktur serta perdagangan. Salah satu bentuk wilayah
fungsional adalah kota metropolitan Jakarta.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoListParagraphCxSpLast&quot; style=&quot;line-height: 150%; margin-left: 39.3pt; text-align: justify; text-indent: 31.6pt;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;Cambria&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 150%; mso-ascii-theme-font: major-latin; mso-hansi-theme-font: major-latin;&quot;&gt;Wilayah fungsional lain yang berskala kecil
adalah pusat perbelanjaan yang berbantuk Mal atau Supermarket, daerah yang
dilayani oleh subuah bank, Bandar udara, dan daerah kegiatan yang sibuk.&lt;/span&gt;&lt;/div&gt;
&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:OfficeDocumentSettings&gt;
  &lt;o:RelyOnVML/&gt;
  &lt;o:AllowPNG/&gt;
 &lt;/o:OfficeDocumentSettings&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:WordDocument&gt;
  &lt;w:View&gt;Normal&lt;/w:View&gt;
  &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
  &lt;w:TrackMoves&gt;false&lt;/w:TrackMoves&gt;
  &lt;w:TrackFormatting/&gt;
  &lt;w:PunctuationKerning/&gt;
  &lt;w:ValidateAgainstSchemas/&gt;
  &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
  &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
  &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
  &lt;w:DoNotPromoteQF/&gt;
  &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt;
  &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
  &lt;w:LidThemeComplexScript&gt;AR-SA&lt;/w:LidThemeComplexScript&gt;
  &lt;w:Compatibility&gt;
   &lt;w:BreakWrappedTables/&gt;
   &lt;w:SnapToGridInCell/&gt;
   &lt;w:WrapTextWithPunct/&gt;
   &lt;w:UseAsianBreakRules/&gt;
   &lt;w:DontGrowAutofit/&gt;
   &lt;w:SplitPgBreakAndParaMark/&gt;
   &lt;w:DontVertAlignCellWithSp/&gt;
   &lt;w:DontBreakConstrainedForcedTables/&gt;
   &lt;w:DontVertAlignInTxbx/&gt;
   &lt;w:Word11KerningPairs/&gt;
   &lt;w:CachedColBalance/&gt;
  &lt;/w:Compatibility&gt;
  &lt;m:mathPr&gt;
   &lt;m:mathFont m:val=&quot;Cambria Math&quot;/&gt;
   &lt;m:brkBin m:val=&quot;before&quot;/&gt;
   &lt;m:brkBinSub m:val=&quot;--&quot;/&gt;
   &lt;m:smallFrac m:val=&quot;off&quot;/&gt;
   &lt;m:dispDef/&gt;
   &lt;m:lMargin m:val=&quot;0&quot;/&gt;
   &lt;m:rMargin m:val=&quot;0&quot;/&gt;
   &lt;m:defJc m:val=&quot;centerGroup&quot;/&gt;
   &lt;m:wrapIndent m:val=&quot;1440&quot;/&gt;
   &lt;m:intLim m:val=&quot;subSup&quot;/&gt;
   &lt;m:naryLim m:val=&quot;undOvr&quot;/&gt;
  &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:LatentStyles DefLockedState=&quot;false&quot; DefUnhideWhenUsed=&quot;true&quot;
  DefSemiHidden=&quot;true&quot; DefQFormat=&quot;false&quot; DefPriority=&quot;99&quot;
  LatentStyleCount=&quot;267&quot;&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;0&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Normal&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;heading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;35&quot; QFormat=&quot;true&quot; Name=&quot;caption&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;10&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; Name=&quot;Default Paragraph Font&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;11&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtitle&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;22&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Strong&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;20&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;59&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Table Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; UnhideWhenUsed=&quot;false&quot; Name=&quot;Placeholder Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;No Spacing&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; UnhideWhenUsed=&quot;false&quot; Name=&quot;Revision&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;34&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;List Paragraph&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;29&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;30&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;19&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtle Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;21&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;31&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtle Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;32&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;33&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Book Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;37&quot; Name=&quot;Bibliography&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; QFormat=&quot;true&quot; Name=&quot;TOC Heading&quot;/&gt;
 &lt;/w:LatentStyles&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;
&lt;style&gt;
 /* Style Definitions */
 table.MsoNormalTable
 {mso-style-name:&quot;Table Normal&quot;;
 mso-tstyle-rowband-size:0;
 mso-tstyle-colband-size:0;
 mso-style-noshow:yes;
 mso-style-priority:99;
 mso-style-qformat:yes;
 mso-style-parent:&quot;&quot;;
 mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
 mso-para-margin:0cm;
 mso-para-margin-bottom:.0001pt;
 mso-pagination:widow-orphan;
 font-size:10.0pt;
 mso-bidi-font-size:12.0pt;
 font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
 text-shadow:auto;}
&lt;/style&gt;
&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;2050&quot;/&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot;/&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;</content><link rel='replies' type='application/atom+xml' href='http://hidayatulllah95.blogspot.com/feeds/4465915590686090000/comments/default' title='Posting Komentar'/><link rel='replies' type='text/html' href='http://hidayatulllah95.blogspot.com/2013/09/rangkuman-geografi.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1869472713763906021/posts/default/4465915590686090000'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1869472713763906021/posts/default/4465915590686090000'/><link rel='alternate' type='text/html' href='http://hidayatulllah95.blogspot.com/2013/09/rangkuman-geografi.html' title='Rangkuman Geografi'/><author><name>Teknopers</name><uri>http://www.blogger.com/profile/01668947525518345939</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>