diff --git a/apis.google.com/js/client.js b/apis.google.com/js/client.js deleted file mode 100644 index 05f2b4a..0000000 --- a/apis.google.com/js/client.js +++ /dev/null @@ -1,17 +0,0 @@ -var gapi=window.gapi=window.gapi||{};gapi._bs=new Date().getTime();(function(){/* - - Copyright The Closure Library Authors. - SPDX-License-Identifier: Apache-2.0 -*/ -var g=this||self,h=function(a){return a};/* - gapi.loader.OBJECT_CREATE_TEST_OVERRIDE &&*/ -var m=window,n=document,aa=m.location,ba=function(){},ca=/\[native code\]/,q=function(a,b,c){return a[b]=a[b]||c},da=function(a){a=a.sort();for(var b=[],c=void 0,d=0;df}f&&c.push(e)}return c},X=function(){var a=C.nonce;return void 0!==a?a&&a===String(a)&&a.match(V)?a:C.nonce=null:n.querySelector?(a=n.querySelector("script[nonce]"))?(a=a.nonce||a.getAttribute("nonce")||"",a&&a===String(a)&&a.match(V)?C.nonce=a:C.nonce=null):null:null},ua=function(a){if("loading"!=n.readyState)ta(a); -else{var b=X(),c="";null!==b&&(c=' nonce="'+b+'"');a="<"+U+' src="'+encodeURI(a)+'"'+c+">";n.write(Y?Y.createHTML(a):a)}},ta=function(a){var b=n.createElement(U);b.setAttribute("src",Y?Y.createScriptURL(a):a);a=X();null!==a&&b.setAttribute("nonce",a);b.async="true";(a=n.getElementsByTagName(U)[0])?a.parentNode.insertBefore(b,a):(n.head||n.body||n.documentElement).appendChild(b)},va=function(a,b){var c=b&&b._c;if(c)for(var d=0;d + + + Color Fonts in Photopea + + + + + + + +
+
+
+ +
+ January 19, 2018 +

Color Fonts in Photopea

+
+ +

Starting today, Photopea supports color fonts!

+ + +

We imagine a font as a set of shapes. The font gives each logical character some graphic representation. Text editors let us choose the color of our text, i.e. set the solid color to one or more characters. The shape of a character may be very complex, but we are still restricted to a single color for the whole character.

+ +

The new standard for Color Fonts allows using multiple colors inside one character (more details at ColorFonts.wtf). There are already many fonts in this format. They can be used in Photoshop, Pixelmator, Sketch and other commercial programs. Starting today, you can load and use such fonts in Photopea. PP is probably the first free editor having this capability.

+ +

Try Color Fonts in Photopea Now!

+ +

All our effort is available to the public in our open-source library Typr.js.

+ + + + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/compress-textures-with-photopea.html b/blog.photopea.com/compress-textures-with-photopea.html new file mode 100644 index 0000000..9de02e1 --- /dev/null +++ b/blog.photopea.com/compress-textures-with-photopea.html @@ -0,0 +1,84 @@ + + + + Compress textures with Photopea + + + + + + + +
+
+
+ +
+ November 19, 2017 +

Compress textures with Photopea

+
+ +

Today, we are adding a new feature into Photopea: the support for DDS textures.

+ + +

Modern video games are accelerated with technologies such as OpenGL, DirectX or Vulkan. The view of the game is rendered "in parallel" by hundreds of small processing units. Each unit may need to access a specific part (pixel) of some texture (e.g. the bottom left pixel).

+ +

In modern image formats (such as PNG or JPG), it is not possible to view a specific part of the image. We must decompress the whole image first. Thus, JPG and PNG files can not be directly used with OpenGL. But with many large textures, some kind of texture compression would be really handy.

+ + + +

In past years, new techniques have been developed (such as S3TC), which can make textures even eight times smaller (than uncompressed), while still appropriate for OpenGL (easy to access by processing units). The image is divided into small parts: 4x4 pixels. Each such part is compressed independently. + When a processing unit needs to read some pixel, we first check, in which 4x4 part the pixel is located. Then, we decompress that part (all 16 pixels), read the pixel in concern, and throw away the information about other 15 pixels.

+ +

Textures, compressed this way, are usually stored in DDS or similar files. Starting today, Photopea can open these DDS files. It can also export textures in DDS format using File - Export - DDS. Try to download this DDS file and open it in Photopea!

+ +

This is a next step in our journey to make Photopea open any image format. We released our compression methods in an open-source library UTEX.js. We believe it can have many applications besides Phtopea editor.

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/creating-photopea.html b/blog.photopea.com/creating-photopea.html new file mode 100644 index 0000000..1823286 --- /dev/null +++ b/blog.photopea.com/creating-photopea.html @@ -0,0 +1,102 @@ + + + + Creating Photopea + + + + + + + +
+
+
+ +
+ December 14, 2017 +

Creating Photopea

+
+ +

Photopea is an advanced image editor, which evolved for more than four years. In terms of complexity, it can be placed next to Adobe Photoshop or GNU GIMP.

+ + + +

It was built around three ideas: make advanced editing accessible to everyone (in terms of cost and device requirements), remove borders between programs (support all existing file formats instead of inventing a new format) and make designers less dependent on their software (if it suddenly stops working, you should still have a chance to use your files somehow).

+ + + +

Now, an the end of 2017, there is a web-based editor Photopea, that runs on every device. It has an excellent support for PSD and Sketch files. It can be used by anybody for free and has been visited by more than 2.5 millions of people, who spent 120 000 hours using it.

+ + +

The Development

+ +

My name is Ivan Kutskir and I am the only developer of Photopea. I am 27 years old graduate of the Charles University in Prague. I live in Prague, Czech Republic, but I was born in Ukraine.

+ + + +

I did things such as programming, creating icons for tools, or writing all posts on this blog. I even designed the logo. Working on PP was my hobby and I truly enjoyed it (most of the time).

+ +

At the beginning, I had no hopes of making anything useful, I was just playing around. The idea of creating an advanced image editor on my own seemed stupid, and making it a webapp seemed like a complete joke.

+ +

After some time, my toy editor started to become more and more powerful. The response from users was very positive, so I decided to keep working on it as long as I can. I have solved 400 bugs and feature requests from users. I also produced several libraries, that are free to use for everybody (open-source under the MIT licence).

+ +

The Future

+ +

Photopea already offers advanced image editing tools and can even replace commercial editors to a large extent. + It is also a platform, which allows adding new state-of-the-art features much faster than the competition. When somebody suggests a new kick-ass feature, it can appear in Photopea the next day. All users always use the latest version of the software.

+ +

I don't plan to keep doing everything myself. I want to create a team of developers as soon as it is possible. I believe we can fully catch up with our competitors and even get beyond. We will keep moving towards the most advanced and the most accessible image editor in the world.

+ +

You can hep me achieve it by using Photopea, recommending it to your friends, making tutorials, or just sharing the info on social networks (many of you already do). Follow us on Facebook or Twitter.

+ + Thank You,
Ivan
+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/even-better-png-minification.html b/blog.photopea.com/even-better-png-minification.html new file mode 100644 index 0000000..42012cc --- /dev/null +++ b/blog.photopea.com/even-better-png-minification.html @@ -0,0 +1,96 @@ + + + + Even better PNG minification + + + + + + + +
+
+
+ +
+ November 22, 2017 +

Even better PNG minification

+
+ +

We introduced a PNG minifier inside Photopea half a year ago. + Today, we are glad to announce, that it is even better!

+ + +

The previous minifier was fast and generated really small files, while keeping a decent quality. But it had problems in some cases, e.g. + when there were large gradients.

+ +

We improved our PNG minifier by implementing a completely different quantization algorithm, based on k-D trees. It generates much better palettes and it is also 6x faster than the previous algorithm.

+ +

In the following example, we wanted to make an original PNG (18 kB - the first image) four times smaller. You can see an output of an old minifier, and an output of a new minifier, which looks significantly better.

+ + + + + + + + + + + + + + + +
Original - 18.7 kBOld minifier - 4.8 kBNew minifier - 4.8 kB
+ +

Our new minifier is already available in Photopea. It is also available in our open-source library UPNG.js and at upng.Photopea.com.

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/gifs/nyanCat.gif b/blog.photopea.com/gifs/nyanCat.gif new file mode 100644 index 0000000..c66c236 Binary files /dev/null and b/blog.photopea.com/gifs/nyanCat.gif differ diff --git a/blog.photopea.com/gifs/nyanCat.png b/blog.photopea.com/gifs/nyanCat.png new file mode 100644 index 0000000..26d86b0 Binary files /dev/null and b/blog.photopea.com/gifs/nyanCat.png differ diff --git a/blog.photopea.com/gifs/nyanCat_pp.gif b/blog.photopea.com/gifs/nyanCat_pp.gif new file mode 100644 index 0000000..e25f208 Binary files /dev/null and b/blog.photopea.com/gifs/nyanCat_pp.gif differ diff --git a/blog.photopea.com/index.html b/blog.photopea.com/index.html new file mode 100644 index 0000000..2b9ff57 --- /dev/null +++ b/blog.photopea.com/index.html @@ -0,0 +1,352 @@ + + + + Photopea Blog + + + + + + + +
+
+
+ +
+ January 12, 2021 + Photopea 5.0 – open Illustrator files! +

A new release of Photopea is here! It has 98 893 lines of code. Play with it at the main site.

+ +
+ +
+ August 24, 2020 + Photopea 4.9 – New tools and formats! +

A new release of Photopea is here! It has 93 064 lines of code. Play with it at the main site.

+ +
+ +
+ June 11, 2020 + Photopea 4.8 – Shadows/Highlights +

A new release of Photopea is here! It has 91 049 lines of code. Play with it at the main site.

+ +
+ +
+ March 1, 2020 + Photopea 4.7 – Puppet Warp +

A new release of Photopea is here! It has 87 368 lines of code. Play with it at the main site.

+ +
+ +
+ January 27, 2020 + Photopea 4.6 – Open Figma Files! +

New release of Photopea is here! It has 84 837 lines of code. Play with it at the main site.

+ +
+ +
+ November 6, 2019 + Photopea 4.5 – Smarter Selections! +

New release of Photopea is here! It has 82 676 lines of code. Play with it at the main site.

+ +
+ +
+ October 13, 2019 + Photopea 4.4 – Text on a Curve and more! +

New release of Photopea is here! It has 81 140 lines of code. Play with it at the main site.

+ +
+ +
+ July 2, 2019 + Photopea 4.3 – Slices and more! + New release of Photopea is here! It has 76 553 lines of code. Play with it at the main site. + +
+ +
+ May 3, 2019 + Photopea 4.2 – try Local Storage! +

New release of Photopea is here! It has 74 109 lines of code. Play with it at the main site.

+
+ +
+ February 26, 2019 + Photopea 4.1 – Actions and new Filters! +

New release of Photopea is here! It has 72 317 lines of code. Play with it at the main site.

+
+ +
+ January 4, 2019 + Photopea 4.0 – NEF, CR2 and ARW support! +

New release of Photopea is here! It has 68 161 lines of code. Play with it at the main site.

+
+ +
+ December 4, 2018 + Photopea 3.9 – Simple Templates! +

New release of Photopea is here! It has 66 263 lines of code. Play with it at the main site.

+
+ +
+ October 21, 2018 + Photopea 3.8 – Live Shapes and new filters! +

New release of Photopea is here! It has 64 545 lines of code. Play with it at the main site.

+
+ +
+ September 26, 2018 + Photopea 3.7 – WMF and EMF support +

New release of Photopea is here! It has 63 342 lines of code. Play with it at the main site.

+
+ +
+ August 13, 2018 + Photopea 3.6 – Edit presets +

New release of Photopea is here! It has 62 371 lines of code. Play with it at the main site.

+
+ +
+ June 14, 2018 + Photopea 3.5 – XD support +

New release of Photopea is here! It has 59 924 lines of code. Play with it at the main site.

+
+ +
+ April 30, 2018 + Photopea 3.4 – Refine Edges +

New release of Photopea is here! It has 57 722 lines of code. Play with it at the main site.

+
+ +
+ February 22, 2018 + Vectorize bitmaps in Photopea! +

We just launched a new feature: bitmap to vector conversion. See how it works!

+
+ +
+ February 3, 2018 + Photopea 3.3: PDF import and export +

New release of Photopea is here! It has 53 249 lines of code. Play with it at the main site.

+
+ +
+ January 19, 2018 + Color Fonts in Photopea +

Starting today, Photopea supports color fonts!

+
+ +
+ December 16, 2017 + Photopea 3.2: Advanced selecting +

New release of Photopea is here! It has 52 146 lines of code. Play with it at the main site.

+
+ +
+ December 14, 2017 + Creating Photopea +

Photopea is an advanced image editor, which evolved for more than four years. In terms of complexity, it can be placed next to Adobe Photoshop or GNU GIMP.

+ +
+ +
+ November 22, 2017 + Even better PNG minification +

We introduced a PNG minifier inside Photopea half a year ago. + Today, we are glad to announce, that it is even better!

+
+ +
+ November 19, 2017 + Compress textures with Photopea +

Today, we are adding a new feature into Photopea: the support for DDS textures.

+
+ +
+ October 8, 2017 + RAW support in Photopea +

Today, we are adding a new feature into Photopea: the support for RAW images.

+
+ +
+ September 26, 2017 + Photopea 3.1 brings Aniamtions! +

New release of Photopea is here! It has 48 384 lines of code. Play with it at the main site.

+
+ +
+ August 14, 2017 + Photopea 3.0: SVG support +

New release of Photopea is here with Scripting and a better support for Sketch files! It has 47 362 lines of code. Play with it at the main site.

+
+ +
+ July 23, 2017 + Photopea 2.9: Scripts are here! +

New release of Photopea is here with Scripting and a better support for Sketch files! It has 45 814 lines of code. Play with it at the main site.

+
+ +
+ July 6, 2017 + Photopea 2.8 with more text options! +

New release of Photopea is here with vector editing capabilities! It has 44 779 lines of code. Play with it at the main site.

+
+ +
+ June 1, 2017 + Photopea 2.7 with vector editing! +

New release of Photopea is here with vector editing capabilities! It has 43 123 lines of code. Play with it at the main site.

+
+ +
+ May 9, 2017 + PNG minifier inside Photopea +

We have added a new feature to Photopea, which can significantly minify PNG images.

+
+ +
+ April 25, 2017 + Photopea 2.6 can open Sketch! +

New release of Photopea is out! It has 40 722 lines of code. Play with it at the main site.

+
+ +
+ March 23, 2017 + Photopea 2.5 +

New release of Photopea is out! It has 38 857 lines of code. Play with it at the main site.

+
+ +
+ March 2, 2017 + Photopea 2.4 +

New release of Photopea is out! It has 38 810 lines of code. Play with it at the main site.

+
+ +
+ February 5, 2017 + Photopea 2.3 – six new tools! +

New release of Photopea is out! It has 37 400 lines of code. Play with it at the main site.

+
+ +
+ January 25, 2017 + Patterns and Fill Layers +

In this little update, we present the full support for Patterns and Fill Layers.

+
+ +
+ January 16, 2017 + Photopea 2.2 +

New release of Photopea is out! It has 36 906 lines of code. Play with it at the main site.

+
+ +
+ September 20, 2016 + Surface Blur and Median +

Today, Photopea gets two new professional filters: Surface Blur filter and Median filter! Moreover, Photopea performs them much faster, than Photoshop and GIMP do, as you can see in the last section. See it in action at the main site. Our images come from Shell And Slate.

+
+ +
+ September 17, 2016 + Photopea Premium +

Starting today, you can upgrade your account to a Premium account. It does not give you any extra features, but it helps us improve Photopea for you.

+
+ +
+ September 9, 2016 + Photopea 2.1 +

New release of Photopea is out! It has 34 982 lines of code. Play with it at the main site.

+
+ +
+ August 24, 2016 + Photopea 2.0 +

New release of Photopea is out! It has 33 593 lines of code. Play with it at the main site.

+
+ +
+ August 3, 2016 + Photopea 1.9 +

New release of Photopea is out! It has 32 156 lines of code. Play with it at the main site.

+
+ +
+ June 28, 2016 + Photopea 1.8 +

New release of Photopea is out! It has 30 533 lines of code. Play with it at the main site.

+
+ +
+ May 2, 2016 + Photopea 1.7 +

New release of Photopea is out! It has 32 200 lines of code. Play with it at the main site.

+
+ +
+ March 31, 2016 + Photopea 1.6 meets Google Drive +

New release of Photopea is out! It has 31 595 lines of code. Play with it at the main site.

+
+ +
+ February 21, 2016 + Photopea 1.5 +

New release of Photopea is out! It has 31 023 lines of code. Play with it at the main site.

+
+ +
+ November 19, 2015 + Photopea 1.4 +

New release of Photopea is out! It has 29 970 lines of code. Play with it at the main site.

+
+ +
+ August 26, 2015 + Photopea 1.3 +

New release of Photopea is out! It has 27 587 lines of code. Play with it at the main site.

+
+ +
+ July 26, 2015 + Photopea 1.2 +

New release of Photopea is out! It has 26 383 lines of code. Play with it at the main site.

+
+ +
+ February 27, 2015 + Photopea 1.1 +

New release of Photopea is out! It has 24 163 lines of code. Play with it at the main site.

+
+ + +
+
+ + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/introduction.html b/blog.photopea.com/introduction.html new file mode 100644 index 0000000..ff05f73 --- /dev/null +++ b/blog.photopea.com/introduction.html @@ -0,0 +1,111 @@ + + + + Introduction + + + + + + + +
+
+
+ +
+ September 14, 2013 +

Introduction

+
+ +

What is Photo Pea, why it was made, and what should it be used for.

+ + + +

A little story

+ +

+ In September 2012, I had two courses of computer graphics behind me and had a lot of spare time. + So I got an idea to make a simple web-based photo editor. I was working on it for 3 months in 2012 and 2 months during this summer, and I really enjoyed it! :) + I learned many new things and realised, that it is not going to be as easy as I expected. +

+ +

Just another photo editor?

+ +

+ Modern photo editors (GNU Gimp, Adobe Photoshop, Zoner Photo Studio) are usually native apps, which have to be downloaded and installed on the device. + It takes pretty long time to turn them on and off. It may bother you, e.g. when you just want to resize a photo. + Adobe Photoshop, which is very often used by many professionals, is also quite expensive. +

+

+ Because photo editors are native apps, it is hard to find any good editor for some minority operating systems. + Some users may even buy some specific operating system just to be able to run the photo editor. + Photo Pea should remove all these problems. +

+ +

Main features of Photo Pea

+ +

Photo Pea should be an advanced editor, so it can be used by professionals. It must have:

+ +
    +
  • Layers - to split images into several parts
  • +
  • Layer masks - just generally useful
  • +
  • Blend modes - specifying, how layers "combine" with each other
  • +
  • Brush - there must be a way to change the color of pixels
  • +
  • Selections - choosing, which pixels of layer you want to edit
  • +
  • Procedural adjustments - changing brightness, hue, saturation, convolutions (blur, sharpening ...) etc.
  • +
+ +

File formats

+ +

I wanted Photo Pea to cooperate with currently used programs and implement their formats. I decided to implement the parser for PSD and XCF.

+ +

Well, you know the goals! Follow this blog to see how am I doing :)

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/merry-christmas.html b/blog.photopea.com/merry-christmas.html new file mode 100644 index 0000000..0750a36 --- /dev/null +++ b/blog.photopea.com/merry-christmas.html @@ -0,0 +1,75 @@ + + + + Merry Christmas! + + + + + + + +
+
+
+ +
+ December 24, 2013 +

Merry Christmas!

+
+ +

Merry Christmas and Happy New Year to all Photo Pea users and fans!

+ +

I am not releasing a new version of Photopea this month, since I am currently too busy with my exams at a college. But new release will be here in February and you will get your Christmas presents (new features) a month later :) .

+ +

If I will be able to keep my tempo, Photopea may evolve into pretty decent tool during the year 2014. Wish me luck!

+ +

Merry Christmas and Happy New Year 2014!

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/page/2 b/blog.photopea.com/page/2 new file mode 100644 index 0000000..c3fb2b4 --- /dev/null +++ b/blog.photopea.com/page/2 @@ -0,0 +1,127 @@ + + + + Photopea Blog + + + + + + + +
+
+
+ +
+ December 31, 2014 + Photopea 1.0 +

New release of Photopea is out! It has 22 931 lines of code. Play with it at the main site.

+
+ +
+ November 30, 2014 + Photopea API +

Connect your webapps and services with Photopea using our first API.

+
+ +
+ October 26, 2014 + Photopea 0.9 +

The ninth release of Photopea is out! It has 20 942 lines of code. Play with it at the main site.

+
+ +
+ June 29, 2014 + Will it work? +

When creating a webapp or webpage, you have a very important dilemma.

+
+ +
+ May 27, 2014 + Photopea 0.8 +

The eighth release of Photopea is out! It has 16 689 lines of code. Play with it at the main site.

+
+ +
+ April 20, 2014 + Photopea 0.7 +

The seventh release of Photopea is out! It has 15 984 lines of code. Play with it at the main site.

+
+ +
+ March 27, 2014 + Photopea 0.6 +

The sixth release of Photopea is out! It has 13 756 lines of code. Play with it at the main site.

+
+ +
+ February 28, 2014 + Photopea 0.5 +

The fifth release of Photopea is out! It has 12 551 lines of code. Play with it at the main site.

+
+ +
+ December 24, 2013 + Merry Christmas! +

Merry Christmas and Happy New Year to all Photo Pea users and fans!

+
+ +
+ November 21, 2013 + Photo Pea 0.4 +

The fourth release of Photo Pea is out! It has 10 988 lines of code. Play with it at the main site.

+
+ +
+ October 27, 2013 + Photo Pea 0.3 +

The third release of Photo Pea is out! It has 9 039 lines of code. Play with it at the main site.

+
+ +
+ September 25, 2013 + Photo Pea 0.2 +

The second release of Photo Pea is out! It has 6 982 lines of code. Play with it at the main site.

+
+ +
+ September 14, 2013 + Photo Pea 0.1 +

Description of the first Photo Pea release. Check it out at the main site.

+
+ +
+ September 14, 2013 + Introduction +

What is Photo Pea, why it was made, and what should it be used for.

+ +
+ + +
+
+ + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/patterns-and-fill-layers.html b/blog.photopea.com/patterns-and-fill-layers.html new file mode 100644 index 0000000..7809c1c --- /dev/null +++ b/blog.photopea.com/patterns-and-fill-layers.html @@ -0,0 +1,87 @@ + + + + Patterns and Fill Layers + + + + + + + +
+
+
+ +
+ January 25, 2017 +

Patterns and Fill Layers

+
+ +

In this little update, we present the full support for Patterns and Fill Layers.

+ + +

Patterns

+ +

Patterns are an important part of every image editor. In PSD files, patterns can be used either in Pattern Fill Layers, or in Layer Styles - Pattern overlay.

+ +

Since this release, Photopea contains a Pattern selection button, which is present in properties of a Fill Layer, or in properties of a Pattern Overlay. When you start Photopea, several basic patterns are loaded. You can also open your own patterns (using File - Open or just by dragging and dropping them into Photopea). Patterns should be in a .PAT format, which is the same as for Adobe Photoshop (you can find lots of free patterns on the internet).

+ + PattButton + +

Fill Layers

+ +

PSD files may contain so-called Fill Layers, their content is generated automatically. Fill layer can contain either a Solid Color, a Gradient or a Pattern (with additional parameters such as the size of the pattern, the angle of the gradient, etc.). You can not draw anything into fill layers, but they may have raster or vector masks attached.

+ +

Since this release, you can create new Fill Layers using Layer - New Fill Layer. You can also edit the parameters of an existing Fill Layer by double-clicking the thumbnail of the layer.

+ + GradientFill + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photo-pea-0-1.html b/blog.photopea.com/photo-pea-0-1.html new file mode 100644 index 0000000..3b9d18a --- /dev/null +++ b/blog.photopea.com/photo-pea-0-1.html @@ -0,0 +1,100 @@ + + + + Photo Pea 0.1 + + + + + + + +
+
+
+ +
+ September 14, 2013 +

Photo Pea 0.1

+
+ +

Description of the first Photo Pea release. Check it out at the main site.

+ +

Features

+ +
    +
  • Parsing and basic rendering of PSD files (see below)
  • +
  • Zoom tool
  • +
  • Hand tool (to move the canvas)
  • +
  • Move tool (for moving layers, masks etc)
  • +
  • History panel + navigation Backward / Forward
  • +
+ +

PSD format

+ +

The first release of Photo Pea contains PSD parser. PSD format comes from Adobe Photoshop and is well documented at Adobe's webpage. My parser is very simple, it parses only 8-bit RGBA image channels (no grayscale, HDR etc.). It also parses several layer properties, raster and vector masks, folder structure and layer effects.

+ +

After making such parser, my next goal was to "draw" the image. User will probably want his project to look exactly like in Photoshop. + And there was the first big problem. Adobe says, how to get each integer, float and string out of their file, but they don't say how to interpret all that data. Some properties are obvious (layer dimensions, position, opacity), but others are not.

+ +

When making a rasterizer, the first necessary thing was to implement blending with different blend modes. Fortunatelly, blend modes are used across differnt applications. In my implementation, blending should work exactly the same, as in Adobe Photoshop, and probably many other programs.

+ +

Another hard and still unfinished feature are layer effects. I had no clue, how they work in Adobe Photoshop, so I could only guess. Usually, it was some combination of blurying, colorizing and combining with current layer. But - for example - Bevel and Emboss effect - I still have no idea how it works. If you know, how Bevel and Emboss effect work, let me know in comments below.

+ +

Speed

+ +

All current Photo Pea code is Javascript and is executed by browser on the CPU. Blending can take several seconds, when you blend large project (several megapixels) with many layers and layer effects. If you look into browser console, you can see some information about parsing and blending time. When you edit something, the project is completely reblended. There is no caching of pre-blended data now.

+ +

Modern native editors usually use GPU through OpenGL or OpenCL. It will be also necessary in Photo Pea for having some decent performance. The WebGL standard is already present in all main browsers, but WebCL, which is more appropriate, is not :(

+ + Screenshot on iPad + +

Drag and Drop your PSD files to PP window and see how it works by yourself :)

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photo-pea-0-2.html b/blog.photopea.com/photo-pea-0-2.html new file mode 100644 index 0000000..21f3b14 --- /dev/null +++ b/blog.photopea.com/photo-pea-0-2.html @@ -0,0 +1,87 @@ + + + + Photo Pea 0.2 + + + + + + + +
+
+
+ +
+ September 25, 2013 +

Photo Pea 0.2

+
+ +

The second release of Photo Pea is out! It has 6 982 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • Saving to PSD format (File - Save as PSD)
  • +
  • Pattern Overlay layer effect implemented
  • +
  • Several bugs removed
  • +
  • Several memory optimizations
  • +
+ +

Saving to PSD

+ +

PSD format uses several types of channel compression. It saves raw data, RLE (PackBits), ZIP with and without prediction. Adobe Photoshop uses RLE by default. At the beginning, I implemented saving raw data. But output files were about 5 times larger, than original from Photoshop, so I decided to implement RLE. My RLE implementation is probably not as good as one from Adobe, because output files are still about 10 to 60 percent larger than original file.

+ +

Now you can easily convert any JPG/PNG/WEBP to PSD inside a browser.

+ +

The input and output works well. I would like to focus on some editing tools in future releases.

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photo-pea-0-4.html b/blog.photopea.com/photo-pea-0-4.html new file mode 100644 index 0000000..6945e2c --- /dev/null +++ b/blog.photopea.com/photo-pea-0-4.html @@ -0,0 +1,85 @@ + + + + Photo Pea 0.4 + + + + + + + +
+
+
+ +
+ November 21, 2013 +

Photo Pea 0.4

+
+ +

The fourth release of Photo Pea is out! It has 10 988 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • Clone Stamp Tool and Eraser Tool
  • +
  • Brush, Clone and Eraser work with raster masks too
  • +
  • First procedural adjustment: Hue/Saturation
  • +
  • Selections: Rectangle select, Ellipse select, Classic and Polygonal Lasso
  • +
  • Magic Wand tool for selecting "similar" pixels
  • +
  • 5 set operations to combine selections
  • +
  • Select -> All, Inverse, Expand, Contract and Feather commands
  • + +
  • Several keyboard shortcuts added
  • +
+ + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-0-3.html b/blog.photopea.com/photopea-0-3.html new file mode 100644 index 0000000..5392506 --- /dev/null +++ b/blog.photopea.com/photopea-0-3.html @@ -0,0 +1,92 @@ + + + + Photo Pea 0.3 + + + + + + + +
+
+
+ +
+ October 27, 2013 +

Photo Pea 0.3

+
+ +

The third release of Photo Pea is out! It has 9 039 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • Editing layer tree (drag'n'drop items, new layer/folder/mask, delete layer, rename)
  • +
  • New options: Save for web, New project
  • +
  • Brush tool - support for .ABR brushes
  • +
  • Color Picker
  • +
  • Several bugs removed
  • +
+ +

ABR brushes

+ +

I was thinking about some good format for storing brushes externally. I found out, that there are tons of brushes in ABR, which is the brush format for Adobe Photoshop. Sadly, this format is not publicly documented. I had to play with it for a long time, until I finally finished the parser (maybe it is called reverse engineering, I am not sure).

+ +

Image Export

+ +

I added 3 formats into Save for web menu: PNG, JPG and WEBP. All existing libraries for encoding were too slow, so I decided to use Canvas.toDataUrl(...). The size and quality of exported files may vary in different browsers.

+ +

Usage scenarios

+ +

In current state, PhotoPea can be used for resizing images (Drag'n'drop a file, File->Save for web, enter dimension, Save). It can also be used as a simple drawing tool with layers and PSD export (and blend modes).

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-0-5.html b/blog.photopea.com/photopea-0-5.html new file mode 100644 index 0000000..c7dc830 --- /dev/null +++ b/blog.photopea.com/photopea-0-5.html @@ -0,0 +1,92 @@ + + + + Photopea 0.5 + + + + + + + +
+
+
+ +
+ February 28, 2014 +

Photopea 0.5

+
+ +

The fifth release of Photopea is out! It has 12 551 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • Crop Tool
  • +
  • Gradient Tool
  • +
  • Loading and parsing Adobe Gradients (.GRD) format
  • +
  • Partial Layer Style editor (double click on lyer)
  • +
  • Several bugs removed
  • +
  • Changing product name from "Photo Pea" to "Photopea"
  • +
+ +

Layer styles

+ +

Automatic layer styles (drop shadow, stroke etc.) are very useful features of every image editor. Currently there exist millions of PSD files, which use layer styles of Adobe Photoshop, so we decided to adopt them as the basic set of styles into Photopea. In future versions, I plan to add new styles or extend current ones by new features.

+ +

Note, that Photopea is only simulating styles from Adobe Photoshop. PSD files contain many numbers (parameters) for each style and Adobe does not say, how to transform those numbers into an actual image, so I implemented them as "how I thing they might work". I still have no idea how Bevel and Emboss work, if you know it, please tell me that in comments.

+ +

GRD files

+ +

Drawing gradients is also a very useful feature of image editor. Currently there are thousands of GRD files available for free on the internet, so I decided to add support for them. To use your GRD file, just drag and drop that file into Photopea.

+ + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-0-6.html b/blog.photopea.com/photopea-0-6.html new file mode 100644 index 0000000..371320d --- /dev/null +++ b/blog.photopea.com/photopea-0-6.html @@ -0,0 +1,82 @@ + + + + Photopea 0.6 + + + + + + + +
+
+
+ +
+ March 27, 2014 +

Photopea 0.6

+
+ +

The sixth release of Photopea is out! It has 13 756 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • Gradient Editor
  • +
  • Move Tool can move and duplicate sub-area now
  • +
  • Vector Masks rebuilt - shapes are combined correctly
  • +
  • Layer menu - New, Delete, Raster Mask, Vector Mask
  • +
  • More features editable in Layer Style Editor (including gradient)
  • +
  • Rendering the project is 12 % faster now
  • +
  • Several bugs fixed
  • +
  • We have a brand new Twitter account and Facebook page. Become a follower!
  • +
+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-0-7.html b/blog.photopea.com/photopea-0-7.html new file mode 100644 index 0000000..77a1cc5 --- /dev/null +++ b/blog.photopea.com/photopea-0-7.html @@ -0,0 +1,87 @@ + + + + Photopea 0.7 + + + + + + + +
+
+
+ +
+ April 20, 2014 +

Photopea 0.7

+
+ +

The seventh release of Photopea is out! It has 15 984 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • Levels tool (Ctrl+L) and Curves tool (Ctrl+M)
  • +
  • Free Transform added (Edit -> Free Transform)
  • +
  • Magnetic Lasso
  • +
  • Copy / Paste of selected area, works between multiple projects
  • +
  • System clipboard support - you can paste any copied (or PrintScreened) image using Ctrl+V
  • +
  • (These two parts will be "merged" after some browser implements the new Clipobard API)
  • +
  • Satin layer style implemented
  • +
  • Nicer alert message panel
  • +
+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-0-8.html b/blog.photopea.com/photopea-0-8.html new file mode 100644 index 0000000..64967b7 --- /dev/null +++ b/blog.photopea.com/photopea-0-8.html @@ -0,0 +1,88 @@ + + + + Photopea 0.8 + + + + + + + +
+
+
+ +
+ May 27, 2014 +

Photopea 0.8

+
+ +

The eighth release of Photopea is out! It has 16 689 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • Layer Fill editing
  • +
  • Selection from layer's alpha channel (Ctrl + click on layer)
  • +
  • Blending optimized (15 % faster)
  • +
  • First two filters in Photopea! Gaussian Blur and Box Blur
  • +
  • Text data parser
  • +
  • We started to examine our options with Type Tool
  • +
+ +

Type Tool

+ +

Native programs can access the list of fonts available at the device. They can read the actual files, parse curves, transform them etc. But there is no API for webapps to access current user's fonts or even checking, if some font is available. The "context2D" API of Canvas element has "fillText" method, which allows us to rasterize simple text. But PSD text may be "Faux" Bold / Italic, or have Warp effects on it. So we need to work with curves.

+ +

Photopea could use its own fonts and don't care about user's fonts. But some users may want to edit their PSDs, where they use some special font. Even basic fonts like Arial or Times new Roman are licenced and Photopea can not use them for free. So we need an option for users to use their own font files.

+ +

We are facing so many obstacles with Type Tool. It should work correctly, while being simple to use. If you have any ideas or suggestions to help us move Photopea forward, write them in the comments below.

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-0-9.html b/blog.photopea.com/photopea-0-9.html new file mode 100644 index 0000000..d4be458 --- /dev/null +++ b/blog.photopea.com/photopea-0-9.html @@ -0,0 +1,90 @@ + + + + Photopea 0.9 + + + + + + + +
+
+
+ +
+ October 26, 2014 +

Photopea 0.9

+
+ +

The ninth release of Photopea is out! It has 20 942 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • Type Tool
  • +
  • Support for TTF fonts (drag'n'drop font file into PP)
  • +
  • Several bugs fixed
  • +
+ +

Type Tool

+ +

Type Tool was probably the hardest tool I had to implement. Not because of complexity of programming, but because of compatibility with PSD format. The problem was finally solved and Photopea can edit text layers of PSD created by Photoshop, and Photoshop can edit text layers of PSD created by Photopea.

+ +

There may be a slight difference in text layers rendered by Photoshop and Photopea. While Photoshop rounds text coordinates to whole pixels, Photopea keeps the coordinates as floating point nubmers, so spaces between lines or between words may be slightly different.

+ +

Fonts

+

Photopea has its own fonts, stored at the web server. Additional fonts must be Drag'n'dropped by user. Photopea can not access local fonts (e.g. C:\Windows\Fonts on Windows) automatically.

+ +

Whenever you edit text layer with missing font, it is rendered by substitute font. Feel free to edit such text layer and save it, Photopea keeps the information about original font, so you can re-render it later (in Photopea or Photoshop, when font is available).

+ + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-1-0.html b/blog.photopea.com/photopea-1-0.html new file mode 100644 index 0000000..cfd0f50 --- /dev/null +++ b/blog.photopea.com/photopea-1-0.html @@ -0,0 +1,94 @@ + + + + Photopea 1.0 + + + + + + + +
+
+
+ +
+ December 31, 2014 +

Photopea 1.0

+
+ +

New release of Photopea is out! It has 22 931 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • Support for Smart Objects
  • +
  • New Brush engine, that supports many features of ABR brushes
  • +
  • Brush panel, that edits many features of ABR brushes
  • +
  • Support for XCF format (Gimp)
  • +
  • Touch support
  • +
  • Support for HiDPI displays
  • +
  • Support for PSB files
  • +
  • Gradients are rendered 3x faster
  • +
  • Several bugs fixed
  • +
+ +

Smart Objects

+ +

New version of PP supports Smart Objects, contained in PSD files. Smart objects are decoded from PSD file. They can be transformed (Free Transform) without loosing quality. Smart Objects are saved back into PSD file.

+ +

XCF files

+ +

XCF files can be opened in PP since this version. PP reads layer structure including folders (groups), layer masks, opacities, blend modes etc. XCF can be saved into PSD, JPG, PNG and other formats, supported by PP.

+ +

Happy New Year 2015!

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-1-1.html b/blog.photopea.com/photopea-1-1.html new file mode 100644 index 0000000..d5fd3ec --- /dev/null +++ b/blog.photopea.com/photopea-1-1.html @@ -0,0 +1,92 @@ + + + + Photopea 1.1 + + + + + + + +
+
+
+ +
+ February 27, 2015 +

Photopea 1.1

+
+ +

New release of Photopea is out! It has 24 163 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • New and correct Hue - Saturation - Lightness editor
  • +
  • Bevel and Emboss style
  • +
  • Contour editor (you can use your own .SHC contours)
  • +
  • 15% faster rendering of layer styles
  • +
  • Caching layer styles (smoother workflow)
  • +
  • Blending layers as RGBA format (20% faster)
  • +
+ +

Bevel and Emboss

+ +

When I was implementing first layer styles (year and a half ago), Bevel and Emboss seemed too complicated and I didn't know how exactly each parameter works. I decided not to do anything else (with PP), until I solve this. It took me one Friday + weekend to figure it out.

+ +

The effect does not look 100% the same, as in Adobe Photoshop, but it is very similar. Computation is quite hard, it may take about 150 ms for 500x500px layer. Most of this time PP is computing distance transform.

+ +

Last two features

+ +

Last two features improve the "smoothness" of Photopea dramatically. Previously, when you edited a project (e.g. moved a layer or entered a new character into text field), PP used to redraw the whole project, recompute each drop shadow or stroke of each layer, and blend it all together. Starting from this version, layer style is re-rendered ony when it is changed, or layers pixels are changed (or global angle is changed etc.). Working with Photopea is much smoother now.

+ +

But smoothness was not the main reason of these two features. Thanks to "thrifty" rendering of styles and keeping pixels in RGBA format (instead of each channel in separate array), PP is ready to move to WebGL-accelerated rendering of layers. Each layer and layer style would have its copy in WebGL memory. Composing layers would be blazing fast, allowing you to smoothly edit large projects with lots of layers. Or, at least, that's what I expect :)

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-1-2.html b/blog.photopea.com/photopea-1-2.html new file mode 100644 index 0000000..1666d96 --- /dev/null +++ b/blog.photopea.com/photopea-1-2.html @@ -0,0 +1,90 @@ + + + + Photopea 1.2 + + + + + + + +
+
+
+ +
+ July 26, 2015 +

Photopea 1.2

+
+ +

New release of Photopea is out! It has 26 383 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • More than 1000 new fonts
  • +
  • Character window
  • +
  • Paragraph window
  • +
  • Stack-style of warnings
  • +
+ +

New fonts

+ +

Using services like Google Fonts and Font Squirrel, I gathered a set of more than 1000 free fonts. All these fonts are available to you in PP now. If you are using some free font in your project, it is probalby already present in Photopea. And if not, you can still drag'n'drop your own TTF font into PP.

+ +

To help you navigate through such a large amount of fonts, they are alphabetically sorted. You can display only specific categories of fonts, or filter out unwanted fonts using restrictions (e.g. displaying only fonts containing Cyrillic characters, etc.).

+ +

Text and paragraph style editing

+ +

Now, you can edit almost all properties of text, that are stored in PSD file (leading, vertical scale, baseline shift, superscript, underline etc.). Controls are separated into Character and Paragraph windows, similar to Adobe Photoshop.

+ + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-1-3.html b/blog.photopea.com/photopea-1-3.html new file mode 100644 index 0000000..792205e --- /dev/null +++ b/blog.photopea.com/photopea-1-3.html @@ -0,0 +1,87 @@ + + + + Photopea 1.3 + + + + + + + +
+
+
+ +
+ August 26, 2015 +

Photopea 1.3

+
+ +

New release of Photopea is out! It has 27 587 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • WebGL acceleration
  • +
  • Eyedropper tool
  • +
  • Faster rasterization of layer styles
  • +
  • Several bugs removed
  • +
+ +

WebGL acceleration

+ +

Most of modern native image editors use GPU acceleration, usually through OpenGL interface. Since this release, Photopea is also accelerated, thanks to WebGL interface. Acceleration can be enabled or disabled at any time during work, using a checkbox at the top of the editor.

+ +

Pixel data of each layer are stored in WebGL memory. WebGL is used for blending (for all blend modes), weighted average (used in masking and layer styles) and for user interface (applying zoom on project, combining with background grid, highlighting selection area etc). We plan to use hadrware acceleration also for other operations in the future.

+ +

Redrawing a project with resolution 2048x1152 pixels, with 10 full-size layers and 3 layer effects takes 850 ms without WebGL acceleration, and 55 ms with acceleration. Try it by yourself on your own device in this demo. Feel free to download PSD and open it in Photoshop or Gimp for comparison. In my case, Photopea seems even a little smoother.

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-1-4.html b/blog.photopea.com/photopea-1-4.html new file mode 100644 index 0000000..b9a64cc --- /dev/null +++ b/blog.photopea.com/photopea-1-4.html @@ -0,0 +1,89 @@ + + + + Photopea 1.4 + + + + + + + +
+
+
+ +
+ November 19, 2015 +

Photopea 1.4

+
+ +

New release of Photopea is out! It has 29 970 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • Adjustment layers
  • +
  • Blend modes and layer styles on folders
  • +
  • Clear and Fill operation on layers and masks
  • +
  • Several bugs removed
  • +
+ +

Adjustment layers

+ +

Adjustment layers can be present in PSD files since Adobe Photoshop 4.0. Photopea can load these layers from PSD, display them in Layers panel and save them back into PSD file. Brightness/Contrast, Levels, Curves, Exposure, Vibrance, Hue/Saturation layers have full support (new adjustment layers can be created, edited, and rendered by Photopea). And of course, they are processed by the GPU in WebGL mode. New types of adjustments will be implemented in the future.

+ +

Parameters of adjustment layer can be edited in a new panel Properties, which is the similar way they are edited in Adobe Photoshop.

+ +

Blending folders

+ +

Folder of layers can have its own blend mode and layer style. Instead of a single layer, layer style is applied to a whole content of a folder. For example, if you want to stroke the layer 10 times, you can put it into 10 nested folders and give layer effect to each one of them.

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-1-5.html b/blog.photopea.com/photopea-1-5.html new file mode 100644 index 0000000..df79660 --- /dev/null +++ b/blog.photopea.com/photopea-1-5.html @@ -0,0 +1,95 @@ + + + + Photopea 1.5 + + + + + + + +
+
+
+ +
+ February 21, 2016 +

Photopea 1.5

+
+ +

New release of Photopea is out! It has 31 023 lines of code. Play with it at the main site.

+ +

New features

+ +
    +
  • Custom cursors for some tools
  • +
  • Context menu (right-click) in Layers panel
  • +
  • Layer and style rasterization
  • +
  • Merging layers
  • +
  • Layer duplication, duplication between projects
  • +
  • Creating and editing smart objects (doubleclick on thumbnail)
  • + +
  • Several bugs removed
  • +
+ +

Custom cursors

+ +

Since this version, Photopea uses custom cursors for some tools. We have hand cursor for Hand tool, plus and minus cursor for Zoom tool + and arrow cursors for resizing rectangles (Free Transform, Crop, Type tool). Brush-like tools (Brush, Eraser, Clone Stamp) have cursor as a contour of current brush.

+ +

Smart objects

+ +

Unlike classic layer, which has a constant pixel data, smart layer has fixed source (JPG file, PSD file ...) and pixel data can be regenerated at any time from that source. After transforming layer to be 10x smaller and then transforming it back, making it 10x bigger, classic layer loses precission, becomes pixelized. Smart layer does not, because its content is regenerated from original source file.

+ +

Another advantage of smart layer is, that we can have multiple smart layers with a same source (e.g same snowflake at different positions and sizes). After editing a source (doubleclick, editing, File - Save Smart Object), all smart layers that use it are updated.

+ + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-1-6-meets-google-drive.html b/blog.photopea.com/photopea-1-6-meets-google-drive.html new file mode 100644 index 0000000..1227215 --- /dev/null +++ b/blog.photopea.com/photopea-1-6-meets-google-drive.html @@ -0,0 +1,91 @@ + + + + Photopea 1.6 meets Google Drive + + + + + + + +
+
+
+ +
+ March 31, 2016 +

Photopea 1.6 meets Google Drive

+
+ +

New release of Photopea is out! It has 31 595 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Available through Google Drive
  • +
  • Support for BMP and ICO formats (both opening and export)
  • +
  • Improved interface (tabbable input elements, highlighting text input after clicking on the label)
  • +
+ +

Google Drive

+ +

To make Photopea available inside your Google Drive, install it from Photopea at Chrome Webstore (you don't need the Chrome browser, but you must have a Google account). You can also install it to Google Drive through Settings - App management - Add a new app and searching for Photopea.

+ +

After installation, doubleclick any PSD file (in Google Drive) to open it using Photopea. You can also open other files (JPG, PNG, ...) using right click - Open with - Photopea. Feel free open multiple files at the same time. When you're done, simply press Ctrl+S to save it back to Google Drive in the original format. You can also create a new PSD inside Google Drive, just click Create - More - Photopea.

+ + + +

There is a new Save button (available through Ctrl+S), which can save the project to its "origin". The origin can be Google Drive, distant server (when you are using Photopea API), or another PSD, when you are editing a Smart Object.

+ +

Photopea is limited to updating a file, which already existed in the GD (or was created from the GD). In the future, you will be able to navigate through your Drive structure from Photopea, save a project to multiple locations in multiple formats, etc.

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-1-7.html b/blog.photopea.com/photopea-1-7.html new file mode 100644 index 0000000..ccfe1ac --- /dev/null +++ b/blog.photopea.com/photopea-1-7.html @@ -0,0 +1,94 @@ + + + + Photopea 1.7 + + + + + + + +
+
+
+ +
+ May 2, 2016 +

Photopea 1.7

+
+ +

New release of Photopea is out! It has 32 200 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Support for GIF format (import just a single frame, export as a one-frame GIF)
  • +
  • Guides (moving, adding, deleting)
  • +
  • Rulers (View - Rulers)
  • +
  • Drawing straight lines when holding Shift
  • +
  • Rotating 15 degrees when holding Shift
  • +
  • Grouping Layers (Ctrl+G)
  • +
  • View - Zoom In / Out (Ctrl and +/-)
  • +
  • Drag-n-Dropped images are added into a current project as new layers
  • +
  • Warning mesage before closing PP, when there are unsaved changes
  • +
+ +

Guides

+ +

Guides are horizontal or vertical lines, which can help us with aligning elements inside a project. To create a guideline, enable Rulers first (View - Rulers or Ctrl+R). You can edit guides using Move tool only. Now you can click on horizontal ruler an drag down a new guide from it. Any guide can be moved also using Move tool. In order to remove a guide, click on it and drag it back onto horizontal ruler. You can work with vertical guides in the same way, using the vertical ruler.

+ +

When you save your project as PSD, rulers are included into PSD file and will be available after opening that file in Adobe Photoshop or other programs with PSD support.

+ + + + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-1-8.html b/blog.photopea.com/photopea-1-8.html new file mode 100644 index 0000000..4f29b53 --- /dev/null +++ b/blog.photopea.com/photopea-1-8.html @@ -0,0 +1,99 @@ + + + + Photopea 1.8 + + + + + + + +
+
+
+ +
+ June 28, 2016 +

Photopea 1.8

+
+ +

New release of Photopea is out! It has 30 533 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Clipping masks
  • +
  • Scrolling with a mouse wheel
  • +
  • Choosing an object under a cursor with the Move tool (hold Ctrl)
  • +
  • Toy / Experiment: File - Take a picture, File - Save Online
  • +
  • Image navigation in Save For Web
  • +
  • Keyboard shortcuts for tools (B: brush, V: move, ...)
  • +
  • Switching to HTTPS, several bugs removed, ...
  • +
+ +

Clipping masks

+ +

Clipping masks is another very popular property in PSD files. When a layer is set to be a clipping mask, it is applied only to the layer beneath it (the bottom layer "clips" the clipping mask layer). When there is a "chain" of clipping masks, all of them are applied to the first layer beneath them, which is not a clipping mask.

+ +

To make a layer a clipping mask, you can right-click it and select Enable Clipping Mask / Disable Clipping Mask.

+ + + +

Take a photo

+ +

Would you like to show your new haircut to a friend? Simply go to Photopea.com, choose File - Take a photo, take a picture into a new project, choose File - Save Online (to Imgur), share a link with your friend, done!

+ +

I have added these new functions (Take a photo and Save online) mainly because of myself. Sometimes, I need to take a picture quickly and it would take too long to do it through a phone. There are many webapps, which can take a picture using a webcam, but they have low resolution, they are full of ads and use Flash. With Photopea, it takes just 2 clicks now.

+ +

Saving a file online temporarily is quite useful, when I need to share a printscreen with my friend. I can insert it straight into Imgur (or similar service), but I usually need to crop it, highlight something etc. before sharing. It also can be used to quickly share a preview of your work with a friend or a client.

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-1-9.html b/blog.photopea.com/photopea-1-9.html new file mode 100644 index 0000000..23a2f73 --- /dev/null +++ b/blog.photopea.com/photopea-1-9.html @@ -0,0 +1,94 @@ + + + + Photopea 1.9 + + + + + + + +
+
+
+ +
+ August 3, 2016 +

Photopea 1.9

+
+ +

New release of Photopea is out! It has 32 156 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Brand new font parser Typr.js!
  • +
  • Support for OTF fonts
  • +
  • Warping of type layers
  • +
  • 1000 new fonts in the database
  • +
  • Keeping aspect ratio when saving for web
  • +
  • Several bugs fixed
  • +
+ +

Typr.js

+ +

Photopea was using opentype.js library for parsing and drawing fonts. Because of bugs, OTF fonts were rendered incorrectly. Several free TTF fonts were impossible to parse and had to be excluded from our database.

+ +

We made a brand new library Typr.js, which renders OTF fonts correctly and supports even old TTF files. We released it as open-source, available to everybody for free.

+ +

Text Warping

+ +

Type layers in a PSD file may have warp parameters attached to them. Warping parameters bend the text in some way. Starting with this release, warped layers are rendered correctly. You can also change warping parameters of existing layers and add warping to the new layers.

+ + + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-2-0.html b/blog.photopea.com/photopea-2-0.html new file mode 100644 index 0000000..ae9ab29 --- /dev/null +++ b/blog.photopea.com/photopea-2-0.html @@ -0,0 +1,97 @@ + + + + Photopea 2.0 + + + + + + + +
+
+
+ +
+ August 24, 2016 +

Photopea 2.0

+
+ +

New release of Photopea is out! It has 33 593 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Ready for Localization!
  • +
  • Preserving settings
  • +
  • Simple user accounts
  • +
  • Paint Bucket tool
  • +
  • Colors of layers
  • +
  • Several bugs fixed
  • +
+ +

Localization

+ +

Starting with this release, Photopea is prepared for localization to other languages. Right now, you can choose between the English and the Czech language, which was added as a proof of concept.

+ +

We don't have the capacity to translate Photopea, so we would like to ask you, our users, to do it. We have prepared a Translation App, where you can easily translate Photopea to your language. Share a link with your friend and translate it together. As soon as any language gets 50 - 70 % translated, it will be added to Photopea.com :)

+ +

For such purposes, we have created a special OpenWord format, which is free to implement by anybody. The future localization files will also be shared with the open source community.

+ + languages + +

Preserving settings

+ +

During your work with Photopea, you may change the settings of the environment (enable rulers, change the foreground or background color, change the language, more settings are coming in the future). Since this release, Photopea remembers these settings, so you get back to the same environment the next time you open Photopea.

+ +

We have made a simple user database. You can log in with your Google or Facebook account. When you are logged in, your settings are stored on the server, in case you lose your computer or need to work from another device.

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-2-1.html b/blog.photopea.com/photopea-2-1.html new file mode 100644 index 0000000..b8a1dab --- /dev/null +++ b/blog.photopea.com/photopea-2-1.html @@ -0,0 +1,95 @@ + + + + Photopea 2.1 + + + + + + + +
+
+
+ +
+ September 9, 2016 +

Photopea 2.1

+
+ +

New release of Photopea is out! It has 34 982 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Filters and Smart Filters!
  • +
  • Converting text to vector mask
  • +
  • Edit - Transform - Rotate, Flip ...
  • +
  • Rotation in Crop tool
  • +
  • Support for PSDs with zipped image data
  • +
  • Several bugs fixed
  • +
+ +

Filters and Smart Filters

+ +

Image filters are a very common tool in many image editors. When you apply a filter to an image, the original pixels are replaced with new, filtered pixels. Photopea has the same behavior, when you apply filters to a classic layer.

+ +

In a PSD format, instances of a smart object may have a list of filters attached to them (called Smart Filters). When a smart object is changed, filters are re-applied. Such filters can be reconfigured, enabled or disabled at any time in the future. The original image is still preserved inside a smart object. Smart filters can have their own mask, which hides the filtered image, revealing the original image.

+ + + +

In order to let users work with PSDs containing smart filters, Photopea probably has to support a HUGE amout of filters. It is not clear how many, because there is no list of filters in the official specification.

+ +

In version 2.1, Photopea supports following filters: Average, Blur, Blur More, Box Blur, Gaussian Blur, Add Noise, Clouds, Sharpen, Sharpen More and Find Edges. Which filters do you use the most? Let us know and we will add them in the future!

+ +

P.S. With each new version of Photopea, there are new phrases, that need translation to other languages. Even when the previous version of Photopea was fully translated to some language, the translation becomes incomplete with a new version. You can help us translate Photopea to your language at photopea.com/translate.

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-2-2.html b/blog.photopea.com/photopea-2-2.html new file mode 100644 index 0000000..872d1b5 --- /dev/null +++ b/blog.photopea.com/photopea-2-2.html @@ -0,0 +1,99 @@ + + + + Photopea 2.2 + + + + + + + +
+
+
+ +
+ January 16, 2017 +

Photopea 2.2

+
+ +

New release of Photopea is out! It has 36 906 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Distortion transform
  • +
  • Warp transform
  • +
  • Info panel
  • +
  • Several bugs fixed
  • +
+ +

PSD files may contain Smart Objects, which have different transformations applied to them. In order to let our users edit these transformations, we decided to add them into Photopea. They work in a similar way as in Adobe Photoshop and probably other photo editors.

+ +

Distortion

+ +

Free Transform (Edit - Free Transform) is a part of Photopea for a long time. It allows us to scale, rotate and skew layers in many ways. However, it is not possible to make a "3D transformation" with it. Since now, we can use Distortion transform in Photopea. When the Free Transform is on, press and hold the Control button. Now, you can move each corner of an image independently on other corners.

+ + distort + +

Warp

+ +

Distortion may let us do a 3D transformation of an image, but it is still not enough in some cases. Sometimes, we may want to place an image on the surface, which is not flat (a cylinder or a sphere). In these cases, we would like to "bend" the image into a more interesting shape.

+ +

Warp allows us to bend the rectangular area using 16 control points. There are four control points for the location of corners, each corner has two control points for the direction of edges near that corner (8 more points) and there are four control points for the center of an image. There are also several predefined shapes, such as Arch or Flag, so you don't have to move points manually.

+ +

When Free Transform is on, there will be a "Warp" button in the top panel. Click it to switch between a standard editing mode and a warp editing mode.

+ + warp + +

Both distortion and warping are applicable to standard layers, smart objects, raster masks and vector masks (shapes). When transforming smart objects, transformation parameters are loaded from a PSD file and they will be stored back into a PSD file.

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-2-3-six-new-tools.html b/blog.photopea.com/photopea-2-3-six-new-tools.html new file mode 100644 index 0000000..ff3958a --- /dev/null +++ b/blog.photopea.com/photopea-2-3-six-new-tools.html @@ -0,0 +1,97 @@ + + + + Photopea 2.3 – six new tools! + + + + + + + +
+
+
+ +
+ February 5, 2017 +

Photopea 2.3 – six new tools!

+
+ +

New release of Photopea is out! It has 37 400 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Blur Tool, Sharpen Tool, Smudge Tool
  • +
  • Dodge Tool, Burn Tool, Sponge Tool
  • +
  • Flow parameter added to Brush, Eraser and Clone Stamp tools
  • +
  • Offset filter (Filter - Other - Offset)
  • +
  • Several bugs fixed
  • +
+ +

Six new tools for image editing have been added to Photopea today. You may already know these tools from other editors (Adobe Photoshop, Gimp, Pixlr, ...). While there are six separate tools in Photoshop and Pixlr (and Photopea), in Gimp, Blur and Sharpen are connected into a single tool, as well as Dodge and Burn.

+ +

All these tools behave like brushes. You can choose a specific diameter and a hardness of the tip, as well as many other parameters of brushes (in the Brush window). All of them can be applied to raster masks, too.

+ +

Blur, Sharpen, Smudge

+ +

The Blur Tool can be used for bluring specific areas of an image, same for the Sharpen tool. The Smudge tool is probably the most advanced of them all. It is the analogy of moving your finger across the wet paint on the painting. You can spread colors to other areas, make object longer or shorter, or move the border between two objects.

+ + distort + +

Dodge, Burn, Sponge

+ +

Dodge and Burn tools can be used to make image lighter or darker. As in other editors, you can choose, whether you want to dodge shadows, midtones or highlights. Use Sponge tool to saturate or desaturate specific areas of an image.

+ +

Right now, these tools are located in two separate tool groups, just as in Adobe Photoshop. Let us know, if you would prefer other locations of these tools.

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-2-4.html b/blog.photopea.com/photopea-2-4.html new file mode 100644 index 0000000..2afde3f --- /dev/null +++ b/blog.photopea.com/photopea-2-4.html @@ -0,0 +1,109 @@ + + + + Photopea 2.4 + + + + + + + +
+
+
+ +
+ March 2, 2017 +

Photopea 2.4

+
+ +

New release of Photopea is out! It has 38 810 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Spot Healing Brush
  • +
  • Healing Brush
  • +
  • Patch Tool
  • +
  • Several bugs fixed
  • +
+ + + +

Spot Healing Brush

+ +

This tool is present in Adobe Photoshop, Pixlr, Affinity Photo and many other editors. It usually has the name Spot Healing Brush, Inpainting tool, Retouch tool etc.

+

Spot Healing brush lets you remove objects and unwanted artifacts from pictures. Simply draw over an unwanted area, just like you do with a Brush tool, and release the mouse. After that, the area, that you drew over, will be "forgotten" and replaced with some appropriate content, that surrounds the area.

+ +

For example, when you have a sandy beach and there is a stone in the middle, you draw over that stone and it will be replaced with sand. If you have a field with yellow flowers and a single red flower, you draw over the red flower and it will be replaced by a yellow flower. You can "heal" the skin, remove scratches from old photographs etc.

+ +

You would have to use Clone Stamp for several minutes to achieve a similar result. Spot Healing Brush usually takes 1 to 5 seconds. In extreme cases, it may take up to 30 seconds to fill the area (when the area, that is being healed, is more than 50% of the whole image area).

+ +

Below, you can see the original image, the spot, that is being healed, a result from Photopea and a result from Adobe Photoshop. We believe, that Photopea produces better results, than Adobe Photoshop (but it also takes more time).

+ + + + + + + + + +

Also, when some part of the image is missing (e.g. corners after rotating the photo), you can use Spot Healing Brush as a "content-aware fill".

+ +

Healing Brush and Patch tool

+ +

These tools are also very popular in image editors. They perform an advanced cloning, which adapts the new content to its surrounding.

+ +

Using a Healing brush is the same as using Clone Stamp. The only difference is, that the cloned content is adapted after releasing the mouse. With a patch tool, you first have to create a selection over an area that you want to be replaced. Then, you can drag that selection to another place, to choose the source of cloning. And again, the area is adapted after releasing the mouse.

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-2-5.html b/blog.photopea.com/photopea-2-5.html new file mode 100644 index 0000000..a54d68a --- /dev/null +++ b/blog.photopea.com/photopea-2-5.html @@ -0,0 +1,93 @@ + + + + Photopea 2.5 + + + + + + + +
+
+
+ +
+ March 23, 2017 +

Photopea 2.5

+
+ +

New release of Photopea is out! It has 38 857 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Enhancing Layer Styles
  • +
  • Enhancing Adjustment layers
  • +
  • Folders with layer styles improved
  • +
  • Several bugs fixed
  • +
+ +

Enhancing layer styles

+ +

We have updated the rendering of layer styles in this release. Stroke style has a Fill Type: Color, Gradient or Pattern. Bevel and Emboss may have an additional Contour or a Texture.

+ +

Styles are much smoother, you can use even complex combinations of style parameters. Try the gold text effect.

+ + + + +

Enhancing Adjustment layers

+ +

Adjustment layers are perfect for tweaking the look of several layers without actually changing their content. Previously, adjustment layers could have their own opacity and mask. Now, they can aditionally have their own blend mode and layer styles.

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-2-6-can-open-sketch.html b/blog.photopea.com/photopea-2-6-can-open-sketch.html new file mode 100644 index 0000000..3eefbbc --- /dev/null +++ b/blog.photopea.com/photopea-2-6-can-open-sketch.html @@ -0,0 +1,111 @@ + + + + Photopea 2.6 can open Sketch! + + + + + + + +
+
+
+ +
+ April 25, 2017 +

Photopea 2.6 can open Sketch!

+
+ +

New release of Photopea is out! It has 40 722 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Reading Sketch files
  • +
  • Artboards support
  • +
  • Masks can have additional Density and Feather
  • +
  • Support for multiple shadows / fills in Layer Styles
  • +
+ +

Sketch file support

+ +

Sketch is a very popular program for creating vector graphics, used by many designers. Sadly, the program is available for Mac OS only and it is quite expensive.

+ +

Since the version 2.6, Photopea can read Sketch files. You can use it to render Sketch files, export them as PNGs, view the layer structure and more. + Sketch elements are converted into corresponding Photopea elements. You can edit colors, gradients, visibility, blend modes, text inside text layers and so on. And since Photopea can save files as PSD, you can use it as a Sketch to PSD converter.

+ +

Here are several examples of Sketch files.

+ + + + + + + + + + + + + + + + + +
Code Editor: SketchViewerPhotopea
Miranda Kerr: SketchViewerPhotopea
Milk Page: SketchViewerPhotopea
The Martian: SketchViewerPhotopea
+ +

Sketch designers often use free fonts. Thousands of free fonts are available in Photopea. If you can not open some Sketch file with a Sketch App because of a missing font, there is a big chance, that Photopea will open it with correct fonts without any problems.

+ + + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-2-7-with-vector-editing.html b/blog.photopea.com/photopea-2-7-with-vector-editing.html new file mode 100644 index 0000000..0ffb0f9 --- /dev/null +++ b/blog.photopea.com/photopea-2-7-with-vector-editing.html @@ -0,0 +1,90 @@ + + + + Photopea 2.7 with vector editing! + + + + + + + +
+
+
+ +
+ June 1, 2017 +

Photopea 2.7 with vector editing!

+
+ +

New release of Photopea is here with vector editing capabilities! It has 43 123 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Path Selection and Direct Selection
  • +
  • Pen and Free Pen tool
  • +
  • geometric shapes, Custom Shape tool
  • +
  • support for CSH vector symbol collections
  • +
  • starting photopea.com/learn
  • +
+ +

Vector Drawing

+ +

We have added vector editing tools in this version of Photopea. You can either edit an existing vector content from PSD or Sketch files, or create new content with special tools.

+ + + +

To describe how vector graphics work in Photopea, we have written a description of vector tools in Photopea. You can learn there, how to use all the new tools and other features.

+ + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-2-8-with-more-text-options.html b/blog.photopea.com/photopea-2-8-with-more-text-options.html new file mode 100644 index 0000000..9dad43f --- /dev/null +++ b/blog.photopea.com/photopea-2-8-with-more-text-options.html @@ -0,0 +1,96 @@ + + + + Photopea 2.8 with more text options! + + + + + + + +
+
+
+ +
+ July 6, 2017 +

Photopea 2.8 with more text options!

+
+ +

New release of Photopea is here with vector editing capabilities! It has 44 779 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Right-to-left writing direction
  • +
  • The correct rendering of arabic, hebrew and many asian writing styles
  • +
  • Font search
  • +
  • Grid and Snapping
  • +
  • Parametric Vector Shape tool
  • +
  • Several bugs fixed
  • +
+ +

More writing styles

+ +

Rendering bidirectional text is much more than just drawing letters in an opposite order. + When arabic or hebrew text contains latin words or numbers, they have to be rendered in a left-to-right order. + Also, some characters have to be "mirrored", e.g. when you write (A < B) inside arabic text, reordering will give you )B < A(., which is incorrect. In some languages, the same character may have to be drawn differently, depending on characters around it.

+ +

Since this release, Photopea supports many writing styles, including Hebrew and Arabic. Also, we have updated our open-source library Typr.js and wrote a lesson about text editing in Photopea.

+ + + +

Every user of PP knows, that there are many, maybe too many fonts. It may be hard to find a specific font in a huge list of fonts. + Since now, there is a new field, where you can enter the name of the font (or some part of it). As you type, the list of fonts + will be filtered, and only those which contain your phrase in their name will remain. Clear this field to get a full list of fonts again.

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-2-9-scripts-are-here.html b/blog.photopea.com/photopea-2-9-scripts-are-here.html new file mode 100644 index 0000000..df2f7da --- /dev/null +++ b/blog.photopea.com/photopea-2-9-scripts-are-here.html @@ -0,0 +1,96 @@ + + + + Photopea 2.9: Scripts are here! + + + + + + + +
+
+
+ +
+ July 23, 2017 +

Photopea 2.9: Scripts are here!

+
+ +

New release of Photopea is here with Scripting and a better support for Sketch files! It has 45 814 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Support for Scripts
  • +
  • Better Sketch support
  • +
  • Showing distances for the Move tool
  • +
  • Several bugs fixed
  • +
+ +

Scripts

+ +

Since this release, Photopea can execute scripts (written in Javascript) and perform image manipulation automatically. + You can find more details at photopea.com/learn/scripts. + Scripts can be executed either directly (from Photopea), or through the api.

+ + + +

Sketch files

+ +

We improved the support for Sketch files in two ways. First, borders are converted into vector shape strokes (instead of Stroke layer effects). + Such new borders look more precise. They can be used even with no fill (i.e. lines in a Sketch file are converted into lines in a PSD). + We made several other improvements, which dramatically reduced possible differences between generated PSDs and original Sketch files.

+ +

Second, we improved the loading time and memory requirements for Sketch files. Sketch files are now loaded 20% faster + and they use about 40% less RAM. Even the work with large files is smooth and responsive.

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-3-0-with-svg.html b/blog.photopea.com/photopea-3-0-with-svg.html new file mode 100644 index 0000000..7a1aa42 --- /dev/null +++ b/blog.photopea.com/photopea-3-0-with-svg.html @@ -0,0 +1,93 @@ + + + + Photopea 3.0: SVG support + + + + + + + +
+
+
+ +
+ August 14, 2017 +

Photopea 3.0: SVG support

+
+ +

New release of Photopea is here with Scripting and a better support for Sketch files! It has 47 362 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • SVG import and export
  • +
  • Improved touch-screen experience
  • +
  • Premium accounts for teams
  • +
  • Several bugs fixed
  • +
+ +

SVG

+ +

SVG is a very popular format for storing vector graphics, and it is probably the only truly "web format" for this purpose. + Unlike PDF, SVG can be crated with a text editor (just like HTML), you can use CSS to style it, and Javascript to make it interactive. + Even comlex vector graphics can be stored in SVG, such as this Lamborghini (zoom in to see, that everything really is vector graphics).

+ +

Starting today, you can load SVG files into Photopea, and export SVG files from it. You can use it as a PSD to SVG converter, Sketch to SVG converter, SVG to PSD converter etc.

+ +

Load the Lamborghini now and see, that all the vector shapes and their properties are preserved. Now, you can save it as a PSD, or export back to SVG (File - Export As - SVG).

+ + + +

There are several options of SVG export. You can choose to export raster layers, rasterize text layers and more. When you export a PSD to SVG and then convert the PSD back to SVG, it almost always preserves the same structure.

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-3-1-brings-aniamtions.html b/blog.photopea.com/photopea-3-1-brings-aniamtions.html new file mode 100644 index 0000000..680b68b --- /dev/null +++ b/blog.photopea.com/photopea-3-1-brings-aniamtions.html @@ -0,0 +1,106 @@ + + + + Photopea 3.1 brings Aniamtions! + + + + + + + +
+
+
+ +
+ September 26, 2017 +

Photopea 3.1 brings Aniamtions!

+
+ +

New release of Photopea is here! It has 48 384 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Working with animations
  • +
  • Support for APNG (animated PNG) format
  • +
  • CSS panel
  • +
  • Selective Color adjustment
  • +
  • Several bugs fixed
  • +
+ +

Animations

+ +

Animated images (GIF, APNG) are very popualr on the internet. Since today, Photopea offers you a simple and comfortable way to work with them. Let's start with a few basic things you can do:

+
    +
  • When you open an animated GIF or PNG in Photopea, each frame is in a separate layer
  • +
  • When you save such document back into GIF or PNG, it generates the same animation (with the same timing etc.)
  • +
  • If you remove or reorder layers (frames), add new ones etc., Photopea will generate the corresponding animation
  • +
+ +

You can also create new animations from scratch, or change the timing of each frame. + Animation is controlled by the special format of layer names. Find more at Learn Animations.

+ +

After loadeing this 32kB GIF into Photopea, we were able to export it as this 26kB GIF and also as this 8kB APNG. + Feel free to try it in Photopea!

+ + + +

Animated PNG is a new format, which usually generates smaller files than GIF. It also supports any number of colors (GIF can have only 256 colors) and partially transparent pixels. Photopea is one of first editors, that support APNG.

+ +

CSS panel

+ +

In this version, we added a new CSS panel. As you select different layers, Photopea tries to deduce a style of the layer, and shows it in the CSS format. It takes into account layer styles, shape properties and parameters of a Type layer. +

+ + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-3-2-advanced-selecting.html b/blog.photopea.com/photopea-3-2-advanced-selecting.html new file mode 100644 index 0000000..df211ac --- /dev/null +++ b/blog.photopea.com/photopea-3-2-advanced-selecting.html @@ -0,0 +1,99 @@ + + + + Photopea 3.2: Advanced selecting + + + + + + + +
+
+
+ +
+ December 16, 2017 +

Photopea 3.2: Advanced selecting

+
+ +

New release of Photopea is here! It has 52 146 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Quick Selection Tool
  • +
  • Ruler Tool
  • +
  • Improving the script support
  • +
  • Faster loading of photopea.com
  • +
  • Each vector tool can change the vector style
  • +
  • Many bugs fixed
  • +
+ +

Quick Selection

+ +

Quick Selection tool is the most advanced of all current selection tools. Yes, it is more advanced than the Magic Wand and the Magnetic Lasso. Once you learn how to use it, you will probably never want to use any other selection tool.

+ +

Quick Selection works like a Brush, it selects each stroke that you draw. In addition, it expands each stroke to the surrounding area, and selects all related areas (similarly to the Magic Wand). You can learn more at photopea.com/learn.

+ +

Similar tools are present in many advanced photo editors, such as Photoshop or Pixelmator. Photopea is probably the first editor, which offers this tool for free. Try it yourself here (press W to enable Quick Selection, increase the diameter and draw over the image).

+ + + + + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-3-3-pdf-import-and-export.html b/blog.photopea.com/photopea-3-3-pdf-import-and-export.html new file mode 100644 index 0000000..3c6fc1e --- /dev/null +++ b/blog.photopea.com/photopea-3-3-pdf-import-and-export.html @@ -0,0 +1,99 @@ + + + + Photopea 3.3: PDF import and export + + + + + + + +
+
+
+ +
+ February 3, 2018 +

Photopea 3.3: PDF import and export

+
+ +

New release of Photopea is here! It has 53 249 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • PDF support
  • +
  • PS / EPS import
  • +
  • Improving scripting
  • +
  • Improved zooming (smaller steps)
  • +
  • HSB values in the Color Picker
  • +
  • Several bugs fixed
  • +
+ +

PDF support

+ +

In this release, we introduce the support for PDF files. It is does not make Photopea a full PDF editor, but more like an advanced PDF to PSD converter, and PSD to PDF converter. And since Photopea already supports SVG, you can use it to convert between PDF and SVG.

+ + + +

Go to Photopea.com and try to open your PDF files. Photopea can load vector graphics (including color or gradient fills, correct stroke style etc.), raster graphics (both compressed and uncompressed) and text information. Each page will become a new artboard, and each graphic element will be in a separate layer.

+ + + +

We made our PDF tools open-source as a library PDFI.js.

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-3-4-refine-edges.html b/blog.photopea.com/photopea-3-4-refine-edges.html new file mode 100644 index 0000000..2177fd0 --- /dev/null +++ b/blog.photopea.com/photopea-3-4-refine-edges.html @@ -0,0 +1,98 @@ + + + + Photopea 3.4 – Refine Edges + + + + + + + +
+
+
+ +
+ April 30, 2018 +

Photopea 3.4 – Refine Edges

+
+ +

New release of Photopea is here! It has 57 722 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Refine Edge tool
  • +
  • Pencil Tool, Image - Trim
  • +
  • Improved Sketch support (Symbol Master overriding)
  • +
  • Pixel Grid (zoom a lot to see it)
  • +
  • Vector tools snap to pixels
  • +
  • Many bugs fixed
  • +
+ +

Refine Edge

+ +

Refine Edge is a tool for creating precise selections. It helps you select complex objects such as hair or fur. + Similar tools are available in many other programs, and our version is one of the best. In a couple of seconds, you can create selections, that would take minutes or hours otherwise.

+ +

The goal is to paint a trimap over the image: Foreground with White, background with Black, and uncertain areas with Gray. Then, Photopea deduces the transparency of the Gray area. You can find more at /learn/refine-edge.

+ +

Try it yourself! Go here to see a photo of a dog. Press Select - Refine Edge. Choose a large brush and paint with Gray to cover the whole dog (don't worry about painting over parts of grass). Now, choose a White color, make strokes inside the dog, and see how the preview changes.

+ + + + + + + + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-3-5-xd-support.html b/blog.photopea.com/photopea-3-5-xd-support.html new file mode 100644 index 0000000..9379e75 --- /dev/null +++ b/blog.photopea.com/photopea-3-5-xd-support.html @@ -0,0 +1,89 @@ + + + + Photopea 3.5 – XD support + + + + + + + +
+
+
+ +
+ June 14, 2018 +

Photopea 3.5 – XD support

+
+ +

New release of Photopea is here! It has 59 924 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • XD format support
  • +
  • Support for files from the new GIMP
  • +
  • Many tiny improvements (e.g. reverse option for GIF export)
  • +
  • Several bugs fixed
  • +
+ +

XD format

+ +

Adobe XD is a software for designing user interfaces, websites and other similar environments. It is very similar to Sketch App, and stores its files with an .xd extension. Sadly, Adobe XD is available only for Windows 10, or for MacOS 10.11 and later.

+ +

Starting now, you can open XD files in Photopea, inspect them, save them as PSD, or export their parts (e.g. as PNG or SVG). Photopea is the only XD to PSD convertor today. It is also the only way to work with XD files on Linux and other systems, unsupported by Adobe XD.

+ +

Try it yourself! XD file, Opened in Photopea.

+ + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-3-6-edit-presets.html b/blog.photopea.com/photopea-3-6-edit-presets.html new file mode 100644 index 0000000..06b2e34 --- /dev/null +++ b/blog.photopea.com/photopea-3-6-edit-presets.html @@ -0,0 +1,93 @@ + + + + Photopea 3.6 – Edit presets + + + + + + + +
+
+
+ +
+ August 13, 2018 +

Photopea 3.6 – Edit presets

+
+ +

New release of Photopea is here! It has 62 371 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Load and save Layer Styles (.ASL), Gradients (.GRD), Patterns (.PAT), Contours (.SHC) and Shapes (.CSH)
  • +
  • Layer Style preview
  • +
  • Liquify filter
  • +
  • Improved XD support
  • +
  • Improved PDF support
  • +
  • Several bugs fixed
  • +
+ +

Preview Layer Styles

+ +

Layer Style window contains a preview of the current layer style.

+ + + +

You can define the new style from a current style, and add it into a style gallery. Style gallery can be loaded or saved as .ASL file.

+ + + +

You can load and save Gradients, Patterns, Contours and Shapes in the same way.

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-3-7-wmf-and-emf-support.html b/blog.photopea.com/photopea-3-7-wmf-and-emf-support.html new file mode 100644 index 0000000..6d961eb --- /dev/null +++ b/blog.photopea.com/photopea-3-7-wmf-and-emf-support.html @@ -0,0 +1,95 @@ + + + + Photopea 3.7 – WMF and EMF support + + + + + + + +
+
+
+ +
+ September 26, 2018 +

Photopea 3.7 – WMF and EMF support

+
+ +

New release of Photopea is here! It has 63 342 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Load WMF and EMF files, export EMF files
  • +
  • History in a Liquify filter
  • +
  • Push Left tool in a Liquify filter
  • +
  • New fonts added
  • +
  • Many bugs fixed
  • +
+ +

WMF and EMF files

+ +

Windows Metafile is an image format, very similar to a PDF or SVG format. It can contain both raster and vector graphics. EMF has a better geometric precision (16 bits in WMF vs. 32 bits in EMF). EMF is also more advanced, as it allows using Bézier curves (only lines and polygons are allowed in WMF).

+ +

WMF and EMF files consist of commands for a rendering device, very similar to PDF. They were used in Microsoft products (e.g. Microsof Paint, or Microsoft Office), but became supported in other software, too (e.g. Libre Office or Inkscape). Starting today, you can open them in Photopea.

+ +

We made our WMF and EMF libraries open-source under the project UDOC.js.

+ + Examples: + + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-3-8-live-shapes-and-new-filters.html b/blog.photopea.com/photopea-3-8-live-shapes-and-new-filters.html new file mode 100644 index 0000000..d1db274 --- /dev/null +++ b/blog.photopea.com/photopea-3-8-live-shapes-and-new-filters.html @@ -0,0 +1,104 @@ + + + + Photopea 3.8 – Live Shapes and new filters! + + + + + + + +
+
+
+ +
+ October 21, 2018 +

Photopea 3.8 – Live Shapes and new filters!

+
+ +

New release of Photopea is here! It has 64 545 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Live Shapes
  • +
  • New Distortion filters
  • +
  • Difference Clouds filter
  • +
  • Patch Tool 30x faster
  • +
  • Rename a document by double-clicking the Tab
  • +
  • Thousands of new fonts
  • +
  • Many bugs fixed
  • +
+ +

Live Shapes

+ +

PSD files can store vector graphics, either as Vector Masks, or Shape Layers (more info here). These shapes are stored as Bézier curves. We can move Bézier knots, or transform the curves using a Free Transform, but there is no way to make a Rounded Rectangle 2x wider, while preserving the corner radius.

+ +

The PSD format lets us store the Vector Origination Data. These data contain the shape parameters (Type: Rectangle, Ellipse, Line... Width, Height, Corner Radius, etc.). Starting today, Photopea lets you edit these Origination data, and re-generate the vector shape according to them. These data can be edited in the Properties panel, under Live Shapes.

+ + + +

All new Ellipses and Rectangles become Live Shapes. Also, when you open a Sketch file, Photopea converts appropriate shapes into Live shapes. Note, that if you move a knot of a live shape, or rotate it a bit, the origination data are lost, and it becomes just a regular shape.

+ +

Distortion Filters

+ +

We added several new PSD filters. They all can be used as Smart Filters on Smart Objects. You can also edit corresponding Smart filters in existing PSD files.

+ +

Distortion filters let us bend the image in an irregular way. They are similar to the Liquify filter, but instead of "bending" an image by hand, it is bent automatically according to some parameters (Pinch, Ripple, Shear, Spherize, Twirl).

+ +

The Displace filter can bend an image according to a map (another image). You have to choose a size and a direction of the displacement. A bright place in the map will cause a large displacement (of the corresponding spot in the image), while a dark place will move the image just a little.

+ +

The video below shows how it works in Adobe Photoshop. In Photopea, you don't choose the map as an external file, but you choose it from existing Smart Objects of the current document.

+ + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-3-9-templates.html b/blog.photopea.com/photopea-3-9-templates.html new file mode 100644 index 0000000..f8a0fca --- /dev/null +++ b/blog.photopea.com/photopea-3-9-templates.html @@ -0,0 +1,96 @@ + + + + Photopea 3.9 – Simple Templates! + + + + + + + +
+
+
+ +
+ December 4, 2018 +

Photopea 3.9 – Simple Templates!

+
+ +

New release of Photopea is here! It has 66 263 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Simple Templates
  • +
  • Lens Correction filter
  • +
  • Improved loading of Sketch, XD and PDF
  • +
  • Levels and Curves are 3x faster
  • +
  • Adjustments are computed on the GPU
  • +
  • Many bugs fixed
  • +
+ +

Templates

+ +

When you start an empty document in Photopea, you can choose from several standard sizes. Today, we added simple auto-generated templates, that can speed-up the creation of your design. Just click the template you like to open it as a new document.

+ + + +

Templates always adjust to the current document size, that you entered at the left part of the window. The Font Filter lets you restrict fonts, that can be used in templates (e.g. only fonts, that are "Handwritten" and support Greek letters).

+ +

Standard templates are combinations of several colors, shapes, and a text. You can enable Photo templates, so all templates will contain a photo (a royalty-free photo from Pixabay.com). You can specify your own keywords for photos (e.g. "cats" or "Ferrari").

+ + + +

Scroll down to see more templates, or press Randomize to create brand new templates. After you open any template, you can edit or remove existing elements, or add your own elements.

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-4-0-nef-cr2-arw-support.html b/blog.photopea.com/photopea-4-0-nef-cr2-arw-support.html new file mode 100644 index 0000000..f66432c --- /dev/null +++ b/blog.photopea.com/photopea-4-0-nef-cr2-arw-support.html @@ -0,0 +1,99 @@ + + + + Photopea 4.0 – NEF, CR2 and ARW support! + + + + + + + +
+
+
+ +
+ January 4, 2019 +

Photopea 4.0 – NEF, CR2 and ARW support!

+
+ +

New release of Photopea is here! It has 68 161 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Support for Nikon .NEF format
  • +
  • Support for Canon .CR2 format
  • +
  • Support for Sony .ARW format
  • +
  • Step back with Ctrl+Z (holding Shift is optional)
  • +
  • Improved API - better integration with an outer environment
  • +
  • Several bugs fixed
  • +
+ +

RAW formats

+ +

Many modern digital cameras allow storing a picture in a so-called raw format. We introduced the support of the open DNG raw format in Photopea more than a year ago.

+ +

We can think of the DNG format as a "JPG for raw images". A lot of progress has been made in camera technology, we have bigger resolutions, improved color quality and better photos in general. But both the old and the new cameras store images in the versatile JPG format, which is widely supported by many kinds of devices and software. We can be sure, that our 20-year-old JPG photo will work well in modern programs, and our todays photos will work in programs of the future.

+ +

The DNG format was designed to be equally versatile format for raw images. It is an open format, that can be adapted by any manufacturer for free. By using DNG, we can guarantee, that any raw image will work in any raw software, even if they were created in different decades (as it is true for JPG). The DNG format has been adapted by Leica, Hasselblad, Ricoh, Pentax, Casio and some smartphones (Samsung, LG, Motorola, Sony, OnePlus).

+ + + +

However, currently the biggest camera makers - Nikon, Canon and Sony - use their own "secret" formats instead. E.g. the Canon's CR2 format is not publicly described anywhere, so only Canon can guarantee, that their software will process CR2 files correctly. They probably do so to keep users dependent on their software, and prevent them from using any alternatives. One needs Canon software to view photos from Canon cameras, Nikons software to view photos from Nikon, Olympus software to view photos from Olympus, etc.

+ +

The open-source community has done a big effort to understand the meaning of Ones and Zeros in CR2 and NEF files. Today, programs like Darktable and Rawtherapee can open many CR2, NEF and ARW files.

+ +

Starting today, Photopea can open CR2, NEF and ARW files, too. It can probably open 95% of such files, and it will take some time to get to 100%. Try it out and if your file does not work, send it to us! :)

+ + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-4-1-actions-new-filters.html b/blog.photopea.com/photopea-4-1-actions-new-filters.html new file mode 100644 index 0000000..4155c7c --- /dev/null +++ b/blog.photopea.com/photopea-4-1-actions-new-filters.html @@ -0,0 +1,90 @@ + + + + Photopea 4.1 – Actions and new Filters! + + + + + + + +
+
+
+ +
+ February 26, 2019 +

Photopea 4.1 – Actions and new Filters!

+
+ +

New release of Photopea is here! It has 72 317 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Support for Actions and .ATN files
  • +
  • New Adjustment: Replace Color
  • +
  • Filter Gallery with two new filters
  • +
  • New Filters: Distort - Wave, Pixelate - Mezzotint, Sharpen - Smart Sharpen
  • +
  • Several bugs fixed
  • +
+ +

Actions

+ +

Actions allow us to record our work, and apply it later to other documents. Photopea can load and store actions as ATN files. + Not all actions can be recorded / applied at the moment, but we implemented dozens of basic actions (including all adjustments and filters) and we will gradually extend our work!

+ +

Try to load and run your own ATN actions! You can learn more about actions at our manual page.

+ + + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-4-2-with-local-storage.html b/blog.photopea.com/photopea-4-2-with-local-storage.html new file mode 100644 index 0000000..7f302ae --- /dev/null +++ b/blog.photopea.com/photopea-4-2-with-local-storage.html @@ -0,0 +1,94 @@ + + + + Photopea 4.2 – try Local Storage! + + + + + + + +
+
+
+ +
+ May 3, 2019 +

Photopea 4.2 – try Local Storage!

+
+ +

New release of Photopea is here! It has 74 109 lines of code. Play with it at the main site.

+ + +

New features

+ +
    +
  • Storing resources in Local Storage
  • +
  • Extending support for Actions
  • +
  • New filters: Crystallize, Pontillize, Stained Glass
  • +
  • Even faster start of Photopea
  • +
  • 300 new fonts
  • +
  • Several bugs fixed
  • +
+ +

Local Storage

+ +

You can load your own fonts, brushes, gradients, layer styles and other files into Photopea. These resources can be used right after loading. But once you close Photopea, they disappear, and the next time you use Photopea, you have to load them manually again.

+ +

Starting today, Photopea can remember your fonts and other resources (that you loaded manually into PP), and load them automatically the next time you use Photopea.

+ +

Photopea has a set of files, that are permanently stored on your computer (using IndexedDB). Whenever you load a new font or a brush set, you will have an option to store that file into the set. After you close Photopea and open it again, the set of files is automatically loaded and processed.

+ +

This set of permament files can be managed using Edit - Local Storage. Here, you can see a list of all files. Select a file and choose Delete to remove it from the list. The list is also deleted when you clear the website data through the browser settings.

+ + + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-4-3-slices-and-more.html b/blog.photopea.com/photopea-4-3-slices-and-more.html new file mode 100644 index 0000000..e084c5e --- /dev/null +++ b/blog.photopea.com/photopea-4-3-slices-and-more.html @@ -0,0 +1,95 @@ + + + + Photopea 4.3 – Slices and more! + + + + + + + +
+
+
+ +
+ July 2, 2019 +

Photopea 4.3 – Slices and more!

+
+ + New release of Photopea is here! It has 76 553 lines of code. Play with it at the main site. + + + +

New features

+
    +
  • Support for Slices
  • +
  • Tool Presets
  • +
  • New panels: Color and Tool Presets
  • +
  • Support for TGA format
  • +
  • Many bugs fixed
  • +
+

Slices

+ Slices define rectangular areas on top of our document. We can export such document with a single click, and each slice becomes a separate image file, such as PNG or JPG. You can learn more about them at Photopea.com/learn/slices. + + +

Tool Presets

+ Each tool can have many settings in the top bar. For the Move tool, there is "Auto-Select", "Transform Controls", and more. + For a Brush tool, there is a Brush itself, a Blend Mode, an Opacity, a Flow, etc. + + Tool Presets let us save the current settings of a tool, to load them back later with a single click. Right now, they are possible for a Brush tool, a Pencil tool, and an Eraser tool. Photopea also saves the Foreground color for the Brush and the Pencil. + + + + Tool Presets are popular in Adobe Photoshop, and can be used in Photopea in a similar way. You can switch Tool Presets by clicking the icon of a tool at the beginning of a top bar, and selecting a preset from the menu. Press a tiny arrow - Define New, to define a new preset from the current settings. + + Tool presets can be saved or loaded as .TPL files. Together with the Local Storage, you can have your Tool Presets in place every time you open Photopea. +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-4-4-text-on-a-curve-and-more.html b/blog.photopea.com/photopea-4-4-text-on-a-curve-and-more.html new file mode 100644 index 0000000..1a1c506 --- /dev/null +++ b/blog.photopea.com/photopea-4-4-text-on-a-curve-and-more.html @@ -0,0 +1,86 @@ + + + + Photopea 4.4 – Text on a Curve and more! + + + + + + + +
+
+
+ +
+ October 13, 2019 +

Photopea 4.4 – Text on a Curve and more!

+
+ +

New release of Photopea is here! It has 81 140 lines of code. Play with it at the main site.

+ + + +

New features

+
    +
  • Text on a curve
  • +
  • Text inside a curve
  • +
  • Support for Paths and Channels
  • +
  • Improved Sketch and PDF parser
  • +
  • Improved Export Layers feature
  • +
  • Many bugs fixed
  • +
+

Text on a curve

+ +

A new version of Photopea lets you add text on a curve, or inside a curve. Such text can be stored in PSD files, and loaded back from a PSD file. To learn how to use it, read an article in our manual.

+ + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-4-5-smarter-selections.html b/blog.photopea.com/photopea-4-5-smarter-selections.html new file mode 100644 index 0000000..cc247b6 --- /dev/null +++ b/blog.photopea.com/photopea-4-5-smarter-selections.html @@ -0,0 +1,97 @@ + + + + Photopea 4.5 – Smarter Selections! + + + + + + + +
+
+
+ +
+ November 6, 2019 +

Photopea 4.5 – Smarter Selections!

+
+ +

New release of Photopea is here! It has 82 676 lines of code. Play with it at the main site.

+ + + +

New features

+
    +
  • Updated Quick Selection tool
  • +
  • New Object Selection tool
  • +
  • Background Eraser tool
  • +
  • Support for TGA files (open and save)
  • +
+ +

Smart Selections

+ +

We introduced a Quick Selectin tool almost two years ago. However, it was quite slow, and selections were not perfect. We were looking for a new method to perform smart selections.

+ +

We built a new method, which has amazing results. It requires some pixels to be marked as a foreground and some as a background. First, it analyzes the image (it can analyze 4,000,000 pixels per second). Then, it deduces the foreground / background according to the marked pixels.

+ +

Now, Quick Selection tool uses the new method. Your painting defines the forground, a top left and a top right pixels are marked as a background. It often gives the right result with one click.

+ + + +

Object Selection Tool

+ +

Recently, Adobe announced a new Object Selection tool in Adobe Photoshop. Our method lets us provide a tool with the same user interface (drawing a rectangle over the image). We just mark the area outside the rectangle as a Background, and a small cross in the middle as a Foreground.

+ +

Adobe did not release the feature yet. But it would be very interesting to compare them side-by-side. Photopea is probably the only program offering these two tools for free.

+ + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-4-6-open-figma-files.html b/blog.photopea.com/photopea-4-6-open-figma-files.html new file mode 100644 index 0000000..5faf1cd --- /dev/null +++ b/blog.photopea.com/photopea-4-6-open-figma-files.html @@ -0,0 +1,108 @@ + + + + Photopea 4.6 – Open Figma Files! + + + + + + + +
+
+
+ +
+ January 27, 2020 +

Photopea 4.6 – Open Figma Files!

+
+ +

New release of Photopea is here! It has 84 837 lines of code. Play with it at the main site.

+ + + +

New features

+
    +
  • Support for opening .FIG files (Figma)
  • +
  • Read, edit and save metadata (File - File Info)
  • +
  • Import and expor of .RAW images
  • +
  • Improved compression for saving TGA
  • +
+ +

Figma files

+ +

Figma is a popular vector graphics editor focused at digital design, similar to Sketch App and Adobe XD. Up until now, Figma was the only tool, that could open .FIG design files.

+ +

Since this release, Photopea can open .FIG files. You can browse a whole design structure, each separate element, its style, etc. You can also save every design as a PSD file.

+ +

Comparison

+

Below, you can see the same design opened in Figma and Photopea.

+ + + + + + + + + + + + + + + +
FigmaPhotopea
Christmas.figChristmas.fig
DS.figDS.fig
GEE! MEGEE! ME
+ + + + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-4-7-puppet-warp.html b/blog.photopea.com/photopea-4-7-puppet-warp.html new file mode 100644 index 0000000..05b52cd --- /dev/null +++ b/blog.photopea.com/photopea-4-7-puppet-warp.html @@ -0,0 +1,91 @@ + + + + Photopea 4.7 – Puppet Warp + + + + + + + +
+
+
+ +
+ March 1, 2020 +

Photopea 4.7 – Puppet Warp

+
+ +

A new release of Photopea is here! It has 87 368 lines of code. Play with it at the main site.

+ + + +

New features

+
    +
  • Puppet Warp tool
  • +
  • Oil Paint filter
  • +
  • Normal Map filter
  • +
  • Many bugs fixed
  • +
+ +

Puppet Warp tool

+ +

A Puppet Warp tool is a very popular feature for "bending" objects. Similar tool is available in Adobe Photoshop, Gimp, Krita and other programs.

+ +

Start the tool by pressing Edit - Puppet Warp. Click into the image to place several anchor points. Then, drag these points to new locations. Each point will stretch the part of the object to a new location.

+ + + +

Photopea supports PSD files, and it can process the Puppet Warp transform, that might be stored with a Smart Object as a smart filter. You can also create a new Puppet Warp for a Smart Object.

+ +

The parameters of Puppet Warp in Photopea correspond to the parameters of the smart filter in a PSD file. You can show or hide a triangular mesh, change its density or expand it outside the edge of an object. You can move anchor points in a way, such that one part of the object covers another part. Photopea allows you to set the depth of each anchor, to decide, which part should be in front and which one should be in the back.

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-4-8-shadowshighlights.html b/blog.photopea.com/photopea-4-8-shadowshighlights.html new file mode 100644 index 0000000..5af34f1 --- /dev/null +++ b/blog.photopea.com/photopea-4-8-shadowshighlights.html @@ -0,0 +1,91 @@ + + + + Photopea 4.8 – Shadows/Highlights + + + + + + + +
+
+
+ +
+ June 11, 2020 +

Photopea 4.8 – Shadows/Highlights

+
+ +

A new release of Photopea is here! It has 91 049 lines of code. Play with it at the main site.

+ + + +

New features

+
    +
  • Shadows/Highlights adjustment
  • +
  • Support for .VTF (Valve Texture Format)
  • +
  • Improved support for Figma files
  • +
  • Optimized Brush tool (when the Size is dynamic, e.g. depends on the pressure)
  • +
  • Smart Object - Stack Mode
  • +
  • Many bugs fixed
  • +
+ +

Shadows/Highlights

+ +

The Shadows/Highlights adjustment is known from Adobe Photoshop. It can be stored in PSD files as a Smart filter. Now, you can also use it in Photopea.

+ +

This adjustment allows you to lighten the shadows, or to darken the highlights of an image. It is an advanced tool, which can not be achieved with Levels or Curves.

+ + + + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-4-9-new-tools-and-formats.html b/blog.photopea.com/photopea-4-9-new-tools-and-formats.html new file mode 100644 index 0000000..eb7f497 --- /dev/null +++ b/blog.photopea.com/photopea-4-9-new-tools-and-formats.html @@ -0,0 +1,97 @@ + + + + Photopea 4.9 – New tools and formats! + + + + + + + +
+
+
+ +
+ August 24, 2020 +

Photopea 4.9 – New tools and formats!

+
+ +

A new release of Photopea is here! It has 93 064 lines of code. Play with it at the main site.

+ + + +

New features

+
    +
  • Content-Aware Move Tool
  • +
  • Content-Aware Scale
  • +
  • Support for EXR format
  • +
  • Support for DXF format (AutoCAD)
  • +
  • Several bugs fixed
  • +
+ +

Content-Aware move tool

+ +

The Content-Aware move tool allows you to move an object from one place to another. After it "cuts out" the object, the old location ("the hole") is filled with a content-aware fill, and the object is adapted to the surrounding area at the new location.

+ + + +

Content-Aware Scale

+ +

This tool is available under Edit - Content-Aware Scale. It works very similarly to the Free Transform, while trying not to distort the objects of the scene (such as people houses, trees, etc).

+ +

Take a look at the examples below. The original image is in the middle, a "squeezed" version on the left, and the "stretched" version on the right. It is done with a Free transform on the top, and with a Content-Aware scale at the bottom.

+ + + + + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-5-0-open-illustrator-files.html b/blog.photopea.com/photopea-5-0-open-illustrator-files.html new file mode 100644 index 0000000..395f61a --- /dev/null +++ b/blog.photopea.com/photopea-5-0-open-illustrator-files.html @@ -0,0 +1,106 @@ + + + + Photopea 5.0 – open Illustrator files! + + + + + + + +
+
+
+ +
+ January 12, 2021 +

Photopea 5.0 – open Illustrator files!

+
+ +

A new release of Photopea is here! It has 98 893 lines of code. Play with it at the main site.

+ + + +

New features

+
    +
  • Support for Adobe Illustrator files
  • +
  • Support for Adobe Fireworks files
  • +
  • Faster rendering of vector graphics
  • +
  • New filters in the Filter Gallery
  • +
  • Several bugs fixed
  • +
+ +

Adobe Illustrator files (.AI)

+ +

Adobe Illustrator is a popular tool for creating vector graphics. Starting today, you can open .AI files in Photopea.

+ +

The structure of a document (paths, groups, clip groups), layer properties (opacity, blend modes) and other features are preserved. Raster images are preserved as Smart Objects. Text layers remain editable, text properties are preserved.

+ + + +

Vector Patterns do not have any analogy in the PSD format. For now, a shape with a vector pattern is converted into a Smart Object with a vector mask.

+ +

Gradient Meshes also do not have an analogy in the PSD format. For now, Photopea finds the brightest spot and the darkest spot in a Mesh, and draws a linear gradient between them.

+ + + +

Photopea is not a professional vector editor and it can not fully replace Adobe Illustrator. However, it allows you to work with .AI files in a "PSD way", or convert AI files to PSD, SVG, PDF and other formats.

+ +

Adobe Fireworks files (.PNG)

+ +

Adobe Fireworks was a popular raster and vector editor, similar to Sketch App or Adobe XD. Its development stopped in 2012. It stored the work in .PNG files. These .PNG files could be opened in regular image viewers (and you could see a regular raster image). However, these PNG files contain additional data, and if you opened them in Adobe Fireworks, you could see many kinds of layers, folders, color and gradient fills, etc.

+ +

Starting today, you can open such PNG files in Photopea (and see layers and other features), and convert them into the PSD format.

+ +

Faster rendering of vector graphics

+ +

We made the rendering of vector graphics about 2x faster. Thanks to this improvement, vector files (AI, SVG, PDF, Sketch, XD, Figma) are opened 15 to 30 % faster.

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-api.html b/blog.photopea.com/photopea-api.html new file mode 100644 index 0000000..3cb5537 --- /dev/null +++ b/blog.photopea.com/photopea-api.html @@ -0,0 +1,80 @@ + + + + Photopea API + + + + + + + +
+
+
+ +
+ November 30, 2014 +

Photopea API

+
+ +

Connect your webapps and services with Photopea using our first API.

+ +

Features of API

+ +

New API has two kinds of features:

+
    +
  • Passing data to Photopea - tell PP, which images you want to open, which additional brushes or fonts you want to use, etc.
  • +
  • Retrieving data from Photopea - when user is finished, the new image can be easily sent back to your server using File - Save to server
  • +
+ +

See full documentation to find out more. We also have online test, where an entire folder of images becomes editable in Photopea by anyone using few lines of PHP code.

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/photopea-premium.html b/blog.photopea.com/photopea-premium.html new file mode 100644 index 0000000..eac4182 --- /dev/null +++ b/blog.photopea.com/photopea-premium.html @@ -0,0 +1,79 @@ + + + + Photopea Premium + + + + + + + +
+
+
+ +
+ September 17, 2016 +

Photopea Premium

+
+ +

Starting today, you can upgrade your account to a Premium account. It does not give you any extra features, but it helps us improve Photopea for you.

+ + +

Premium accounts

+

After logging into Photopea, you can open open the Account window with details about your account. There is an option to upgrade to Premium for 5 USD per month. After upgrading to Premium, your Account button becomes green and you can start being proud of yourself. You just helped Photopea get financing for the future development.

+ +

Upgrading to Premium is completely voluntary. It is up to you, when and how often you upgrade. In the future, you may get access to beta features or extra themes, but right now, there is absolutely no difference.

+ + account + + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/png-minifier-inside-photopea.html b/blog.photopea.com/png-minifier-inside-photopea.html new file mode 100644 index 0000000..9eedbda --- /dev/null +++ b/blog.photopea.com/png-minifier-inside-photopea.html @@ -0,0 +1,119 @@ + + + + PNG minifier inside Photopea + + + + + + + +
+
+
+ +
+ May 9, 2017 +

PNG minifier inside Photopea

+
+ +

We have added a new feature to Photopea, which can significantly minify PNG images.

+ + + Update!!! A separate app at UPNG.photopea.com. + +

PNG minification

+ +

It is very popular to minify PNG images on the web to reduce the network traffic and make websites load faster. There are many free and commercial tools for it, which usually allow reducing the size of PNG files by 50 to 80 percent. TinyPNG is a very pupular service for PNG minification. The same company also offers a plugin for Adobe Photoshop for $50.

+ +

Starting today, there is a PNG minification service built right into Photopea, anybody can use it for free. We decided to publish our efforts in an open-source library UPNG.js, which is also availabe to everybody for free.

+ +

When minifying PNGs with such methods, there is a tiny loss in the quality. To use PNG minification, go to Photopea editor and open a file (or create a new one). Then, choose File - Save for web - PNG format. You can either leave the quality at 100% for a lossless PNG, or decrease it for minification. You can also see a preview of the result and the size of the new file.

+ +

Examples

+ +

Here are several examples of PNG minification. Click on the thumbnails to see an actual file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OriginalTinyPNGPhotopea: UPNG.js
31 638 B 12 409 B 11 102 B
75 628 B 21 212 B 17 522 B
105 035 B 37 192 B 33 885 B
62 896 B 18 413 B 14 715 B
23 262 B 7 275 B 5 251 B
+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/pngs/logo-pp.png b/blog.photopea.com/pngs/logo-pp.png new file mode 100644 index 0000000..5ef173a Binary files /dev/null and b/blog.photopea.com/pngs/logo-pp.png differ diff --git a/blog.photopea.com/pngs/logo-t.png b/blog.photopea.com/pngs/logo-t.png new file mode 100644 index 0000000..903687c Binary files /dev/null and b/blog.photopea.com/pngs/logo-t.png differ diff --git a/blog.photopea.com/pngs/logo.png b/blog.photopea.com/pngs/logo.png new file mode 100644 index 0000000..d8afed9 Binary files /dev/null and b/blog.photopea.com/pngs/logo.png differ diff --git a/blog.photopea.com/pngs/mbike-pp.png b/blog.photopea.com/pngs/mbike-pp.png new file mode 100644 index 0000000..7492887 Binary files /dev/null and b/blog.photopea.com/pngs/mbike-pp.png differ diff --git a/blog.photopea.com/pngs/mbike-t.png b/blog.photopea.com/pngs/mbike-t.png new file mode 100644 index 0000000..e1b6f52 Binary files /dev/null and b/blog.photopea.com/pngs/mbike-t.png differ diff --git a/blog.photopea.com/pngs/mbike.png b/blog.photopea.com/pngs/mbike.png new file mode 100644 index 0000000..8597e68 Binary files /dev/null and b/blog.photopea.com/pngs/mbike.png differ diff --git a/blog.photopea.com/pngs/mouse-pp.png b/blog.photopea.com/pngs/mouse-pp.png new file mode 100644 index 0000000..2ed0b50 Binary files /dev/null and b/blog.photopea.com/pngs/mouse-pp.png differ diff --git a/blog.photopea.com/pngs/mouse-t.png b/blog.photopea.com/pngs/mouse-t.png new file mode 100644 index 0000000..ee9811d Binary files /dev/null and b/blog.photopea.com/pngs/mouse-t.png differ diff --git a/blog.photopea.com/pngs/mouse.png b/blog.photopea.com/pngs/mouse.png new file mode 100644 index 0000000..3a1524b Binary files /dev/null and b/blog.photopea.com/pngs/mouse.png differ diff --git a/blog.photopea.com/pngs/pea_new.png b/blog.photopea.com/pngs/pea_new.png new file mode 100644 index 0000000..61cbd4d Binary files /dev/null and b/blog.photopea.com/pngs/pea_new.png differ diff --git a/blog.photopea.com/pngs/pea_old.png b/blog.photopea.com/pngs/pea_old.png new file mode 100644 index 0000000..2cf14fb Binary files /dev/null and b/blog.photopea.com/pngs/pea_old.png differ diff --git a/blog.photopea.com/pngs/pea_orig.png b/blog.photopea.com/pngs/pea_orig.png new file mode 100644 index 0000000..b413dbb Binary files /dev/null and b/blog.photopea.com/pngs/pea_orig.png differ diff --git a/blog.photopea.com/pngs/pea_tiny.png b/blog.photopea.com/pngs/pea_tiny.png new file mode 100644 index 0000000..2e2b13d Binary files /dev/null and b/blog.photopea.com/pngs/pea_tiny.png differ diff --git a/blog.photopea.com/pngs/pug-pp.png b/blog.photopea.com/pngs/pug-pp.png new file mode 100644 index 0000000..7cf0034 Binary files /dev/null and b/blog.photopea.com/pngs/pug-pp.png differ diff --git a/blog.photopea.com/pngs/pug-t.png b/blog.photopea.com/pngs/pug-t.png new file mode 100644 index 0000000..a88beb2 Binary files /dev/null and b/blog.photopea.com/pngs/pug-t.png differ diff --git a/blog.photopea.com/pngs/pug.png b/blog.photopea.com/pngs/pug.png new file mode 100644 index 0000000..5857f1f Binary files /dev/null and b/blog.photopea.com/pngs/pug.png differ diff --git a/blog.photopea.com/pngs/rose-icon-pp.png b/blog.photopea.com/pngs/rose-icon-pp.png new file mode 100644 index 0000000..4960614 Binary files /dev/null and b/blog.photopea.com/pngs/rose-icon-pp.png differ diff --git a/blog.photopea.com/pngs/rose-icon-t.png b/blog.photopea.com/pngs/rose-icon-t.png new file mode 100644 index 0000000..52458fb Binary files /dev/null and b/blog.photopea.com/pngs/rose-icon-t.png differ diff --git a/blog.photopea.com/pngs/rose-icon.png b/blog.photopea.com/pngs/rose-icon.png new file mode 100644 index 0000000..a97f207 Binary files /dev/null and b/blog.photopea.com/pngs/rose-icon.png differ diff --git a/blog.photopea.com/raw-support-in-photopea.html b/blog.photopea.com/raw-support-in-photopea.html new file mode 100644 index 0000000..72aa3a5 --- /dev/null +++ b/blog.photopea.com/raw-support-in-photopea.html @@ -0,0 +1,76 @@ + + + + RAW support in Photopea + + + + + + + +
+
+
+ +
+ October 8, 2017 +

RAW support in Photopea

+
+ +

Today, we are adding a new feature into Photopea: the support for RAW images.

+ + +

RAW images are very popular among photographers. Unlike regular "web images" (like JPG or PNG), they contain raw information from the camera sensor. Such information can be processed in many ways, to generate many different regular images.

+ +

Photopea supports the DNG format of raw images. When you open such file, you will see the Raw Photopea window. Here you can change some additional parameters. After you hit OK, Photopea will generate a regular image out of your raw file, and will open it as a new PSD document.

+ + +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/surface-blur-and-median.html b/blog.photopea.com/surface-blur-and-median.html new file mode 100644 index 0000000..f6e017b --- /dev/null +++ b/blog.photopea.com/surface-blur-and-median.html @@ -0,0 +1,107 @@ + + + + Surface Blur and Median + + + + + + + +
+
+
+ +
+ September 20, 2016 +

Surface Blur and Median

+
+ +

Today, Photopea gets two new professional filters: Surface Blur filter and Median filter! Moreover, Photopea performs them much faster, than Photoshop and GIMP do, as you can see in the last section. See it in action at the main site. Our images come from Shell And Slate.

+ + +

Surface Blur

+ +

Surface Blur filter, which is known as Surface Blur in Adobe Photoshop and as Selective Gaussian Blur in Gimp, is an advanced image filter. It can denoise images, while preserving edges. You can use it to fix noisy photos or smooth out areas with a similar color.

+ +

Try it now! (Filter - Blur - Surface Blur).

+ + + +

Median Filter

+ +

Median filter is another very common filter, which reduces noise and preserves edges. It can fix pixels or even small areas with damaged or missing color.

+ +

Try it now! (Filter - Noise - Median).

+ + + +

Performance and speed

+ +

TL;DR: Photopea uses a more advanced algorithm, which allows it to run faster, even though it is written in Javascript.

+ +

As a performance test, we tried to measure the time of computing Surface Blur with the Radius = 100 and the Threshold = 100 on a woman.jpg image (the previous example). Here are the results:

+ + + + + + +
Image EditorTime
GIMP55 s
Photoshop2 s
Photopea0.6 s
+ +

Let's analyze it with science! The reason of such performance is the computational complexity of a method, that is used by each program. Each program has to work with an image having N pixels and compute the filter for a radius of R pixels. GIMP perfroms N × R × R steps to compute the filter, while Photoshop performs N × R steps only. When you increase the radius twice, Photoshop computation takes twice more time, but GIMP takes four times more time.

+ +

Photopea has two methods of computing the Surface Blur (or Median). First method performs N × R steps and another one performs N × 10 steps (the time remains the same for any radius). When radius is at most 10, it performs the first method, otherwise it performs the second method. The computation time can be expressed by a following chart.

+ + + +

You can see, that for a radus of 10 pixels, Photopea is a lot slower than Photoshop, while both of them use the same method, that takes N × R steps. The reason of such speed is, that Photoshop has a parallel, multi-threaded implementation, while Photopea runs in a single thread now.

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/vectorize-bitmaps-in-photopea.html b/blog.photopea.com/vectorize-bitmaps-in-photopea.html new file mode 100644 index 0000000..e4eab9e --- /dev/null +++ b/blog.photopea.com/vectorize-bitmaps-in-photopea.html @@ -0,0 +1,93 @@ + + + + Vectorize bitmaps in Photopea! + + + + + + + +
+
+
+ +
+ February 22, 2018 +

Vectorize bitmaps in Photopea!

+
+ +

We just launched a new feature: bitmap to vector conversion. See how it works!

+ + +

Raster-to-vector conversion (or bitmap tracing) is a common feature in many image editors. It is quite complex task and each program produces quite different results. Some free bitmap tracers are available in Vectorizer.io or in Inkscape.

+ +

We just added such feature into Photopea and we are glad to announce, that it has better results, than Vectorizer.io and Inkscape. After we open our raster image (or select the right layer in a layered image), press Image - Vectorize Bitmap. We will see a special Vectorizer window.

+ + + + +

We can see the original image on the left and the vector image on the right. We can move both images or zoom in / out. + We can also set two parameters: +

    +
  • Number of colors
  • +
  • Noise reduction
  • +
+ The need of the noise reduction is detected automatically for each image and we recommend to keep that setting. + Once we are satisfied with the vector output, hit OK. Our original raster layer will be replaced with corresponding vector layers, ready for an additional vector editing, or for an export as SVG or PDF (File - Export As - ...).

+ +

Try it yourself in the following demo with multiple images! (press Image - Vectorize Bitmap)

+ +

Vectorize images in Photopea!

+ +
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/will-it-work.html b/blog.photopea.com/will-it-work.html new file mode 100644 index 0000000..4e6396d --- /dev/null +++ b/blog.photopea.com/will-it-work.html @@ -0,0 +1,78 @@ + + + + Will it work? + + + + + + + +
+
+
+ +
+ June 29, 2014 +

Will it work?

+
+ +

When creating a webapp or webpage, you have a very important dilemma.

+ + +

You can use the latest technologies and offer a very good performance / appearance / interactivity, but your product will work only for small percentage of users, those with newest browsers. Or you can give up performance and focus on support and stability.

+ +

While creating Photopea, I have had many such dilemmas. To make you aware of my decissions and capabilities of your browser, I have created a WillItWork page.

+ +

You can see there, which browser features are required by current version of Photopea, and if they are supported in your browser. If you don't have some required feature in your browser, you can ask your browser vendor to add it, or search the internet for more details about that topic.

+ +

WillItWork page is not perfect yet. I don't have an opportunity to test Photopea on all OSs and browsers. If the answer you see ("Yes" / "No") is not correct for your browser, let me know in the comments and I will extend the test, so it is more precise.

+
+
+ +
+ +
+ + + + +
+
+
+ + + + + +
+ + \ No newline at end of file diff --git a/blog.photopea.com/wp-content/themes/simplex/style.css b/blog.photopea.com/wp-content/themes/simplex/style.css new file mode 100644 index 0000000..b34f7ca --- /dev/null +++ b/blog.photopea.com/wp-content/themes/simplex/style.css @@ -0,0 +1,185 @@ +* { + margin: 0; + padding: 0; +} + +#header { + background-image: linear-gradient(rgb(84, 180, 235), rgb(47, 164, 231)); + font-size: 1.1em; + color:#ffffff; + padding: 1.5em 0; + text-align: center; + border-bottom: 1.5em solid #ceedf4; + text-shadow: 8px 8px 16px rgba(0,0,0, 0.5); +} + +#header .title{ + display:block; + font-size: 3.5em; + margin-bottom:0.25em; +} + +#header a{ + text-decoration:none; + color: #ffffff; + font-weight:bold; +} +#header .curr{ + color: #ffff88; +} + +#header img{ + margin-bottom:-3px; + filter: drop-shadow(8px 8px 8px rgba(0,0,0, 0.5)); +} + +.post { + min-height:100px; +} + +.post img, .post video +{ + display:block; + margin:0px auto 15px auto; +} +.post .fullw { /* images in posts */ + width : 100%; + margin-bottom: 1.2em; +} +.post .inline { /* Tool images at /learn */ + display:inline; + height:40px; + margin:0 0.5em 0 0; +} + +#footer { + text-align: center; + padding: 2em; + background: #252525; + color: #aaa; +} + +.entry { + line-height: 1.5em; + margin-top: 10px; +} + +.post p, .post ul { + line-height: 1.5em; + margin: 1em 0; +} + +body { + font-family: "Open Sans", sans-serif; + font-size:1.05em; + color: rgba(0,0,0,0.8); + background-color:rgb(253,253,253); +} +a { + color: rgb(41, 153, 240); +} +.date { + font-size: 0.9em; + color: rgb(158, 171, 179); +} + +#main { /* SimpleX addition to center as well as make header footer 100% */ + min-height: 30em; + position:relative; + + display: flex; + flex-wrap: wrap; + } +#main, #disqus_thread { + max-width: 46em; + margin: 15px auto 30px auto; + padding: 0 20px; +} +#content ul { + margin-left: 4em; + line-height: 1.7em; +} + +h1, h2, h3 { + font-weight:bold; + letter-spacing: -.02em; + text-indent: -2px; + margin-bottom:0.7em; +} + +h1 { + font-size: 2.5em; + margin-top: 0.0em; +} +h2 { + font-size:1.9em; + margin-top: 1.2em; +} +h3 { + font-size: 1.4em; + margin-top: 1.2em; +} +h4 { + font-size: 1.15em; + margin-top: 1.2em; +} + +.postlink { /* Blog : links to articles */ + font-weight:bold; + font-size: 1.8em; + display:block; + color: inherit; +} + +#sidebar { + margin-top: 0.7em; +} +#sidebar h3 { /* /learn Topics */ + font-size: 2em; + margin-bottom: 0.7em; + margin-top: 0; +} +#sidebar ul li { + list-style-type: none; + list-style-image: none; + margin: 0 0 0.45em 0; +} +#sidebar ul .lvl0 { + margin-top: 1.2em; +} +#sidebar ul .lvl1 { + margin-left: 1.5em; + font-size: 0.92em; +} +#sidebar ul .active { + color: rgb(84, 180, 235); +} +#sidebar ul a { + text-decoration: none; + color: inherit; + font-weight:bold; +} + + +table{ + border-collapse: collapse; + margin: 0px auto 20px auto; +} +td, th{ + padding:4px 8px; + border: 1px solid #777; + margin:0; +} + +pre, code { /* for code in API spec. */ + background-color: #f1f1f1; + padding: 0.2em 0.5em; +} +pre { + padding: 0.5em 1em; + margin: 1em 0; + line-height:1.4em; + white-space: pre-wrap; /* break too long lines for small screens */ + overflow: hidden; +} + diff --git a/blog.photopea.com/wp-content/uploads/2013/09/916FD094-7E37-4143-9FEC-64FC0A1BBA1E.jpg b/blog.photopea.com/wp-content/uploads/2013/09/916FD094-7E37-4143-9FEC-64FC0A1BBA1E.jpg new file mode 100644 index 0000000..7f8425c Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2013/09/916FD094-7E37-4143-9FEC-64FC0A1BBA1E.jpg differ diff --git a/blog.photopea.com/wp-content/uploads/2013/11/pp_0.4.png b/blog.photopea.com/wp-content/uploads/2013/11/pp_0.4.png new file mode 100644 index 0000000..7a664b1 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2013/11/pp_0.4.png differ diff --git a/blog.photopea.com/wp-content/uploads/2014/02/pp_0.5.png b/blog.photopea.com/wp-content/uploads/2014/02/pp_0.5.png new file mode 100644 index 0000000..87b9a17 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2014/02/pp_0.5.png differ diff --git a/blog.photopea.com/wp-content/uploads/2016/02/smart_object1.png b/blog.photopea.com/wp-content/uploads/2016/02/smart_object1.png new file mode 100644 index 0000000..f3d178d Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2016/02/smart_object1.png differ diff --git a/blog.photopea.com/wp-content/uploads/2016/05/pea.png b/blog.photopea.com/wp-content/uploads/2016/05/pea.png new file mode 100644 index 0000000..b33d8d6 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2016/05/pea.png differ diff --git a/blog.photopea.com/wp-content/uploads/2016/06/clipping.png b/blog.photopea.com/wp-content/uploads/2016/06/clipping.png new file mode 100644 index 0000000..4881a81 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2016/06/clipping.png differ diff --git a/blog.photopea.com/wp-content/uploads/2016/08/languages.png b/blog.photopea.com/wp-content/uploads/2016/08/languages.png new file mode 100644 index 0000000..0072f75 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2016/08/languages.png differ diff --git a/blog.photopea.com/wp-content/uploads/2016/08/warp.png b/blog.photopea.com/wp-content/uploads/2016/08/warp.png new file mode 100644 index 0000000..578f7a9 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2016/08/warp.png differ diff --git a/blog.photopea.com/wp-content/uploads/2016/09/account1.png b/blog.photopea.com/wp-content/uploads/2016/09/account1.png new file mode 100644 index 0000000..7dc1fa0 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2016/09/account1.png differ diff --git a/blog.photopea.com/wp-content/uploads/2016/09/head.jpg b/blog.photopea.com/wp-content/uploads/2016/09/head.jpg new file mode 100644 index 0000000..fb2267b Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2016/09/head.jpg differ diff --git a/blog.photopea.com/wp-content/uploads/2016/09/image.png b/blog.photopea.com/wp-content/uploads/2016/09/image.png new file mode 100644 index 0000000..ba65c88 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2016/09/image.png differ diff --git a/blog.photopea.com/wp-content/uploads/2016/09/smart_filters.png b/blog.photopea.com/wp-content/uploads/2016/09/smart_filters.png new file mode 100644 index 0000000..68a8ebd Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2016/09/smart_filters.png differ diff --git a/blog.photopea.com/wp-content/uploads/2016/09/woman-sb.jpg b/blog.photopea.com/wp-content/uploads/2016/09/woman-sb.jpg new file mode 100644 index 0000000..414f9c8 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2016/09/woman-sb.jpg differ diff --git a/blog.photopea.com/wp-content/uploads/2017/01/GradientFill.png b/blog.photopea.com/wp-content/uploads/2017/01/GradientFill.png new file mode 100644 index 0000000..e677cbb Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/01/GradientFill.png differ diff --git a/blog.photopea.com/wp-content/uploads/2017/01/PattButton.png b/blog.photopea.com/wp-content/uploads/2017/01/PattButton.png new file mode 100644 index 0000000..ec395dc Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/01/PattButton.png differ diff --git a/blog.photopea.com/wp-content/uploads/2017/01/distort.jpg b/blog.photopea.com/wp-content/uploads/2017/01/distort.jpg new file mode 100644 index 0000000..b5cf018 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/01/distort.jpg differ diff --git a/blog.photopea.com/wp-content/uploads/2017/01/warp.jpg b/blog.photopea.com/wp-content/uploads/2017/01/warp.jpg new file mode 100644 index 0000000..9c27276 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/01/warp.jpg differ diff --git a/blog.photopea.com/wp-content/uploads/2017/02/smudge.png b/blog.photopea.com/wp-content/uploads/2017/02/smudge.png new file mode 100644 index 0000000..2ff82fd Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/02/smudge.png differ diff --git a/blog.photopea.com/wp-content/uploads/2017/03/asia.jpg b/blog.photopea.com/wp-content/uploads/2017/03/asia.jpg new file mode 100644 index 0000000..427cc09 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/03/asia.jpg differ diff --git a/blog.photopea.com/wp-content/uploads/2017/03/beach.jpg b/blog.photopea.com/wp-content/uploads/2017/03/beach.jpg new file mode 100644 index 0000000..a825874 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/03/beach.jpg differ diff --git a/blog.photopea.com/wp-content/uploads/2017/03/cow.jpg b/blog.photopea.com/wp-content/uploads/2017/03/cow.jpg new file mode 100644 index 0000000..6ad5584 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/03/cow.jpg differ diff --git a/blog.photopea.com/wp-content/uploads/2017/03/healing_tools.png b/blog.photopea.com/wp-content/uploads/2017/03/healing_tools.png new file mode 100644 index 0000000..d60039a Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/03/healing_tools.png differ diff --git a/blog.photopea.com/wp-content/uploads/2017/03/pp_gold.jpg b/blog.photopea.com/wp-content/uploads/2017/03/pp_gold.jpg new file mode 100644 index 0000000..c209fee Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/03/pp_gold.jpg differ diff --git a/blog.photopea.com/wp-content/uploads/2017/04/sketch.png b/blog.photopea.com/wp-content/uploads/2017/04/sketch.png new file mode 100644 index 0000000..79bed03 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/04/sketch.png differ diff --git a/blog.photopea.com/wp-content/uploads/2017/06/picture_narrow.jpg b/blog.photopea.com/wp-content/uploads/2017/06/picture_narrow.jpg new file mode 100644 index 0000000..ba602a7 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/06/picture_narrow.jpg differ diff --git a/blog.photopea.com/wp-content/uploads/2017/09/css_panel.png b/blog.photopea.com/wp-content/uploads/2017/09/css_panel.png new file mode 100644 index 0000000..a8c2489 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/09/css_panel.png differ diff --git a/blog.photopea.com/wp-content/uploads/2017/10/rawpp.jpg b/blog.photopea.com/wp-content/uploads/2017/10/rawpp.jpg new file mode 100644 index 0000000..fd974d1 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/10/rawpp.jpg differ diff --git a/blog.photopea.com/wp-content/uploads/2017/12/pp_quick_select.mp4 b/blog.photopea.com/wp-content/uploads/2017/12/pp_quick_select.mp4 new file mode 100644 index 0000000..be6d3f7 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2017/12/pp_quick_select.mp4 differ diff --git a/blog.photopea.com/wp-content/uploads/2018/01/fnt_preview.png b/blog.photopea.com/wp-content/uploads/2018/01/fnt_preview.png new file mode 100644 index 0000000..006baba Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2018/01/fnt_preview.png differ diff --git a/blog.photopea.com/wp-content/uploads/2018/02/Adobe_PDF.png b/blog.photopea.com/wp-content/uploads/2018/02/Adobe_PDF.png new file mode 100644 index 0000000..eaab172 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2018/02/Adobe_PDF.png differ diff --git a/blog.photopea.com/wp-content/uploads/2018/02/vectorize.png b/blog.photopea.com/wp-content/uploads/2018/02/vectorize.png new file mode 100644 index 0000000..76f06c0 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2018/02/vectorize.png differ diff --git a/blog.photopea.com/wp-content/uploads/2018/04/redge.jpg b/blog.photopea.com/wp-content/uploads/2018/04/redge.jpg new file mode 100644 index 0000000..c470c70 Binary files /dev/null and b/blog.photopea.com/wp-content/uploads/2018/04/redge.jpg differ diff --git a/fonts.googleapis.com/css069f.css b/fonts.googleapis.com/css069f.css deleted file mode 100644 index e5284f4..0000000 --- a/fonts.googleapis.com/css069f.css +++ /dev/null @@ -1,24 +0,0 @@ -@font-face { - font-family: 'Open Sans'; - font-style: italic; - font-weight: 400; - src: url(https://fonts.gstatic.com/s/opensans/v18/mem6YaGs126MiZpBA-UFUK0Zdcg.ttf) format('truetype'); -} -@font-face { - font-family: 'Open Sans'; - font-style: italic; - font-weight: 700; - src: url(https://fonts.gstatic.com/s/opensans/v18/memnYaGs126MiZpBA-UFUKWiUNhrIqY.ttf) format('truetype'); -} -@font-face { - font-family: 'Open Sans'; - font-style: normal; - font-weight: 400; - src: url(https://fonts.gstatic.com/s/opensans/v18/mem8YaGs126MiZpBA-UFVZ0e.ttf) format('truetype'); -} -@font-face { - font-family: 'Open Sans'; - font-style: normal; - font-weight: 700; - src: url(https://fonts.gstatic.com/s/opensans/v18/mem5YaGs126MiZpBA-UN7rgOUuhs.ttf) format('truetype'); -} diff --git a/hts-cache/doit.log b/hts-cache/doit.log deleted file mode 100644 index 99c065f..0000000 --- a/hts-cache/doit.log +++ /dev/null @@ -1,8 +0,0 @@ --qwC2%Pns0u2%u0N0%I0p3DaK0c14H0%kf2A99999999%c10#L10000000%f#f -F "Your user agent" -%F "" -%l "en, *" https://www.photopea.com -O1 "C:\Users\School\Downloads\Photopea-Github\Photopea" +*.css +*.js -ad.doubleclick.net/* -mime:application/foobar +*.gif +*.jpg +*.jpeg +*.png +*.tif +*.bmp +*.zip +*.tar +*.tgz +*.gz +*.rar +*.z +*.exe -File generated automatically on Mon, 04 Jan 2021 18:05:15, do NOT edit - -To update a mirror, just launch httrack without any parameters -The existing cache will be used (and modified) -To have other options, retype all parameters and launch HTTrack -To continue an interrupted mirror, just launch httrack without any parameters - diff --git a/hts-cache/new.lst b/hts-cache/new.lst deleted file mode 100644 index 9022758..0000000 --- a/hts-cache/new.lst +++ /dev/null @@ -1,20 +0,0 @@ -[www.photopea.com/index.html] -[backblue.gif] -[fade.gif] -[index.html] -[www.photopea.com/promo/screens/scr5.png] -[www.photopea.com/promo/icon512.png] -[www.photopea.com/promo/thumb256.png] -[www.photopea.com/manifest.json] -[www.photopea.com/style/all.css] -[apis.google.com/js/client.js] -[fonts.googleapis.com/css069f.css] -[www.photopea.com/ads.js] -[www.photopea.com/code/DBS.js] -[www.photopea.com/index.html] -[www.google-analytics.com/analytics.js] -[www.photopea.com/code/external/ext.js] -[www.photopea.com/style/all.css] -[fonts.googleapis.com/css069f.css] -[www.photopea.com/code/pp.js] -[www.photopea.com/rsrc/fonts/fonts.png] diff --git a/hts-cache/new.txt b/hts-cache/new.txt deleted file mode 100644 index f29c209..0000000 --- a/hts-cache/new.txt +++ /dev/null @@ -1,16 +0,0 @@ -date size'/'remotesize flags(request:Update,Range state:File response:Modified,Chunked,gZipped) statuscode status ('servermsg') MIME Etag|Date URL localfile (from URL) -18:05:16 4245/4245 ---MCZ 200 added ('OK') text/html etag:W/%225f70f7f5-1095%22 https://www.photopea.com/ C:/Users/School/Downloads/Photopea-Github/Photopea/www.photopea.com/index.html (from ) -18:05:17 174763/174763 ---MCZ 200 added ('OK') image/png etag:W/%22590118ca-2aaab%22 https://www.photopea.com/promo/screens/scr5.png C:/Users/School/Downloads/Photopea-Github/Photopea/www.photopea.com/promo/screens/scr5.png (from https://www.photopea.com/) -18:05:17 17293/17293 ---MCZ 200 added ('OK') image/png etag:W/%225cab8b93-438d%22 https://www.photopea.com/promo/icon512.png C:/Users/School/Downloads/Photopea-Github/Photopea/www.photopea.com/promo/icon512.png (from https://www.photopea.com/) -18:05:18 2637/2637 ---MCZ 200 added ('OK') image/png etag:W/%225cc0f557-a4d%22 https://www.photopea.com/promo/thumb256.png C:/Users/School/Downloads/Photopea-Github/Photopea/www.photopea.com/promo/thumb256.png (from https://www.photopea.com/) -18:05:18 470/470 ---M-Z 200 added ('OK') application/json etag:%221d6-59e79e164f67a-gzip%22 https://www.photopea.com/manifest.json C:/Users/School/Downloads/Photopea-Github/Photopea/www.photopea.com/manifest.json (from https://www.photopea.com/) -18:05:18 0/0 ---M-- 301 error ('Moved%20Permanently') application/binary date:Mon,%2004%20Jan%202021%2023:05:18%20GMT http://chrome.google.com/webstore/detail/fmophgdjdipcbfjiopifpngdjmemonko C:/Users/School/Downloads/Photopea-Github/Photopea/chrome.google.com/webstore/detail/fmophgdjdipcbfjiopifpngdjmemonko.5.delayed (from https://www.photopea.com/) -18:05:18 19492/19492 ---MCZ 200 added ('OK') text/css etag:W/%225f88c834-4c24%22 https://www.photopea.com/style/all.css C:/Users/School/Downloads/Photopea-Github/Photopea/www.photopea.com/style/all.css (from https://www.photopea.com/) -18:05:19 12507/12507 ---MCZ 200 added ('OK') application/javascript etag:%22418f8b4fc646b706a2b50501d387e204%22 http://apis.google.com/js/client.js C:/Users/School/Downloads/Photopea-Github/Photopea/apis.google.com/js/client.js (from https://www.photopea.com/) -18:05:19 762/762 ---MCZ 200 added ('OK') text/css date:Mon,%2004%20Jan%202021%2023:05:19%20GMT https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i C:/Users/School/Downloads/Photopea-Github/Photopea/fonts.googleapis.com/css069f.css (from https://www.photopea.com/) -18:05:20 23/23 ---M-- 200 added ('OK') application/javascript etag:%2217-5898b78be3571%22 https://www.photopea.com/ads.js C:/Users/School/Downloads/Photopea-Github/Photopea/www.photopea.com/ads.js (from https://www.photopea.com/) -18:05:21 880038/880038 ---MCZ 200 added ('OK') application/javascript etag:W/%225fecf031-d6da6%22 https://www.photopea.com/code/DBS.js C:/Users/School/Downloads/Photopea-Github/Photopea/www.photopea.com/code/DBS.js (from https://www.photopea.com/) -18:05:22 47051/47051 ---M-Z 200 added ('OK') text/javascript date:Fri,%2023%20Oct%202020%2003:00:57%20GMT http://www.google-analytics.com/analytics.js C:/Users/School/Downloads/Photopea-Github/Photopea/www.google-analytics.com/analytics.js (from https://www.photopea.com/) -18:05:23 829535/829535 ---MCZ 200 added ('OK') application/javascript etag:W/%225fe904b9-ca85f%22 https://www.photopea.com/code/external/ext.js C:/Users/School/Downloads/Photopea-Github/Photopea/www.photopea.com/code/external/ext.js (from https://www.photopea.com/) -18:05:23 1722326/1722326 ---MCZ 200 added ('OK') application/javascript etag:W/%225ff2cf89-1a47d6%22 https://www.photopea.com/code/pp.js C:/Users/School/Downloads/Photopea-Github/Photopea/www.photopea.com/code/pp.js (from https://www.photopea.com/) -18:05:23 1026732/1026732 ---MCZ 200 added ('OK') image/png etag:W/%225d60fc75-faaac%22 https://www.photopea.com/rsrc/fonts/fonts.png C:/Users/School/Downloads/Photopea-Github/Photopea/www.photopea.com/rsrc/fonts/fonts.png (from https://www.photopea.com/style/all.css) diff --git a/hts-cache/new.zip b/hts-cache/new.zip deleted file mode 100644 index 846331e..0000000 Binary files a/hts-cache/new.zip and /dev/null differ diff --git a/hts-cache/readme.txt b/hts-cache/readme.txt deleted file mode 100644 index 3ffa043..0000000 --- a/hts-cache/readme.txt +++ /dev/null @@ -1,12 +0,0 @@ -What's in this folder? - -This folder (hts-cache) has been generated by WinHTTrack 3.49-2+htsswf+htsjava -and is used for updating this website. -(The HTML website structure is stored here to allow fast updates) - -DO NOT delete this folder unless you do not want to update the mirror in the future!! -(you can safely delete old.zip and old.lst files, however) - -note: the hts-log.txt file, and hts-cache folder, may contain sensitive information, - such as username/password authentication for websites mirrored in this project - do not share these files/folders if you want these information to remain private diff --git a/hts-cache/winprofile.ini b/hts-cache/winprofile.ini deleted file mode 100644 index cba104e..0000000 --- a/hts-cache/winprofile.ini +++ /dev/null @@ -1,78 +0,0 @@ -Near=1 -Test=0 -ParseAll=1 -HTMLFirst=0 -Cache=1 -NoRecatch=0 -Dos=0 -Index=1 -WordIndex=0 -MailIndex=0 -Log=1 -RemoveTimeout=0 -RemoveRateout=0 -KeepAlive=1 -FollowRobotsTxt=0 -NoErrorPages=0 -NoExternalPages=0 -NoPwdInPages=0 -NoQueryStrings=0 -NoPurgeOldFiles=0 -Cookies=1 -CheckType=2 -ParseJava=1 -HTTP10=0 -TolerantRequests=0 -UpdateHack=0 -URLHack=0 -StoreAllInCache=0 -LogType=0 -UseHTTPProxyForFTP=1 -Build=0 -PrimaryScan=3 -Travel=1 -GlobalTravel=0 -RewriteLinks=0 -BuildString=%%h%%p/%%n%%q.%%t -Category= -MaxHtml= -MaxOther= -MaxAll= -MaxWait= -Sockets=14 -Retry= -MaxTime= -TimeOut= -RateOut= -UserID=Your user agent -Footer=(none) -AcceptLanguage=en, * -OtherHeaders= -DefaultReferer= -MaxRate=99999999 -WildCardFilters=+*.css +*.js -ad.doubleclick.net/* -mime:application/foobar%0d%0a+*.gif +*.jpg +*.jpeg +*.png +*.tif +*.bmp%0d%0a+*.zip +*.tar +*.tgz +*.gz +*.rar +*.z +*.exe -Proxy= -Port= -Depth= -ExtDepth= -MaxConn=10 -MaxLinks=10000000 -MIMEDefsExt1= -MIMEDefsExt2= -MIMEDefsExt3= -MIMEDefsExt4= -MIMEDefsExt5= -MIMEDefsExt6= -MIMEDefsExt7= -MIMEDefsExt8= -MIMEDefsMime1= -MIMEDefsMime2= -MIMEDefsMime3= -MIMEDefsMime4= -MIMEDefsMime5= -MIMEDefsMime6= -MIMEDefsMime7= -MIMEDefsMime8= -CurrentUrl=https://www.photopea.com -CurrentAction=0 -CurrentURLList= diff --git a/upng.photopea.com/bunny.png b/upng.photopea.com/bunny.png new file mode 100644 index 0000000..71d762d Binary files /dev/null and b/upng.photopea.com/bunny.png differ diff --git a/upng.photopea.com/grass.png b/upng.photopea.com/grass.png new file mode 100644 index 0000000..6165b0e Binary files /dev/null and b/upng.photopea.com/grass.png differ diff --git a/upng.photopea.com/grid.png b/upng.photopea.com/grid.png new file mode 100644 index 0000000..657af90 Binary files /dev/null and b/upng.photopea.com/grid.png differ diff --git a/upng.photopea.com/index.html b/upng.photopea.com/index.html new file mode 100644 index 0000000..26d8d09 --- /dev/null +++ b/upng.photopea.com/index.html @@ -0,0 +1,285 @@ + + + + + + + + + + + UPNG: fast PNG minifier + + + + + + + + + + + + + + + + + +
+

UPNG
fast PNG minifier by Photopea

+ + + + Check out UPNG.js + + + + +
+ +
+
+
+
+

Shrink and optimize images. + Set the ideal balance between the quality and the size.

+
+

Comparison with TinyPNG.com

+

+ + Drag and drop your PNG files! + +
+
+
+
+ +
+ +
+
+ + + + +
+
+ + + diff --git a/upng.photopea.com/js/UPNG.js b/upng.photopea.com/js/UPNG.js new file mode 100644 index 0000000..8812ea1 --- /dev/null +++ b/upng.photopea.com/js/UPNG.js @@ -0,0 +1,899 @@ + +;(function(){ +var UPNG = {}; + +// Make available for import by `require()` +var pako; +if (typeof module == "object") {module.exports = UPNG;} else {window.UPNG = UPNG;} +if (typeof require == "function") {pako = require("pako");} else {pako = window.pako;} +function log() { if (typeof process=="undefined" || process.env.NODE_ENV=="development") console.log.apply(console, arguments); } +(function(UPNG, pako){ + + + + +UPNG.toRGBA8 = function(out) +{ + var w = out.width, h = out.height; + if(out.tabs.acTL==null) return [UPNG.toRGBA8.decodeImage(out.data, w, h, out).buffer]; + + var frms = []; + if(out.frames[0].data==null) out.frames[0].data = out.data; + + var img, empty = new Uint8Array(w*h*4); + for(var i=0; i>3)]>>(7-((i&7)<<0)))& 1), cj=3*j; bf[qi]=p[cj]; bf[qi+1]=p[cj+1]; bf[qi+2]=p[cj+2]; bf[qi+3]=(j>2)]>>(6-((i&3)<<1)))& 3), cj=3*j; bf[qi]=p[cj]; bf[qi+1]=p[cj+1]; bf[qi+2]=p[cj+2]; bf[qi+3]=(j>1)]>>(4-((i&1)<<2)))&15), cj=3*j; bf[qi]=p[cj]; bf[qi+1]=p[cj+1]; bf[qi+2]=p[cj+2]; bf[qi+3]=(j>3]>>(7 -((i&7) )))& 1), al=(gr==tr*255)?0:255; bf32[i]=(al<<24)|(gr<<16)|(gr<<8)|gr; } + if(depth== 2) for(var i=0; i>2]>>(6 -((i&3)<<1)))& 3), al=(gr==tr* 85)?0:255; bf32[i]=(al<<24)|(gr<<16)|(gr<<8)|gr; } + if(depth== 4) for(var i=0; i>1]>>(4 -((i&1)<<2)))&15), al=(gr==tr* 17)?0:255; bf32[i]=(al<<24)|(gr<<16)|(gr<<8)|gr; } + if(depth== 8) for(var i=0; i>3, bpl = Math.ceil(w*bpp/8); + var img = new Uint8Array( h * bpl ); + var di = 0; + + var starting_row = [ 0, 0, 4, 0, 2, 0, 1 ]; + var starting_col = [ 0, 4, 0, 2, 0, 1, 0 ]; + var row_increment = [ 8, 8, 8, 4, 4, 2, 2 ]; + var col_increment = [ 8, 8, 4, 4, 2, 2, 1 ]; + + var pass=0; + while(pass<7) + { + var ri = row_increment[pass], ci = col_increment[pass]; + var sw = 0, sh = 0; + var cr = starting_row[pass]; while(cr>3]; val = (val>>(7-(cdi&7)))&1; + img[row*bpl + (col>>3)] |= (val << (7-((col&3)<<0))); + } + if(bpp==2) { + var val = data[cdi>>3]; val = (val>>(6-(cdi&7)))&3; + img[row*bpl + (col>>2)] |= (val << (6-((col&3)<<1))); + } + if(bpp==4) { + var val = data[cdi>>3]; val = (val>>(4-(cdi&7)))&15; + img[row*bpl + (col>>1)] |= (val << (4-((col&1)<<2))); + } + if(bpp>=8) { + var ii = row*bpl+col*cbpp; + for(var j=0; j>3)+j]; + } + cdi+=bpp; col+=ci; + } + y++; row += ri; + } + if(sw*sh!=0) di += sh * (1 + bpll); + pass = pass + 1; + } + return img; +} + +UPNG.decode._getBPP = function(out) { + var noc = [1,null,3,1,2,null,4][out.ctype]; + return noc * out.depth; +} + +UPNG.decode._filterZero = function(data, out, off, w, h) +{ + var bpp = UPNG.decode._getBPP(out), bpl = Math.ceil(w*bpp/8), paeth = UPNG.decode._paeth; + bpp = Math.ceil(bpp/8); + + for(var y=0; y>1) )&255; + if(type==4) for(var x=bpp; x>1))&255; + for(var x=bpp; x>1) )&255; } + + if(type==4) { for(var x= 0; x>8)&255; buff[p+1] = n&255; }, + readUint : function(buff,p) { return (buff[p]*(256*256*256)) + ((buff[p+1]<<16) | (buff[p+2]<< 8) | buff[p+3]); }, + writeUint : function(buff,p,n){ buff[p]=(n>>24)&255; buff[p+1]=(n>>16)&255; buff[p+2]=(n>>8)&255; buff[p+3]=n&255; }, + readASCII : function(buff,p,l){ var s = ""; for(var i=0; i=0 && yoff>=0) { si = (y*sw+x)<<2; ti = (( yoff+y)*tw+xoff+x)<<2; } + else { si = ((-yoff+y)*sw-xoff+x)<<2; ti = (y*tw+x)<<2; } + + if (mode==0) { tb[ti] = sb[si]; tb[ti+1] = sb[si+1]; tb[ti+2] = sb[si+2]; tb[ti+3] = sb[si+3]; } + else if(mode==1) { + var fa = sb[si+3]*(1/255), fr=sb[si]*fa, fg=sb[si+1]*fa, fb=sb[si+2]*fa; + var ba = tb[ti+3]*(1/255), br=tb[ti]*ba, bg=tb[ti+1]*ba, bb=tb[ti+2]*ba; + + var ifa=1-fa, oa = fa+ba*ifa, ioa = (oa==0?0:1/oa); + tb[ti+3] = 255*oa; + tb[ti+0] = (fr+br*ifa)*ioa; + tb[ti+1] = (fg+bg*ifa)*ioa; + tb[ti+2] = (fb+bb*ifa)*ioa; + } + else if(mode==2){ // copy only differences, otherwise zero + var fa = sb[si+3], fr=sb[si], fg=sb[si+1], fb=sb[si+2]; + var ba = tb[ti+3], br=tb[ti], bg=tb[ti+1], bb=tb[ti+2]; + if(fa==ba && fr==br && fg==bg && fb==bb) { tb[ti]=0; tb[ti+1]=0; tb[ti+2]=0; tb[ti+3]=0; } + else { tb[ti]=fr; tb[ti+1]=fg; tb[ti+2]=fb; tb[ti+3]=fa; } + } + else if(mode==3){ // check if can be blended + var fa = sb[si+3], fr=sb[si], fg=sb[si+1], fb=sb[si+2]; + var ba = tb[ti+3], br=tb[ti], bg=tb[ti+1], bb=tb[ti+2]; + if(fa==ba && fr==br && fg==bg && fb==bb) continue; + //if(fa!=255 && ba!=0) return false; + if(fa<220 && ba>20) return false; + } + } + return true; +} + + + + + +UPNG.encode = function(bufs, w, h, ps, dels, forbidPlte) +{ + if(ps==null) ps=0; + if(forbidPlte==null) forbidPlte = false; + + var nimg = UPNG.encode.compress(bufs, w, h, ps, false, forbidPlte); + UPNG.encode.compressPNG(nimg, -1); + + return UPNG.encode._main(nimg, w, h, dels); +} + +UPNG.encodeLL = function(bufs, w, h, cc, ac, depth, dels) { + var nimg = { ctype: 0 + (cc==1 ? 0 : 2) + (ac==0 ? 0 : 4), depth: depth, frames: [] }; + + var bipp = (cc+ac)*depth, bipl = bipp * w; + for(var i=0; i1, pltAlpha = false; + + var leng = 8 + (16+5+4) /*+ (9+4)*/ + (anim ? 20 : 0); + if(nimg.ctype==3) { + var dl = nimg.plte.length; + for(var i=0; i>>24)!=255) pltAlpha = true; + leng += (8 + dl*3 + 4) + (pltAlpha ? (8 + dl*1 + 4) : 0); + } + for(var j=0; j>>8)&255, b=(c>>>16)&255; + data[offset+ti+0]=r; data[offset+ti+1]=g; data[offset+ti+2]=b; + } + offset+=dl*3; + wUi(data,offset,crc(data,offset-dl*3-4,dl*3+4)); offset+=4; // crc + + if(pltAlpha) { + wUi(data,offset, dl); offset+=4; + wAs(data,offset,"tRNS"); offset+=4; + for(var i=0; i>>24)&255; + offset+=dl; + wUi(data,offset,crc(data,offset-dl-4,dl+4)); offset+=4; // crc + } + } + + var fi = 0; + for(var j=0; j>2, bln>>2)); + for(var j=0; jnw && c==img32[i-nw]) ind[i]=ind[i-nw]; + else { + var cmc = cmap[c]; + if(cmc==null) { cmap[c]=cmc=plte.length; plte.push(c); if(plte.length>=300) break; } + ind[i]=cmc; + } + } + } + //console.log("make palette", Date.now()-time); time = Date.now(); + } + + var cc=plte.length; //console.log("colors:",cc); + if(cc<=256 && forbidPlte==false) { + if(cc<= 2) depth=1; else if(cc<= 4) depth=2; else if(cc<=16) depth=4; else depth=8; + if(forGIF) depth=8; + } + + for(var j=0; j>1)] |= (inj[ii+x]<<(4-(x&1)*4)); + else if(depth==2) for(var x=0; x>2)] |= (inj[ii+x]<<(6-(x&3)*2)); + else if(depth==1) for(var x=0; x>3)] |= (inj[ii+x]<<(7-(x&7)*1)); + } + cimg=nimg; ctype=3; bpp=1; + } + else if(gotAlpha==false && frms.length==1) { // some next "reduced" frames may contain alpha for blending + var nimg = new Uint8Array(nw*nh*3), area=nw*nh; + for(var i=0; i palette indices", Date.now()-time); time = Date.now(); + + return {ctype:ctype, depth:depth, plte:plte, frames:frms }; +} +UPNG.encode.framize = function(bufs,w,h,forGIF,brute) { + var frms = []; + for(var j=0; jmax) max=x; + if(ymay) may=y; + } + } + var sarea = (max==-1) ? 1 : (max-mix+1)*(may-miy+1); + if(sarea500000 && (t==2 || t==3 || t==4)) continue; + for(var y=0; y>1) +256)&255; + if(type==4) for(var x=bpp; x>1))&255; + for(var x=bpp; x>1))&255; } + if(type==4) { for(var x= 0; x>> 1); + else c = c >>> 1; + } + tab[n] = c; } + return tab; })(), + update : function(c, buf, off, len) { + for (var i=0; i>> 8); + return c; + }, + crc : function(b,o,l) { return UPNG.crc.update(0xffffffff,b,o,l) ^ 0xffffffff; } +} + + +UPNG.quantize = function(abuf, ps) +{ + var oimg = new Uint8Array(abuf), nimg = oimg.slice(0), nimg32 = new Uint32Array(nimg.buffer); + + var KD = UPNG.quantize.getKDtree(nimg, ps); + var root = KD[0], leafs = KD[1]; + + var planeDst = UPNG.quantize.planeDst; + var sb = oimg, tb = nimg32, len=sb.length; + + var inds = new Uint8Array(oimg.length>>2); + for(var i=0; i>2] = nd.ind; + tb[i>>2] = nd.est.rgba; + } + return { abuf:nimg.buffer, inds:inds, plte:leafs }; +} + +UPNG.quantize.getKDtree = function(nimg, ps, err) { + if(err==null) err = 0.0001; + var nimg32 = new Uint32Array(nimg.buffer); + + var root = {i0:0, i1:nimg.length, bst:null, est:null, tdst:0, left:null, right:null }; // basic statistic, extra statistic + root.bst = UPNG.quantize.stats( nimg,root.i0, root.i1 ); root.est = UPNG.quantize.estats( root.bst ); + var leafs = [root]; + + while(leafs.length maxL) { maxL=leafs[i].est.L; mi=i; } + if(maxL=s0 || node.i1<=s0); + //console.log(maxL, leafs.length, mi); + if(s0wrong) { node.est.L=0; continue; } + + + var ln = {i0:node.i0, i1:s0, bst:null, est:null, tdst:0, left:null, right:null }; ln.bst = UPNG.quantize.stats( nimg, ln.i0, ln.i1 ); + ln.est = UPNG.quantize.estats( ln.bst ); + var rn = {i0:s0, i1:node.i1, bst:null, est:null, tdst:0, left:null, right:null }; rn.bst = {R:[], m:[], N:node.bst.N-ln.bst.N}; + for(var i=0; i<16; i++) rn.bst.R[i] = node.bst.R[i]-ln.bst.R[i]; + for(var i=0; i< 4; i++) rn.bst.m[i] = node.bst.m[i]-ln.bst.m[i]; + rn.est = UPNG.quantize.estats( rn.bst ); + + node.left = ln; node.right = rn; + leafs[mi]=ln; leafs.push(rn); + } + leafs.sort(function(a,b) { return b.bst.N-a.bst.N; }); + for(var i=0; i0) { node0=nd.right; node1=nd.left; } + + var ln = UPNG.quantize.getNearest(node0, r,g,b,a); + if(ln.tdst<=planeDst*planeDst) return ln; + var rn = UPNG.quantize.getNearest(node1, r,g,b,a); + return rn.tdst eMq) i1-=4; + if(i0>=i1) break; + + var t = nimg32[i0>>2]; nimg32[i0>>2] = nimg32[i1>>2]; nimg32[i1>>2]=t; + + i0+=4; i1-=4; + } + while(vecDot(nimg, i0, e)>eMq) i0-=4; + return i0+4; +} +UPNG.quantize.vecDot = function(nimg, i, e) +{ + return nimg[i]*e[0] + nimg[i+1]*e[1] + nimg[i+2]*e[2] + nimg[i+3]*e[3]; +} +UPNG.quantize.stats = function(nimg, i0, i1){ + var R = [0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0]; + var m = [0,0,0,0]; + var N = (i1-i0)>>2; + for(var i=i0; i>>0) }; +} +UPNG.M4 = { + multVec : function(m,v) { + return [ + m[ 0]*v[0] + m[ 1]*v[1] + m[ 2]*v[2] + m[ 3]*v[3], + m[ 4]*v[0] + m[ 5]*v[1] + m[ 6]*v[2] + m[ 7]*v[3], + m[ 8]*v[0] + m[ 9]*v[1] + m[10]*v[2] + m[11]*v[3], + m[12]*v[0] + m[13]*v[1] + m[14]*v[2] + m[15]*v[3] + ]; + }, + dot : function(x,y) { return x[0]*y[0]+x[1]*y[1]+x[2]*y[2]+x[3]*y[3]; }, + sml : function(a,y) { return [a*y[0],a*y[1],a*y[2],a*y[3]]; } +} + +UPNG.encode.concatRGBA = function(bufs, roundAlpha) { + var tlen = 0; + for(var i=0; i>> 1); + else c = c >>> 1; + } + tab[n] = c; } + return tab; })(), + update : function(c, buf, off, len) { + for (var i=0; i>> 8); + return c; + }, + crc : function(b,o,l) { return UPNG.crc.update(0xffffffff,b,o,l) ^ 0xffffffff; } +} + +UZIP.bin = { + readUshort : function(buff,p) { return (buff[p]) | (buff[p+1]<<8); }, + writeUshort: function(buff,p,n){ buff[p] = (n)&255; buff[p+1] = (n>>8)&255; }, + readUint : function(buff,p) { return (buff[p+3]*(256*256*256)) + ((buff[p+2]<<16) | (buff[p+1]<< 8) | buff[p]); }, + writeUint : function(buff,p,n){ buff[p+3]=(n>>24)&255; buff[p+2]=(n>>16)&255; buff[p+1]=(n>>8)&255; buff[p]=n&255; }, + readASCII : function(buff,p,l){ var s = ""; for(var i=0; i0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new f,this.strm.avail_out=0;var a=o.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(a!==b)throw new Error(d[a]);if(e.header&&o.deflateSetHeader(this.strm,e.header),e.dictionary){var n;if(n="string"==typeof e.dictionary?h.string2buf(e.dictionary):"[object ArrayBuffer]"===_.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,a=o.deflateSetDictionary(this.strm,n),a!==b)throw new Error(d[a]);this._dict_set=!0}}function n(t,e){var a=new i(e);if(a.push(t,!0),a.err)throw a.msg||d[a.err];return a.result}function r(t,e){return e=e||{},e.raw=!0,n(t,e)}function s(t,e){return e=e||{},e.gzip=!0,n(t,e)}var o=t("./zlib/deflate"),l=t("./utils/common"),h=t("./utils/strings"),d=t("./zlib/messages"),f=t("./zlib/zstream"),_=Object.prototype.toString,u=0,c=4,b=0,g=1,m=2,w=-1,p=0,v=8;i.prototype.push=function(t,e){var a,i,n=this.strm,r=this.options.chunkSize;if(this.ended)return!1;i=e===~~e?e:e===!0?c:u,"string"==typeof t?n.input=h.string2buf(t):"[object ArrayBuffer]"===_.call(t)?n.input=new Uint8Array(t):n.input=t,n.next_in=0,n.avail_in=n.input.length;do{if(0===n.avail_out&&(n.output=new l.Buf8(r),n.next_out=0,n.avail_out=r),a=o.deflate(n,i),a!==g&&a!==b)return this.onEnd(a),this.ended=!0,!1;0!==n.avail_out&&(0!==n.avail_in||i!==c&&i!==m)||("string"===this.options.to?this.onData(h.buf2binstring(l.shrinkBuf(n.output,n.next_out))):this.onData(l.shrinkBuf(n.output,n.next_out)))}while((n.avail_in>0||0===n.avail_out)&&a!==g);return i===c?(a=o.deflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===b):i!==m||(this.onEnd(b),n.avail_out=0,!0)},i.prototype.onData=function(t){this.chunks.push(t)},i.prototype.onEnd=function(t){t===b&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=l.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},a.Deflate=i,a.deflate=n,a.deflateRaw=r,a.gzip=s},{"./utils/common":3,"./utils/strings":4,"./zlib/deflate":8,"./zlib/messages":13,"./zlib/zstream":15}],2:[function(t,e,a){"use strict";function i(t){if(!(this instanceof i))return new i(t);this.options=o.assign({chunkSize:16384,windowBits:0,to:""},t||{});var e=this.options;e.raw&&e.windowBits>=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(e.windowBits>=0&&e.windowBits<16)||t&&t.windowBits||(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&0===(15&e.windowBits)&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new f,this.strm.avail_out=0;var a=s.inflateInit2(this.strm,e.windowBits);if(a!==h.Z_OK)throw new Error(d[a]);this.header=new _,s.inflateGetHeader(this.strm,this.header)}function n(t,e){var a=new i(e);if(a.push(t,!0),a.err)throw a.msg||d[a.err];return a.result}function r(t,e){return e=e||{},e.raw=!0,n(t,e)}var s=t("./zlib/inflate"),o=t("./utils/common"),l=t("./utils/strings"),h=t("./zlib/constants"),d=t("./zlib/messages"),f=t("./zlib/zstream"),_=t("./zlib/gzheader"),u=Object.prototype.toString;i.prototype.push=function(t,e){var a,i,n,r,d,f,_=this.strm,c=this.options.chunkSize,b=this.options.dictionary,g=!1;if(this.ended)return!1;i=e===~~e?e:e===!0?h.Z_FINISH:h.Z_NO_FLUSH,"string"==typeof t?_.input=l.binstring2buf(t):"[object ArrayBuffer]"===u.call(t)?_.input=new Uint8Array(t):_.input=t,_.next_in=0,_.avail_in=_.input.length;do{if(0===_.avail_out&&(_.output=new o.Buf8(c),_.next_out=0,_.avail_out=c),a=s.inflate(_,h.Z_NO_FLUSH),a===h.Z_NEED_DICT&&b&&(f="string"==typeof b?l.string2buf(b):"[object ArrayBuffer]"===u.call(b)?new Uint8Array(b):b,a=s.inflateSetDictionary(this.strm,f)),a===h.Z_BUF_ERROR&&g===!0&&(a=h.Z_OK,g=!1),a!==h.Z_STREAM_END&&a!==h.Z_OK)return this.onEnd(a),this.ended=!0,!1;_.next_out&&(0!==_.avail_out&&a!==h.Z_STREAM_END&&(0!==_.avail_in||i!==h.Z_FINISH&&i!==h.Z_SYNC_FLUSH)||("string"===this.options.to?(n=l.utf8border(_.output,_.next_out),r=_.next_out-n,d=l.buf2string(_.output,n),_.next_out=r,_.avail_out=c-r,r&&o.arraySet(_.output,_.output,n,r,0),this.onData(d)):this.onData(o.shrinkBuf(_.output,_.next_out)))),0===_.avail_in&&0===_.avail_out&&(g=!0)}while((_.avail_in>0||0===_.avail_out)&&a!==h.Z_STREAM_END);return a===h.Z_STREAM_END&&(i=h.Z_FINISH),i===h.Z_FINISH?(a=s.inflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===h.Z_OK):i!==h.Z_SYNC_FLUSH||(this.onEnd(h.Z_OK),_.avail_out=0,!0)},i.prototype.onData=function(t){this.chunks.push(t)},i.prototype.onEnd=function(t){t===h.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=o.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},a.Inflate=i,a.inflate=n,a.inflateRaw=r,a.ungzip=n},{"./utils/common":3,"./utils/strings":4,"./zlib/constants":6,"./zlib/gzheader":9,"./zlib/inflate":11,"./zlib/messages":13,"./zlib/zstream":15}],3:[function(t,e,a){"use strict";var i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;a.assign=function(t){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var a=e.shift();if(a){if("object"!=typeof a)throw new TypeError(a+"must be non-object");for(var i in a)a.hasOwnProperty(i)&&(t[i]=a[i])}}return t},a.shrinkBuf=function(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)};var n={arraySet:function(t,e,a,i,n){if(e.subarray&&t.subarray)return void t.set(e.subarray(a,a+i),n);for(var r=0;r=252?6:l>=248?5:l>=240?4:l>=224?3:l>=192?2:1;o[254]=o[254]=1,a.string2buf=function(t){var e,a,i,r,s,o=t.length,l=0;for(r=0;r>>6,e[s++]=128|63&a):a<65536?(e[s++]=224|a>>>12,e[s++]=128|a>>>6&63,e[s++]=128|63&a):(e[s++]=240|a>>>18,e[s++]=128|a>>>12&63,e[s++]=128|a>>>6&63,e[s++]=128|63&a);return e},a.buf2binstring=function(t){return i(t,t.length)},a.binstring2buf=function(t){for(var e=new n.Buf8(t.length),a=0,i=e.length;a4)h[n++]=65533,a+=s-1;else{for(r&=2===s?31:3===s?15:7;s>1&&a1?h[n++]=65533:r<65536?h[n++]=r:(r-=65536,h[n++]=55296|r>>10&1023,h[n++]=56320|1023&r)}return i(h,n)},a.utf8border=function(t,e){var a;for(e=e||t.length,e>t.length&&(e=t.length),a=e-1;a>=0&&128===(192&t[a]);)a--;return a<0?e:0===a?e:a+o[t[a]]>e?a:e}},{"./common":3}],5:[function(t,e,a){"use strict";function i(t,e,a,i){for(var n=65535&t|0,r=t>>>16&65535|0,s=0;0!==a;){s=a>2e3?2e3:a,a-=s;do n=n+e[i++]|0,r=r+n|0;while(--s);n%=65521,r%=65521}return n|r<<16|0}e.exports=i},{}],6:[function(t,e,a){"use strict";e.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],7:[function(t,e,a){"use strict";function i(){for(var t,e=[],a=0;a<256;a++){t=a;for(var i=0;i<8;i++)t=1&t?3988292384^t>>>1:t>>>1;e[a]=t}return e}function n(t,e,a,i){var n=r,s=i+a;t^=-1;for(var o=i;o>>8^n[255&(t^e[o])];return t^-1}var r=i();e.exports=n},{}],8:[function(t,e,a){"use strict";function i(t,e){return t.msg=D[e],e}function n(t){return(t<<1)-(t>4?9:0)}function r(t){for(var e=t.length;--e>=0;)t[e]=0}function s(t){var e=t.state,a=e.pending;a>t.avail_out&&(a=t.avail_out),0!==a&&(R.arraySet(t.output,e.pending_buf,e.pending_out,a,t.next_out),t.next_out+=a,e.pending_out+=a,t.total_out+=a,t.avail_out-=a,e.pending-=a,0===e.pending&&(e.pending_out=0))}function o(t,e){C._tr_flush_block(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,s(t.strm)}function l(t,e){t.pending_buf[t.pending++]=e}function h(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e}function d(t,e,a,i){var n=t.avail_in;return n>i&&(n=i),0===n?0:(t.avail_in-=n,R.arraySet(e,t.input,t.next_in,n,a),1===t.state.wrap?t.adler=N(t.adler,e,n,a):2===t.state.wrap&&(t.adler=O(t.adler,e,n,a)),t.next_in+=n,t.total_in+=n,n)}function f(t,e){var a,i,n=t.max_chain_length,r=t.strstart,s=t.prev_length,o=t.nice_match,l=t.strstart>t.w_size-ft?t.strstart-(t.w_size-ft):0,h=t.window,d=t.w_mask,f=t.prev,_=t.strstart+dt,u=h[r+s-1],c=h[r+s];t.prev_length>=t.good_match&&(n>>=2),o>t.lookahead&&(o=t.lookahead);do if(a=e,h[a+s]===c&&h[a+s-1]===u&&h[a]===h[r]&&h[++a]===h[r+1]){r+=2,a++;do;while(h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&r<_);if(i=dt-(_-r),r=_-dt,i>s){if(t.match_start=e,s=i,i>=o)break;u=h[r+s-1],c=h[r+s]}}while((e=f[e&d])>l&&0!==--n);return s<=t.lookahead?s:t.lookahead}function _(t){var e,a,i,n,r,s=t.w_size;do{if(n=t.window_size-t.lookahead-t.strstart,t.strstart>=s+(s-ft)){R.arraySet(t.window,t.window,s,s,0),t.match_start-=s,t.strstart-=s,t.block_start-=s,a=t.hash_size,e=a;do i=t.head[--e],t.head[e]=i>=s?i-s:0;while(--a);a=s,e=a;do i=t.prev[--e],t.prev[e]=i>=s?i-s:0;while(--a);n+=s}if(0===t.strm.avail_in)break;if(a=d(t.strm,t.window,t.strstart+t.lookahead,n),t.lookahead+=a,t.lookahead+t.insert>=ht)for(r=t.strstart-t.insert,t.ins_h=t.window[r],t.ins_h=(t.ins_h<t.pending_buf_size-5&&(a=t.pending_buf_size-5);;){if(t.lookahead<=1){if(_(t),0===t.lookahead&&e===I)return vt;if(0===t.lookahead)break}t.strstart+=t.lookahead,t.lookahead=0;var i=t.block_start+a;if((0===t.strstart||t.strstart>=i)&&(t.lookahead=t.strstart-i,t.strstart=i,o(t,!1),0===t.strm.avail_out))return vt;if(t.strstart-t.block_start>=t.w_size-ft&&(o(t,!1),0===t.strm.avail_out))return vt}return t.insert=0,e===F?(o(t,!0),0===t.strm.avail_out?yt:xt):t.strstart>t.block_start&&(o(t,!1),0===t.strm.avail_out)?vt:vt}function c(t,e){for(var a,i;;){if(t.lookahead=ht&&(t.ins_h=(t.ins_h<=ht)if(i=C._tr_tally(t,t.strstart-t.match_start,t.match_length-ht),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=ht){t.match_length--;do t.strstart++,t.ins_h=(t.ins_h<=ht&&(t.ins_h=(t.ins_h<4096)&&(t.match_length=ht-1)),t.prev_length>=ht&&t.match_length<=t.prev_length){n=t.strstart+t.lookahead-ht,i=C._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-ht),t.lookahead-=t.prev_length-1,t.prev_length-=2;do++t.strstart<=n&&(t.ins_h=(t.ins_h<=ht&&t.strstart>0&&(n=t.strstart-1,i=s[n],i===s[++n]&&i===s[++n]&&i===s[++n])){r=t.strstart+dt;do;while(i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&nt.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=ht?(a=C._tr_tally(t,1,t.match_length-ht),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(a=C._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),a&&(o(t,!1),0===t.strm.avail_out))return vt}return t.insert=0,e===F?(o(t,!0),0===t.strm.avail_out?yt:xt):t.last_lit&&(o(t,!1),0===t.strm.avail_out)?vt:kt}function m(t,e){for(var a;;){if(0===t.lookahead&&(_(t),0===t.lookahead)){if(e===I)return vt;break}if(t.match_length=0,a=C._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,a&&(o(t,!1),0===t.strm.avail_out))return vt}return t.insert=0,e===F?(o(t,!0),0===t.strm.avail_out?yt:xt):t.last_lit&&(o(t,!1),0===t.strm.avail_out)?vt:kt}function w(t,e,a,i,n){this.good_length=t,this.max_lazy=e,this.nice_length=a,this.max_chain=i,this.func=n}function p(t){t.window_size=2*t.w_size,r(t.head),t.max_lazy_match=Z[t.level].max_lazy,t.good_match=Z[t.level].good_length,t.nice_match=Z[t.level].nice_length,t.max_chain_length=Z[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=ht-1,t.match_available=0,t.ins_h=0}function v(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=V,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new R.Buf16(2*ot),this.dyn_dtree=new R.Buf16(2*(2*rt+1)),this.bl_tree=new R.Buf16(2*(2*st+1)),r(this.dyn_ltree),r(this.dyn_dtree),r(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new R.Buf16(lt+1),this.heap=new R.Buf16(2*nt+1),r(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new R.Buf16(2*nt+1),r(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function k(t){var e;return t&&t.state?(t.total_in=t.total_out=0,t.data_type=Q,e=t.state,e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=e.wrap?ut:wt,t.adler=2===e.wrap?0:1,e.last_flush=I,C._tr_init(e),H):i(t,K)}function y(t){var e=k(t);return e===H&&p(t.state),e}function x(t,e){return t&&t.state?2!==t.state.wrap?K:(t.state.gzhead=e,H):K}function z(t,e,a,n,r,s){if(!t)return K;var o=1;if(e===Y&&(e=6),n<0?(o=0,n=-n):n>15&&(o=2,n-=16),r<1||r>$||a!==V||n<8||n>15||e<0||e>9||s<0||s>W)return i(t,K);8===n&&(n=9);var l=new v;return t.state=l,l.strm=t,l.wrap=o,l.gzhead=null,l.w_bits=n,l.w_size=1<L||e<0)return t?i(t,K):K;if(o=t.state,!t.output||!t.input&&0!==t.avail_in||o.status===pt&&e!==F)return i(t,0===t.avail_out?P:K);if(o.strm=t,a=o.last_flush,o.last_flush=e,o.status===ut)if(2===o.wrap)t.adler=0,l(o,31),l(o,139),l(o,8),o.gzhead?(l(o,(o.gzhead.text?1:0)+(o.gzhead.hcrc?2:0)+(o.gzhead.extra?4:0)+(o.gzhead.name?8:0)+(o.gzhead.comment?16:0)),l(o,255&o.gzhead.time),l(o,o.gzhead.time>>8&255),l(o,o.gzhead.time>>16&255),l(o,o.gzhead.time>>24&255),l(o,9===o.level?2:o.strategy>=G||o.level<2?4:0),l(o,255&o.gzhead.os),o.gzhead.extra&&o.gzhead.extra.length&&(l(o,255&o.gzhead.extra.length),l(o,o.gzhead.extra.length>>8&255)),o.gzhead.hcrc&&(t.adler=O(t.adler,o.pending_buf,o.pending,0)),o.gzindex=0,o.status=ct):(l(o,0),l(o,0),l(o,0),l(o,0),l(o,0),l(o,9===o.level?2:o.strategy>=G||o.level<2?4:0),l(o,zt),o.status=wt);else{var _=V+(o.w_bits-8<<4)<<8,u=-1;u=o.strategy>=G||o.level<2?0:o.level<6?1:6===o.level?2:3,_|=u<<6,0!==o.strstart&&(_|=_t),_+=31-_%31,o.status=wt,h(o,_),0!==o.strstart&&(h(o,t.adler>>>16),h(o,65535&t.adler)),t.adler=1}if(o.status===ct)if(o.gzhead.extra){for(d=o.pending;o.gzindex<(65535&o.gzhead.extra.length)&&(o.pending!==o.pending_buf_size||(o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),s(t),d=o.pending,o.pending!==o.pending_buf_size));)l(o,255&o.gzhead.extra[o.gzindex]),o.gzindex++;o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),o.gzindex===o.gzhead.extra.length&&(o.gzindex=0,o.status=bt)}else o.status=bt;if(o.status===bt)if(o.gzhead.name){d=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),s(t),d=o.pending,o.pending===o.pending_buf_size)){f=1;break}f=o.gzindexd&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),0===f&&(o.gzindex=0,o.status=gt)}else o.status=gt;if(o.status===gt)if(o.gzhead.comment){d=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),s(t),d=o.pending,o.pending===o.pending_buf_size)){f=1;break}f=o.gzindexd&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),0===f&&(o.status=mt)}else o.status=mt;if(o.status===mt&&(o.gzhead.hcrc?(o.pending+2>o.pending_buf_size&&s(t),o.pending+2<=o.pending_buf_size&&(l(o,255&t.adler),l(o,t.adler>>8&255),t.adler=0,o.status=wt)):o.status=wt),0!==o.pending){if(s(t),0===t.avail_out)return o.last_flush=-1,H}else if(0===t.avail_in&&n(e)<=n(a)&&e!==F)return i(t,P);if(o.status===pt&&0!==t.avail_in)return i(t,P);if(0!==t.avail_in||0!==o.lookahead||e!==I&&o.status!==pt){var c=o.strategy===G?m(o,e):o.strategy===X?g(o,e):Z[o.level].func(o,e);if(c!==yt&&c!==xt||(o.status=pt),c===vt||c===yt)return 0===t.avail_out&&(o.last_flush=-1),H;if(c===kt&&(e===U?C._tr_align(o):e!==L&&(C._tr_stored_block(o,0,0,!1),e===T&&(r(o.head),0===o.lookahead&&(o.strstart=0,o.block_start=0,o.insert=0))),s(t),0===t.avail_out))return o.last_flush=-1,H}return e!==F?H:o.wrap<=0?j:(2===o.wrap?(l(o,255&t.adler),l(o,t.adler>>8&255),l(o,t.adler>>16&255),l(o,t.adler>>24&255),l(o,255&t.total_in),l(o,t.total_in>>8&255),l(o,t.total_in>>16&255),l(o,t.total_in>>24&255)):(h(o,t.adler>>>16),h(o,65535&t.adler)),s(t),o.wrap>0&&(o.wrap=-o.wrap),0!==o.pending?H:j)}function E(t){var e;return t&&t.state?(e=t.state.status,e!==ut&&e!==ct&&e!==bt&&e!==gt&&e!==mt&&e!==wt&&e!==pt?i(t,K):(t.state=null,e===wt?i(t,M):H)):K}function A(t,e){var a,i,n,s,o,l,h,d,f=e.length;if(!t||!t.state)return K;if(a=t.state,s=a.wrap,2===s||1===s&&a.status!==ut||a.lookahead)return K;for(1===s&&(t.adler=N(t.adler,e,f,0)),a.wrap=0,f>=a.w_size&&(0===s&&(r(a.head),a.strstart=0,a.block_start=0,a.insert=0),d=new R.Buf8(a.w_size),R.arraySet(d,e,f-a.w_size,a.w_size,0),e=d,f=a.w_size),o=t.avail_in,l=t.next_in,h=t.input,t.avail_in=f,t.next_in=0,t.input=e,_(a);a.lookahead>=ht;){i=a.strstart,n=a.lookahead-(ht-1);do a.ins_h=(a.ins_h<>>24,b>>>=y,g-=y,y=k>>>16&255,0===y)A[o++]=65535&k;else{if(!(16&y)){if(0===(64&y)){k=m[(65535&k)+(b&(1<>>=y,g-=y),g<15&&(b+=E[r++]<>>24,b>>>=y,g-=y,y=k>>>16&255,!(16&y)){if(0===(64&y)){k=w[(65535&k)+(b&(1<d){t.msg="invalid distance too far back",a.mode=i;break t}if(b>>>=y,g-=y,y=o-l,z>y){if(y=z-y,y>_&&a.sane){t.msg="invalid distance too far back",a.mode=i;break t}if(B=0,S=c,0===u){if(B+=f-y,y2;)A[o++]=S[B++],A[o++]=S[B++],A[o++]=S[B++],x-=3;x&&(A[o++]=S[B++],x>1&&(A[o++]=S[B++]))}else{B=o-z;do A[o++]=A[B++],A[o++]=A[B++],A[o++]=A[B++],x-=3;while(x>2);x&&(A[o++]=A[B++],x>1&&(A[o++]=A[B++]))}break}}break}}while(r>3,r-=x,g-=x<<3,b&=(1<>>24&255)+(t>>>8&65280)+((65280&t)<<8)+((255&t)<<24)}function n(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new w.Buf16(320),this.work=new w.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function r(t){var e;return t&&t.state?(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=1&e.wrap),e.mode=T,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new w.Buf32(bt),e.distcode=e.distdyn=new w.Buf32(gt),e.sane=1,e.back=-1,Z):N}function s(t){var e;return t&&t.state?(e=t.state,e.wsize=0,e.whave=0,e.wnext=0,r(t)):N}function o(t,e){var a,i;return t&&t.state?(i=t.state,e<0?(a=0,e=-e):(a=(e>>4)+1,e<48&&(e&=15)),e&&(e<8||e>15)?N:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=a,i.wbits=e,s(t))):N}function l(t,e){var a,i;return t?(i=new n,t.state=i,i.window=null,a=o(t,e),a!==Z&&(t.state=null),a):N}function h(t){return l(t,wt)}function d(t){if(pt){var e;for(g=new w.Buf32(512),m=new w.Buf32(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(y(z,t.lens,0,288,g,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;y(B,t.lens,0,32,m,0,t.work,{bits:5}),pt=!1}t.lencode=g,t.lenbits=9,t.distcode=m,t.distbits=5}function f(t,e,a,i){var n,r=t.state;return null===r.window&&(r.wsize=1<=r.wsize?(w.arraySet(r.window,e,a-r.wsize,r.wsize,0),r.wnext=0,r.whave=r.wsize):(n=r.wsize-r.wnext,n>i&&(n=i),w.arraySet(r.window,e,a-i,n,r.wnext),i-=n,i?(w.arraySet(r.window,e,a-i,i,0),r.wnext=i,r.whave=r.wsize):(r.wnext+=n,r.wnext===r.wsize&&(r.wnext=0),r.whave>>8&255,a.check=v(a.check,Et,2,0),_=0,u=0,a.mode=F;break}if(a.flags=0,a.head&&(a.head.done=!1),!(1&a.wrap)||(((255&_)<<8)+(_>>8))%31){t.msg="incorrect header check",a.mode=_t;break}if((15&_)!==U){t.msg="unknown compression method",a.mode=_t;break}if(_>>>=4,u-=4,yt=(15&_)+8,0===a.wbits)a.wbits=yt;else if(yt>a.wbits){t.msg="invalid window size",a.mode=_t;break}a.dmax=1<>8&1),512&a.flags&&(Et[0]=255&_,Et[1]=_>>>8&255,a.check=v(a.check,Et,2,0)),_=0,u=0,a.mode=L;case L:for(;u<32;){if(0===l)break t;l--,_+=n[s++]<>>8&255,Et[2]=_>>>16&255,Et[3]=_>>>24&255,a.check=v(a.check,Et,4,0)),_=0,u=0,a.mode=H;case H:for(;u<16;){if(0===l)break t;l--,_+=n[s++]<>8),512&a.flags&&(Et[0]=255&_,Et[1]=_>>>8&255,a.check=v(a.check,Et,2,0)),_=0,u=0,a.mode=j;case j:if(1024&a.flags){for(;u<16;){if(0===l)break t;l--,_+=n[s++]<>>8&255,a.check=v(a.check,Et,2,0)),_=0,u=0}else a.head&&(a.head.extra=null);a.mode=K;case K:if(1024&a.flags&&(g=a.length,g>l&&(g=l),g&&(a.head&&(yt=a.head.extra_len-a.length,a.head.extra||(a.head.extra=new Array(a.head.extra_len)),w.arraySet(a.head.extra,n,s,g,yt)),512&a.flags&&(a.check=v(a.check,n,g,s)),l-=g,s+=g,a.length-=g),a.length))break t;a.length=0,a.mode=M;case M:if(2048&a.flags){if(0===l)break t;g=0;do yt=n[s+g++],a.head&&yt&&a.length<65536&&(a.head.name+=String.fromCharCode(yt));while(yt&&g>9&1,a.head.done=!0),t.adler=a.check=0,a.mode=X;break;case q:for(;u<32;){if(0===l)break t;l--,_+=n[s++]<>>=7&u,u-=7&u,a.mode=ht;break}for(;u<3;){if(0===l)break t;l--,_+=n[s++]<>>=1,u-=1,3&_){case 0:a.mode=J;break;case 1:if(d(a),a.mode=at,e===A){_>>>=2,u-=2;break t}break;case 2:a.mode=$;break;case 3:t.msg="invalid block type",a.mode=_t}_>>>=2,u-=2;break;case J:for(_>>>=7&u,u-=7&u;u<32;){if(0===l)break t;l--,_+=n[s++]<>>16^65535)){t.msg="invalid stored block lengths",a.mode=_t;break}if(a.length=65535&_,_=0,u=0,a.mode=Q,e===A)break t;case Q:a.mode=V;case V:if(g=a.length){if(g>l&&(g=l),g>h&&(g=h),0===g)break t;w.arraySet(r,n,s,g,o),l-=g,s+=g,h-=g,o+=g,a.length-=g;break}a.mode=X;break;case $: +for(;u<14;){if(0===l)break t;l--,_+=n[s++]<>>=5,u-=5,a.ndist=(31&_)+1,_>>>=5,u-=5,a.ncode=(15&_)+4,_>>>=4,u-=4,a.nlen>286||a.ndist>30){t.msg="too many length or distance symbols",a.mode=_t;break}a.have=0,a.mode=tt;case tt:for(;a.have>>=3,u-=3}for(;a.have<19;)a.lens[At[a.have++]]=0;if(a.lencode=a.lendyn,a.lenbits=7,zt={bits:a.lenbits},xt=y(x,a.lens,0,19,a.lencode,0,a.work,zt),a.lenbits=zt.bits,xt){t.msg="invalid code lengths set",a.mode=_t;break}a.have=0,a.mode=et;case et:for(;a.have>>24,mt=St>>>16&255,wt=65535&St,!(gt<=u);){if(0===l)break t;l--,_+=n[s++]<>>=gt,u-=gt,a.lens[a.have++]=wt;else{if(16===wt){for(Bt=gt+2;u>>=gt,u-=gt,0===a.have){t.msg="invalid bit length repeat",a.mode=_t;break}yt=a.lens[a.have-1],g=3+(3&_),_>>>=2,u-=2}else if(17===wt){for(Bt=gt+3;u>>=gt,u-=gt,yt=0,g=3+(7&_),_>>>=3,u-=3}else{for(Bt=gt+7;u>>=gt,u-=gt,yt=0,g=11+(127&_),_>>>=7,u-=7}if(a.have+g>a.nlen+a.ndist){t.msg="invalid bit length repeat",a.mode=_t;break}for(;g--;)a.lens[a.have++]=yt}}if(a.mode===_t)break;if(0===a.lens[256]){t.msg="invalid code -- missing end-of-block",a.mode=_t;break}if(a.lenbits=9,zt={bits:a.lenbits},xt=y(z,a.lens,0,a.nlen,a.lencode,0,a.work,zt),a.lenbits=zt.bits,xt){t.msg="invalid literal/lengths set",a.mode=_t;break}if(a.distbits=6,a.distcode=a.distdyn,zt={bits:a.distbits},xt=y(B,a.lens,a.nlen,a.ndist,a.distcode,0,a.work,zt),a.distbits=zt.bits,xt){t.msg="invalid distances set",a.mode=_t;break}if(a.mode=at,e===A)break t;case at:a.mode=it;case it:if(l>=6&&h>=258){t.next_out=o,t.avail_out=h,t.next_in=s,t.avail_in=l,a.hold=_,a.bits=u,k(t,b),o=t.next_out,r=t.output,h=t.avail_out,s=t.next_in,n=t.input,l=t.avail_in,_=a.hold,u=a.bits,a.mode===X&&(a.back=-1);break}for(a.back=0;St=a.lencode[_&(1<>>24,mt=St>>>16&255,wt=65535&St,!(gt<=u);){if(0===l)break t;l--,_+=n[s++]<>pt)],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(pt+gt<=u);){if(0===l)break t;l--,_+=n[s++]<>>=pt,u-=pt,a.back+=pt}if(_>>>=gt,u-=gt,a.back+=gt,a.length=wt,0===mt){a.mode=lt;break}if(32&mt){a.back=-1,a.mode=X;break}if(64&mt){t.msg="invalid literal/length code",a.mode=_t;break}a.extra=15&mt,a.mode=nt;case nt:if(a.extra){for(Bt=a.extra;u>>=a.extra,u-=a.extra,a.back+=a.extra}a.was=a.length,a.mode=rt;case rt:for(;St=a.distcode[_&(1<>>24,mt=St>>>16&255,wt=65535&St,!(gt<=u);){if(0===l)break t;l--,_+=n[s++]<>pt)],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(pt+gt<=u);){if(0===l)break t;l--,_+=n[s++]<>>=pt,u-=pt,a.back+=pt}if(_>>>=gt,u-=gt,a.back+=gt,64&mt){t.msg="invalid distance code",a.mode=_t;break}a.offset=wt,a.extra=15&mt,a.mode=st;case st:if(a.extra){for(Bt=a.extra;u>>=a.extra,u-=a.extra,a.back+=a.extra}if(a.offset>a.dmax){t.msg="invalid distance too far back",a.mode=_t;break}a.mode=ot;case ot:if(0===h)break t;if(g=b-h,a.offset>g){if(g=a.offset-g,g>a.whave&&a.sane){t.msg="invalid distance too far back",a.mode=_t;break}g>a.wnext?(g-=a.wnext,m=a.wsize-g):m=a.wnext-g,g>a.length&&(g=a.length),bt=a.window}else bt=r,m=o-a.offset,g=a.length;g>h&&(g=h),h-=g,a.length-=g;do r[o++]=bt[m++];while(--g);0===a.length&&(a.mode=it);break;case lt:if(0===h)break t;r[o++]=a.length,h--,a.mode=it;break;case ht:if(a.wrap){for(;u<32;){if(0===l)break t;l--,_|=n[s++]<=1&&0===j[N];N--);if(O>N&&(O=N),0===N)return b[g++]=20971520,b[g++]=20971520,w.bits=1,0;for(C=1;C0&&(t===o||1!==N))return-1;for(K[1]=0,Z=1;Zr||t===h&&T>s)return 1;for(;;){B=Z-I,m[R]z?(S=M[P+m[R]],E=L[H+m[R]]):(S=96,E=0),p=1<>I)+v]=B<<24|S<<16|E|0;while(0!==v);for(p=1<>=1;if(0!==p?(F&=p-1,F+=p):F=0,R++,0===--j[Z]){if(Z===N)break;Z=e[a+m[R]]}if(Z>O&&(F&y)!==k){for(0===I&&(I=O),x+=C,D=Z-I,U=1<r||t===h&&T>s)return 1;k=F&y,b[k]=O<<24|D<<16|x-g|0}}return 0!==F&&(b[x+F]=Z-I<<24|64<<16|0),w.bits=O,0}},{"../utils/common":3}],13:[function(t,e,a){"use strict";e.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],14:[function(t,e,a){"use strict";function i(t){for(var e=t.length;--e>=0;)t[e]=0}function n(t,e,a,i,n){this.static_tree=t,this.extra_bits=e,this.extra_base=a,this.elems=i,this.max_length=n,this.has_stree=t&&t.length}function r(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function s(t){return t<256?lt[t]:lt[256+(t>>>7)]}function o(t,e){t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255}function l(t,e,a){t.bi_valid>W-a?(t.bi_buf|=e<>W-t.bi_valid,t.bi_valid+=a-W):(t.bi_buf|=e<>>=1,a<<=1;while(--e>0);return a>>>1}function f(t){16===t.bi_valid?(o(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)}function _(t,e){var a,i,n,r,s,o,l=e.dyn_tree,h=e.max_code,d=e.stat_desc.static_tree,f=e.stat_desc.has_stree,_=e.stat_desc.extra_bits,u=e.stat_desc.extra_base,c=e.stat_desc.max_length,b=0;for(r=0;r<=X;r++)t.bl_count[r]=0;for(l[2*t.heap[t.heap_max]+1]=0,a=t.heap_max+1;ac&&(r=c,b++),l[2*i+1]=r,i>h||(t.bl_count[r]++,s=0,i>=u&&(s=_[i-u]),o=l[2*i],t.opt_len+=o*(r+s),f&&(t.static_len+=o*(d[2*i+1]+s)));if(0!==b){do{for(r=c-1;0===t.bl_count[r];)r--;t.bl_count[r]--,t.bl_count[r+1]+=2,t.bl_count[c]--,b-=2}while(b>0);for(r=c;0!==r;r--)for(i=t.bl_count[r];0!==i;)n=t.heap[--a],n>h||(l[2*n+1]!==r&&(t.opt_len+=(r-l[2*n+1])*l[2*n],l[2*n+1]=r),i--)}}function u(t,e,a){var i,n,r=new Array(X+1),s=0;for(i=1;i<=X;i++)r[i]=s=s+a[i-1]<<1;for(n=0;n<=e;n++){var o=t[2*n+1];0!==o&&(t[2*n]=d(r[o]++,o))}}function c(){var t,e,a,i,r,s=new Array(X+1);for(a=0,i=0;i>=7;i8?o(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0}function m(t,e,a,i){g(t),i&&(o(t,a),o(t,~a)),N.arraySet(t.pending_buf,t.window,e,a,t.pending),t.pending+=a}function w(t,e,a,i){var n=2*e,r=2*a;return t[n]>1;a>=1;a--)p(t,r,a);n=l;do a=t.heap[1],t.heap[1]=t.heap[t.heap_len--],p(t,r,1),i=t.heap[1],t.heap[--t.heap_max]=a,t.heap[--t.heap_max]=i,r[2*n]=r[2*a]+r[2*i],t.depth[n]=(t.depth[a]>=t.depth[i]?t.depth[a]:t.depth[i])+1,r[2*a+1]=r[2*i+1]=n,t.heap[1]=n++,p(t,r,1);while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],_(t,e),u(r,h,t.bl_count)}function y(t,e,a){var i,n,r=-1,s=e[1],o=0,l=7,h=4;for(0===s&&(l=138,h=3),e[2*(a+1)+1]=65535,i=0;i<=a;i++)n=s,s=e[2*(i+1)+1],++o=3&&0===t.bl_tree[2*nt[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e}function B(t,e,a,i){var n;for(l(t,e-257,5),l(t,a-1,5),l(t,i-4,4),n=0;n>>=1)if(1&a&&0!==t.dyn_ltree[2*e])return D;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return I;for(e=32;e0?(t.strm.data_type===U&&(t.strm.data_type=S(t)),k(t,t.l_desc),k(t,t.d_desc),s=z(t),n=t.opt_len+3+7>>>3,r=t.static_len+3+7>>>3,r<=n&&(n=r)):n=r=a+5,a+4<=n&&e!==-1?A(t,e,a,i):t.strategy===O||r===n?(l(t,(F<<1)+(i?1:0),3),v(t,st,ot)):(l(t,(L<<1)+(i?1:0),3),B(t,t.l_desc.max_code+1,t.d_desc.max_code+1,s+1),v(t,t.dyn_ltree,t.dyn_dtree)),b(t),i&&g(t)}function C(t,e,a){return t.pending_buf[t.d_buf+2*t.last_lit]=e>>>8&255,t.pending_buf[t.d_buf+2*t.last_lit+1]=255&e,t.pending_buf[t.l_buf+t.last_lit]=255&a,t.last_lit++,0===e?t.dyn_ltree[2*a]++:(t.matches++,e--,t.dyn_ltree[2*(ht[a]+M+1)]++,t.dyn_dtree[2*s(e)]++),t.last_lit===t.lit_bufsize-1}var N=t("../utils/common"),O=4,D=0,I=1,U=2,T=0,F=1,L=2,H=3,j=258,K=29,M=256,P=M+1+K,Y=30,q=19,G=2*P+1,X=15,W=16,J=7,Q=256,V=16,$=17,tt=18,et=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],at=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],it=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],nt=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],rt=512,st=new Array(2*(P+2));i(st);var ot=new Array(2*Y);i(ot);var lt=new Array(rt);i(lt);var ht=new Array(j-H+1);i(ht);var dt=new Array(K);i(dt);var ft=new Array(Y);i(ft);var _t,ut,ct,bt=!1;a._tr_init=E,a._tr_stored_block=A,a._tr_flush_block=R,a._tr_tally=C,a._tr_align=Z},{"../utils/common":3}],15:[function(t,e,a){"use strict";function i(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}e.exports=i},{}],"/":[function(t,e,a){"use strict";var i=t("./lib/utils/common").assign,n=t("./lib/deflate"),r=t("./lib/inflate"),s=t("./lib/zlib/constants"),o={};i(o,n,r,s),e.exports=o},{"./lib/deflate":1,"./lib/inflate":2,"./lib/utils/common":3,"./lib/zlib/constants":6}]},{},[])("/")}); diff --git a/upng.photopea.com/style.css b/upng.photopea.com/style.css new file mode 100644 index 0000000..344da4d --- /dev/null +++ b/upng.photopea.com/style.css @@ -0,0 +1,127 @@ + + * { margin:0; padding:0; + font-family: "Open Sans", sans-serif; + } + + body { + color:#3a3a3a; + background-color:#f6f8fa; + user-select: none; + } + + h1 { + font-size: 2em; + padding-top: 0.3em; + padding-bottom: 0.5em; + } + + + header { + color: white; + height:170px; + text-align:center; + background: linear-gradient(#4fa0eb, #9656d9); + } + header a { + color: white; + font-weight:bold; + margin-right:14px; + } + header iframe { vertical-align:middle; } + + .foot { + /*background-image:url(grass.png);*/ + background-repeat: repeat-x; + background-position: center bottom; + background-size: 200px 50px; + padding: 0.5em 0 1.1em 0; + } + + footer { + font-size:1.5em; + height:50px; + width:660px; + padding: 0.3em 1em 0 1em; + background-color:#f6f8fa; + box-shadow: 0px 3px 9px rgba(0,0,0,0.55); + border-radius:1em; + margin: 0 auto; + } + + canvas { + float:left; + position:absolute; + background-image:url(grid.png); + } + + button { + font-size: 1em; + background-color: #9656d9; + color: white; + border: none; + padding: 0.2em 0.7em; + margin-left: 1em; + font-weight:bold; + cursor:pointer; + border-radius: 0.3em; + } + + #main { + margin:0 auto; + overflow-x:visible; + } + + #lcont { + width: 500px; + float:left; + } + #list { + overflow-y:scroll; + } + #list::-webkit-scrollbar { + width: 10px; + background: rgba(0,0,0,0); + } + #list::-webkit-scrollbar-thumb { + background: rgba(0,0,0, 0.2 ); + margin:2px; + } + + .item { + padding: 0.5em; + cursor:pointer; + } + + .active { + background-color: rgba(0,100,190,0.15); + } + + .item .fname { + display:inline-block; + width:8.5em; + } + .item span { + display:inline-block; + width:4.5em; + text-align:right; + } + + #bunny { + transition: transform .2s ease-out; + filter: drop-shadow(5px 7px 5px rgba(0,0,0,0.4)); + + position: absolute; width:94px; top:20px; margin-left:500px; cursor:pointer; + } + #bunny:hover { + transform: translate(0, -10px); + } + + + + + + + + + + \ No newline at end of file diff --git a/www.google-analytics.com/analytics.js b/www.google-analytics.com/analytics.js deleted file mode 100644 index 56937c0..0000000 --- a/www.google-analytics.com/analytics.js +++ /dev/null @@ -1,87 +0,0 @@ -(function(){/* - - Copyright The Closure Library Authors. - SPDX-License-Identifier: Apache-2.0 -*/ -var l=this||self,m=function(a,b){a=a.split(".");var c=l;a[0]in c||"undefined"==typeof c.execScript||c.execScript("var "+a[0]);for(var d;a.length&&(d=a.shift());)a.length||void 0===b?c=c[d]&&c[d]!==Object.prototype[d]?c[d]:c[d]={}:c[d]=b};var q=function(a,b){for(var c in b)b.hasOwnProperty(c)&&(a[c]=b[c])},r=function(a){for(var b in a)if(a.hasOwnProperty(b))return!0;return!1};var t=/^(?:(?:https?|mailto|ftp):|[^:/?#]*(?:[/?#]|$))/i;var u=window,v=document,w=function(a,b){v.addEventListener?v.addEventListener(a,b,!1):v.attachEvent&&v.attachEvent("on"+a,b)};var x={},y=function(){x.TAGGING=x.TAGGING||[];x.TAGGING[1]=!0};var z=/:[0-9]+$/,A=function(a,b,c){a=a.split("&");for(var d=0;dd?a.href:a.href.substr(0,d));a=d;break;case "protocol":a=f;break;case "host":a=a.hostname.replace(z,"").toLowerCase();c&&(d=/^www\d*\./.exec(a))&&d[0]&&(a=a.substr(d[0].length));break;case "port":a=String(Number(a.port)||("http"==f?80:"https"==f?443:""));break;case "path":a.pathname|| -a.hostname||y();a="/"==a.pathname.substr(0,1)?a.pathname:"/"+a.pathname;a=a.split("/");a:if(d=d||[],c=a[a.length-1],Array.prototype.indexOf)d=d.indexOf(c),d="number"==typeof d?d:-1;else{for(e=0;e>2;f=(f&3)<<4|g>>4;g=(g&15)<<2|h>>6;h&=63;e||(h=64,d||(g=64));b.push(G[k],G[f],G[g],G[h])}return b.join("")} -function K(a){function b(k){for(;d>4);64!=g&&(c+=String.fromCharCode(f<<4&240|g>>2),64!=h&&(c+=String.fromCharCode(g<<6&192|h)))}};var L;var N=function(){var a=aa,b=ba,c=M(),d=function(g){a(g.target||g.srcElement||{})},e=function(g){b(g.target||g.srcElement||{})};if(!c.init){w("mousedown",d);w("keyup",d);w("submit",e);var f=HTMLFormElement.prototype.submit;HTMLFormElement.prototype.submit=function(){b(this);f.call(this)};c.init=!0}},O=function(a,b,c,d,e){a={callback:a,domains:b,fragment:2===c,placement:c,forms:d,sameHost:e};M().decorators.push(a)},P=function(a,b,c){for(var d=M().decorators,e={},f=0;fc;c++){for(var d=c,e=0;8>e;e++)d=d&1?d>>>1^ -3988292384:d>>>1;b[c]=d}}L=b;b=4294967295;for(c=0;c>>8^L[(b^a.charCodeAt(c))&255];return((b^-1)>>>0).toString(36)},fa=function(a){return function(b){var c=E(u.location.href),d=c.search.replace("?","");var e=A(d,"_gl",!0);b.query=T(e||"")||{};e=D(c,"fragment");var f=e.match(Q("_gl"));b.fragment=T(f&&f[3]||"")||{};a&&ea(c,d,e)}};function U(a,b){if(a=Q(a).exec(b)){var c=a[2],d=a[4];b=a[1];d&&(b=b+c+d)}return b} -var ea=function(a,b,c){function d(f,g){f=U("_gl",f);f.length&&(f=g+f);return f}if(u.history&&u.history.replaceState){var e=Q("_gl");if(e.test(b)||e.test(c))a=D(a,"path"),b=d(b,"?"),c=d(c,"#"),u.history.replaceState({},void 0,""+a+b+c)}},T=function(a){var b=void 0===b?3:b;try{if(a){a:{for(var c=0;3>c;++c){var d=ca.exec(a);if(d){var e=d;break a}a=decodeURIComponent(a)}e=void 0}if(e&&"1"===e[1]){var f=e[2],g=e[3];a:{for(e=0;e>21:b}return b};/* - - Copyright The Closure Library Authors. - SPDX-License-Identifier: Apache-2.0 -*/ -var $c=function(a){this.C=a||[]};$c.prototype.set=function(a){this.C[a]=!0};$c.prototype.encode=function(){for(var a=[],b=0;b\x3c/script>')}else c=M.createElement("script"),c.type="text/javascript",c.async=!0,c.src=a,b&&(c.id=b),d&&c.setAttribute("nonce",d),a=M.getElementsByTagName("script")[0],a.parentNode.insertBefore(c,a)}},be=function(a,b){return E(M.location[b?"href":"search"],a)},E=function(a,b){return(a=a.match("(?:&|#|\\?)"+K(b).replace(/([.*+?^=!:${}()|\[\]\/\\])/g, -"\\$1")+"=([^&#]*)"))&&2==a.length?a[1]:""},xa=function(){var a=""+M.location.hostname;return 0==a.indexOf("www.")?a.substring(4):a},de=function(a,b){var c=a.indexOf(b);if(5==c||6==c)if(a=a.charAt(c+b.length),"/"==a||"?"==a||""==a||":"==a)return!0;return!1},ya=function(a,b){var c=M.referrer;if(/^(https?|android-app):\/\//i.test(c)){if(a)return c;a="//"+M.location.hostname;if(!de(c,a))return b&&(b=a.replace(/\./g,"-")+".cdn.ampproject.org",de(c,b))?void 0:c}},za=function(a,b){if(1==b.length&&null!= -b[0]&&"object"===typeof b[0])return b[0];for(var c={},d=Math.min(a.length+1,b.length),e=0;e=b.length)wc(a,b,c);else if(8192>=b.length)x(a,b,c)||wd(a,b,c)||wc(a,b,c);else throw ge("len",b.length),new Da(b.length);},pe=function(a,b, -c,d){d=d||ua;wd(a+"?"+b,"",d,c)},wc=function(a,b,c){var d=ta(a+"?"+b);d.onload=d.onerror=function(){d.onload=null;d.onerror=null;c()}},wd=function(a,b,c,d){var e=O.XMLHttpRequest;if(!e)return!1;var g=new e;if(!("withCredentials"in g))return!1;a=a.replace(/^http:/,"https:");g.open("POST",a,!0);g.withCredentials=!0;g.setRequestHeader("Content-Type","text/plain");g.onreadystatechange=function(){if(4==g.readyState){if(d&&"text/plain"===g.getResponseHeader("Content-Type"))try{Ea(d,g.responseText,c)}catch(ca){ge("xhr", -"rsp"),c()}else c();g=null}};g.send(b);return!0},Ea=function(a,b,c){if(1>b.length)ge("xhr","ver","0"),c();else if(3=100*R(a,Ka))throw"abort";}function Ma(a){if(G(P(a,Na)))throw"abort";}function Oa(){var a=M.location.protocol;if("http:"!=a&&"https:"!=a)throw"abort";} -function Pa(a){try{O.navigator.sendBeacon?J(42):O.XMLHttpRequest&&"withCredentials"in new O.XMLHttpRequest&&J(40)}catch(c){}a.set(ld,Td(a),!0);a.set(Ac,R(a,Ac)+1);var b=[];ue.map(function(c,d){d.F&&(c=a.get(c),void 0!=c&&c!=d.defaultValue&&("boolean"==typeof c&&(c*=1),b.push(d.F+"="+K(""+c))))});!1===a.get(xe)&&b.push("npa=1");b.push("z="+Bd());a.set(Ra,b.join("&"),!0)} -function Sa(a){var b=P(a,fa);!b&&a.get(Vd)&&(b="beacon");var c=P(a,gd),d=P(a,oe),e=c||(d||bd(!1)+"")+"/collect";switch(P(a,ad)){case "d":e=c||(d||bd(!1)+"")+"/j/collect";b=a.get(qe)||void 0;pe(e,P(a,Ra),b,a.Z(Ia));break;default:b?(c=P(a,Ra),d=(d=a.Z(Ia))||ua,"image"==b?wc(e,c,d):"xhr"==b&&wd(e,c,d)||"beacon"==b&&x(e,c,d)||ba(e,c,d)):ba(e,P(a,Ra),a.Z(Ia))}e=P(a,Na);e=h(e);b=e.hitcount;e.hitcount=b?b+1:1;e.first_hit||(e.first_hit=(new Date).getTime());e=P(a,Na);delete h(e).pending_experiments;a.set(Ia, -ua,!0)}function Hc(a){qc().expId&&a.set(Nc,qc().expId);qc().expVar&&a.set(Oc,qc().expVar);var b=P(a,Na);if(b=h(b).pending_experiments){var c=[];for(d in b)b.hasOwnProperty(d)&&b[d]&&c.push(encodeURIComponent(d)+"."+encodeURIComponent(b[d]));var d=c.join("!")}else d=void 0;d&&((b=a.get(m))&&(d=b+"!"+d),a.set(m,d,!0))}function cd(){if(O.navigator&&"preview"==O.navigator.loadPurpose)throw"abort";} -function yd(a){var b=O.gaDevIds||[];if(ka(b)){var c=a.get("&did");qa(c)&&0=c)throw"abort";a.set(Wa,--c)}a.set(Ua,++b)};var Ya=function(){this.data=new ee};Ya.prototype.get=function(a){var b=$a(a),c=this.data.get(a);b&&void 0==c&&(c=ea(b.defaultValue)?b.defaultValue():b.defaultValue);return b&&b.Z?b.Z(this,a,c):c};var P=function(a,b){a=a.get(b);return void 0==a?"":""+a},R=function(a,b){a=a.get(b);return void 0==a||""===a?0:Number(a)};Ya.prototype.Z=function(a){return(a=this.get(a))&&ea(a)?a:ua}; -Ya.prototype.set=function(a,b,c){if(a)if("object"==typeof a)for(var d in a)a.hasOwnProperty(d)&&ab(this,d,a[d],c);else ab(this,a,b,c)};var ab=function(a,b,c,d){if(void 0!=c)switch(b){case Na:wb.test(c)}var e=$a(b);e&&e.o?e.o(a,b,c,d):a.data.set(b,c,d)};var ue=new ee,ve=[],bb=function(a,b,c,d,e){this.name=a;this.F=b;this.Z=d;this.o=e;this.defaultValue=c},$a=function(a){var b=ue.get(a);if(!b)for(var c=0;c=b?!1:!0},gc=function(a){var b={};if(Ec(b)||Fc(b)){var c=b[Eb];void 0==c||Infinity==c||isNaN(c)||(0c)a[b]=void 0},Fd=function(a){return function(b){if("pageview"==b.get(Va)&&!a.I){a.I=!0;var c=aa(b),d=0a.length)J(12);else{for(var d=[],e=0;e=a&&d.push({hash:ca[0],R:e[g],O:ca})}if(0!=d.length)return 1==d.length?d[0]:Zc(b,d)||Zc(c,d)||Zc(null,d)||d[0]}function Zc(a,b){if(null==a)var c=a=1;else c=La(a),a=La(D(a,".")?a.substring(1):"."+a);for(var d=0;darguments.length)){if("string"===typeof arguments[0]){var b=arguments[0];var c=[].slice.call(arguments,1)}else b=arguments[0]&&arguments[0][Va],c=arguments;b&&(c=za(me[b]||[],c),c[Va]=b,this.model.set(c,void 0,!0),this.filters.D(this.model),this.model.data.m={})}};pc.prototype.ma=function(a,b){var c=this;u(a,c,b)||(v(a,function(){u(a,c,b)}),y(String(c.get(V)),a,void 0,b,!0))}; -var td=function(a,b){var c=P(a,U);a.data.set(la,"_ga"==c?"_gid":c+"_gid");if("cookie"==P(a,ac)){hc=!1;c=Ca(P(a,U));c=Xd(a,c);if(!c){c=P(a,W);var d=P(a,$b)||xa();c=Xc("__utma",d,c);void 0!=c?(J(10),c=c.O[1]+"."+c.O[2]):c=void 0}c&&(hc=!0);if(d=c&&!a.get(Hd))if(d=c.split("."),2!=d.length)d=!1;else if(d=Number(d[1])){var e=R(a,Zb);d=d+e<(new Date).getTime()/1E3}else d=!1;d&&(c=void 0);c&&(a.data.set(xd,c),a.data.set(Q,c),(c=uc(a))&&a.data.set(I,c));if(a.get(je)&&(c=a.get(ce),d=a.get(ie),!c||d&&"aw.ds"!= -d)){c={};if(M){d=[];e=M.cookie.split(";");for(var g=/^\s*_gac_(UA-\d+-\d+)=\s*(.+?)\s*$/,ca=0;ca=ca[0]||0>=ca[1]?"":ca.join("x");a.set(rb,c);a.set(tb,fc());a.set(ob,M.characterSet||M.charset);a.set(sb,b&&"function"===typeof b.javaEnabled&&b.javaEnabled()||!1);a.set(nb,(b&&(b.language||b.browserLanguage)||"").toLowerCase());a.data.set(ce,be("gclid",!0));a.data.set(ie,be("gclsrc",!0));a.data.set(fe,Math.round((new Date).getTime()/1E3));if(d&&a.get(cc)&&(b=M.location.hash)){b=b.split(/[?&#]+/);d=[];for(c=0;ca.split("/")[0].indexOf(":")&&(a=ca+e[2].substring(0,e[2].lastIndexOf("/"))+"/"+a);c.href=a;d=b(c);return{protocol:(c.protocol||"").toLowerCase(),host:d[0],port:d[1],path:d[2],query:c.search||"",url:a||""}};var Z={ga:function(){Z.f=[]}};Z.ga();Z.D=function(a){var b=Z.J.apply(Z,arguments);b=Z.f.concat(b);for(Z.f=[];0c;c++){var d=b[c].src;if(d&&0==d.indexOf(bd(!0)+ -"/analytics")){b=!0;break a}}b=!1}b&&(Ba=!0)}(O.gaplugins=O.gaplugins||{}).Linker=Dc;b=Dc.prototype;C("linker",Dc);X("decorate",b,b.ca,20);X("autoLink",b,b.S,25);X("passthrough",b,b.$,25);C("displayfeatures",fd);C("adfeatures",fd);a=a&&a.q;ka(a)?Z.D.apply(N,a):J(50)}};var Oe=N.N,Pe=O[gb];Pe&&Pe.r?Oe():z(Oe);z(function(){Z.D(["provide","render",ua])});})(window); diff --git a/www.photopea.com/api/accounts b/www.photopea.com/api/accounts new file mode 100644 index 0000000..23f587e --- /dev/null +++ b/www.photopea.com/api/accounts @@ -0,0 +1,153 @@ + + + + + + + + + Photopea API + + + + + +
+ + +
+ +
+ +
+ + + +

Accounts

+ +

Photopea allows you to log-in through a third-party service (Google, Facebook ...). + Once you do it, Photopea can identify you and store your settings online (theme, language, colors, tool options). + Then, settings can be synchronized across all devices, where you use Photopea.

+ +

Photopea offers two types of accounts: Free and Premium. The Free account is available to anybody + for free at Photopea.com. The Premium account lets you use Photopea without advertisement and may have other benefits.

+ +

You can see prices and manage your account through the Account Window (click the Account button at the top). + Here you can order the Premium account or see, how many days of Premium you have left. Logging in is necessary for having Premium accounts. + The basic option is a Premium account for a single user.

+ + + +

Teams

+ +

You can order a Premium account for the whole team of users. It has three main benefits:

+ +
    +
  • Just a single person pays for the whole team (more comfortable)
  • +
  • You can change team members at any time
  • +
  • You can save money (less expensive per user)
  • +
+ +

Creating teams is very simple. There are no emails, registrations, synchronizations etc. + All can be done inside the Account window. First, everybody has to log in (and see their email address).

+ + +

+ Now, scroll down to Team Settings. A team leader (the one who pays for the account) ticks Start a team and fills in email addresses of all members of a team. + Other team members tick Join a team and fill in the email address of a team leader. Press "Save Team Settings" to save it.

+ + + +

To be a member of a team, you have to "choose a leader" and the leader has to "choose you" as one of members. + The leader can add or remove members at any time, and the member can change the leader at any time.

+ + + +

Distributors

+ +

Photopea API allows you to have the editor at your own website (using the iframe), and configure it as you wish, for free. + But sometimes, you may want to hide advertisement, social media buttons, branding ... let's call it a whitelabel mode.

+ +

We have a list of domains, for which Photopea runs in a whitelabel mode. The Distributor account allows you to add your domain into that list.

+ +

Order a distributor account (through the Account Window) for the expected + number of views per month. +

+ +

After you pay for the Distributor account, enter the name of your domain into the Account window and click "Save Domain Settings". + You can change your domain at any time.

+ + + + +

Self-Hosted Version

+ +

Photopea consists of a HTML file, a CSS file and several JS files (around 2 MB in total). + Running it is very simple, there is no need for any server-side technologies (no PHP, no Node.js, no databases).

+ +

We provide a self-hosted package with a complete editor, which you can use on your own server. + It has several benefits over Distributor accounts:

+ +
    +
  • you can change CSS styles
  • +
  • you can run it in a local network without internet access
  • +
  • you do not depend on Photopea.com (when you are afraid, that it may go down)
  • +
  • you can be sure, that no part of the editor changes while you run it
  • +
+ +

A self-Hosted version costs between $500 and $2000 per month. You should pay for a whole year (12 months) in advance, + and you will get resources, that will work for exactly one year. After each year, you can decide, if you want to pay for a next year + (and get new resources), or terminate it. You can get two updates during a year for free (at any time), each next update costs $300.

+ +

Write us an email to support@photopea.com + and tell us an estimated number of your users (and the usage frequency), so we can discuss the terms of our agreement.

+
+
+
+ +
+ + +
+ + diff --git a/www.photopea.com/api/demo b/www.photopea.com/api/demo new file mode 100644 index 0000000..4b09718 --- /dev/null +++ b/www.photopea.com/api/demo @@ -0,0 +1,135 @@ + + + + + + + + + Photopea API + + + + + +
+ + +
+ +
+ +
+ + + + + + + +

Editing local images with Photopea

+

Click "Edit" to open an image in Photopea. Click "File" - "Save (to Server)" in Photopea to save it back.

+
+
+
+ +
+ + +
+ + diff --git a/www.photopea.com/api/environment b/www.photopea.com/api/environment new file mode 100644 index 0000000..1e92a65 --- /dev/null +++ b/www.photopea.com/api/environment @@ -0,0 +1,154 @@ + + + + + + + + + Photopea API + + + + + +
+ + +
+ +
+ +
+

Environment

+ +

The look of the editor can be customized by the environment property of the JSON.

+ +
{
+	...
+	"environment" : {          
+		"theme"     : 2,         "lang"     : "es",    
+		"vmode"     : 0,         "intro"    : true,
+		"eparams"   : { "guides" :true, "grid" : true, "gsize": 8,   
+		                                "paths": true, "pgrid": true },
+		"customIO"  : { "open": "app.echoToOE(\"Open\");" },
+		"localsave" : false,     "autosave" : 120,    
+		"showtools" : [0,5,9],   "menus"    : [ [1,1,0,1], 1, 0, 1, [0] ],
+		"panels"    : [0, 2],
+		
+		"phrases"   : [ [1,0], "Open Design", [1,2], "Save Design" ],
+		
+		"topt"  : {  "t0": ...,  "t1": ...,  ... },
+		"tmnu"  : {  "t0": ...,  "t1": ...,  ... },
+		"icons" : {  "tools/crop": "https://www.me.com/img/crop.png",  ... },
+		"plugins":[ ... ]
+	}
+}
+

Each parameter is optional. They have the following meaning:

+
    + +
  • theme - theme (0, 1, 2, ...)
  • +
  • lang - language
  • +
  • vmode - view mode. 0: regular, 1: panels are collapsed, 2: hide all panels
  • +
  • intro - when no documents are open, show introduction panel (with buttons etc.)
  • +
  • eparams - extras: enable or disable guides, grid, paths, pixel grid ...
  • + +
  • customIO - redefine the behavior of File - Open, Save etc. and run a custom script instead. + Possible properties: "new", "open", "openFromURL", "takePic", "showTemplates", + "save", "saveAsPSD", "publishOnline", "exportLayers".
  • +
  • localsave - enable / disable "Save as PSD", "Save for Web" and "Publish Online"
  • +
  • autosave - with a value X, Photopea will execute "File - Save" each X seconds
  • +
  • showtools - show only following tools (see tool IDs below)
  • +
  • menus - specify the structure of File, Edit, Image ... menus with 0/1 flags. + Each element of an array is either 0: hide the item, 1: show the item with a standard content, + or an array of flags for sub-items (works recursively). If your array is shorter than required, zeros will be added to the end. + See the current menu structure of Photopea to find the right values. + E.g. [1,1] as the first element means, that the "File" menu will be shown with "New" and "Open" items only.
  • + +
  • panels - what panels should be shown in a sidebar. Use following IDs:
    + 0: HISTORY, 1: SWATCHES, 2: LAYERS, 3: INFO, 4: HISTOGRAM, 5: PROPERTIES, 6: CSS, 7: BRUSH, 8: LAYERCOMPS, 9: CHARACTER, 10: PARAGRAPH, + 11: ACTIONS, 12: NAVIGATOR, 13: COLOR, 14: TPRESET, 15: GUIDEGUY, 16: CHANNELS, 17: PATHS, 18: GALLERY.
  • +
  • phrases - allows you to replace any phrase inside Photopea with your own. + The aray has the form [ ID1, W1, ID2, W2, ... ], where IDx is the ID of some phrase and Wx is a new phrase, that should be used instead.
    + Some useful IDs: [1,2]: Save (File menu), [2,0]: Step Forward, [2,1]: Step Backward. + To discover IDs of other phrases, get familiar with OpenWord table structure and find + your phrase in a current phrase database, or just write us an email to support@photopea.com.
  • +
  • topt - tool options. Lets you change the settings of each tool. + Keys are "tXY", where XY is the tool ID. Each tool has its own format (see below).
  • +
  • tmnu - tool menu. Lets you specify the structure of the top menu for each tool. + Keys are "tXY", where XY is the tool ID. Each tool has its own format (see below).
  • +
  • icons - custom icons. Each icon has an icon ID (key) and the image URL (value). + You can find icon IDs here. + E.g. the Crop Tool has an ID "tools/crop". The background of the introduction panel as an ID "intro".
  • +
  • plugins - described here
  • +
+ +

Tool options and menus

+ +

Move Tool

+

Options: [1,0,null]. Three values mean Auto-Select, Transformation controls and Distances. + 1 means enabled, 0: disabled, null: not specified.

+

Menu: [1,1,1,1,1,1]. Six flags to show / hide six items: Auto-Select, Transformation controls, Distances, + Quick Save (Get PNG...), Vertical Align, Horizontal Align.

+ +

Magic Wand

+

Options: [0,0,[16,true,true]] - Combining operation, Feather, Select options: Tolerance, Anti-alias, Contiguous.

+ +

Tool IDs

+ +
    +
  • 0: Move Tool
  • 1: Rectangle Select
  • 2: Ellipse Select
  • 5: Lasso Select
  • 6: Polygonal Lasso Select
  • 7: Magnetic Lasso Select
  • 8: Quick Selection
  • 9: Magic Wand
  • 10: Crop Tool
  • 14: Eyedropper
  • 16: Ruler
  • 18: Spot Healing Brush Tool
  • 19: Healing Brush Tool
  • 20: Patch Tool
  • 23: Brush Tool
  • 24: Pencil Tool
  • 27: Clone Tool
  • 31: Eraser Tool
  • 34: Gradient Tool
  • 35: Paint Bucket Tool
  • 36: Blur Tool
  • 37: Sharpen Tool
  • 38: Smudge Tool
  • 39: Dodge Tool
  • 40: Burn Tool
  • 41: Sponge Tool
  • 47: Type Tool
  • 42: Pen
  • 43: Free Pen
  • 51: Path Select
  • 52: Direct Select
  • 54: Rectangle
  • 55: Ellipse
  • 57: Line
  • 56: Parametric Shape
  • 58: Custom Shape
  • 59: Hand Tool
  • 61: Zoom Tool
  • + +
+
+
+ +
+ + +
+ + diff --git a/www.photopea.com/api/img2/Waqart-Pricing%20Table.xd b/www.photopea.com/api/img2/Waqart-Pricing%20Table.xd new file mode 100644 index 0000000..6b4cc41 Binary files /dev/null and b/www.photopea.com/api/img2/Waqart-Pricing%20Table.xd differ diff --git a/www.photopea.com/api/img2/blind.pdf b/www.photopea.com/api/img2/blind.pdf new file mode 100644 index 0000000..68dac9b Binary files /dev/null and b/www.photopea.com/api/img2/blind.pdf differ diff --git a/www.photopea.com/api/img2/invoice.pdf b/www.photopea.com/api/img2/invoice.pdf new file mode 100644 index 0000000..0ca7d00 Binary files /dev/null and b/www.photopea.com/api/img2/invoice.pdf differ diff --git a/www.photopea.com/api/index.html b/www.photopea.com/api/index.html new file mode 100644 index 0000000..93c4385 --- /dev/null +++ b/www.photopea.com/api/index.html @@ -0,0 +1,201 @@ + + + + + + + + + Photopea API + + + + + +
+ + +
+ +
+ +
+

Passing data to Photopea

+ + + +

Photopea can be configured using a parameter after a hash sign.

+ +
https://www.photopea.com#STRING_VALUE
+ +

Such URL can be opened directly, or used as a src of an iframe. + String value is encoded into the URL using classic encoding of query parameters (space as %20 etc.). + It corresponds to encodeURI() in Javascript or urlencode() in PHP. + This string contains a JSON object.

+ + +

JSON configuration object

+

JSON object must have the following structure:

+ +
{
+	"files" : [
+		"https://www.mysite.com/images/design.psd",
+		"https://www.mysite.com/images/button.png",
+		"data:image/png;base64,iVBORw0KGgoAAAAN..."
+	],
+	"resources" : [
+		"https://www.xyz.com/brushes/Nature.ABR",
+		"https://www.xyz.com/grads/Gradients.GRD",
+		"https://www.xyz.com/fonts/NewFont.otf"
+	],
+	"server" : {
+		"version" : 1,
+		"url"     : "https://www.myserver.com/saveImage.php",
+		"formats" : [ "psd:true", "png", "jpg:0.5" ]
+	},
+	"environment" : {...},
+	"script" : "app.activeDocument.rotateCanvas(90);"
+}
+

+ All parameters are optional. + Data URIs can be used - file can be passed inside a request (test). +

+

Parameters

+
    +
  • files - array of files, that are loaded when Photopea starts
  • +
  • resources - array of resources (gradients, brushes, fonts ...)
  • +
  • + server - parameters for saving documents back to a server +
      +
    • version - the version of the API
    • +
    • url - URL address of a server
    • +
    • formats - formats, in which a document should be sent to a server. + The string format corresponds to saveToOE.
    • +
    +
  • +
  • + environment - parameters of the environment, see Environment +
  • +
  • + script - the script, that should be executed after loading each file (can be long) +
  • +
+ +

Saving to server

+ +

When server parameter is specified in a request to Photopea.com, + every document opened in Photopea will have the File - Save option. + After a user clicks it, document data are sent to your server in a HTTP request using POST method.

+ +

Photopea will send binary data (a sequence of bytes) to your server, which has two parts:

+
    +
  • 2000 Bytes - JSON data
  • +
  • the rest - one or more image files
  • +
+ +

The JSON will have a following structure:

+
{
+	"source" : "https://www.mysite.com/images/button.png",
+	"versions" : [
+		{"format":"psd", "start":      0, "size": 700000 },
+		{"format":"jpg", "start": 700000, "size": 100000 },
+		...
+	]
+}
+
    +
  • source - if the file was loaded from your server, the value is the URL of this document. + Otherwise (opening a local file, creating an empty file), it contains "local,X,NAME", + where X is the integer ID of the document, and NAME is the name of the document
  • +
  • + versions different versions of your document +
      +
    • format - format of the file, exported from Photopea
    • +
    • start, size - file offset and the size (relative, from the end of JSON)
    • +
    +
  • +
+ +

Here is a short PHP example, which accepts files from Photopea.

+ +
$fi = fopen("php://input", "rb");  $p = JSON_decode(fread($fi, 2000));
+// getting file name from "source"
+$fname = substr ($p->source, strrpos($p->source,"/")+1);  
+$fo = fopen("img/".$fname,"wb");  while($buf=fread($fi,50000)) fwrite($fo,$buf);
+fclose($fi);  fclose($fo);
+ + +

Your Response

+

After the server receives a file, it can send back a JSON response with optional String parameters:

+
    +
  • message - when specified, will be displayed to the user for a moment
  • +
  • script - when specified, will be executed (e.g. you can call app.echoToOE("saved");)
  • +
  • newSource - when specified, will be used as a new value of "source" for saving to a server in the future + (can be useful, when a file was created within Photopea: "source" was "local,...")
  • +
+ +

Cross-Origin Resource Sharing

+ +

For security reasons, webapps can access only files from the same domain. + In order to let Photopea load your file, the response of your server must contain the following header:

+ +

Access-Control-Allow-Origin: *
+ +

Find out more at CORS specification or at enable-cors.org.

+ +

Prices

+ +

Usage of Photopea API is completely free. Keep in mind, that PP is in early stages of development and there may be critical bugs. + We do not take any responsibility for documents edited or generated by Photopea.

+ +

If you want to hide advertisement and "colorful buttons", and use a whitelabel mode, look at + Distributor account.

+
+
+
+ +
+ + +
+ + diff --git a/www.photopea.com/api/live b/www.photopea.com/api/live new file mode 100644 index 0000000..4f33d84 --- /dev/null +++ b/www.photopea.com/api/live @@ -0,0 +1,138 @@ + + + + + + + + + Photopea API + + + + + +
+ + +
+ +
+ +
+

Live Messaging

+ +

You can insert Photopea into a webpage (using a frame). Let's call such webpage the Outer Environment (OE). + OE can communicate with Photopea through Web Messaging. +

+ +
window.addEventListener("message", function(e) { alert(e.data); });
+var wnd = document.getElementById("pp").contentWindow;
+wnd.postMessage(msg, "*");
+ + +

OE can send two kinds of data to Photopea:

+ +
    +
  • String - contains a script, which will be executed by Photopea
  • +
  • ArrayBuffer - a binary file: psd, svg, jpg, ... fonts, brushes, ...
  • +
+ +

When Photopea is initialized and ready to accept commands, it sends the message "done". + After your message is processed, Photopea also sends back the message "done".

+ + Some demos of live messsaging in Photopea + +

Retrieving data from Photopea

+ +

Photopea can send the current image to OE using the following command (inside a script):

+ +
app.activeDocument.saveToOE("gif");
+ +

After you run the script above, PP will send a message with an ArrayBuffer of a GIF image, + followed by a message with a String "done" (processing the script has finished).

+ +

It can also send any String to OE using the following command (inside a script):

+ +
app.echoToOE("Hello");
+ +

The full description at /learn/scripts.

+ +

Examples of usage

+ +

This API can replace the main API. Instad of letting Photopea communicate with your server directly, + you can load files inside your progrm and transfer them to and from Photopea in a clients device. +

+ +

You can use Photopea as a "module", hide its UI and use only the messaging. + You can create a batch-processor of images (resizing images, adding watermarks, converting between formats). + You can make scripts, that would export each layer of the document as a PNG. + You can make scripts, that would replace the text in each text layer by data from your user (to create a generator of business cards, etc.).

+ +

Example: Integrating with a custom storage

+ +

We can redefine the default behaviour of File - Open and File - Save.

+ +
    +
  • We can send Photopea any image in a message as ArrayBuffer
  • +
  • We can call app.activeDocument.saveToOE("psd"); to send the current file to OE.
  • +
  • We can call app.echoToOE("Hello"); to send any string to OE.
  • +
  • We can read and write app.activeDocument.source String to identify files.
  • +
  • We can set custom scripts to run after pressing Open or Save: + customIO : open, save
  • +
+

Now, we can do following:

+
    +
  • Set custom scripts to app.echoToOE("Open" / "Save"); to be notified, when the user presses the buttons.
  • +
  • When the user wants to Open a file, show him your own file input (you can even let the user draw something, or take a picture of him).
  • +
  • Once you have the image (ArrayBuffer), send it to Photopea and set the source: app.activeDocument.source="myID2353".
  • +
  • When the user wants to Save a file, read the file (app.activeDocument.saveToOE("psd");) and its source + app.echoToOE(app.activeDocument.source);, and save the new version into your storage.
  • +
+
+
+
+ +
+ + +
+ + diff --git a/www.photopea.com/api/playground b/www.photopea.com/api/playground new file mode 100644 index 0000000..a470aa9 --- /dev/null +++ b/www.photopea.com/api/playground @@ -0,0 +1,127 @@ + + + + + + + + + Photopea API + + + + + +
+ + +
+ +
+ +
+ + + +

Playground

+

Enter the JSON configuration file, which will be encoded into the URL:

+ +
+ + URL: + + + + +

Run a script

+ +
+ Messages from Photopea +

+			
+						
+
+
+ +
+ + +
+ + diff --git a/www.photopea.com/api/plugins b/www.photopea.com/api/plugins new file mode 100644 index 0000000..e732d67 --- /dev/null +++ b/www.photopea.com/api/plugins @@ -0,0 +1,116 @@ + + + + + + + + + Photopea API + + + + + +
+ + +
+ +
+ +
+ + +

Plugins

+

Create Plugins for Photopea and provide them to your users through a configuration JSON.

+
{ "environment": {
+	"plugins" : [ 
+		{
+			"name"  : "Wikipedia",
+			"url"   : "https://en.wikipedia.org",
+			"width" : 400,
+			"height": 300,
+			"icon"  : "https://en.wikipedia.org/static/favicon/wikipedia.ico"
+		}
+	]
+} }
+
    +
  • name - plugin name
  • +
  • url - plugin URL
  • +
  • width - panel width
  • +
  • height - panel height
  • +
  • icon - plugin icon (optional)
  • +
+

For each plugin, the button will be added to the right side, below the current buttons.

+ +

After the user clicks the plugin button, the panel is opened with a website url, having the size of width and height.

+ +

Users can drag-and-drop images from your website to Photopea (as Photopea supports dropping images from any website, opened by a browser).

+ +

Your website can connect with Photopea using Live Messaging (your website acts as the OE). + It allows your plugin to execute scripts (e.g. to change foreground color, to move a layer, etc.).

+ +

The plugin can give files to Photopea (images: psd, jpg, svg ... or resources: brushes, patterns, fonts ...), + or request the current file in a specific format. + All this can be controlled e.g. by buttons in your plugin (website).

+ +
window.parent.postMessage("...script...", "*");
+window.parent.postMessage(ArrayBuffer, "*");
+ +

Examples of usage

+ +

Photo Store. Let users browse your database of images. They can search the database by a keyword. + You can add a button "Open" next to each image, which would open that image in Photopea.

+ +

Font Gallery. Let users browse your database of fonts. The font will be loaded after clicking the button. + You can integrate a payment gateway into the plugin, too (as it is your website, you have full control over it).

+ +

You can make your plugin "commercial" - let users pay for them monthly. The sign-in and the payment interface could still be + in the same "iframe" of your plugin, inside Photopea (or you could open a new window and then, come back to Photopea).

+
+
+ +
+ + +
+ + diff --git a/www.photopea.com/code/DBS.js b/www.photopea.com/code/DBS.js index 0ca93e9..8c04941 100644 --- a/www.photopea.com/code/DBS.js +++ b/www.photopea.com/code/DBS.js @@ -10,6 +10,8 @@ 0, "/9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAgFBgcGBQgHBgcJCAgJDBMMDAsLDBgREg4THBgdHRsYGxofIywlHyEqIRobJjQnKi4vMTIxHiU2OjYwOiwwMTD/2wBDAQgJCQwKDBcMDBcwIBsgMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDD/wAARCABpAJYDASIAAhEBAxEB/8QAGwAAAQUBAQAAAAAAAAAAAAAAAQACAwQFBgf/xAA6EAABAwMBBQcCAgoCAwAAAAABAAIDBBEhEgUTMUFRBiIyYXGBkRShM1IHIyRCQ1NyscHwFeFEgpL/xAAbAQACAwEBAQAAAAAAAAAAAAAAAQIDBQQGB//EACgRAAIBAwMDBAMBAQAAAAAAAAABAgMEERIxUQUUIRMiQWEVUnFCof/aAAwDAQACEQMRAD8AtPaWPI426K/TVOuLdPbgjCquLtOoNN7cbKLfktscW5r0b9yMJYiaH00cV2mNpEgsbhUDs+LeGF0Y08Qp4KkuI1HVbzU/1ETZhrIv1SUpRG4QluiKl2NRh7mujDtXC/JR1XZ9rY37kWIy2yvy1kYDNBF+ZClh2gx4LHOCSrVE85B0KTWMHIzGWnAE0QcOGVUlLX5Y23kurqaeJ5IBDuax62ljbfSACOi76VxF7ozK9nLHtfgxzcKzs2gl2hUCOPAHiPRTikc9ty3HVWdmvNDJqbwPFXzqvQ9G5yUrfFRKpsUdrbMl2bOI5CHNd4SOapAEHC6DapjrGh2olwWX9LjBPwnSq6o+7cVxQ0T9mxPsvZr60FznENC0JaHc0b+4H2HIZVPZtRLRS8bsPKyv1FfvQ1kQ7zza3quWrKpr+jvt40vTz8mHUQTQmPeNA3jQ9ovyKv09BJugZGMsRfITtsHXXubG3uxgMb5W/wC7p8FVKANYJthWSqTcE0VU6VONSSbMusgfHKbtsOSr2HRa1T+0TC4x5qzBs9hHeDB6qyNbEVqKJ2jlN6NjBA8kl0RooG4JjSR3CF2UuQwVz44SCRZ2MqN9K2a797byUn0rbWFkm02gHmFnpJbGzqb3RDHROIdu5iLc1N9PLp0Pc0uTGva3U1rHeaDHve4SMiJ08CSpYZXqJY6V7fGLoOjayT9Z3QefBSsqZiMxj5TJnRzOBf4h0KXkeUPhEOoaHaifNKobGHaMB54YUe7jtxePRT79gaMHHMhHlBlMqmSQOEb4z/UAnijc8XvbyUxrG6hZtweaJqLkaRcc88FLVJEdMHuMbRMZmRwUb4YHD9W+xU5kbfvNPymOZATcAgoUn8g4x2SKk1G6Igl1wcqbZlOHVjCeDO8fZTma8RiflvI81HRMMENVJxdpDG3PU5RKo3FpijRSkmiIxyuc6XdAvcS4+anY95aA+mDB1RjdKBgNCOuQ3bI0EciouWSaikSGna7Nh7BQ6n77QIC8dUoqh7G2aNVjgFJ9RMJQ6OO3ul5H7SYwgOtJFoxfKSEu0JZQA8EEdAklmRPEDGFS3XqypRXC5xxWIBPyefhHTUfnPwr8wMZXmDabVBoIBwUxlSWYaSQsjRUHg93wlu6nnIfhGqAd59mx9UQ7U2wPNB9QXkEtb8LIEdR/Md8JwhqLfivRqgJ3i5NgVdha2Oica0kYwsXcTn+K9IU05/jSIzAO+XJtGrJFiB6pv1LgeRHosgUk5/jSfKX0U38+T5RmIu+jybP1hvlosk6rJGG2WY3ZE7oXSGrDbfumTJ9lCKCU/wDkSfKWY8EnfJbm9tPtZBSMYwUkDzpGC03vZU6TtY6a0baSEanWFm2BPqud2vRyzysjbfuN4nJd5q9sLYzpGuMk0YFi0Cxs7HLr9l4SvUrerJRk8ZePJ9z6faWbtYTqwWrCz4+cHS1u0XSRRAxMjfkmwsVT+plPF1gmdodlTNdSvBLS6IBzWXsCP85WX/xdQB4pPuvXWLSt4Z8s+SdcuY0+oVYRWEn4x/DZNS4i10BOQDk3WMNl1B5yfJSOzZmmznPHuuzK4MfvUbW/v4gPlJYooJW/vuST8cB36O4Z2PgaQZKpxHkLJ8vY+B4G4qHNceTshdjG2UaQ+m1Hq5iB1X70DdWQO7ZYKuam+T0n4u1xp0I4o9i5m/xQR1BUjexbiLuqAD0su0hMmnS6ma8DmAVJumvNtw8H7KSuqnJX+ItV/n/pwzuxz220yB/2skOyE3+ld1JStbYkPaP6Smtp7vs17rHmU+5qci/E2v6nFx9jpH/mv7InsZUB1mnHW67n6d4IAfY+fFPMM4d33s9Uu5qcg+k2n6nCs7FzONtTuubKV3YiRrdQcHjmu6jjeG5e0+YCsPZG2IuMhHMm6Xc1ORrpVqtoHAw9ii9pJdG31uq+1+zLNk7Mqa2Z0ZbCy+B7Bd6+njmbcSg+6ydv7JfW7OqoGytfvIy0MObnl90pXFRp4Z0UunWqqR1Q8ZR4fNWbOfWHe7y1we6AR/dbey9tbPpQ2Jr9TOIa4abenFcRtGJ0FdNE9pa5ji0gi1lGxxC807hrdH2OnY05QSy8Hs/Z+XZu3aoUx3je6XMDXA2OLrSq+yskcn6mYOYTgOvcBcf+iOlmqJZ6tztEULdIcep5D2uvR3b6+Kh1j5rbtK03STPnHX7Kgr2UUsvxkxj2XkcQ1srXdcWSl7JzMNmujctR7angyYk9bphFY3LpC4dALldaqz5MF2VHgyT2XquUbT6WSW5G7ejOtp87pKXqz5I9nR/Uu7x976j8p28eSDqKjJAxxSv7X5LMyzVwSCSQcHlLeSfnI9029gfJDnY8UZDA8yyHBeSPVNBfxuhfyR4oyAiXHJz6pa3W4u+Ur4wUuXBGRgLiTa5SLr4vdEfcoemUsiB5DCFgT/2nAc/smgAoyM4f9InYqm2nST7ToGmOuiYXuDRiUAZx1suD7F9jqrb203xVWqmpYBeV4GT0a3lde5yNDmOa7w2IKqbPpKWlEjKVgjvYuAP3yqnQpyzJ7mvQ6xd0KXowfjn5X8BszZNFsqijpKKLdxRjAvknqTzKsmMfmcPdP+cIWzxKtTwsIypNzblJ5bGlh5O+QEi08LM+E/lxQsbYKlrlyQ0oHD9xnyUkslJP1JchoQ69jkWvk2sk02GTbOUAbkcEg2/dN7EceCgSDqsLW4I6sXAJCFgAS4k2HPggNJODc+nNIBxIuNQHl6pF2fdIjIv90CDosTjra10wCHFwdYOFsKvXT1ccV6GnZUSdHyaAPexU5Fm4v7IkAAnhp6mwQBzEu0u1oBtsWmOf5gOP/oKqO1HaCA/tXZ6U5taMOP3APkuwtq02ymSubEG7x4bqIaLm1yeQTz9AciO3NWHhsuwalrjiwc6/xpT6Xty6aYMfseqY1xFiM46m4C608uY5o25EEnkjK4H4MSr2y+Wlk+ljc0ab6yRc+QCytjbUqYJG6oZNLbghxABHycj/ACuskijeDG+KMtdxa4Ahygj2Xs+LUYqCnYTx0xNF/spqcUsYK9LzuGi2jBWgiEm44tc21sqcPa7wuHO/NCFrWC0bGsHRrcf7lHS0AANFr8AFU/osCPzXuD54SJyAEDe/28kC0WJDbmwF0AJz2tJ1vDB1dgJJ2GjryykgQXZGkmw5XRa4AWdm3QIjgE0+NiYgg9zyOESc+Igf3TH8FK3gfRAAJLSDcWNsJWv5EZRd4Gpo8BSATiQNP3RGLtPePmly9k4eI+qYDOJN8u9OCHhALhg8bJ/M+qB5eiQxXIuQbpslnYBIIN8Y/wBCcfA71QPj/wDVAhveFrc0hnAB7vO6P7vuncygZE5lgLarDOSSjwdcWsf7pVH4R9FHD+E30QP4yPbYXdax1XuiXY9E5vAps34h/oP+ECGjS4AtGLelkkJfEkkSP//Z" ], + "wasm/zstd": [29645,"zX0LjCVXmd6pOvW6t+6j+jXTPd2eOVU2MF4eHmCYGT9Yphp6ZtptMyyMNmi1UcxiB6g7PLrddJxkmG4vhh0jopjEiYyybBwFxU4WCzbrbBCKkLNSNmyEhLUQlI1I5JX8kpdEJvEmbMIw+b7/nLq3bnfPjLFZbTDVVffUOf/5z3/+5zn/qVEfuPujnlLK+9v9O7xNdYe/iT96c3PT27wj2LT3cNM9ePzDl1KvrqFcBXVHvLm57Ql1ks3Rc29z7H8oIZzzushDFQIL3/eD1I/COE60DoJAab8XdVrdttJB6H3C87xQe8qPEmBSPvBwkMYnw+ijd33042t/01fRRz9w9uzHP6hU8NfX7rpLhbO/8r4z7/prH7pr/cTaBz561zs//rH1uz62/r6P/K271FxfXt151wc//tFPrN11993KtP/hk17+eOAFm0YtBcdL1U/94/V/RpUJr5X5D5UH7jbqI6V3siqCMlg2ygQba138Lf318vMHqlzr48YrD6x0PaMP+qrQS3wqkwF+lN4GHow63fVRx6tyvgnQpqNSlQJGPkCRgHoAoHyCkoqFt4ImPkDk2vhs4hsAVmkqoAsv81iT/QWlt3YEXW0dwC/jnQQ4b6MIjBqwol/es1omJ9cwTD80QeYvEW6ZVGmZLXebQFYxNF2VcYUWBdAdlN46ARuLByt4Arsy/qBQo7feET9A73hS5SX8L16tgHCNz4l540u9THe8tMR4SGD7tgA2SqAXGPRqV6DZ4aC+Z1Tm24q5N0S1PL/K0WK6ypf24//SGD33Be+gKhRbe+XmCdIcD3ZA3knM8Uv7OYSKFRQr6NT4AUkODIOUY/CkMYe5bvEAzsbDjOIviJajhU4/7vmb5I4KZFLDWcYQElayPOOmtCDKJ6QPVXYq/ADM1A15vDhI6+dC4Y2lC2unFZiUuLtBOtopR7aNQaEdHWRo4N6AgwNaYBqSwlvF7HshyOkJvuQhbx24WUoJ4VWG/v30gi9jMw64o7WFslHPqToxn3sUkoN+4KbwjUq5CUQflmEsac6vVpY5cyWC5bG6JbjxXCvM0qiVN2qFTqXDE9LEs5Qmb+UYghK2As5ZQMl1gId4EKJFoQnR3wTEIWd21b5xuIAqMEmMM0KIq8yuCKgnnE9usIzVqSwbgXBHfDSqOQwz2UNpINplkOk0XfO8TaAuszS4nS9Em4iMahnMTQrjLL1B3tAf3lB/eHxDFsLNNSQyumKH1Vhz20Clv+uBmayKM97dpV61vRovD8jqKg8BJ7TlAKdNuB2PkAiEDh20SUVpRVUeoC5uoq+oWrQJLAebiHMWsbzGpEYWdcah2+FRAAGwRvpBz9NAWh8XFQVlZdEzmjIOPmJ7RxfgA9QueatFWCbrJlzDPeMdKKOBpRN08DJ0PpqGRE8TL/YZVEIFaimqYumABA0q24fPPoak/HbodTavVWU2KNLrwFoAEHMS00V1VCcmBUtwfFm8rzxrhOmlrEyyVkGRClbmyaLl/ZvL80L70vEq1H8fApoleVaegVFRqojLPkfUXiHPcg5CERCAh8Ij+i00jwd5B68wB90yyJWJy2Ajj0pjwvWiDXWWJxwYrtDoPCA9wQYhCeHnsQnyEFhg2FG5hf/ds2aV+d0fRr+zjlydAdq2MFCwGH6tFPF8EQA/csy6UVV5gFYEhWpD5vs6kotTwhr7VwvoYh/Sa/rkoo1SnzWRiTeKCBMKq1IVQr/hK1cKEDoVjRuvSq+gE3DAb/3JqgiX55dIlMC0inAwRCNFLyExIyZs3QV/oTfQYQAzwTs0POyjgWz3li1ZIxg+AO/hsX1qfgCO7qYYRwZKQl+SKVH3Zo+UJSNgVKA1FS6gmWCAhkGpbp030AXJrRhJUvqnuhAUk1BpFMF63rac3YXeMv3TXVUPK6yHFbphBW5YGAUGFnBg9bB6S5iEoB6bkDfMYb7Ooj/vJBqV7yF0sgoZrzS3WkVHCSPTkHKYCPQCeUjBk1l1nUo/l/mT8MzAz08EgyK+TpVf38wTYRB6O28AE7YoV3kHZa1y8zaMr1P+FF4GvA3gDRenPJsnKLukBpjRS+LBWDkunVox0Wm0ilCrlXc6OuToQCrKITVw0aH6DjYoahhKZeR3f/UmYTAwAhlUhA/kuh2SGaMXqFggFGMQ+JPwT0dmqgJSHUhaUF7YXCHz5gn9jzPoPD7od4qsjEAhPidgcG+9mEAPjy16Jnvss8Uc5ixbpxRWRfuxRf+z584tpucWz3168Wn/l2FZ3wsooQxRlU+DWWAPisnBY6Ibi2lCm3nMzJ1bTM6dQR8d8Ea+hxxa5XvNBLhwsiomRBS6Vjf2IHKByTBB62X2yXxWxgNmmRCRBdQ8NX1y31QeCCGnT0AgyXg3eDIvlzSdjJ64kpUJb1JCenAwmraoXKDTzCzmLWMHt87nYBrMAnk5IR4Jx8AerXYXpopMerMHoTAZq/VLvUEcME0JxD9vixEJzBQdK2XxZEeTZqaCWJTRIJ9cVPkcylu4qFhaQDsQYaEgCJTUvU7wOqFECK+APWSYpc9hclhmatWOzHStXaPeT8XmjBDuWoq6AbVMu0IzDB8sExq8rszcUbAScKzyGcsyLQr2mzwFQiXCowB4G/sMMQxoUtsipOtn+5hbvPfX77vwwMNPbHnn8jm2r/KWxSV13ClqNTHTljBd21HiOsJkQcypJfKWkKRLG9bjWDG8BAOT+RXUC4g5OIwDo84Qu1NukvW6uuOnIiPgapGITJ5N3woaBjBheqX4AOLqBSYgp1AuOJk9KnDI3YfKO+6GoFDASOTWuukP+D4k74SoRt60zHCDR1c5Lh+FMdxr9mQp2ACSJVL4cFC5N1HWwdNDzd9W+H3XNusC+P/1VtaWxMcNiVoDQNYjLkSzCcaWuvZ0G6w2gFqnESu/ITTB4C5CICNaVpiFnVBd+1KMelD+RCqHu3YVCPxRC2jVtNRUHQQK5iXmVCe+lD0U1KKTmnYTDqSrovegBpgnnQrc3Yard8EhJPFDO7s7ya5+vmTv70r2/ssne7gb2fuXIXu4k+z9nxPZ+zvI7u9C9v6uZO9vJ7vjcCopeJmlKg/DJ4tMQp9bBC2hpnijmMYURoYGkGYtgoRDnGGBWtafo9lNKFP4Iw3ge3zSBA395aO/VAxosATMLh1Y4SKDhvMWfAgBHmMoOhJwb2CdtXMnDClE19JZPHGkIQDSuQvAbOcRQzWULzNYWF2rI2151xHVQSZ7IoAnYJL0px4CEzjo5BU4sxLLZFWpbFSTVFIG/6BPxw4WuCMBIqPPjE7+aeExhiCImgLBPqHnDpfFRZwD0syz1aCD1spWxYDQ76c2akIAW8NmS0YgQgO3OuOX/qDne8pP7UufLr5ekyquyKP3ryspICZ1nzIm28VZ2wX7B0S9Piivt1ik72Lsh1ZUmZo+OTg74CvOCEK/raQaBpbgo8HGqowr69Jf84UQQfqPGWmBez0XJ5dGIjz6G1KUWTL5cP8saHpoGtG8bwftW3JxpYPVO8QE5hNswAUcszxv0cd/eiAtIdLiherlwpsv9IAoCyAgjdHZTgILFURJT8na10EWcyDkGcTxvgyb/C4Dh0SjUBd+5drLqBFRYOD+YEMI/N6rAbIQHCHDGpC/k5QhSCkg99lAmSZHcwgTnpAhC9P0R4k/temft4FXG/za5nR27C2hbsJ4n4aGi9C0TZewLSG50GHLq7I2/DpRoQiu2iSsXcWBIoN7C1mAxHMe8fPerXtWDZkL7tlP4tU1GyweH+SxaAQ0ThhWUvQ6jF1zT1ucPVQygSxjueCdgxR5p5wwbg6Jpaa/gthpIGFZIDFncJuNtRBa0KnyZHkxEEcoxigSsekj7VK0nBi36OBweYtKYBSdN8Ja+BUBHZxT8xaqqaGysxqqXYYpfAfVJ9Sgtg4ODjQGr5X5PIMwLVT5hBsMo9CwyiclwsincEPf07ImAo+Ly6NCOmjBXEk0n53oavjHSkJ/q7hYKRotxfrgeCP6suiBlr1EeYEfBIEO4JSUXFugLwWjQe86gPspnpYMEJFLKOsLuegAR5eBSa2eFxfHjgrlPuklWn8XqFPjUIPLQgWcQV2mL9NTsEtPnu0Jjr3rieKRgO9+qlcfy/dqWd/SnLw3A+Le+xbv3bpv64GtJ9T5o67/3KtXZgJ6q8FlxzJTj2V7D+GSrJgG23soZm0fycDMHt1lPFk9HnHdRz2m8B/h6e+BK7rLmGbFz03pFEAETFxV7He20W++l8sVCNxEqkzv3UuykrZ3iI17yoZPs8MnY8eX1esPgdnTMLZ2AYfPNJfg1Bi3HuLn2p2WClA4bRsb/+/Em+NKzxNQqsl11rCSn8sXA1jF8ocKbkGI0DKA7pmRxae07EDBiCr6QYthS0JFlNSKKCmfVFREe5wvl1ANtUwqmwjloyGnES1x7+P+5ZBxI10KLtC/GNiIWlaoysNchxAL3pHlNoo7wj5uFUAjdAYlV1VKOukQV8smunyJIMhTVDTlscp0a7vM3QhC6VIxjWmOrtgi0DCh1mvqj1CWoThOWthItEibylFx1Um0SF+CPhZHNykPzto2jWLXpKjAH2Wk1hrAy3JomnHsh1i/CEsXbkc7WjdCu4iQo+YAtF2ClHitjS5AGYncxqDHpuMWKlqnRTMCbjSklKwDSjfhRrPjUSduOhohacLYT8NvjPdZZZhh8Okgn2Xcq603A8XNUNEz9GL7NiQt6MIU/qCIB0W4Dv1KFyiftPB8IfEcmdDnUggdib0Q71n6W7J/dCs8AK5JBFabWn7DNMXl4bOVxSaibPaoVnyTWZDUQkNjZybXuA6YrOVTrrkFRmoE1EWemTriKbfMMKbWYELMBGOB0Ewsz8NNwPsrd+GPgPqXAaooWWKQUwBAQ1+2ZxBUdU00AJI906/yfcOO5kHhiKuZZopcSr8b5LXjhjdH8nqDYnqw7kbnCVEXZN8DQS/IOV2NMKW+p0c5uSYoZ2uwavO2jaWImbZ4OxvPHTzDZcXULJieXQMnS1o2AXUQRpk5y8B2DcGOck8ekGme0HTEg/Ql39NUPAZcwAI7m1yOoDeDYNCHArld5CGwC5KeLI+Lh4Ius41BeWBV1rzZCFEg4rHTa1ZqQyqdiKvJkGiKjt4Q2kSgTWWd+sgtzr+cyozo6vpKlnnd5sCw5+AV9Gy1tINEEK8CAublrLQszYl5+5jxz/SJ+RyhRAirASL76VMz3gSp/pQSsiMqi0STt5etSodjqwKoa9xUkfLmF7BfZVQVyTIXS2/wfPHrvqUorBGdqhSTFbkFk7A8xPlLWR6Plc+yPGZ5q1mOwhbFNxk0SmXKYzvlGad8AlPelfmmfxVJTAZ74W/AeSe2FXGtii4YNAWvtIQtoCQhpLILBJYHMU7xz22Qig0RiAg+/M01B9xGojISkAcNRapto0P8c3j3RofrRodtow6HyBez/LOwe6OFutGCbdQHmtKIq/p+sHujoG4U2EYkQZtGZ7eBqfGBqXpgii0nMbBOVew+OjU+OlWPTtWj61dFf9chqvEhqnqI0nJK3PBietdxqvFxSstCNlGl7QziTIUr4Ov3QDBwe//pWlJug0pgkHkbV+C57LEhseF7TOjCwVM07CmrHrNtj59GRGfHVyhpe1jaKmmLFse4USFtD5UKAQw8rDV4JaA5MWFDU/R4OzjEYsFBWsDP3giSGUKiTVSCRWLbZrZtHSGzWSNCDkcRch7RPgCDHlT8JL06Tl+uYU2nqBanzQzVMny8taWhDu6uoFbKZRYKONq3KFUtSlJbH5dN7/ayFeKsO39VAXG83ZSTIhKGIid16rbRVRmwI1MqKiuk0zcQM+bwoF6rF/F2w6Y9DrQ95Go+6qYmjVZeJRTZQm6dlgWobUAKu/ylag2MRiXXLraPlfsFwp+K+TPsj6CksdAPho/7V8vzqMstDExNS6ZGm9ayqFE7M1eWU2V1QVNcyXiH0SxqyLi6qoBrNzOaM5NyZpTMzCE7MXpZJmZ3ZFrjMFsjmK0appsYvfwqoYiJSjkxO4AU+koTMxqqm5jD4xOjd5uYw9yesPvqpaw1LYsdsxPjX1ENysS0xrQhJ2ZBzF0xbKuuqj99NzE+J6Y7mphZOzG+nZjdkdHjMPUIpq5huonxl18lFEn16J6WxddtQAr/ShMzGqqbmIXxifF3m5iFVGaE5t2EdjqCK9oWdjpuYLhMylV9v26nrmiQZPHUTUXAqciGU2H9PzsPu2PhjwP0a4DyqF2EZX3A5VcJRfYtrXFBJRGaneC2zUjInfrRrAzH7CYkgGTZFMDdpyPl2nQw9EATcUPFCdUjZ3Rh9Gj457r61+HRi2P8c0v967bRi/fwzxl4slGnlapt/9HC0cF9StHDjdLnMq877uHGu3i4ifVwW9bDbVsPNx16uNG4h0uPNR73cEWK22Pl4uG2WZ40y7kmQg83HTRKRw5si15ciw5sSxY6GtGOKJ+eRM05g2d9Ns8Y+9jAB45wIkwjS19cDc+qIkZktjpyjlwYcWpnGHHb9hDocF350M7Kh00wXnmhrjy7szIkmm7ixHiLoG6hdrYgg45VvgrizXDs5eC+o/5CEdToB8P6QY3+BOsH48gHNfI76ssqzrA+vU1c8WWc1bjhrMbi78XWWY2ds+rl8eWc1aDhrA4d3WNDR/dQ6YUl91NNsrpqV/G5HG391Wi7v5oM/VWuoBBYYv3VxPmrHrfNbKxr3dbIua2bQ5IMfdcGPskQHzWGT+JSpewKUGI6K0wscB4qI722lQoyOUO/tnOIGs5hqxFi/0yc/TNw07bgvu66PdZ1q4bWGkJrjbpu7R7dt0+/CgjWPxzzyILbRygdrgEe2gmQotsal5UrViY16vqyZx0MqSE9Y9ZON3tWNTA1BKZGPashJG8EiSBeBQTTGRHDeUFJgxhXlu1kXLCvUrmpCGzqzZAY0jP4+HSzZ1UD2zEU9qyGkLwRJIJ4dRDogEDtNxAJajBqJxjqWjWu265YmSSo68ckQTzWbfcVdCsZhjUYgngVEGqvIxh5Cw0H5OfmeLAvKqqRoxGnvyaJu9wwufCcV9gcbdnvLb/2Hz2781s+bp+4QVx+3T3rLHObv55s/koafha69ICHnvMkMUEDaPpg4Aeb/nm+KQ9miewyeWVo9Hyhlhni9pnBHxxnSkFzWxEOnfPmJDUym5U+DsoWxqMvfPMjJ+XIAZdZZ+G9GZ9pK4HR1PtrubbOR+jSCvwyWe1ypcKsFhH7+gRqSGJIWD7i8oziVWYXhjACZbt67LNFsqgvnDfJOdk09SSnHZ7Uhmwo+xtinJhKrVe566k9XwdpuYGiqPzEavnk9x7/fe9kl1lrrJQsc0+yzJiZoaEHbAYy5rsugCjWT94Rf5rb+G9TAQpsegHGwv0FXatTm1hR3eDKnL6XsoOuzGbhg8lWc98/Pzw4E9bYqnRx00RLXb1Pmr1ZyVo9H9+q1OKWf67u5G1qCPt6pVJmwDBb3lhiL+CWCJ6Soa0s8szui+aLREZpksWtrcT+PTP/i37GMxp3eN4mM1g1F+PBDf584dMuq1EuiCJtmYIghy5QjlFFG4Unyf1SxhKzWoYbPO5yd0Ucl1arEHDT9O2+Z9NlDw0K/zrln188L+dqxGtV2d6u2rcoZzgWSnvSwL9eJ5ziQ9xRrDNMJHL42TNMEskw+a7nJZtMw2ozsiSoxG7ew1Pu8WjJYEVch7akS8vhpJRF4g5TqdNl6QzyruBsBkWfe29AfoELCiatXMYNt50Hdpupa5M8O/R1B0zwjamc8LpQ3PFIqtMSmuEpi/ZJ6hWpAUyySI45MDNahjnggmPARHAq6mwhNb28nZp2+pnQnkBBsGZX3ePbApv5H/EUlT1rMrL8Yzn5gcizLEz5CGxsOn6jBZ88bkDKk88sUnnSNynJMpEsTLR7ws5+IQuMSqxf+bCUDSSSZ13w6lElMptILMKb5BpFNq9HV7I36J0UZMr+rbQBdh3BNm22hEr3EFdBQlQDuLySau63LidO8UACt7d9yclyaRQ+c2F0s5UetVKyZzj8MTsGcgjL1EgwjdUeD1mRsyGe6EXOWChHi8ZHZHzZRgBuQxx5TKo5qnSMYjsGFXJQDhHdHJTmoIJmq2DboHRzULpJJwdrNCiu+IYYqTutctoqd8cY7mhNg5XSb/IgFKR7y4NYXMcdbCijc+Vm3mucEvR7gac043pR+lA3vQ4T8RGPivKH8VjpEg91s5eQhjaBLq1K66HISkEhFo85Qiau7HmiYdLd6ChRu5K0EoQcPepRz7TsynePQtZektxDPrPIpEvw/+ZOrXV5aClYF9YsVT1Rt/N0EbOY7CkiQbdv+uVPoO/65Y8V0xWirCV7i9QW/YP+PVBSgdUcff4+x4gFSqKb7a+H5ec95qhveTT8vfQPQj+FfrQ07Vnx6EuWe1hnuWcmgu3z8racSvHylHu060WHee5dCdt902vmucd1nnuf4dh6ZU+R1XmV4n9Inntm95jrPPeWiZnT3KIZa9V57m6u3dkUq3lTmw2pN5hQsSG7alU+IcncXZvMHbu8C7iSJ7pM2Wobzx4O2S21uy3pEX1JLqwMglib4DVRmS5PWCaS292WjARBxHlsLnHnBVUJaTilMRpCQ3LsE1zoaBnBzWu8jqGgu1oyZlJLPJc93yf6q5Zepk07L2fvJNmlSQZHGOu/ivpHszy12fMxM9InjyqXL4NpA6Vd6nxS/o86G+UFNTDJu+0yacs1sGpOuphsJs9PEkKVS/BrHVWXltMZ5lC0TMfqAp4asaYttNkRxiNDJC6dPXCKu6qP48H5cmctJVd0eHprgHElNundFQVA2HjrpiN573KSroly+s8lFVaczeefcZL5FT7QFXmg9kN/LK/0Uf2ivHr8Ga+qRfjRJ2kZy89vbT1lxV9UV/308CGbV1l+5UmvKp/ff71vm6HkIVNJ/mb5OF+9uN+Np064Fa8GfvUPnvXmj/j/5hkv/YNf9t+yGdEleQoSFMAnOV4++nwrU9YlPW4PgkRE7IfPekzSQrvn3MNX+MBXD9YlX3/GPXz5+ZZ99e26zpfdg96qS37wbP0gze/d2noCLR+vX/+mlL70rOeSiKMSnrvzSKNsD35z/Pl1eHgUlfL9zF2o8kN8gYggP4CHF9Ein8XDE6Bu/mY8gHj5W3AHpfK3silInTPDA7N30B6sYbD+NEpfg/sPcL8e9+/h/gu4fxv31zOTCPc34P4S7m+Ewdtjtbs+LiSOLIlp/Hhy0IQ82kjHYOiGn7Cqv0ULtNwln6oAWuxvMCF8DURHQKShUWAPO3zdcQeSOsNXPHzoc8PSSkmUHTB72C/4rOicFN7vuPkwe44I++Ht157x0KeUfM2+koQvMA3YjwlPYdly2Bed+WU59s0BdeZNJ5uFsqJ21/T0oEr4+s0UWrzbWzRRhHHrdH0xdwD28HOenDHjMya16CzZ588/J7Fdh0EmmG9SOgb6vccWf+MffPWrD/3ef/1Hv7V5fvEPv/PH//JHz3zjhdd9ZnHv/Yvf+f53v/lH//63/3jx/OKf/8//8qMv/q8v/vaec8WRxfyCOfKZxlsUXSNFw1osMix6ZBXxUodin2hR0KKtQ5dHWqREKoWbW0piRkofucO5+9ff+v0/OX9SMFYBQ1Zo9JMSYU+u2izKuCtrSjI+4dBNG3dGNBOflwc3xlgUgciWFAAcj104ylBHxDyNfYclpmf2VJgqcNReS9KnnpGkdBG1p5+1cKSc87YkZZgBwFr88xeefPK5P/wnT/8J5OZhJ3D6IXkYEuuofkAKvv+nv/7fX7h4/589xSi5rruFh/02TN6Xmr1w+fPXkQEsA7aod/fkHTkgq5e72i7/3yC+suRc6Q05izYJl6ElHHGDHNVcpSJm1Kci7t/nk+Q+PSjeZiYFCk3V9FjoveM/k/S076kp2AgY+XilO2Gi6/W3QMybUQJk7HGzaTkIwB670mPkqVjIDgUMEv8aSEwzU0JI22aaoWrob7oeEFcJrtoeHmAOfFj2NspL8arYm8A+tksNm6SXOpIRNLkB1yTIU/f+kmIFiVddQX+1aMOtgS1PSae4bK/j1Z6NNbQLaZxTOXiccj13coXDgKG9N1q2zPGgiI1zzXT56S3PZoAOnTNY/Wn6T3IYRtiiU6QMChMuBYRLXe7KXvJWl7qJzeTsGcS/GCOFGzacOrDPY68IZsr/Rg3K7SlRpT14K+kNni8bJamZdTu42sTLAqreWu8z7ewY/9yyblK7zRbW22zcMgzkHZ99ye6/hWe0/bpdOGxU75G6+m6P9JbhHqlsq/e4ZSgH8QQFKtwVt62+GyL+OEy/hqndfl+9rU4wrxKK7Iv1JL5FJbtreBlw9XIsAll/uGc4Ai37jfg12jP0bT5PaezJDtktvIUu2VlWlLbvGu0Wou+0Pge7FyofbGU68g0T7qZ3/U6XETplxYSQdEhkq9PhyUxbGTq+60ndyaVumpa/B9vV6UsTM8nU0En8boEjzPR24XFibj8hAW2AoVFOpm+Qc7v4KdHxJM//R9QeMjIewF/D4P7u1pYshfm2qk4LOZ8o0VqWiC3DsH9MZcXo5vlnXUTW6oSA+cpQGcNh1C85lOl+y1blc2lvFnw4jSgyi3O/iYlvMZFcESs5iy5w/nHjeev50fOF4XNocW9CQx8WYGjNAY9q7pMT5weyCSu3FIjb17oBUGKCXU9yPQdmXzaFideM9oy/tAZfvw/V0oYmKGJ69sv8xEsZrJv2x8Kyn5azZzHEz7doB89CJV1o2TUNEotfiAjLLSnBw332IT4r9KixmbwKNtMWm92R1zuqz+RyZlW0FXrhazZMBY6fNgpmrGyNCqbksysuGoUuq4k5aykZcUmTHngXEY94S/vgIae11rvw/O7T1Jy+0bSCD7kGxr5iSIwN6e7fXC78+QHdicipbfE0WuSYaa4tdmmYJiTPWM4zTzC4Odnl9oP99kCFwG12vZz9JDDalAP5uBPbtNSnIJLdG5RXbv3U41kaKPvKxrL+Keh1wPbQOmHS8xa044QcdE4l+insweaiB3Rplc0h7lVaKxltlNeWLUmbCwflU53yxW651Sf+P3mG500mMGvXuCg/MW81B5kkL6J1oExkuUSS7/h5isIBeWCqfGC6fGCmBmJpsQ3SW8zhoZAeLlvbIIEnwBDlw3vLrbnyqX1XhCSfMukOnK+aUEVNlOq2NR7J/Aa1VpTa0wJtOf1EH73hUsS1V/Wg9c4mypCrZ9avWLyXq8X4eVC2G8q2fGGJ6SCcPu2CavhGG2I27FdJYvuhmz0r1owO49q6F36BAOisl9Pwp7m8iVGBQ6nNvy0q5CA5t8pzeNaJmWDCO4rg2OfzfIDfnr+2du17lq9Bm6F70DlhTdhrmClxXR3gug9K2VMuCAXXcesd8T/BT2WY3uCIfw8ZA0DmfHfaI2ROhkscnygDXqfm8wXzevsaCKhsn/mF4a8Ev64f/gqyfVx2wO8tz379yprq0l/BZCy82+b4cF8o4D6RXq8Q1BY3LWYXHoHXxi9IZHxzB//8av36qLxuy2sxqe/nnzP16xvh7T8Ckh2l13+T/KD83SitQjlxM1P6p2WpaKacWzY3c36zMy7faIbHaGlwQ37wwzczK/MFuZI2PqndFHug0cxw6ThZJzvYce0zCc8+Bw6CSaTZqFGCRr7lhLoSehhV8tftwUaTNGCi6vX+nfkRu9dxJ25HjuoP25XXGTl6Yol4p3z8hE8fHu9BDtbcAt2SINKohj0d2KBh087fuBNG0vqq5IqKkTA//1T4S4IxF1lOCoEI/4h/NnXw7zzif9hhlj4CI9OvK90CL7Y/GlrCobUxtFDOM/RNVpXTp4Pjo1FmzZbZtpZdtOThq3RIaal6DzPgM5mee2zJsaKP6jeRf2Y3irbAg0ON5u3RZskq1OKlS3pVEgS4RXS0ri97Dui4Wdv07dQ1Wv2qeaN5A7gjW5lnQNlvYHXj9q53wiOaO0CeEemsvzKUVPZTaJrruiQWWM1+xSe2xRmVjF0VsxkNECd+eqxjvx7QkXW9prRNXFHaGuK0m7SJ3PCY1+7SFjel7ZqhtIkBL7Ja2rKd0pbV0qattGUibXo0+bqWtYyypteNnBWtqa0b0jbWTARJo9kUqo9JW7ZLpSbMhrRNbZe2jEhfU0vb1FDapnaVtthcs03a/B3S5m+TtnjJIuNfWdqmrLQVpjuSGZ6+3alIiioveOypv13a+s2W/W0tKafXVPk1O6TtmqqYAcyGtMVW2kKyvHYsz/nSTWkLm9LmU9psfTmXQOlobmTGdsYbray0TVEX7yJt413vhOekbRzkGcD4Tx5jT7FNdK1W4RBXxbXX66Q4JtvfBs+qwPQ/6Tk3AaC+7UHfHHmkgN7pmlwOZLL4ex6/Z1FBgZjXsbCNiAExVDK4nULJ3XVu6tptdXAYQB7Vs2i6V/bbucIIJHL4O68189m8LPLbxW5tjj2SG9TM3IaVnA7NhhtY8tWOiWXBA1WyoypDlVlWma33uOIyG9ids6w8xHOFCTe97E5Axp0zf1hxfL9NPkeTDX/MNjum7BJWzJ2z2Gi7c6aN4dnIgGdAxY/pDYxhqGDw/NoBY7p5/BejvJDDS6FsA3NNKXTbwFwFQm/cBg7ktC8XCr4Hh4lLTz2aAFNmtlHc2EgU5Jv7hJ4s7ctHdWTf0upM8dRkDzRsNg6bO4KNPVC9+x4o41DwXHe0B2rsDjJwchG9PMkOsjzJDrI8yQ4yHURz9R3k2K4cxPUOsuW0rGwtS8p+xuFp+3VJDp9fNevbPXBAGRKDXySSQVBJcO/Yt0cvw8bucpMCUNSn5KsxB+1YZ/9C6MY1C7t23GbsG5przTW0bdfC3s1UZmrAvYtrqesS3ArufbhdoATRmnytRYnhw1z7tH8D+XIULZ2sb9SOsARac50oFE9YfOLt7rDLCKBC0NsVgt9QCP7uCiGmQvB3UQj+5RXCIW5Jb1MIB51COHgZheAPFQI36uKmQoibCsGvFULcVAjxSCH4Q4UQUyFMNRXC1FUVwlRTIUyNXk4RyNQOhdDfoRD6y7LXaBVC+HNQCP3/DxVC/2dXCP1XqhD6tULo/8UohP5fgkIIwm3i7sS0DqDHY+YnmzHzAtxfTsFEcLwOmmfqoDl7VUFzMyTmcuzPEgZzh1rSdV+RBx5f2QMfi3f1tnh3rvbA53Z64HPb4t25K8S7c3W8G+4a7/rNeNev493Qft9gVGlu93g33MUDD7d74HMyQbUHHg498PAy8a7e5oEnOzzwZNd4VzLNruSBh9YD95seeNL0wCVqjV28fzUPfPdIWcs3pMc88GOILcXfbtPpjRvRbdz0t9s7oltbfxiNNmqbbh2Ktkf+9piDPd7XTgDNcLbdcLC5lL0lX9t40uPXTEm0C55dLLivtqCprNwViTOTmguxfbMgdtSazLQ2mRnN4gWvaprNLU++nytmU7K+noTZXIDZzMwMzGZi1WXKRTioF6d7Uvulp4bF1NZiShWxmCnVVXtkMfXQYrZpMduoYGol2KYS7DaVYHebEmw3leCoY3EKeDLeKsHYKsEYEsEEVtMXtUbLaMJl+fhSZp/k23Fgqhn8R4PKZQvoYjGcMbWyM5zc8CMrieG0R6lIeZSAHD0yV2gNZzxMj4u3JQT6Lo2QYalFNPftF0d/vgagPTKcLhcz5lafzU7nkxhOeRLDKU9iODngl5GLqW1EpRuG8z4P0iSGM+aKcNtaTN/az6sbzvbLMJxdazi1NZzxz99wti3PTNjvE/PrSdyA0PP5BNOXDB544xdHhzJNZ0rPy0d/xIoFZqLryYZAvVy0LJ9WHbeJl/GcUyfe2q6yQ/RkJYdSy4yRNNg04sBlMfhTzi91BjDumqmELfLonBgQutFDGHkNI5EM5CQQTb4dRo1+mDK1YNUmSDz9rOSWRFy5ZwZD67Fzkspg334LvoKcNAzLA2Sxjv0G+v7KdExLPnQjdeTrWpK6zFwHSVBjFe64Dka1uPVHV+Rbsr+E/iR14nr16LNeIx/l3OKB+5tpLS7DgvUfsPW/dpX6D9T1H7L1v36V+g/V9R+29Z+4Sn1W6zBJ14i5afETBKGwlxxvY+KH78DlRx0e+Y1uAPkxN/L8CLkFLNroyxzZ3huMurY6tVnt6I5qR0UEtlW7cUe1G2tN1ax2bEe1Y7Ww+LeT6yNz1OXEmBtrch2r6XxEJogsGzLvdz8fyI4hJp5NQ5lwSyZyzXzeMW8zk1TYk0y/8OVrWqDJE894xZHFzfeKtm6ZI6i8Z/CV93aD1CXy4EUliWABD2TYJJ6loOZTcFze8887PmYK06/wnRAdDmN8v6M7vEPv/nNuWuALduwPDK84tjiJH0cX+YX2Hz/+pT/7+5sgdTORKr9wX5NOnxlLv/rSP/1XL3z6d/7O5/6P+hS8yiaMm14RjBvHYNz4imAcG4Nx7JXAkJQpIdbiv6sTzM6l4FTw3H73Dxrw4IHpSQ4INTSIP9aROdJEY6xbc/Qzi/P3X65vdJHYb335x+UzzgHiZEkrsGFd+DZw8jZol0t9y4/aw149+/GxN6PlcDzSMN0uUY0zXrSPYAUM5ejLzZ07ST3r/vED+2/MpMLRBXe8T8uHGfdQGvYw3XyQe6WXv0m+1mazHbs+XquBqHwp4l8IUavcODGP+5vmqdDB+lvPeTbd6SWrYQ/6L+JBQrsf4sEl2B30H2U6rRiFzKphFrhEQy8Ybex69b+RouUfs2Ebd0SMBTTdni3x7SdD7ckxgfibjDG1qP9o2Cri66B8SlLXW2n66EyiyvuS9Ase/6EkjSvG1cd1ANc7cG3iusQLFS6hwiVUuIQKl1DhEipcQoVLl3h5uDSuGFcf1wFc78C1iesSLw+X5j+0gKuP6wCud1xiBfc/z12+XOXDrfQ7wXiZUq/F9euK6W5K3Yr7hxJb9gQqbeG+7Mq/iXJwv3qDv7P8Btz/gyv/nCu/r6UUGFjdrW35l1z5wyh/O+73uvI/RfkK7r/YVupduP+WK789suX/om3vv+vK/y3Kbyc9u/b+vsCWXws8fgn3fwZansH9i658Bf39Fdx/Z1Kp9+P+n135x1H+V9lu2tZfCm35GfRX4f75aXv/qivfQP1zuL87s/c/cuP9IObvC7g/gPvfa9CdtA3c7/o52XbF7g7QCt2qdFt7z7VrXs332pXxn8OKLgOvgwukUj3Hh0BfgRQKw1N7cM3iWlA8CaP4LSV1CNdxZcc2NpDENTbjFcqv9dLvD7lqO3fpBpY/C4ae8rzIDlYGnbk7Og89Wx5qd3dUCV39MHb3lru33b1j71HP0jDM3H3a3ffYuQoX5M5/YkK6Dw9Jv1F4XH7HoQxcJZEMVLUji1knIpJmNElBjafv8K7xDN3vGs/E/a7xdFwQdaV8hOek+13jOSu/azw1/8kSNguOC73s3QzxbUUyISqNOAGHGnT1XP81ntrdazwjd6/xbLl76u41XfsOvxrPabnXeFq6GoencXQFBpHlmH5kOaoXCXepbsSTDA9OpZ8eMlfoGOUaZVXIp3Bd5IWXF4H1RVD0IrC4CFV6Ear0IhThxUu8PFwaV4yrj+sArnfg2sR1iZeHS+OKcfVxHcD1jotOlb5acZtwIjflxG7Gid5eJ35zuPbhmneiyPHtdyaDghA6xnB0Dt5uJzS8KBzWDy8KljMhx0VGsBXj4FNy74SkCTAISQP0Gl6UYYXhNZaRg4ty74WkGTAMSSMymCf413DS8KJw7ERIemIEIWlIAelKvRpONyT9MdqQ9Cbjeo4hLd7t8KJIbhZybjDikDTH6HlHg328o8Yc72g6yzuM1970u95fxgxQvHLFQ78wFrheg+t1yhrD1ytr/N6K62Zc76RBolHA9WnOBfDXYB0NpDUQ1UBGA6AGi+stchQU6Na+9Jdejv6sB/7yBl0+tS/9QtDQo5HTl0HQkO+m3ky26c2mHuI9c/cpd9/j7nPuvuDuB9y9sHoreo27X2/1VnSD1VfRzRad6H2WXaNPOz1FgmUOT+Gvhh6q9bvZqd+jph7ifdLdZ9x91t3n3X2/u+cOv2vd/XUOz9c7PN/q8HynI9cHnf7n5BqH5yF3zxr4xtv0ZruhN0d2SEUT7j7t7nvdfZ+7X+PuxulL7fSldvpSO32pjbVDOrN6XifWPpH5vKERL1/an+os8/4f"], + "wasm/webp": [ 89970, "3L0NkF3HdR54u+/ve/e9efcNBsAADyT7XULSQARFyqZAhpJFXEgABgAFch1GZhzH4o8o0/cNJc1gOKZtCDOUYBmyuQplUxHt0F7YZpYsL7hmxdyYFXPL9JqOGQmyubtKomS5MXdLlVJtVGXGkdfcEiPs+c7pvu++N4MBQIASbVRhXt97++ec06dPn3P6dLd355H7lOd5akV171DL3h3BMv3z7tDLy2r5jnBZnvxlfmwsu3+cwaMC9JZL0K/P7yPJQM9xlderqqJE5N4mrjJ6qY6pZf+fqt9SQRDEsRfFBJIXJ0kUqSjSjUaaKvrn+74Xx61GW0dNL9JBKP98+ae1ptKhDrR9QU+J56s0CXSrSfXphtbeWf4leuSfGvnnZUlbRQ2lJtJO4gWh+qS6++7QV56OOnpZFS/9aZAue/wT/2wzuu+e+z6x8NPai+67c27uE3d7fvCxhXvu8RrpRz5y7z13fvIjd9155B5fdT986w0HPv6Tiwc+ceDji/csfPzOOe/DDXr3wXvm7lm8x/vRiNKH7/kp70fk5d2f+Og93kcmfuSeu26Vh+KH9+/xfkMleLMP9f+mahxTXqHSu7b2tl12+RWmn7/j6nddc+27f+AHr3vPrutv+Ds3vvd9P/T+m3bv+cAH9+7bP3vg4KGbP3T4p3/mZ49+6tjyinpQfVp9Rh1XP6c+q35enVCfU7+gflE9pP5b9Xn1j9TD6gvql9Qvq0fU7VN33HnX3R+952M/ce9PloO5+z7+iU/OLxxZvH/pp35VNb/9neC31H1KLevdxjNqYPSBYLdRxXLZV8bDj+/vNtr4pVFGl1d73o2eZzR9yHXbS1sqNXpv2zMe5/ONsjlUoVCDjx9/mD81XvqHSmlqTho8Uvjz1CAVp6rwip73Vi9stdSCX6sbtfV1vYncp2JcvS6CAwSO7gcCzoz2dmmPMgWAQ+FHmaA4WuZB4R+iIlTCn+9rQWMEBQu7bWYEhSeJsy0KZ4FXo6IasKugvIXJfEbNEyDJogkW6DfDbz+soA9roJ8D5hrAI5BG1DVZkP6+r8Jl4xGkhddJAbmFPsH/Q72fKK44YryfLNR+KkokpK7RSwsgZKEXi2+96JVEyNy3zRUPlDkoW6glShrvFkI3KC4/1AZpCYbA+DM6yH3AQK3o4opDbUuJQGp8lWoUjkG9ChSs8FTA8/IPtVVLEwqKG8tCYj9pcgFEId7MIvpeEMGBSfHKix5qYl7UXGeh5pFG/3ERTXV4WWxz9hUBa6s8Nk/fQZfi6Rc9/Ef5gAjTKYsH5nOvzLkjgmJ5H/FhQImYP6j9RE7KDj4ukSNEjoC6BX1r9C4dpGjOKAtyoRYFGILcKGISsMzauAHxhOiRGj/9JI0XdBN1jfEqshOGCTJJ5zmicr/s4/a9olUK+6eWJKOvCVCbzj1wMGdC7vRpGaGWVMbb75rNidMGaFsT/kWyfyFYNjo0fhbvbWOIJGVaZBh/npHuoE5g6lhSUusDIoJFU3BGBsq3RAJmgALuKyAU6tHnM/Qvni+JRSqg9vUsXbMkTX9PqWBZ+kKacgzhWV5YQt22a310lgbHUXcRBMSULLDmCRsFJgkZegwztUgU5VaEndS6tNfMWMRz0lkoBwoLnMRhu3SCbveEOaiBIP10QJLEkUs5VhR4iNx1dPtKxiyGlvA5CSrL5QSy5v6Tnjo2DxRRtu9xoWGrAcs3FFPMeraYGhajpqXRfe1hLy2B9n0C2bOg6yEjjkiREUbsS+8llogaxPAkxcTwwDYyPiCVLJgVWoBPMKrgY6oOWRNDsAYjMw0X6GNsMfvYAXApOk7ZjuukVgZeEi5IJ+g1BiBVCV6+gmZjeTGjp2TQZhATDSI+/Uk/o1gecInXvDL7okLOLGtI5Rmenib2Ocw5XsDsRYIWJKIsqvCki6dkUlNWqDytZmXGwPfjWn6f5ppPaFd1S35OkFz+NgacTCiayEHZElYWhP+aH+K2p0Ai6btcDRh9BpUw9+eI1TIIXcpnVucrtkPIWFmu7bsZzAwkiFk+r1WfbZNrMjzp3p+ruVJKTwNVYXYTuJfbSicZvWLn6ibRR1L3Nppr0mcTHS2Hx670imyQN7Z7he5HECR7MVxnIeBnF2jW1KwC8A/RBZMby5h+yOrSjJ4mNIjeDM1UHlbpLI/x08qThcKbNQkxvAmJqQ8umBjpgJjo4EJbcyXbUG9AnRj2PdTbwEuDTuLUdrBZSLNVA7zXIFbMJsDBDYKozz8tDGcfbJnQD4+cIRbEnjw1B0XrEGNCT63COyjvb4WIfypv0lS4kkApzMOnju0xJ57AEHkqh5QI5/L41LF+i1g1KFJSKvd4/Sb9x5QdFgxx06TH9mBebe3Lo16/iZbLQt+Xh6dY66Ik1cA8aaJe2k9IVEcm3aM+m7epcOvo0Xxiz8rK62fiD1O7E09kQc4ChZHJ5OdWtH4LqxfXlqb1RB6JTmVKE0vqutKkT4h88onrnNJ1gx2wPnGdezdFfWEiEnjyOF1WMz9w4Ea24V37iZKFjk8sZRLJ/L7SNN+vGW8u2Xq/qxJwpOAkqwwxxZFOSBWEIiUyHOLRoTJTiooSFFfcnxNXBEfyqKJecJgRQY6Y+IZyxNTIEXrgL4a/JMRd9CUh+I7Qg3fYeKfyFjSY8hT1a/LUsaNMsvdo73YTnKIuDaV6ztA2sWS4jjPMm+gp0z5m0qNMOH5F/wA8DfH984wn5IKkp12a8CNs97dp8BeaqcUEoJcEmqIOOAKN4bAJ54mrTPMYdTlTUtr0ZfCiotzrEfmo8wPWCbmyqdU0knleOHYuZ5wFYxMIOtOuagu4rZdUUR/KNmhwZGGvhTekby1RwmVYX8vqNb1EH2etPilxjSIrtxPPpD+ryew8xj0MHRighTzcFlg8PEX9F5wieI4d3bN81EQrT/TDlEciWQRsXyAHxkUtR4CxBK0TuVAVJDJmdGFXE0AHUGn6Jy11xTIE5de7NJ7fURLZA2KhfpvlJCwpMFlLTI6yeNAaEwYGy0qwHwZHUHydpv8J+n2RfjuFM/cC0o2Lfxu4QmHxJ8F4BRoVEPO2ZEYK+PMTgU38nkvEoFqw58x3/+t3/vov/vwPznjXe/HYMwqNvODCU+XIO4zFzupXv0NwnWGzLij+wKV53jqpGbAiLCLT6vUngSMZJ5vo9+Ww7G8G7vQ7jWfCfQv9nqbnrchHvz080/ttMMoW+5fBtlvsX05vT9DbDfQ7XfYz+iFtfsq09pKa0N8IYsz2r5BpOevHpsGcU9GU6iipImJhz9s1pOVJ7gzKqNkmD/DuccrpF6eCYdZn+M1z1RuNwro4yR3BKJ/uEmOGiyXxNjVdnIzmqBtn9CMRzd9XgNumTLTDY8pNEdwmoj/2OcCX7HrvyUCS09d7zwbo3vBqbyUKdnNHezdTHZnTwmg+EjIvl2CAzERXex0C6MFPH0/mWBmEiri4gNmZTOAFKUTZZjyTWz0ZmtKj2v769leRdHswIuu6uKPfJIrQpFC8kpTXKFLCaECaLsY51LKVL7P92vVE6798CRayKTTkbEzZ+okVsKZQgwmtPBrViUmzDMM7ofpIWOpSfrl++tYFkImkJ1m/hJkfE62pO330sk/g6DJvYvxsNJOm0esnKNQGrR6MCF15S+JX9wDm0xWYBpY2sKLJnfq6BnUqUNdQ7ccW+HQIPAEiwGsAqC3w2gIfC/Ba0gy8ER/FKNQk82f0oxF96QDkL0Rk/pGqwLC+RLDmvoV2wvgVeTV8GtBuQ5Id4o74bQUXj286WUZvTxJ7buPU85TqceoVSm0liCE4KdsG8RqsfNd3NYVS08rXtFQ1IVWRcrRFqqLUtFRFqc2uqgmqyrTAfo+D/WapbGQ2WFYGV5sNQ9YmCbzDezK63ssk+Swlp3m8fKML5WRGv9KlvqXfb3Xx92WMomCxNJfj6ZtdDCLTtpWFqLw9rLwB4RCRAqPNJh7noRQyeg7M6ttsKYr5w2IY+Iw59PQiY1l82RyxTmSaJQQ5jWCSFDSSIT7MBEuGyMJIeiuV/KSrK6y/tu+qnmfvVML1d0kglH0gRy/t2GXjIH3ZV41lUn5303uRQWzQiSDKyncpjyYpHz8JaAE88BAX33lMzRXZ/YAVkyxe+sVDX9R4Sbw2EJMQyoiJBlRH7D4af0AlbPFB7tuckHCkiInwCIkU8joDLgHYNxBcMD/6bCCSJCBAG0xF8WVVQPmg0rWiLQyBisXCJdQiphIbBSUhVvj3Y9JDF3sHe5Q6Qyo4/ZntOb8noR5ezZ3nsAgGBNYQC+ohPaDauCq2aLiqAFUFtaqAiAlQFXXRgHOzgcK5MdB4tLncPts3yJ2Y+Jy5jTh4A5jvzFfpfw5h0vnGv9ozlCFbJGDzCmx0smIBjddVB7Heye9QFQEcClbsxOCWPbTs2ZaN1N+HZVJV4a1LiL4UycG/g/Uy5pLxSsqoBuv10pWSkX104Ldw3fZ3S24SlTU2Bnugc5QUjWChcNEIRaOKzlxU8RBZL6OSjJjgLI5nyaglI2ZAtS4xfMlYwBJbF71CMu45J3n3SMYPnJO8H5CMd2AWIi53NDpL7jsk951wLK2b8U7JeBccK4P1eOwuyXg3fL/rZrw7vYedbxX/UmbIZis1YNvlIDjG1DpjCXYXVSyKsh1Y1ovN79Jb2KFDs20OxzBBhTmXno17pqbtq93VqxXl3t1h3bOqOM7v0s9fo68hY4IE8QqJkbdv92Qq6bOAP6n6uZ2dWNyLS+b4ZPErYqhvLdSSndMyO6d18PuMJhUWE6Xq9/H7CImffdyuV5ykdjukDZh8rt+gn61zfYwheiIhP9e/XLyST7JTCwmdT7BPSR+mFxM0R+bdIljoB7b+Tb71Y54iq52UCRpNgKxli7/czZuCSd5G2UlBL5+meQuVQY8WlBQAnBC7YspMk+ZJhNyYGqqOyFgEpN82aaS0zfQcypHFw1oiZcw20uQcwASKoFXRxHyIFZ5NY5VtosoKXvaCY2EaCpK29XYpzyTlmRupdxN1Xnu8XigjBJMic2CC9ACaANrSOfmWOTxr6ZASCjl3CQ0Fmpao66iUT+aCw7EADBmDRoU2mI3ZZszdZktBOqR9jkafa9RI1qKGq5JzTzuqwJmXJwI9r8zYSl22aNWrOu0KtQpIyqrqQI4+16jsDamcrE1lqd0CYqk9Ci9VromqpW1kmDcaewVlJ4OuE+AnAJ1Lx7viD4WGRx+uHPThASEdbhNZJpcPSCO+fNDvCBs/FgwZvy2F8wis30YB+FJJ5yXDsg1Lq3iMlKsJf7c4Xc0EgQ3mb8iKoAzM0Exa/ohkIMwJ1zBvQN0j+jWyLZQLBrs8oxZ6xa3D8zDBWtwEq1UEQxuYEVcKVoFJy/47zKayP0OY0M8Osw3u23e6lUG9XLAXdSdhttX0MQx9Ua/ge+6z033HLj1NP+/YpacIjq0DamyGF7Ss+AlKfFGWozfR0zRJ1gnBkZ7TXXob3CXik76XBcLkXrR6e96BqCWBu3Vg+uadh3us2pgOCd/tZuJm9ohMFN5s2zf0PBAXqqz29q+QTnlmkt2W6JXJPCBr6mGVYd2EPb3U3pOTrYhXMwr+pPHGqOv07fjjHcvfvedBeBZ/1OV/drIFj4x5N9yMGs9w/ATy8flJWRd5blIa7LPZ8PQksTBj1c+K53jBgsbh61+mCQOemdcoAfO2+DYlfCQe+gpNI0icoAScOMVxSsBjWbz6ZW6IRP5XbIIqLGRtI0XTJxT9sge9AWWY00Huw6tLxusBgpRsatjD/jx8oIl71Ev0Bl5j+xzgGQhmkCSHYHocWqDS/PGmQ+2AxxohlpIiT7T7lpdpYou0OE1qHLtUU/hPikSSL1BSACp2D0xqQduhveuJedLiFa8EoLOS4xt42qFvvp6fviVPt12vZQ0rCnZnV+aNve0YHm6g0JDFjIZJWaPfpT8qae6ge4Uu2+jHB6emaH03lZkuTUajwSTZdljNWBBAGWJ4qi97GzvukVFWUWgGR/IZ0q9t8gFxgzeKxxVbBZvBfCj8JD+TScTL90HxAB6JbG2JOBg+1F4/HkDubIb42mxnipSXYJRFK3v7XnE/puCa40qQngKA1xGO9OejI8zKnzNxuzhezYxu+5BlivmlkeF/oxXDy+GbxtyBNvss6S3VnLoxAx8or68xn70wiSwdGm3wTAbFq+yr6MNSD+wiB5V7bpKGLq/PZGaC7FS7InRqElZUCR8Jj4jnJ/uaiRxgtaNBZd0iCEOUEahYTbP+EMU+zv3w7Pc1vBqcWcEPZkKmNcenUFnq2UxtpZS1BImqAWaEDlU5QU9zbCuzfwl+3/5m+0WVDGvCUwSgbFRONq644WpngMdgs61VfciFEJ3BIoFEQ0hSvr+Z/ZtY74ln9By/yzcfbjvXPn05jlUo+vjRfAo/987RvEa/n8xbZuo+aoB+zOa5fBOYLSaDtd+Ds/sZJ1eeqeRBjGIZV8UVEWjNbIbGDdioReBNzQ3g+iseYYalmQn5+9tI6MPKeVRVwR5b6fEkP1LiMUkQdvfP0YRDijV0NyyUQ1EhgPIePcClBpcnisqAMHBSzhFN2TUxyeEyMdRFaW9GP6pcY5jr8PcxtVYztpoUOXaSdm2gbmzNdvBzPwDiDbS3dYfv5e+m7r9p/qkTT8AfxUqmz+tUReMWsnJjdsjmJGx3wlq4RiEqpTTDQsvEIA+Ui8XykWFhMutT1AZTuEklueNQlubGMwpLni2zjRQ3GAUtcFELIhQOhCnibZ7qtDhaOvOE3+bDC+hJ42fvxFq1R+znF1/SELF+sXKsJL3cL45rqAVbKfXdT5VYzvSzq0ynAEoLxl9EpniHP91/txChaYmQESrNMfzhSKC2Lf5N4A8sENAyxL9Z4e+P4B8w/r7g3ywhbHdyOQT7VD0B52ZrAPjIjJslcgSi1sBZfqwCP6iBH6RsKxX/n3c4wErh55ZLuAaenikF2mCJuNWAYgMADGWX/h/spXk2i2kJFCc7PBv0u9wdYZGQikMCfpnDrbB2uWyHmA//qK8CDJEuam+KCxoSpXuNPK8Ecxin3Rk8phxbBKg4Ri0wTVnXmP4pYvguOrgrhl7CGagH4YUOQJ4EE0xTPNAo1ETupisLb7KEgnEeVEOFWDoWWB7qmOYgBxGLEGpNp9D3A0j6XWLRRZ0O7Tik55RUCypStQ33oSxI8sSCdsmaypza1zmMWQdt+pyZYKK6BixEm+zmqAWSWaArMSpu+XDWiWus2RPhCRD2aAZco63CxYFxP9iy1K4JST7DkmxhdIRYTKXRQdzDsmEKYgmjib2dNEh8DBKWF0Zn70yR5TBjwnKEOn+TjKGLkCbsKIa07rEYNT2eJCW0LEDpGfzZvk+E1s7iee8gmLbHq2sMASi6l6GKzWYsZpjNB3vZOwvVTygfa9IiGLeyeJ2x4pRXaPeLjOWFT1SdSrxIAl/DXgymmxd6jH9BxofRPYAWoqHWLv1JzL2bTSpxHgT1MzxFs+7LS5I8j2dNp+/i+YVJUBcjxC+23Mee3294h9q+nbsbe0WLvjXfgp+b842DfLLSrW/Hn9tyf5AbeWfQu9fQsCYTjVJbkdIcNVWoBTMJV0n1ZOjpMmmaalwkNaFjLpNvecwT8FRZfPcKdDwv6QMoTepLk0Aialw26Pe4R5qE/ORcvo1Ds67iugZ5l3J0Mr3VvL2AU4Q00k2UcaqkwXFG9TdzyAElMLo2kF7kmytIE9hY5ilWPSGYif02EXu0ROrQUBTnHUl848/mugdHB1adeuBp0lFIVB/Ea2grm/F6MxljIuzZDdQyV4DBN+DNBmP4XWgS0p2gcZSYoudIyVhmv/2GStnYhPapO1GOIKWPh9kdFMFpDBDC2R7UL7bw7KKALLDSiGzNkZwgGy+E8bsJ2g6N4U2mjRE6BbuXBPxGkAsCisplJU9Ir3dKos536e9OojypXh/vvw3rFBiRJPzAz+2bhXk3GY0UKHBfSsInb7yXdTNShgdIRQVWIujFsZIJRk1Xaxcrsriws/CQc0PhzxpjemLKoTNz6BAIXAV4qOBq6kFoUmS24nGTNeuBg2YcSKXuXyvd/C6z0WwZ9KfBUZgSJ8EvU/TyshLvW+YqsxX4E01JrEE5afZJve5vIyTB3/lGWbpPzDaCv0HjYiuMcLtQE7FPvThzxp8nyU5zBRYYY14/Y7S1iQV7Bey7IEKXF92gn+InHMpBqOWTzLtbzFX7+jEJkssOy+Kv2QQ7nWrIwCUEy2Xc/QzC20zEK3homgGZK7Kl99q1PSoWgUSRa028Iaz4cgQp6R+8atZC1qsh3hfzkPObdyE/evSykgmU2OZ4ZRNtDkaaw8xFkFUdzc2JUmP0AQhSSEIzJc1OSrPTZ2n2WtfsoGp2wzWIh1/k5gdrtn/s7O3fgvaZxuhO6l5tYIETOXl20jy2b6bx6sukos1OEwJPLHwiLhULU8RxOQSOz65eKHbGd67eapl3nM6wnWjA0+82+qU/PXPNbA+/xfLBXn8bsVSXOHWLiXvEdz3A2xOpQBoAAvuUFcDaTEA2wUK/l/0Lqchcen/QRTpOEeDwebhVx8rL8q0u5uX753KW1tOl+Gcouc0g5HUbbOhaiIoigceBcqFtEHJlgsxM+FR4nCuZBEJu1bYTsha3dgMw0ZGFl+buRQsTBoF0ieE6B7s4VA/ziwkH8DmIj6kbe+grOHpkJqIJOyca7Zenl7vmyoF5h6DLC65XkhJBXXT5IFfOJ7ZDCFD4WI+FDSheJtLCZsa+wAiiN89OIqpxj3c9PDljM2VqXVIcasERjfDvFY8lHLO6x78eKuTbSfIitkenf6BUhGUEYk3PzXckUjOWoR6vPBY+JPsgj4rf+ZdeebVbNWC/N3xI2roB/YHLwKIuRCAF5pioeO66cifPScGg8OfAo7xeUTz9Q3hPxZ73nO6F+AO/9hGLT8PPKS9s9GubONI/UypZ5u0fWEMwLMZ4KZNGZlxhhNmTI0lNzBgQ/whSfoUU9X2ZN4CIluWTJiM4ilQCpBocnmmRorHpkKrDXYeaXddnxzmVhVdllzJPBWpqmV59ag6xSsArwwLpHI1C0W0LQS+fHGD2xVLrIiaMwKK6UVYozIYy3wQMEsFmM9LpgPSVqhdpMs/bthfZjzuK68aDHAw/ZTN3yrzFlkeVy4TI0STVYPRNYoZUy6flnSf2BP1O0vSBDxNjpSZMOvaG5pthPVvlXezo3rDMRJ08baKb4W+lH1Y425Tr7DyEpXTKcLbegHRpQVOzDRHBGnPFTWUR35+3RurZhLXqYtJ9bI58bFOXx0XPfUxWQZCMsD2pwqY58mYLEaQ1GON9Dd6X+ZgMSXDLSqC6llsmhFs6wi3ZGLd0B/3Jils2VNwyZbll0vK75ZaNlltaNW7prMstU9LLG2zmCe60eKxH4/V5ZZPjlczW0j1LLetyymZ5ZxmE+GOT8MfmIX8EsEJsB7MJfLaRyz21Lq80mQvqOXLYnphpWmMccU6uHOWAjYTWeXDA57UKJbBFVuCCvt1FAM2Bw/jZ2l7k0A5MmQnCTNiOHGCVnHenwHDjcBzmi+n7jT9XJEvFijoiq8R2b4bioI7i+n092VZkPwT1DwHc9jHPEGQVsuIcsZEfjq5O28gE0AE8dGK5LIL7z66/uKXqxMZ0JjDRsa2vz/M6lt75U/qi7G/j+H7DBqNi+4TDaAKCs7bFz6pEI5Z+ZWPKlgDxBTDHe5hh2N6ytYXsUUJ8w/zAeBztMH+WFXuC70aJjVNrNA6PBlXYd76HlpcSJg/wItAaWACa0tGkfx7YWLq74gTjOkRI0z3Y1LHMzZCBlDLHKVHnz7eKX9aqsWyEcDYgSCJoVcmR08sQ3ELMUIxPTL1srgwkGpczNtjXS7XGdu8h18LFMW3q2X6L7L2miz0lrQg6cEUkrqpl9UbSsENSrGNWqEO4rDjAJMfyonBiJM4vPEDSlbwwOcjh0Ui4QxN0aMIdylVbs8kCWwNUEc0aQx+WhK9C2QoujCjJWkRJ1iIK9hdAwbF7Z+DGT5go/VjGHlVJ4zsUNxdj7qp1A0h0ei4TSA2ecwJbBP6DUvGbhYAUT6RXiW7sc/cldIt7NR7p1SYPb6lsvEdT24npWLsS12A7iIQUOkkCBS1+G1mczWDn3YzbODST/m5bdZb1snyC1cER8KyBFq0DIH3xaxlv9PPnl3h3GtyExU+TQDsA40BBU58hxK4tkcKoZlPIK9KiZXQv22k33BTqiJTzDy3QoH2Rl0cQTfv0VykvFk5PUaKFxGPuzSPuzbOUaCPxDCUmkHiSEh0kHnefTrpPj1IiQ+JhSnSReLFaglGIr/er1XQb7/JjgezD4i1iOfyqzPi8WyoqWre0iQnIcPg1LL06QmBPQ5jKZ7XWZ2yTZcc3qilecstBz/6pV0wyKpTYgMTTlJhiAlBiIyNHiU2MnMt80mV+zGV+lBKbmUiu1MOUmEbipRq6W7AeQE3fwDv6sKoXSQjUsXl28ha8QHlLO4Ixk/HCNCS57EfG/i3ZfrQV1fAOHqqCN9rAdmSRfj/ZlK2qP9X3sj/ZWi56BFsKSQnDHFEL24rLisuJ8OmBHv0N96EP9i1QtmuROtSO7OLcXklJVREmXmZr3uExo+8QSmGDV96AlonOpp8JeKop6S8iHq4HWv6FLv6J5nTL0ZPN06zPYSctieT6KAut1pDI7YBJSrrSFWVxxzy0C9jtAdbndmnDya95bMAj+TppXmhxl97O2LIq1JKNdtikhmATFxKL5ZisEBdAx6psAQebsPImexjY3U2PpLnaD236sN2VtzFgth5jsKijZZMQqZjIOlNlxbpwiYzFFeCUkHGb0dvrIMq2IAvlzqpoWhU11ENV1wRV1xSqs7pvCM6Cerc3N0L+RMh/oM3agWe3j0tXxNIVDekK8HtS6wrvknWFzxtO6E80B+20J8t0cBYXI93SsDRvsEIp/YC9I8OcbOHnFX3QBw2skJp0NFNg6dcn0hennaB5mUZLDgp8jRJXcmALJbZzYAsl3sbRKy7Pt1yeb1Li7Uh8w2V+xWX+OiXewfKFEjNInK4ETcgUHO1wHCnAMe0VqEnV1TswGGU/KO8Gxyj1MEqD5eKdYXEViYvrKlbwRlmhmf6I1YKx5s8KrccxEbNug/tMbh1YbhfVtbkvoZrwbnQDb2sqjRNX8nZX1YckSX8+VGq5eFjzhkUrAj3EIelM5xwUFBTPO/o+dNordnJQkEscp8TVHAtEiXch8fpXvOIaJj0lrmXSU+LdTHpK/ACTnhI/yKSnxHVMekq8h0lPiV1IvEyJ67kPKHEDdyol/g53xlds66cdGC+6xAsOnucdPM+dtvA8e9rC88xpC8/Tpy08p05beJ48beF5/LSF5+RpC89jpy08j5628Dxy2sLzsGv9NAF2I8PjEi9Q4r0MDyXex/BQ4ocYHkq8n+GhxE0Mz1ew8MYAUeoPOfUkpf4XTj1OqT/i1ElKvcCpxyj1x5x6lFL/klOPUOpPOPWwg+Kl0zbxtdPu29dPu/wvn3Z1vHLa1fuN066tb5527X/rtIPp1dMOzm+ftqC/dtoi8/ppi97KVy3Cx79qSXDiqxaKh1zi+WoweemCVsvBMXGDTvGP70nYCkQw5GdyoMc87T+FQD1Zpno3tMHPmuA4n+YhDvE9yVFo73vUURIv0W2y0wyzeobZW6rFTuP0v0zqbRK8nA3yDdthFr3mlf3LeGMIdlOPKE32gBOaELOreGsvgrJIxEaFzq6S7bHHNaZNE5IEm+djVxomXcAedhpt0MR9ieMqeTs7Fpmm5jDbvgCdVeLHyMbm4EglD8+xuWG/PKNk9y9rWBxOIFEGejChtUKwTfGswg45P7sKXlxEwBXLJkbkRB6aJo3h0sRLps2OdiRhm5tG9ra+hAWjeB7z4nVUJFQJW+jZQay48QYNTpGEg5cYcQ9QWrje/mbYrq46LJMisjWmL0uLeXxqz8oKFlLPnLnpM3u8H24Dc72YN0nmxFjllVgZDtkByAHscrEh4ItiUxfGDm8UPipeItMrndEsxo7xJK6gaUKsTiB/AWdmOMj0ViwktBfN5pLUXNNe6nPsHI4gaMiOZ5OKea2r7gUFguyqvEMlSKliBwLHRWLnvJ+aDXwGAUIyLG+wxQaVDJtHXbKqjR66oNCwcyKiC4MTLdF0CD+2fYiZihuKVglCwmPyKDqVWcA05sBgoMwGTOwwqJtMnfAaT8l+clbZEIWbzvY4UDiAqdSEeSMb6dLim/FBw673uYMLsjoVC/JpgWDHlZUzZ9Qhk451m6z+Y2rOoTVPi8KhhCjTCAqZ5u0hmSZzz8NGUpmeBFIO6oC/inUDsCDpmsv7xL3LyLHu2Y+xOB3JCTYMeQOQN8SUla1RTOpu4UkcilosVmawl7CPoddZ7G8rlrCrX6zW4jf5m9nGGzmW9vWwOg/bH+Mqwta12Z5dvctD9m2dyv6x6k/pZaF2hCmRKGppEo3ThG1DkgCLWZD2GxrRERiq//wf/wXlJsZ/PDi2By65zocXeuzufjyYI+Jt2Wsae83UXpzQgGhK9OgW2GmXmymgjfiCzdS5CDPf3A+Zx6Y5IN1sts4+WKz72RXEzoDiUUaUWt8GBcxhiQXXwsu+pDhQBkgWzf0cxAkG7SLucgt9IKjyjSWfakCE7bfo/yZKT9Jv5mPZp8VOYR7vLZC81lqrRlOomFOmTe3lEwiOZQfz1r1mkkp9hz2TPUr5MDKn2KcJ2h1mk3MZ8T097rUI6BniA/p/sMeZApinNSYOESm+KWV9XcLuM7MVm5snzSQ2TiPmjSwT9oHA2QMtNjGTEq06uZc91cmMTq5RGr8cdZYtLiDdQnp6cQHDadpkyErwILQO/kHseE1IrWfGp9R0iTgvMo4WbLAMqc68HddsKqJZ6NGbCvZfbzSXyzptC0vy2LxLYMIX3d/EDXD4RZPd99GM8gj4bImU+xUOugvl6IaQxB+hhii6Fb1grUHUmSzmmcuQJ5Ilh9lpNkHYN01rKd/II2/iGk/3t6JHzQQv25SSLzRbceZXtiAVTaLYRjNx7mJEd1um68pwiY0oMcElsPogh1JRf02jERa6tlexPZUlFOY662JOic2xyGVS68QqTpFMa8jxFWSfmC2SfFxVZ2ecpCREjcijLnE4C11/GEOV9mkoIGZziiT/NP3vQr6iDGYC+r8FfLEFa+A1Yc+CsSND1GcJA8Z4gNKv03TK4kIEb8QZjhMYHYFohUwcYzoDe8hWJStDPF1mFR8+9OReOSDko5TnESq0LEKfZSQmb3oR9aTOx+ATwzyyaOcL3m0qoEFVl9phKPD5DHn/1r00OvujUoufSZ59WER6/wmWXyT/1AiUvG2ZF2GxBo2oXc+JYI7pCrOGyxdwTGJoTxohVD4J95DRyHZZ9kWFCZNPnwjTLypS9PQxd+weAsc9DhyHzwWupFw/RaDvCT579Gju32r8Guy3Ym7c8yBgv623UO2f4BBz+mLxULy2z1FnDhklp7yQHfsECzIOMaW3XE4h0vzfadValtgFsq8Hbpplqw7WswnmuEwq22WmZIdbAvfZTE4q0AmcB8PHLcXQMnHaBv7PYkt9mv0KAhwCE8/lHPcSm2QOfmqOqLJHLfDcmCyJRhNIoA6HPrYh9dqi3MCZBRWYEg8pjoeSDf71GPAmXBv7g2XZHBFyfLEq5+x27BYbp7xcg8jb1SHkWDbiUbnsZkQqQ11J5ulDHDjJKzWpECWxROEFUOiwB622TTSdk5/F9PiU3oADRzwEkDeMvo/P0ZlGUJocacR1bDRKXCp93/IG1uVpXooP8+qfNukc9vV4LlR8EyVpCMqS1QP5JGYgmgCgv6xwZP8Nvf4GM1k8qhFcD40T0QTTVMrGgntukDWwOOKCyz0XXE5I3T9nJuivi9PE4omEarYp2+4BxAu7tYm90ZVd09rhs93S5WN16E/1nOE5Gz4neE7cM1Q+NSj0/bv0HYxOxX0nmCWPFuxueVgtcswqtub3N9izEwnETfN2z4MNPfU49DTm0FPetGUjWUjHZ5Ti8dDTdgqrYBu0sRk9LTE5HkJMOZq6le2ASKFPhvU1b4c/nfP+rp2krkqQ9k3ziGohHW67PdMnLln/ZX8Zn0yFdZab2SURS6h7JGNTGqMOWjlWwq2Jeq9tR+LU4I7cnjf3CX4c89ompSWSjSieGDN1gKKxUHOOa0kk1FwOWoC43omwRxdqvsVEVah5MhJqHnOoeSKh5ogk2inQ8eDfLicxzPQTrgpxkIkZhZS95YI2ATpl6QsoFhfkxB7GIDAW+GQMeF7Djx3wCa/+AoimaQ6BTyrg4xHgmwx8LMBXJQFph8q4nmXi9aV9RAkzQEmt2jcXFmmv9Wa3F9e6jkmAVf4/9Owg47is7fvaEQyKbFH6ZwHaHXeTSmXTV/ElfTPrqrIjIiqOs+6KrRV2R0Rc2xER844ISIT+FkvWzJyFSZMRXIdMmiD6cDWTjuKa1HGNLK4JcyQOgalG8DI0rlsswMcqeKMavBH49XNQLOxGCEiQyG2BiLEFguR67LZAxAW2/2ALhMQqXNuOa+SsD4QkdRIO+z4TUhN9fuDtGTHe+GxG5c0B7z3x5xGFMbuAl2ykimmOOhPWi57Kt+wxnzVbjve3sLq9g15ueYIQ0NCeAtnZg20rosawhkYlPtffIkp3whFcgJtAWGLNsMkT5BbIY1bPE+4ItjvYDTN1gMNYeaUL52Yk4q+AHCJCH+atUIp315gm4nZ80J/DSWFoduwBqE7trQI2IQUis/kw0S4T/aFh/AO8Om8dI0nxP//Zv/nPag7fgyUJXOPNhgWvkfsHbMR/VHzzU06wi3TxOZpFy6wRY5/XhNGy8o9wSJpOU1nySbHFIdwLLeXwgmhWNFuE3YgwRhFuARPNGvNMtMY8E/E8E60xzyDGmSO2aD5GfOstC21tER9iHK3GOBrHWPCLrM6JhXG3Z1rPcuf7soMRC94Wu7SGXSTY8TZgB9Mt/I2BSdjsZWDS1cCkstfTPyAQkekP1kh5QxipbFGfF96npWM83nfhieYs0eue3Xrh1bZeeGNbL65lvxJVs/GWBfH338B7u3k3Lk4S2uHvFt0Bq0OkcrNCQd9f9JxaAY2DXrxUe4GDAouvuxeFstoGsS134VH6ekL2jiIW9DgnwT68DKFxAhJTDxogUfNgz/KI+HHreswnuYTdTUxk+B+VDqH32/XnKZxY6tYxJLK1ZfdPBrfwSayEn7cnOZFHjCTmJF2+2xP9mk9i9hEF7NmgfvHuxntu+KyJjqOEKjoHaQgqGzij+n4qLU9LINEferOyPMz6PU7+I2jZ1siuJ3sg/SVE4kmJhBjoax4Ih33AEfSSBivOB3q8gm6NBqz+sL6vDlu8nJIMNb4BXQ5OJ2YpNgA4LgPeXzAcNNvnJNnSu/kY22dFPdVLeaeIaeYhyd+B2O9nlNKc6srxbZMmIBpK6MSkxMfABRazb7DLwhDRWXwcmOKjnDU8wKQJmmzeDlFrfMSms0T5WrUgEs6MfUk2egQbkZmo3DaJMmxwZTcUYrpNy7Y7wW2O1m4jN6xpMxI0wiecKLH3QV45WLjBlk7ADKfHTBX4TRMuB3MHBgKIQGSBou+zx7ENc6fJ0WxGql1lLaWyG86GOnGZ0ATW3Bm1ZD5Mpqs6xqdfTh+UPp52C3BTfLwMsySmfDLoSbdS3NoO2XpK8PMEPt+pcxqNjT/yVbIsqxDBdk+OQEzkBIGGjBc+mBFDjMQUNu25qHlmzpgsn9oXmYU8dsGCCXMfgQ9ovXko1z0J1p/OI5pEDrbhkcY5q2xY2nw9OfNkKvdL0zi4wDFnONkKB8EuLLS5YZJBt9FPc5e+GcHXEk3vSxy9xNzfzqvLOA7rVg56Y2C34egaAvbH4B2Hi0DCZDjoCN/5zFhObZejYCMcZ1pyfKCcGctb1lswkziVwGtClPqxvVgmVxLW6O3fpT8oD8HeXfoGE/KWV6bsHTj+bK4I7puVABganva579lY+xvkxO8Pysa7WCIuPK4SPww7ArMoZ8qndVCfxem/yNSkxNghKgM/DRlzXYkFbPFBXDTMYRDgUCToFT/3RYXAzLwNvxockDmOzO1yqomV5OLTKwkWhyaX2KXXLf7paS5B01zxHx/mQ/iipYIDEyeKX/0L70CPDWB1gA9oimBRS8lG8auf1ihJ7E1l/9NfHRst+8VfUPWymB/bVPqXfwBlBgTSiW96nMzbxfEXPMDkCreL139/ebZHuW1h6iUQF+giSlbQjSnfEN0m3MAXi17MII4jeH7oxReBXiqulS4btf4sizxi9X6b9+uSXt3fJIuRm0XQTUtE3RaRflt5jwWiXfEzgX0d1omPKCwQDV63zaWQLzTTnMLW/S2c6sBXy6lMXDkN3AFwhrcJEtQ41s7RmU8bYGbCMT+TnCJWK/NJHNlXnFgxZd6RPWCFv8Rv86zoCkGnhp2xQTpjY0WTDbYzNg4JCkUIh1lI4axitxTFuT/qxaU/RorTfJRSBa5LpoZdkkqXZFX51HZJNizPYwznSqRDWjSpxhFa+Ly1WZDtYCA0HbLZENkpQXZD1dqURXZDHVrStJoO2WYd2SlBtl5ckB0p3gCyzQrZbIhsc5z/muP85/HwmrDMAs9YDEwqJmiCCRoV4g2SLdjs4VBNh6h2BNUhYTsW1Rphm+jXBqZ6Kd4ajrOOoFovLqiOFA+luEM1HaLaGke1tRrVCZGdzWG/NtGvrQq9Fjb3oZLV6E0Kep2q/kmLXqcOHzxxWKtcJUYmBb16cUFvpHhDiq+Bnu3J1qqebFXlUz4ikk970vUTkqCR9J0KZjbN2ttLErmLwG6kwF5LbPFczPnkRBGz0IcdaRCB0B6K2dCJ2WhIokRI1KxgTCyJmkMxywdbOjEbDumTCH3qZYU+zSF9pKwjTjQkjifE0VVhzxJH12YRiVETZKEExnU8VYUnyWi4DBye2uHpD/EMBM+wai6weIZ1PBH5bvHUQzwDwbNeVvAM63iirMPTX4WnWoWnGk4nb7LuoN3kegETpOgOk25MWDqK7nCuiVl0h25Fjcabqzu8MfRk/h9H8PzQiy8Cvb/luoNyukPVGec3+bPuMD4Xi+5wPqoH6w5Ta02nb6buMK7rnO/kz7pD1+kONWTPT/VojCpKze+F7qDc5HqBk7/VHbpOd7hA1YN1h7RCtfVm6Q6r0Tu/yd/qDt1VYuT8VA/WHdK1JMlbT3fQTne4gPnf6Q6TTne4AL1DdIeoIk74PdIdtNMdLmD+d7rDpNMdLkDvEN3Br/DUF6g7/FIHukPE2kNtkuSjuqE1sOBO5TBu3z03hhhPOIxrYqwpGFvuexXcJxhb7is6C6AxpvmhHJog9Km2CvpMoKchh0owmQjwtocpf02raAudJqoW25ZOE7bFV9X8ghNfsdzLNUQWMuJSIISJ3aJR9WBTIKsXFchaQ8jG6DCuD0w4Ejh1wCK1wKOY9YGJoT6Q0pBuyOLFBPSBjaIPbBJ9YLPoA9OiD2wRfUCLPpBZt29b9usBdj5QnoV9Tei1RS+gX9YKmCNwGO8m+3Zz9dbHrDRpGm7C79Yn/Abkm5WcG1bNgVsrgrk5cGuN1h5f7YCzbyu6dUiMUoUV8TYI8aYc8TZY4k1Z/ulU/NNC99Tl7auYDkbkbcU/PKfoUXrgzLNGNbl3sSxVTQmdVZrMVNWG02SmxhALgFinJtYJsdWyveMQc6LdgmoadcQaI4LyVcTIjAjKkYHBUdINdHo21ulNUhm6vJNylRXfHZnpqIXu6Exn0Wqgv6gaIFOzsbvjhO+uJjxr7GsYyOmYhEhHJcRCpdtldVQQgzRZU79aqybtbgWMm7S7Y6gE4n7hfhkf6ZOrRvpkDZW0hkqtTxuCSupQaVhU0vpItwckZTxWqygv0sIC0j7tqcgbx+brCEJgkW8zcMcwVJTw+BySSvBFTvAlQ4o0RkwhZp8RU8gKvpCjDkjw1aboSMjRqIpGlhyNGjmwVH72GTp05HATV1jrWZ6hWf/UOJ1nDDPcvlphps45K7+6ala2mPHUDMzUEDMtmAVVUW0xC0YwG87Jao05eQwzVevoC7XnvTffnvcvwp5XF2PP69X2vHfp7Xn/Iux5dTH2vH7L2fPB0IaNv3/2fHhx9nx0aez5ZEiL9E205xsXZ883L709HwwN3viS2vPhxdnz0aWx55MheukltecbF2fPN99K9rx36e15/yLseXUx9rxex573Lr0971+EPa8uxp7XafqXa9nzE+dvz7eGE+hwmJH+01rFjO0iun+UGdsCB2UIyfioJNlEZV+1BfTXhvaVLUKvxAyBJuMvFq+QBlXN4Bx36CzwBiq4oprCW5XepNay7SdGbftLhtyEqcmu80YuHiI3YVYrKOshZ/WE1pp2fus89QRr53etnT8xtPP1aju/TTCylkC/W2t2/oToE/Q7fVY7PzubnT91LnN9Y0V3Z6/biZ0yEN07ddWzM6ILvDacMzaO0Z39GBsc6afqoSxtJ9ct6dujYn1oketR2mQjNn82ZvOfzXSfEiQ3VEhOWSTthE4ZCMkR/boxogO8NjTgN6xCkibXKYdkp45kw0lmi2RjVDCP2//EDN017P+sZv+3a/Y4G/TjbrtOhWI26p6gDIQiHAHV+ElHJsfXoJON+gAcitY1YVFswsnnhlA6hmK6Bopst3fX8wW0a1oUoVVTpSYrvfF+N4GP6I2UgdCCU2DcH5BVaDVHVZoaWtRzkw6ttI5WZX+P9dxafgF7WvOYX8DGNG9a5Rdo1fwCrfP0CwwX4kloRmu4Lxx1xvwXlIGoAx/BuHsgragTjRpWFXVCvnCUSQNvQUUaz03DljTe6Cy8UHnxKx9B6zx9BEOzne3+CsvAeSUclsGoW4IyMJY1V4Eame9fw07Ikfm+whJXvFRY+quwVONYqtrUkH7+jfjwx+ID1wiea60yelvnHRvYWmVsty5hbOAqD36zPsu/EXTOEQu4LjqXNhYQ83pTLvY5X/vfH9r/I/57Fiz+Gv77LdZTv3XEf7/Zvh3O61rm9XWD/S480M9fM9CvdQFr/a21A/1a48Z9a7Vxz8vn/ihBOvbSEmfNa4nsu/CovmjNqL7W+ToCYmB2UVF9odjviM0f63bSg2G683R9wXa3L3b3Ra3ir2m2p+N4pavx4mXyiTWm7cYYLudnZLNv6I3H68VSfA1cmtUkONZHac1G92W8Whud5gU+9R/noQ19+Kvn6i4JtzzErmtrr4/M1bo+V0/i1IdxHaQO06owaJ8n5tX2fHPcbdpcHQYtZR0xklW2qr/KVvXH1tiZYyvTvGaH6/rsDFv6b0483vd+PvYuYj7Wb7352LuI+Vi/ledj/604H4d/I+bjN+pdj0pnzNWWxc9vOo9HMWu+4fnYv8TzcfgWnY/PuqR+jknVzsmj6+nnN53zfNxax2f+N2w+9i5iPtZv4fnYu4j5WF/kfPxIqCLsxeXbDI7SfCKHhcuFeaYh93nyOrtsLR2duCOe3Ib6PM4tYIiTKgAgthAnI3EivqlWOPhcBaFRvZTQKKmFDUQ1/b+2xBEKmpELGwgtllHNvVUh4PMZT+WlwQHewO8pGjyDeu40TnujADbo02hryPZe3LoZ2B7TJMq80RHIqKohqr6gOozX8C2qwUioR8NUCzWGh8pYlIe/ZpSHWnelZr0ojxcqrtSLxQPzeSJcmQhXJnKBme1UDoAQhZI3YcvCFXd1XGGOExzGPYfDFbXG6t01zOvDzo3Hw8XOrAoXq1giXnsprupgV36sh90tFYLHKHL+cNnZh1i/KMTCN4RYdJGIrcm5uOvVJGtxrpLFSE/u+kgs8ti6X2Pms/HxmVV8jIXHZD0mPrOKicH3yTm5eL31xvPiYiUdrce42B/2tx7v72pqOa+eM9W+Muns8+T9eO3NZRfGxaPI+cPNEMJPF4EVFLU3gFh4kYidLxdb9rXMPMLF/hgX15bAz82SuDm9Ynvh4nMxvncxXKwuThavx8UXJrXeiMhSb5IsXo+LL1AWB29IFofff1nsX4ws1hcuiy+Wi/9ZqMJz6rn+uHar5TL5aoCOKnivrVbwXmMFT8mRXmfvn6RaJ3P9YyugDOHSQk0BsQtfcTXm+ZqV0eW9aNXynh1wq1Xd7ytC/sUgdP667yqll5E+q5h9bbX6+pqor6Irr8FxurIYLdJ61GKkDBbpBl/fwRiPiO3zWrsc2mbH5vNYGDYWho3lQseh/iD9vUZnN1dFkjVWRZI11lYXoipwrbEqcK0xJmij2qzavDB5VGEQnpVjLxQJYbULxiO4KDzOwqF8Imy8lnYQXxijrq0PxBeuD8QXJUnPiyv12bly3No+r64ZtbPPjweYK5tvdJbU63LlG0JCuPKC8QguCo/z50o728cX5jNYe36PL3x+vziu/H2l0mU5lCvEqVfLcgWbkmsRcJsZn/+W1K5t2i4na5p+Uy7vUXKLVc7H5MrJcnwcNR+aNd2XU7b4rOdATlfG0cxdX65INnxE5Xze6kHtxwttKI1cKV9aiQvpA7gQ+VhOPvsN0IYmTNN/4qv2cv24Pr5csdD34RxngNQEfE0LX0POJsOhj3L1CCP4VUEwFSh9gTkSDGK9bAI+thM3LvDZXxhR0KnSbkjMwQdx4bDcGD98QFpLMpnGAMfg23wEVdpv88VSfCWDlnWgCHj2Az6unL3FfNwkaJvj0qkSd1ENoLJy03zscFBy3DRuGTWMxRSuaeWrV/1aiwFhgsNW4YRGxOqsPY8TddsOuo20N/zebo8dC/guLrVVMKFesGmcfsZpnPrd4XVuOb2v4BAj/i+QlBVlUtNOn9aqaTlLy2V31C/haDc13FFr3Fu+vdZMTjHHYbCwGvhYyjkZfXJdmi9HVJporhyyos+3fsm9a1gI5XubuRc1U1UDOfBUzMfv4XzAgocW33Era22WYzUq2y7Ft9vTUrVpZErOIdcmWaf4Nik+I0TezjtnlC3u802mfHLhSHFh6fQLuNFUDt3zt3tyzd+9OEeyZe/6kUEYCrUiOy4J6VbJdkj29wgE3xIPB1lGcgFYZAeAmuMFFQK06MiBiEz8gqPX5fIiFKexw1I7QIwmx6i6DZ02KjA2zXmiTmhvFecxiWYR8Q+CK3uxEN9AhmsWcAQfX/nJR59S54AdcWbvPpLc7jJKkgohLn/NfhhLKDjCrvDSR7SaWJ8kTItAbu5g8kRjJFFCkkZ1Rxl2wAVMmUpwgTItEpIY3QFuKmzsW8jbPUKW5KbU0JK7c2Z5kE7IgZZEEXsqqye3vucdtrjkNF9lOvN97FSTe4VlzsByq5AQnJjhSyZ6OO4aUPtqt3MaLONGuGWaiJr9NzWqfEmRUWYxl/v8cpxKyIe15rETw/byQ2W5Rg4OvZcP61fD634J5YzPLdzJ9+tKl/FyM/GnO6o02stFFvi6Kc0zZoYYSJ4ZbT5cZ/HbWms+Vx/nL87KFVcflAu03oeLU3GSIQmnXfo6uUfrWjnGcqecwJ7IXo5ZHDQd8PpMMJs35BBXNIP46F7e3IXTnHn84Hz+Hg5d3W7YLrVHWJrmqZX36xaOygxNNMDtC0a2egzAOtu0PRWUQZjmK6bDp3B0M07+P7WSp0+Y1F6R09ulp1ru0M1pHN6KdIIzJl1jCo3hpNdErlPg40VxxGTCp+r6i5neWrzg7qt7wd0vlv4mX9VbyUfEAfBtjdPcVe5OPuLkD8m9fYvFvzDzvb18eTWzSE/YmXrUioYploW2D+UKQF142d9Nax+JvtltLOZYPBluclt2Gx+1u632ztC79J8p0lmdcBZGQxzvTstymP7zGPOpY66EJwYWwiIHM0IqqQDK+HbC7DYiEhgQcbRzuGzRB2h8X9lOzjEDBilU9nd5atyLWWLWnjh8h1y+xfpMBoUBflK+Kdfy4M/5lUZD08ysvUDQ3q3ZT4XEIuwSEw+GtMkBDekf2S04LXqQ852F23IftAKANPcyE94n5+oe7AFXo4fEJM2QpiTjUwVKaF3RlCqLpO6tADlK+TICEiG+9PU0bu3Yjds6bjjshJq9mgoXPcoZvLiQI8OfKVG8GiWRng8opgpw0YUSiJuoqslVKfzabzq7VTr7VunfW6uGP8jv7a/Bb4A6rzMtqGn2ZNyAWy4tkw7hnbV3OsMXBIryfNhIfx6XxkNFlrO9L8Zdf6H2d3wB9vdFuuvXuBo9YGLx7M43Po8R4mI8vhdq8sUXYPJdpMf3PAjxV2otQpx1cbzxPVocb7zxVeU10dZvqP/Pvfp63iz9Bvpffy/6/4zcTe8I8bfIaXyenPD/qrVE4lk9kI2zkeLMKlKs4YEcHTNnVo2ZNT2QjUvS8f76eJ/Lx3XWgX8WJNYb9WchleDduMQMP473MXH4WR2tUmLsjcdix23nCTyozuZPoMnP6Pfl8aC0mhxuLiJ9hNSHBOqD5vPM9cCwfnJdN/AGYu+xon9v3295KS6RSB+EOSmnmc9a/QRztg/FAHD4VjMQo4htKFIscS4IVUvQ1W0ktpBw6Ug/srajT/pDzX6M7J1hHmtvHxyakKlEYjoT0o6K2KTjJmTKdo6YK3VQ5Tz9xOjDfBWGYv3JAn9zW6XWkGxYo6nJThC2IpP0V7VqXwAJQrGofhrXh4muVcNe7MMA9mFQ2Ydsb1/HiiYbhkQVWIwRW4iOGOAKwivhtTLF9BBD0WpWCqIShiLZi1H9dtEmn8ayf6HP95SuRRvxig1pE1iQKto09yJsujInwUoKtmSc/g8hmdZs1omKrHfLPXL854ZZAX+a7+FgAyKQN7fiiikkbuZj9Pm8ffH8yc1Y183121IHXxGQMGcW7iqV9qyrBQfZ437J0MTEcjFfdcNXV01I6e0ifAW6fguGQJPHSshuNNCwhTGE299y+oJjiQZUwN73lsrNbdiUOJfjTJKJOb7v0XuPbuFy0MFTx9h+S47uMSeewC2Y2FTcIADFUyZ0Tdy1EknlPbg17/IN6vlEyTgIXknpfKMBbw5kN7d4JHbKdaKa6mfBl5ouXzUDc7Y5J7e2tCUqnDq/3+H7NlkgzGB/oLsQarvQgBmgJf0c4igfArxT5h1XN0lzwphvGTaBoEyE4dt9RhBMwXOjeNrLSALB8zpxI1R43yzurVul01hmBeyEExdPdYlQUAhs9grkqqJZew0fPbyP75t+nzyw6WQGsK41HGTaOUXEr6T6WWqy9A9CTbL0mNwT4RNzB/bSFsuVjvW0wMgD5YMYCuBBlo5aTrABA1Dd79Fevf9x9yCNtIOyribDMRCXXmVb8t0Lxh+wp8C7TpsVuBIrwXszpJp4DT7TT/Z4Jv6Ue4rrTcfSOHWHj9+jQyhGAArZxB0BqNKoxuASrpjKtRU5tZ6zkGkZWx+EqU3zFUQaT2P0ja8IkZtyanjnwVjP2UYcmUOpd0hmnr/4bmL0vG34VhwVxDc+wn0+eKoihGIv7ntwxfIxxpY+Gj0yIgkuPSSAvX55b7vSK0c7SVqx7l6e/wQMT774rl00uV47Qgifb/UYacDnakYaGHLvtpLdSEJi+jNbsteLhSmz+u40/SP2pPj2EkWeSlSP3ddodX9peYnFYFNuCiOaQbuQWUN0Y5oM2G8VFg8+qOcwvuj9XLF5yWklJINJlI281Kte4g6kQBQYxrE24wRySWJgJ9lCHbSos0LzPzESzmUPcNn7yXwHdcZecM38g51JJL462GrzhXwux52fMLhIPiwtzBXZEj817H7smDcx5WtlQcEOv1xcQJz3XDElSjsuj+abmAn6yEoX367ZHeTx0WefUHqS9c/QXuoCsEHShvhwY5a3TmYjSGcf7lMW/yBubKem7HWQNM/gxjoqRuzzgEk+LjPDg58O5mhyYvrSh6AspoXKQW3RKnXSzTOsO1pPOF9mlKY/o3ymq52KrWOWM2e35MEAflYS5yx7A5n8rQbAHlm/8vE4diXlrMrjJG+EdgOsPsBj5sm6RXpUafaWJX3ry8rygAaBVQP2tj3cXsdSlFVbvjpLbvpR1qnnDeQi4OUylSHCiuxtudwFVFphcvv+tqwXYRlkIFekpTNKLfPdRSvH5ouVYD9fS09QyK1iuNwq01uJdOnHKGPx4mQW5N5e69HDd3qjc3Yv45aw3+AbeviKMLxCFQ8NkzS0n9XyS2z2r6yCglTxolx87KV/2ROVmTjuIB/uE9i7oohg6Rw79TFkJoRgvPYkCycJn3XFNwIuW3WyJQuiUwcwtc9IJBh0MV4PwXQ5zTcqJiIoPNxCrcgCKVa+6yPoJVkkZno9RnJ6cWGBvrjbtb3s79v2uVel++D3j5agZcjeig/lqWVhVrFNtDjI+Vpq4qSB3B+kyjTXP1FMH8nFRy7ud1zvXIoHPsVw6eCSPSaDnP4gyKp+k/ttiGxQIRvMSPAmIC9dxUGFeAxMdYWpHmKqK0wZ1Bqu9uKoRNzv4FhCC9u6IlKh+CypQxZZGGNGOWTJkmZkeQE2D8aQDerI4l49Gjkto3EVfEomRdvnUcrHtgWCPYI3U+CvV+HfqPBvrIV/483Fv+Hwb4zh32D8G+t2tib8qcqWaRDqNAAJ0yItWbhd7fnnwjRaH9OowjQaYhpdKKY4Rk4wjRym0QimWNzhlaoaps0aps06pg0ToZMJu+CtgN0Qtw9JfOX5obd2RxYkAtpqK5ALWSLVkYsq5CIgl4whF40il1TIJUPkkgvtuqgSSonrumQMt2RgbawKt0YNt8YQN5IiuOX0UM8yZ/S3jTlrrBn/bes99NyH2G57CyBV/HfqEvFkVISWJ3X6FsCNt5xdMG5n0QAahNcqNkwqrJK1Zrrkks10jA+uPP6CPTDyEPuegGpizmvGF+SSGnLJsOMaBU2XPdN0M13ylhAmrTciTFazZgPdlxTNAuerRofyqMceoub3uS8blb527q5snHdXyk3ci6a5kPNlqs9zfJhcYR6JmZc4ju83CrlKGa7VefZV1gnSrAjSXKvLm5esy5kg8N+1bWf325YgTXMBPb+2EgBMF017gUROQxYaOe6LJhe2BUm+mNZi4S+QxQZlbxP9JuvLrmB92RVUhAiGhAjORYhA/HVMj9RG0ElAkTWMqOsxIkCrQXHF/aBXWagFwZEPv8SZc+U8aMQeIqrm6e289KAWsX6Skp3rTDjivSOmOZh7r4Id1mGzuMjSeTItBWW5e/kA016x46YlxhnuXheA4IcRcy1ZhD3WSav7m71CVW4gfJa4pWHpjr2SOkk7Hl8/62X/gP430vTj9rlYca44KvXsZNaQyKlnJ/l+88msKRU8yc+vdt33V7vyS8AWU5W5u61KbXeVsumbpr++0V4jLVa2s5rFByiY/Cd5t0dfD3O/w0Ez78tJGnyIPz/8NvkcXy+9Sl935wGsQh9+HwSeesU7S/EBhUWwhAjfhrijdmChVS0V8Xzeki38YbF8BBn0jd4MXzmOSCDQl5gsW1wowiVh/1YR3MLN/6Zt3rfNi85c/KF9HdjXSfEpcUj77PEAJxeRIPD1OgKYtokcfIrOr8HrDLiDwqXC4p37+Cbu4tv1drEogs8R/sTM9N/15hfy8L3qWsp7XSnvI+uF+wF+TvCnMczsgxfxiuBk5+NtcmdxIPcZe/L0UXm6w172Ky9vl5e3GoV+npWXmbxscQhkpyTK79KPa6axfToJF8irXglm9YRv7qU37ylBHAvr8nvVCRqfxS/EZbEsr77tWXZKiiUharPEckNsZVXx6bePsoRXtBCpHJo4+4e8CgLt52pvhjPvwtGwKvtxqfv64VMqYz77cYiZeyGROD/uOOfXLAWR4Nev1l8zjP0Ai5E+BL7Pq2E29zJilYuY6vUHfO80vewRl6Xi9cUSZBFIbHnx2rmqic5dDUuFObiRveJEXNXHdell2flEZWkAbsVUmv14vQbfLTox4hItiOEqUc92vRVChqv/0tuHTCl+MUeTG+jr+0oBWCi0G/sDfPf0giMfiA2HnxxtaQEzcIsNIXdUBwZrUYEdaHCOEQKZpeTXL6Y8VaBBb6wXgU6FKniyuKGX7tLHWQRuH6fF766iBW6lLzQ1Ba3oCDybzxIfIOoOOoOBOsFnkOTxLYGcqIStAyYe9LHIzls72SHeYIZ7Tpf9xC5/8Uqq8a+xa9ruOKUIESmHenlEbK9ovuZ1Xa7CxgckJJlpLNj1seCAdc4Gxba5Eg3wAu0/LEJeJG8dIMkzxBFj908FR4x2T7QjYuu+j9VUR2Smb4B+HRjLab1+J133c4RmAl6PXS9buH4twfqfs1RCFNo0ViEPihMR1tWnccZsq8jgWG3hiPlJ55enTmrzdJyUOz3E6bJ/+ZO9sq945xQ2gzGvwjmvipNRabo7NAsqVTxKTxPV08P0NFk9UcOmJU+Vc7/B5RUfSsz6J9cAhs2bxV9B9/srbxaHdSPpHewVJ3lFV7I+hKzFGY//jORSi8XJZnmNshlPcJ0d1HkGWc6cvc7HcIYRcqWSC+uP6Vp1Psx1RjjIZ63cUicVktyPRGWB6PQQJBtCTJMLJph67cVXfyWaw4Bc4j1D5oAMU1ajif8Lg3CbFVmohXDfWx+QYNb/+PbhlMwDkhkBR5qd6pTMAb9o42ChlcO33CAdMOYjzjKWvx0TIPAVK0uQxhxjghtCipc2iEEjQe5dWa+Yyocq7HTObnoDfW5ihm8r8cwEq63TNWV2SpS0FrTYdqXFtodabLvmf+cleC067NTQcNOwNibgyWuarhxX96G8KYsmE3zkk1NQu6bNKnybVXjFKnx7IFAo017kFZYM231KWAKyek3zA8pMFq+yEZe60JHcL1KmfatIIbci/ESmg08dmUZIrvRlgbQPJUiW1gte7i8+wTEpNmwHl2DpOfDwb4j+3CdxRJ0jSzt2yZVFlrqFugMB/8QHNIXAxKCiMC5i/o3t2pbMhIXidQ+ZZ0g1ea6LZVy5CCLBnP9810bXk+xQHcQtfV6xRo6JD8H5DwgLYcn2lSuul80AouJgKTtnrQcwforXthEXD/NgCgsdh3hnkdi1RWY1+MpwWd+atcp99vfTL2kV1wNlJO4rspaL2DG+v/vc6yHDNZC6JeUWf85hXI8v/rAdeEz2xknwEgxKTDM4Me3MGdKv9aHKsWBN7LAysblf1zCw/Zo96bM9yeposLhQLbW6LU/pX+/SZtk/dqVXvOIN8u52zxkVykYiyKz8128fGhM2jiAQL7fKfox0JFa/JQz+WtnLQPNqN/ZsVBbX8UoidURSB+Vfxn+U+aAsqEMp4JXJQkvfHJ+k8fErib2KhOZo0uJJVROTfkbfTMjDNrmfDCotr27DK59fncKdIss3u6qf1Nh9Q50LRjqlS9HOPCmKF2lhlxCJmB1oDVTd7aRx3w+ef0ZLN5/UvHePPt3Kn3z0wEGSqU9r6cTHde4fZMr4KMWWvsQLvCBbACKZPxMfuCeck9Qp0lhpdsxlboTvHzqT8UtL7Pel/RaucfJ3Cw+SYUztwComUXBisuwzOeEmYn0UAQyGlXffPd9OAy3N7bq/Lm7C/1ns1vd4IbmXT2LUc7yDzVU0mLwks+gZmsDBHi58ITwP9voxxx3hPxXVct4kZFpWfG6SYJPkL06WBb5NHKQ/7+D4jBa7CTy2E7LiFyivf6MnK8YANbWhK5UKjj55VMnM8IjKK2I+XJnZsLhtoBqb7yvcrw8hIr14RknAWHECj5I8TiX/lU37oo8SmzWYBqRbPgathOAJpLbHlGToNzhQzLLAFILHJlmdRXhbb67ApEw19DMzVYSL0AqLYBHOMsu+JSmoNKrn+riAiiZnDWE/xZSNiK2phpPRXF9TLx7bw4x2alJ6jqzOHyQD0/tBde2xNL/SpE+ZDIE2pvWUCZ8yk08d5X95vuf56Gi+fc8rvOdJxt2r3X5MpMv3/Dl9yhG79O3uhxGXArcDyPftrtm+5/8+850z8Y+6YfJqV8zi/InczwJY7a92oaAp4WgqYekhPSIL2JTrha6UP6nYqTPJQud013BwL6Y53CmwS78kb1p4QyzSQwNfk3dZWVxRFnfMo+DX+VXxfMTVrExihPIGhymOuoNXjajNa6UeRh8682nK4EsUm94nI5CyE1mJB55WFS/Re1yHAffUt7r8QB1FUHyTEeAQD764xFx5K1X83CTXE1cdmdMMC5he7lrfliH1SnOWZK7kT68IPgF9kZFKAHwDNzAcg9nUyjQPyJe6/Pxez3p1XrMEfJEp/EKXsk4iKzsMEvm51zA7vtzF5EjJHdTW9TTDcvKblDTFs26X2qNf9oovg8+Lhyn1FU6doNRpTh2n1Fc5tUKpP+XU45T6M06dpNRLnHqMUv8rpx6h1P/GqYco9b9z6kVKfY1TL1DqX3PqeUr9G049R6l/y6lnvwxLEqlnKPXvOPU0pf49p75Jqf+DU9+g1MuceoVS/yenXqbUf+DU1yn155z62pcxXyH1EqX+L2nD7coTMr5u1clntBMZL3bL/uUiFPo4deQk/V6GZzJaDFwRpM5OsdODNNIuTJlJibl7VvczJ/tdtPRG+fRCV7bVE4duZFbLNzmLd85J3qzPxwqcYJPVhvnVNNyg0nBZyQgrJWOaGWy6FFVoqOGGlZIRDpWMcFzDbToNl0ezhiYqG/70EvaZm1gO1YVO0ZRrP4hRFwc5R+mR1TqwNwhVMRf+wAESWK0ihdoWmhb74672PicIngO3OkZDPKPzQAyg1VFruS3+FYYVcqlsvXHIxRY5oEbzFqMWj6A2gpigFR/iufdq7xf+FuHFMx5w65EF8uuR8ONzXavrTbn9xrFVOyzrPt91u0NHWdevyOC79QV/XdY9xxLDatZ1bBuAAjiSQdg2FApIiLKjQGxCpkDIJzUEZhNmnkM3er8WsSZ8Ni4m0Z+lY/375iNG4kIv1gcldZxdIg0+lId7bQ8HY8MyGMhBE4JhUvY3EJrhjd7K+jiSXpPBPb6Xl+7XwXSck/03gZMJ/McEU7+GqT+CKQHOmPrrCiB0nSGBex6IBesjdq61r/MdovHQckvcKE1GeLS+bn/WUapwioGNkXmL4PVbtXiEN4YVY0S6b5qTyv9gZDYQsA9++ngyRzoTKUGXG/ygmk3Fg5Eck99me6ddYu7OW2wFwp9EbztmA01AcHL8e2+OKNCYw36xk3yXk+xyyFj3PZfMCs85tC98um3KSTUssQIrsYJDMrYQiWsCIWJjOLwbq4b3+kwfFk9vgMHYj4r/549Joi/xMUZ8yklSVmR4o2O9cT5jvTHOOo2KAG8u7hwmEC6QATFCA3+Jj2HnfTEe7/2HEWodabIwNGE2EOJgtpaYqBMSCSwHuteWfTKm3feDd8ZUNaLH5y+NrAysrMRBGaSYviWmgb/0LhlqUGveEmix6f976wjL4AKnAFLUvhCRukAsutFZIbOOUbe3WWN7rZtvNZr35ZnMTM9jIYrGB9a6cDDj1+g3E4PlpW6+2WyFt6a/RQyX/ja97PRAqmAbfWVDxr+aNCcsmtff/HrEfqjpwmdJDFclWZBRpvFxhU9k6RKB93jX+2S+yk8XP4n8eGYz95jpmSm5+GbL1R58M2RqhIslVkGIQbs2tr/bxJGA3sE8wGDdYuhHcQ9rMcJwj70p5SAQSuBee/iOpst3KZwIFOAn4iU6subwgH0oCacSyjiQgBxsp5BF6Wux1zCFzwunirgMVLaWJ8AGEFyGmTesD34EDpyhkW8g47TkFQViMJyVRDYlu3cHHLYY2DN+cBUzK7eDPBkU/hICCTZggTfEfS6h3EYcDL+YUsS7fWag7AOAZLhWFADjbRi8/twlZHEwhX9/Pyg+if1A9tyUQIoBbMRowCf8quKVzELxag5x9RbMr535fsf1T74Ja1/9lHoRN6zYz20eVi94c6VdEvJ5FRJ7aQMacyRd55lbsPMFu3Z6iBeDZJ7HJR2xXIITDPtcCLyInbpYwPL2F9jgpfnmZv9gb0EuJD9IrBEvUjXfVfOkdS0QlBFWsyK3msUrwQFlCJboW8NMIx6lP03wSIlihWMBqL62vQ7TThNcUFO+VykfFd5IGsmjWFUGUsCDcADuJiKVI1jIKUubaWUoFdmFMN5TClIK/gFHq0E59OaJAAYP84hKaLEDdsjvm5nfC59AjRwZdEWGzUyGzRUZpP9w+h6alLUablEaQmXUb8AQV4f0I3axEmL0LVk0GxcIt6gIFvHQIQqy373Be2MXzcQCTY0Jl9hieK/zBrNRdutP7NKP4kC76V36EfxOFL/9r/U8YitCotXjEdia5NZjEa4DXiDQwYpb2O3LrCOpSmTwF8WiwbqGfUSqoGosoPK7wktFrzs+aR06M+w4hPBjPzgc9KOiip1v3AgywE1OYO3iWzX11R4NgQUcVW8yF5ERy1oFwmb++B21UJjYbhSkhohLtrKrbquIYglA88RuPrtHT+QrILc7cV/vytx0CjXIivgz2OQpYUzi6/YFyYdVW5krjMJGKqwL4MCrJ5VA9KiyDleucpd+HOLRt+5PFu6+fHxaiRcVDtKnlSyXX5ZhMddR0uU8pZxDdheleZI5XsFygt2PD2FtR3uuxMP0uJd0mYfFxypw8dKmIPaY2teD41X8yjXoBWKBhFeSpiRSwvYDzdbFN99RWzMKU1cOtU/Dx2emhXTVhPiIch66WFYJUJPPw4I3/7rKsSD12DtG4p2GH9F//8WuVin6mMqOtqr2qua9kJI4wUFOZCOy8MW7Jp7naLPsH1SLTKTX9vu4Koxmhu2e6ae/xUfKoKW7xa1cyKW7xZ38yJe13FXK8aO48Yo0C5r+DC88Uk7AfwcvLBjffpdIPK/4qFQgIRuLJRdVN3q8cmQvkr/R63PWezhrwMF6LispxndIHowoeirkJ5cf7vTiYwIz35UrBbksGXZ38vefEMj51qPad2r/LrDWjd6V8rPHLgEbi6TgcbeA+oH0v3dEutr7CP5ckTPyfOzMTXmFnkCMZbxlQUhoqero3yk47WbwPrIKfM5zl+Qp5MfwYqslMzpEu45QAqKy8As1lUTC3S27+F3vycp51a1B1V2O1h8YoS73jqG2gtFcV8pnXoGmWX+UXH76LG/qtV1fYxzNYtFyWNXF0AKGEI3RSraQWqRVBciSLFIL5ar2lzjKQ7GVrjhWUI6YJAQid9gkL/DJmnUgEXIGQSsySacf4w6m5khD+J3nq74ZuJgG6dFhDBrakTNo+T39XyP8z2CXrERnWaPu43xOH5oJuM4+ZWZFiIOB5TRW1CenIRrZqs/RGYHV8TgugS+pEqeFXYuFXr9rFVZflv5gvgW3fKDGLVJ8F7MsszSveGphadLUFJkQwnxDho7w2l2WhTycTQs7h9VIzeXAxVU8BvaMOMQtH7LWUo3bVI2zi+E4p6crcQZsY9nBakdeUAPhLuZJxjS2r+14dKPN4sB9NBx8DtO8Qoqb3yMYecMxWDEjdBjw6lCsJTIyLMNjGcxydaMmdQQX6Ixq5K2WAAmRplFd/qG7EiEPjzYnYSHf7hbMeMSTfl6j5p0i0or0DzjYxKuACR3md9Uw94U6lRyv9/FwzCpH6EA6xnedVol5lyEW0gWCVyxIhzJZBDXZFUvnRDw2c77FyyFgeNlS1+RmKFjFjK8IdY4L/5iNyBjOIYovh3flrJy3vRvVpqKhgOcwipG3HxD4r0x/V6tkudbzWrQJxzqjFBmSmV9HFR08K7/vGiVUIA1FQkm/InVUMa8/pOPIjMJrITeVMhKSimwy98Q1ssVCtsRO1XUmkQiesan5LqGxo39YnzJ1NdfIKB5O1VKhnRny9B+paq68SbQJ38qf4fiuyx7lpM/omHJZdlviLI9PBC6Dmx7HZgT32Uvfp/RyNTPsWaH3Jx4++fzK8vU8HSTl2CsnQa3A1j4fQguR7ReJNVohJ3g60E7kZzXxHCw9teeM+sweV606xmaXAIDbKQNuWn5Gm5vjM2/RTrEssc5crGqL857x12/MH2nMl8b81Y0d0kpwo3nIK7oyr/ERiu/2vFqFub6eZ/MGDV9JGTnxA6f1FuoQ6roRp04wlWR25G5XOzzveg4wTNAxSWmfYS4ScBaMSzr1ZmtMvRIDvqJqXUkZmcT+cOr1bJ+OHNFvMPWO0Dt84537DqUcI56F5zTnu2uE54Kz8lwyohKcFaxRUKSJO4TPgvX5TK3fgOOzUd6SBt5dH3R8gMooT60u8U7HjXeATWpqzeqsl5RjkjU4Rs6wWtJB1Q+Vupacn7qWrD9EQwdVuBq7Q3KQiVck2VXFNfvbMs1O0INEkemRJ58PN77KxpFlV1mX817Ezwdp7PH5MunXOA6WjwKm4kfYL/Pd//qdGHfs6HnchTONmDpVHJXT3elxUOj7jJbem14qlo/Q74o+0IOH2pNLUvmY8fl6xuUjlNdmXECg7FKVU5Jny4wND0BZ8ntyfInLj8t6QH/O70n+ZHEhfV4pXR0pzZ+ml8pRJNYEH+dzzQsSpcVhDeh9C3KFRjnEYm34fQt0hUg5xGNtDP5aQW7K6es8zZ/hW4ocAky7AZ8odsX90Jn9IzT/IY8eSMgkduF4sz1Mi9OIrKdu9Mc/gSzGF5ipGtK19JFSlmSlOUv1NQraLGsUzlxh28XBQKL+B4gQk8I2SyC4U2Ganr0jJQIV079ney6Qo7GpA+tMSSNrvqzz4zjPKvDsKjZO+57UaU+9VqsKpdvtJ29Y9+pM21z5NZpNr/DWBSu9wY604Cwj7aygNauKadhyDfbXSwMiYLrXs8dlucMxwSEY3WWx8t3PPIC+OPPg6/H8gsgCPpXLhtsPDzVPH+BNBuI+8qU5nilsjaGti6Rl9jOklPGTayCUBsCC+C1te3zIkzsA7FI0/LPfr4aPXtKGT/MhxdURZ0dleqgDoOzKSyjb1SJej6lzRmio0Tx07BjUv9EjfVOjr8J5nkkYeDmKdRQhtR5Co5jwiXFDbH5eDelogSeQ5ZjTNXjaQnfhoKwGJBwF5PM1QCxZv6/wPKTOymBy9v5otwXcR0EdkHAUEAuAY74LY7pfXk2d7z9QTyp7KN0aJKp6LRoHKQJIl7Ir1+Lysc5cWJu36o1YAp4Xec6HOKNNBt+LJgdjQ/nNbUut6vq1MFy7QTXWg2rdye399vyFmYyDgK6Tn2tzbP1WWUP2C7lNBxKdJU/FDTgccL+SEIRb9wa796ysvH4mNt7KnuA2bDj6rL3FZYFXVJ7AxgudBbnaW23koumZTxhU6c+HcvnSS61B3txut2gFUNPluEScpLmY6X4ku5UQESmnSWZXcaxlUih56pGajyVDYI1DBJR8rr3lOJAC0fRUH4KZguwqeJthjG7AHiMbKX6UzRas1D6zg/fk8aHBMBjkrAt2bYn9YRrFS16JA22KDUgHZfao4o0XOCIZYAV8Yi8KyxYSwMOLRgf5fGdeXSRDCXsww71yk8hOgsfwmZnZDn7mFSscMYPGjNrhT2Mn0PxTJ57AijGvpMYwrXbpnUSf+BqFoPcOQrwjXheGv5uNodToXt9tJOXQLarodxlJIqcu/jkn+WTi8v9v78vDoyjW9at79umZzEz2DdIzhJAACUgkrEIaISGsgUNkEcVAEiAJCZlMAijCCIjACcrhoCKI4gYcAgqCgIgKgigIHjmAIogsonIQEWQnS9/6vuqemUCQ333u7z7nj2vn6Ux1dXUtX1VX1/J97ws5BIpE3P4UcMfbnhED5o4sTraHrdAnipYATQufnSpof6lMWwpUrFEkbN+Pk9riPh/ufmLDkIzI2USoBJ0824Tzavvhm4B3aN0x+frueutlTV+0DeM8tH0pOLUssA4D0h/aknkrY4yTNIq5uwbhNFHvjzY82NzjhQsmLgIaopcrcpniQaEuvYhmajtAYeIOLbL08YCgz0i8sB8GwEoew4q4Yw2G6KBDwiac0LgAaRslgfwsiXy6ToLN8gzA3BQ5D9px4huGCWrB3s8kGd1OPex/qumYwW7L0wcbtRk0TYSA6BUEaAZ6KtkYL5i6papjOKsss1iXWuScDcwtrvMzPSdcUxd1XTiG8NFIoQS1mjXKCoCKYW0CrBKLxMFGthaaMrYDA1MIsXvA6pVGRieo8KnQIaI4l8ZBKab6hcSaCzPnCqGnHXZ4GV8Pr/BnEQRIghZolXgnBITIaGCPy8FqQgdrqTTbwSi6IlcInWVZaRfWi1Y319vNrHsBhSgUbbVp96QrcoaLVpH+hEnsG+dBXZgwBhmOeOe4hsvKIoa6nRGikeHuihFYCjEc6wJ0kRQ0dDEIA+hhMwE28GCAykjrpheK8IFAGpwY1MhCQHozAOia0djTaYaQwQjALIh20VHotIOBr8fJ7EaduCCt8JcF9QPoXKeVqajR9ywCVrE9oqkQsSQcIucMkqY7zSAuEQiNjKCli1beKLZIJrYgMI8DlRqQXRiufyiy04DseEV2ILMiZxSVU7DHGa5IsMgZLQbRGa3LhoKNoXdtHmeoaFYaIEANR5S5zNA4dE4zGqootWgRQ+lLYENzhWDJCoqAoWzOjpXtAFR/NRYpiEYg0bCq0QCInBHyKW8BLIoDvgQi7XKgGQXtrMilo2+agJ0IUzwBO3zc5KT5IEUSXymai7pwAOtupQ0LcheFPSfiTVQWNtoKYtzQ2ymtgGetIPqOVhDeeCsIE8PYq8ewo8gfNAt8x5V+1C5GQlNwQGkdaosIloJ6K91LV6cFtIVAp9ACX5zphbTTtmHLcCKLpJeD/s4mbDFx4dOZMqSJ6a+s41zhytAKeDKCGJZzBINhjcQKIGK4KwpyHC6FIjfDRo5NyiTaEYPC2TawBEWgKf/3WuKKgjQ80XCoZlEMX3doUiaFw0/DxKAsrOhAsDrAIAoczAALCIx13AF28Qrdn4/4w6IB0xMOaUPxW2MC1jHWjWmUcVrACoBOHSYZUZeZPWJgpAEa1pYiGdg/gu5jPykozxobDsAEJZPG2wZgxjvx+fHtNrOhA/YtLuQDgMVRJ61uwWUWg8DenaOy3MJkq/W4gALUCRW6C71oG7LSEUkl7e/MoraimDVOWufWIsDwABiVEJppQRWtkkv6stP0GPfibZMA/d3nc0wktJc1MjgIoCtl+aZSEUDBNRQarFEMLqO5ctlEm2gAs1z6EtI2jt8NfaXUtUxa8AUaUzs4v0xglCDalAEC/UOtMOgGqYxEe1kMrRHhDimJICJ8xCJtZ/IIyoCPMAupKQKXGIFSETV2LhqUmBTCAANQygYKV0eFW1TmshUFihfETWVroB/CSlcwdBWqjOkt3uOkQz0g4cVBm0b5QoTSlm5DrAIQk0ovq6F+cDcMwO8U+enZtBvWFHFtEARaiBwh5kL7K5wqHOoL9hKg9CqGZSHuA5BXmmHQFjoQGJ1Y14crnjQqWIKlt+yiGSKh4kNhgF0kiA0gwkHCwSgVBQXdoUg4SNU8BWp6Jhtlmql+LlF7k0kUTMj1HqTkA+DrYp/MNXZQL4PnGEOFT5wc/TLQmO2v4suoB0vFO2/R94E+HeX7/oN3BrKTKvjoeZASrU1BOGhg7DKo2FYMS7Fmn5KeQn9sBJ48ZBcWob2o4Oh5ogYLYX+JgyHRMNS4omfvGFDyBfB0I4sTBqq6Pi5DjEvTz8p2L4xFacjPq4cVXjNo5vPwSDb86+eyoE0EcPbieAIqSwfUQVqRxgEFpp6WQoXPGXtI+p0190drxABKVKRu9QCHLhu0jQRldJWMRc+04XSKOiuwCwA4uhZZRxhoZhUPBY+ER0XYPqeVpJmASn0m+k6qY1iYUlh91LP0Y2FfyqkMqRrEnlDonqt4+l2DnooWyz4QIewVJHxfWn7yRAOSvuAsE4iMTPDTE82B+AZciFYARYQUqQOq3/4yh9blARwbDTkOFVYEnWhWKTHM7DMFVYEkUCgNiMwAkRkgMuiRBBA4m/Kqn08zM34HKdNY03iPYjXpweFHgMSRPAeWXcywKG/4Y+FCh6cPEK4JeJlEdQfcdE8BY2apgPETQQcPxaiOrGlczihdPZOu4Q7pInglJMfoq3XINW2xL+PU0cRtwgV6GlD/ZvwE2gYyhnfKiPzAWohAGW/RG/BiqsIHEm7aFRcWqqVlmBqYpFJk5UGFeplXqJcBMc+jgNAUgzocj2gvbJ1FWe+QZXlSfy0DhCPIvu41Yt8nRVZS+UwHXVjGCqEpYUYnyAoBhkzKlorKDQFmImgcovHt5qi37D5zO4iJhQi4HVnpdrsBbU4xVNf6N/RxIeU1A1sK4SUzHQOpw56Gf/D9KQoycxqt3mjmdQYTjtupgM1MOdSjWCIgNxsu4vn40mDLiWlww/6RylYI8oCVC9oc4NtgMSvxmf44PtQbi6z8w8i1d0RuEkRViVaJXKfaJPgS0Pq0CLVKAkx9UEmAxwph3jh7VBLQMSA2DYJg0VfOPsimlMTQsCQNisEXBuQ3sBiNSMYgIM4Sx74etsCrOxPVNpqowhGhmBe5G/BFQOtIu4vctHeXm9rAmb2nL+ZA20815rsIjLs97/xtVc+pVY90LpwUq3Ausn1I5meplGwNCOIa5J//g3pXY1epY5TYWT0rfv7YFQbz28qglGCwWgJy1xLoKpEhkgN1zriywHLcQG8rAJverRyC8LYeuImVsgQy1iNfPe2vgF0XpyNIvwe6iKA0uqhdMe28WT8ifTaTo99zk9J3SG/MoI/SavuEFCotMYCBCxa6oIMwKnUVqXCZcBXI45wIl0hrolGI7jQMZBKow9BEBJFZ0XgF1QEV3p8KnL4jcaFqkCQZKiVsLmy4xq4A5G7fzmnFwNDHbusVB5hMek9BQQwwOWS3mAOscDY+XIzQct459kIpuIIOURQqR6/3RmnvGDEId+Ppt9UsXT9H47dKczdOLwYMU4wUphrqo2b2qF591MweBfgCC0I+mhR9Y4B7BE06XHACbxdY35kRf4dT9SsRExJGjvoG/gLahvlpz4TeyloUFVYZgzsDdlFlxkOnIfQlo+VD2WilIHatZB7JVtBDYHLQ3lEY7W2FAaIhlINekYOgyCFAhPrbRKhXReiTgsEnBW2gFGASY2pECkB3brxNCj6ScIUvvheuOiuE4Wobh76REflpFa2ehi024JP2Iu5BaVXgqUiPFFmBajvMBTsYzMWWPnCaCSsi1Av4cIolXQXqNIB9t121yiTKFB50cGmISpEUIsw+fQimEbpKoGJuMMNX1jcDqD2vgMIkny7RcXQljduAy8OidgAdrU1HYPJyOnKaLhJ0mRlXFszSBIV0ip4EiQPNZSAjHWAnq+uoMDWBPtRUpiBXMyRpY6XTN2HlGjBLMfUlUeufPWmRRBwSRVMy5IbEBCFmnTIVhvm1ErsSrVJO0JpykTuiFoSrVj54uhYA39oWuazxdKhNh0AGOsuBpWRnOLM/gqq3ZLlhBIIKUyZGrEV7rD1JjBcR9kQAj5z2bhpFkQvV5JxGaTehE0uwgkMcdGDjKsvEzNMJCVtsNzJbOiPGbhQtLEoa9EsWu5CprPgCXLUSu8CgIqWv6ExMkDTOIMDdpP01DQsfQKJ12SU6kyyENfxwXLLipMmFfWOQBs4Dy0vGLFqznNOBED+CL3WTkrpJOhiQeoOyGZWymaUjkDotl8BSz2RmqAyzDvJkpBmRzJAlixTM0gsWHb1EYxtigTctCNGwadQha8HPBn4O1S90LTLpuenTSGVgopGUwJqmUQpmGI082C0KzjBcd4dVfoTlxrGkDruAMHTrESdbBR02sPZK5+tiWBmzsIL5iUUC4FpYJ+0lOiSu3E0fsovBbpysmO4QzpF7C+dzEI6/WhA/CIUe7owA6WiQoUDripQq+1p1okOMlEyF0rQyl02MKHRFiPa+ZVZdo4kfv3fiYkDaGXcpw+l7R7OPNIxHtIi2LCv/PxMJoMfDlFOJ1WWCpZJIMUqkjigk/6S1SxMqglY6UNmz+B8VAAVPfCk6bXdEF+QXq+Ou0QVRsTqYTaLa4umrFSQ6MmN6Mb4JLW2ldskykDYxaP9w4aHvoEHAlxBa8GT67tHXUINSwJ1C3CywSDqwy7c4TTA0hI+Q1CZDIXSSxCxYX7YA6B7GCg2GDoD1vcQw/B7pETjPFqO0cBv4WSQzVJSGGa0iWaIGseB1LE7VpZNaKi4Y5ESVgZoyXsKoXNS7kRpMAa0XTQPZPT2y+fhB3wUlBSP8CwCD11s5MFOEwtE2qORFqxQvk7m0UhwtjWgFE9dQ/NEQ0Qq7nhaoN6y7GKTh1K91xtKZP/JJ3ke/sTGzxehZzmhc1KRfpJgexqnOGLFJD26qq4kYOwR7eyts89jpTzSLFswYAYKZjq9aF9J/ifAvvtA+uRcuxJrFEIAkdOpZvZhFK/D36uGnNb2hhYGPFq7isWcxQzXAsrAghmTSL1Fophuq1gAL5VAe3OGADUgDg1s0iLY0XqQ/9jQ+FgYhALdgEKMA7sAAk3Y7rlcA/aBFEAVniKh3hiKMFRWfgYovuBdsbbPuDlcCaQeR6WZbh4jNGwJuMMxmlJ8aMZTtzsPTsHnRFnYogoSzAk8/9vDZW8cXubTxOGBxSwBzByB7WgA6Zx73s2st28OkP8NUSFQtLGbSEImI4IfMgltwWgreWphwbcfLXfj/cwhrX86hAGnWt3CAf6hlF9s4Ro/ByqBjVIo4/mCbdFpQMlgMRjX0dxH8EjCwpf4MsJTNLUGBArK1ii/E3wVcIU0QkE95XAtcw2uVX8mA/TF1r+JZUbQQjL3aGCKgfOcVkRjS+POQJG1CZ+GXVt4ZjuX/Zc6FK7MLYBv3huJJ8wkVeQUvQaBp/EmOxb8O9DXsQ12kF04ttUma5VwHfk0wz/BMabr2kSyvWzgmH/hfDP+G2a10JMkxUGoo/iIlzmIXmLPzuAgOag6gDADE3QCscAbYhXFjttgFVxMU397K949hqWLqCE65XM/YZiQL27JhJuxODVsHolfIwAR7xQCuPR+RIIslTYWLaQHwosaNa1MiaLEr+AM8Q+BfpS2UTraUvuPQeluapaczPZ5p07xJb8UxDgcqjZe1yAUJ1sT0/q5gmuEfGXM0zTh4MJxfhm4ioY/gk94oK1t7JE6f4bG9GYibU2lBlJCMKASgi0GGN/D/Fc4ez/bEaZg1fCFrUvT/mzzrKGB0p4IXS7yvFa/hQS9oi1L9q3jIN605tG5C7Yvm2NbuXqlseZ2DLkcXwAWNw1voDoExHSbq9tYsEyA3i0ZgUL/EnkBbkwo7PFKrOB5zada4TD10s+GL2YOfPbXHITKVeqBe0TBEk+bzYPzN4O04AHKhH8WVdq2LZxwhqN+jV4zVq3j2O4dHnm5oRocIbPqaVwI5DUzJtCJvlzAPSiVYXDiL4aUphbCXSZvcRhWVc6MfpVINh1b/QE5Kv9jSITXgIV9AZUJGRalEo7j8rBKM5BV+JytLHwB4q1qycwz0FnPkWWN/gYNGOweM9lHdZQGnqPQgaK4kinyRH0VTqyxwKzsegFyMsMjSaWJPhMaF67MeAKyhLc/Cq+KDNhjYHmGN1m4SUZ0Jqt9FlAxbkAccmaZRTwwSzcZXlEGf4XuuBm4LJUdtKGhBFqVHs8N0S0v7dejpdYKeMEae1d0EOks0Ch01Wo1Wy9OWpeU5zmjQwwV1cRzhjQ+WVhTniSWlHjEvf0xpXr6YWzxxXK6Yl+vJTSHSJ0bhtFlLjMRCvGQWmUOqCOG0nJGzcF5uFjeHq+Iy3LkT8sXyfE/FRLEgd3xxfh4pKRUn5E8odU8R8yrc40vGigUYZnzJeM/43OLxj+d6xpeWpBB2aHV6g9FkNgsWa5DN7nAEh4SGhoWFh0dEREZFRcfENmkaJzpdzeKbN09okZjUslXr5JSUNm3va5d6f/u0Dh07de7S9YFu3dOlHg/27JWR2TurT99+/foPGJg9aPBfhuQ8NHTY8IcfGfXY6Lz8gnGFxSUT3Z7Kx6dO886YNXvOvKrn/rboxSXLtERH9MRAy2giZiLQklpJELERO3GQYBJCQkkYCScRJJJEkWgSQ2JJE9KUxFEZO+k0vRmJJ81JAmlBJ2BJpCVpRVqTZJJC2pC25D7SjqSS+0l7kkY6kI6kE+lMupJuJJ30ID1JBulN+pB+ZADJJoPJEPIQGUZGkJHkUfIYGU3ySAEZRwpJMSkhE4mbeMgk8jh5ktbCTDKbzKX18BxZSJ4ni8lS8gp5jbxJVpLVZC1ZT94j75MPyQ7yKdlD9pMD5DD5lhwnp8iP5Bz5jVwlN0k90dAatHLBXAQXy/08ue3w8rLJiycu3pA+bXVlSsaod3o9l50zuPfSsR07m6uPfuiwLnZHO95ovTPMvHZKZPbO6G6t03MWZJoTqg8vcEWvTukQMme588vM7qFGt/sri+n0oEThsU1DmtjjZ28ePnd0fuFbi3p/kDdjWanYN7tHwcoxfbolnvMmtTe9e2l+tLGoT6vohVkr7otYJiWMX556f1y5d9xAS8y38lCHYWjPzNbuVNvWiDZJQSWbNoc5PumRHFXw6YcRweHDhv39hZYpybv2t8rdXJGT0GzDAy3afz40OqzV2eqOrtRx7oImj/RvEZtT3fmtEaPTXeGeLyNcrVZkFaWJ0ancoFZxPaMKw9Or40+5XSFhBbO22ftN7RY8YFROp3ZtU3fkN3v1m9LhKaVdF8WtOXYmLLh0Yln/nA1ywmR3Yktu19UD5qgJw1o1qVpxuHmrJQ90b7r0weSe3IG8bGOrJVxqdOazAwbYZa/r0+qkRF3Bwc1a7nhqO8eqA9sjogbPi4uvjlmR0PrHB4d2/sfg8uguG7p3GbGxy4pHspYkJoZ5njvgavFOG5t9s+vEfcmbUxzOzfrRNnFzp5TwSC+X5mhOZwTlsd4I7/5Ejak8dXuw/sTQ5qbyLv3Tw9qM69D6qCmt/YzT6SMy9icmRUR3Sus0cYsuKWHF4aau6KcXe8zi7BYh7Y9Hu8UsOc4kneNtXGVWX9GSul1e3ip1WFyzBwtyOmzN6RgWUdplf3Lz7R0SMqZmFXCu0U+ObjlsXE7FO4NHDWk/3JtXlp/cd+ATbVK9g6q5Tg5dZkGn9kn3JTitUzplRXM5SeYH5/UvGdHGXR7GmwvkFRH6/CZ2c443f1d0p2BzQcFhV2irilBb/Bvenlx0wQOZzV3t4y5v79U1MyFrUuz3zXsme11cG+FqdTdHSMbCnA7dMpq3ar4k742c5Vx308g5seninpy+NpMpXd4yyf6QPlaXLkfd4DoaHbPmyh083s620MHPdIqekvhmu7i5S56OanY0dWzrmTOfiNO/8lBi+jOLTiZv9oZHO2ZeXBLEHUi2hz2c/r2B+7RjWIulXedFFBz+i8Watl3u2SY2Jzonx+sVF1YHC4buC6q12mvNYswL3662RHs/ym42ZmP2tLTknGlthq5LTQoV8/t6/1q50OPN6ZhkW3c+p7mpW2ZTx6RK2RE8Lz+h67wOGa2in10YH9K0Ws6NCZ2X/EC3Y9ygbeliUmjFi8+Ghr0xMcTywE5vW20kkdaHCA5O5us1Wn2drrbmluGm8cZ1OjYPEQ7a5Xsd6675nCcu1arOm3V1Pu8rPt9z9fWqsy4gims+39/qfM562eeUb/icNQG+AYf/sZr6RmOor1Mvbvn96+X/9+Nbv/NU7aU65eFzty7dqlNS98d2wp+HC3V+t78UNxtP2S+T63cJ4POubTyXjcs3MIDP/1aA539DDltrfA+eq7miPllTc7lOFas/k+cDqqXOL4iAGqpvNOn6Rspzl0z+d7L+//W44Xfeqq+t91XxTZ+A/W/ANb+ztt7fQOtr/S3D/1RAmWt8rqt+Z51fqFSqvnjrGpWUv5ncDPSub6TN3bpXiRsXtfdeR92cevnMMXR++NTv8g+HZbgonPZD7dcH8HFu9A35/Gl0vvf0hfrj5+Ql1Dlg9t7ruzdiWO79m/JlltCWF67L50+is3/JEfn8T+jk8mvkSyzA6r9eqj3P4m3u2XX5DMsht69evsoC/HP5LfkCy1nB2J/lg9UshsW18kUWYP0zl+Vzp9CZ/dRB+ROWGsf5SnrN7wwo/e5mv57Y8cHry/+2tNvM5N3H16z7blntca5nm4VfPb/y+OvyCS/3/CX5+EnMzpb55+q+/07+jDoHjXnv93Uf3dxL/bmnztZ9/envu6hzzJR/3dqzW95LA0Q8/Mbvqz+4/i8I8Pk1+RxLcsK7l+Sfr2JkrWfsqdu/nRVz1m81xw7Ib1Hno3NO1Rz9CH3D896+uvU1TI3bdFM++wvGMPW5S/IP59DZrP97NTsOyvshwDIq35/xsSnzf5FP/YDO5DHbanZ+K59EOdTIh1kevuBuqNU/l1svn2TuOtONmn9+JW+nznesJy/veP/mbhoqy1F9/LUN51fK57zcqOt1hzbjk7+NuHLrIKuspf133ti2k5Ui8reao8cwO3tSj8m7tmK8vVI++m3PUfkMBPi4Rk34xFs31ezMn+rLDmf3OT+K/0k+z9zP++uNO+1zXt/uc1701yc3u1aN4XC3W6qzwyP3bu7qsTfy8C9bP/5u+cV35GkJm87+Y8uZt+UPvA+kzDv24rsXV8tHvNzEn2599vH1V2nkKyacqT34jfw2faxF/9fPrtl49V2o7vu/u7b7s5vfUefUPh9f3rzj1nHqjMyccWzJ6subIMCmUzePXcRqef6F07VH9svQmGOLV/+++ZP6ExBg0E+1+77Aunii4MD1bbvkf1Nn6KiXLr+5Vv4Civn9DfnIYczvqneu1f6yH0vaxvONfPAQq4sp5+sOfY3O+UMO1+7Ziy9ky+zlF19/nzUYv1Cv+J0X/E7C8Ro9nWYph4EM7EsHHPHCbg2nNeroPZPFajYIQbbsYEKG0HM4PUfRc+2iKrJuadUzZOOy+bNnkPr6yz/tWv9S1dMzniIlFcXF4kPZHbNKxYm55eX5eaKnFK4z8z2983Pz8t3liUlkiLuiZEyuh94ch34pJKtkTKnbnT/GIxblT2Gzwom58OOhT6QQNpfEyej48onFuVNyRxfnp5AxuSXgR0OW0/Djx3gq3PlKlKRHbp6I89ZJpe48Mppe0WCe8TDDFIvzS8Z6xjV8vDx/7IT8Eo/6eIN7BeOLaT4aveWLtJwMoJ65kH82rU0hA3L69fPJQikMneyCV0+cUycmpZBsd/6EXMx4fklecmlBsi/GttRnTGlFCX0qP6+RgDRX+Q2DDKzwTKygmRhd6vbAteRNFJzzhCrhWWGhsERYLewVzJYqS5W1ylYVEskR/Esk0rpEYRMXaYiIStS3SAqPTmjZUdehU1hMWufmrXprM7NCY9t3yegT33pYr773d9UMHR7S5KERzZJ79st5OPWBcfzY8cFNCwpdKUNGPtg/v6hdt8ncpCl/ecQRl1fcY0Dl4842FU/c133MhMGPEs9UaaBdHF3StvzJQaPS3dNyS7PLpj82UZnuE0cwtEetzo7Tfpz18xqDRiMMzsrIIEN79cgmVHDDiNQvuze4RPjXj0hXkoRRHH1eQ08DPW30jKNnd3pOp6cMJw0g0wAyDSDTADININMAMg0gy3By9NTQ00BPGz3j6NmdntPpKRPpZEthe0jbwaessyM3aL5YM2pS4eg5sTkjO45L3LIh9Eb90336bjme9eLl2ry5fM5IQpL6HN0xzVq9OX34k0MXDnHvjRowvupgx/wLnGVUxWvtBl/rMKRd6w9GrB+62vZz6tXyoxdGjTu9b0zFzKCXSn5d2TZz97fbB3YNK8q6pQkdaKmJHtJOeKk89otvEvQd9pUemfRB65ZtKiuO72uelztkQ3zYM0+aV4VqXWM/bho6M2zjQz/wP5aXrt/bs0f/hMSat7eW//pLtrlmU2ET4VBn67gux9rPbGps9XzRl5Mu/vjUoG1dnp68aNGrpOuvP7aAGvD+efx5/Hn8Z46nZsyc9fTsZ+bMnffXqvnPPrfgbwv/vuj5F15c/NKSpS8ve+XV5a+9/sabb61Yueofq6vXrH37nXXr392w8b1Nm7e8v/WDbR9+9PH2HZ/s3PXp7s8+37P3i337v/znVwf+dfDQ4a+/OfLt0WPfHf/+xMlTp3848+NPP5/997lfzv964beLl36/fOXqtes3bt6qgQkK63v9Xa8d1lvDwiMiGyy1+lZa/3ihtcE664iHRz7y6KjHckePycsvGDtufGFR8YSS0oll7nJPReWkyVMef2Lqk9Om/3n8efx5/GcOdQR28X/7uEef87990IHudiLIhv9wV/ef7ur/jx90tF9fV1tz6+aN69euXrn8+6WLv1349fwv5/599ueffjzzw+lTJ098f/y7Y0e/PfLN14cPHfzXga/++eX+fV/s3fP5Z7s/3bXzkx3bP/7ow20fbH1/y+ZN723c8O76de+8vXZN9ep/rFq54q0333j9teWvvrLs5aVLXlr84gvPL/r7wr8teO7Z+VV/nTd3zjOzn541c8ZT3unTnpz6xONTJk+qrPCUu8smlpZMKC4qHD9ubEF+3pjRuY+NevSRkQ+PGD5s6EM5Q/4yeFD2wAH9+/Xtk9U7M6NXzwd7SOnduz3QtUvnTh07pLW/P7XdfW3bpCS3btUyKbFFQvP4Zi6nGNe0SWxMdFRkRHhYaEiww24LsloEs8lo0Ou0Gp4j/8fbP+0GPidCQnYLjtwfT0hHenalZzo9e9KzNz370TObnkPi/ws=" @@ -190,8 +192,7 @@ "ABeeZee,Italic,,,12,", ",Regular,,,,", "Aaargh,Normal,AaarghNormal,0,,", - "Aganè,Regular,Aan55,1,,", - "Abel,,,,,", + "Abel,Regular,,1,,", "Abhaya Libre,Bold,,,14,", ",ExtraBold,,,,", ",Medium,,,,", @@ -226,13 +227,7 @@ "Afta serif,Regular,a,,14,", ",Italic,,,,", "After Shok,Regular,a,0,4,", - "Aganè,Light,Agan45,1,12,", - ",Bold,Agan65,,,", - ",Extra Bold,Agan75,,,", - "Aganè S,Regular,AganS55,,,", - ",Bold,AganS65,,,", - ",Extra Bold,AganS75,,,", - "Aguafina Script,Regular,,,13,", + "Aguafina Script,,,1,13,", "Aileron,Black,,3,12,", ",Black Italic,,,,", ",Bold,,,,", @@ -253,7 +248,9 @@ "Airstream,,a,,11,", "Akronim,,,,4,a", "Aladin,,,,6,a", - "Aldrich,,,,12,a", + "Alata,,,4099,12,", + "Alatsi,,,,,", + "Aldrich,,,1,,a", "Alef,Bold,,19,,", ",Regular,,,,", "Alegreya,Black,,4111,14,a", @@ -320,6 +317,10 @@ "Allerta,,,,12,a", "Allerta Stencil,,,,,a", "Allura,,,3,6,a", + "Almarai,Bold,,33,12,a", + ",ExtraBold,,,,a", + ",Light,,,,a", + ",Regular,,,,a", "Almendra,Bold,,1,4,", ",Bold Italic,,,,", ",Italic,,,,", @@ -331,7 +332,8 @@ ",Regular,,,,", "Alpha Echo,,a,,,", "Amadeus,,,,,", - "Amarante,,,3,,a", + "Amagro,bold,,,14,", + "Amarante,Regular,,3,4,a", "Amaranth,Bold,,1,12,a", ",Bold Italic,,,,", ",Italic,,,,a", @@ -404,16 +406,7 @@ ",Normal,,,,", "Architects Daughter,Regular,a,3,6,", ",,,,,a", - "Archivo,Bold,,4099,12,", - ",Bold Italic,,,,", - ",Italic,,,,", - ",Medium,,,,", - ",Medium Italic,,,,", - ",Regular,,,,", - ",SemiBold,,,,", - ",SemiBold Italic,,,,", - ",Black,ArchivoBlack-Regular,3,,a", - "Archivo Narrow,Bold,,,,a", + "Archivo,Bold,,4099,12,a", ",Bold Italic,,,,a", ",Italic,,,,a", ",Medium,,,,a", @@ -421,7 +414,16 @@ ",Regular,,,,a", ",SemiBold,,,,a", ",SemiBold Italic,,,,a", - "Arcon,Regular,,,,", + ",Black,ArchivoBlack-Regular,3,,a", + "Archivo Narrow,Bold,,4099,,a", + ",Bold Italic,,,,a", + ",Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + "Arcon,Regular,,3,,", ",Rounded-Regular,,,,", "Aref Ruqaa,Bold,,33,14,a", ",Regular,,,,a", @@ -443,11 +445,15 @@ ",Semi Bold,,,,", ",Thin,,,,", "Arimo,Regular,a,4127,,", - ",Bold,,,,", - ",Bold Italic,,,,", - ",Italic,,,,", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", ",Regular,,,,a", - "Arizonia,,,1,13,", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + "Arizonia,Regular,,1,13,", "ArmWrestler,Bold,,,4,", "Armalite Rifle,Regular,a,,16,", "Armata,,,3,12,", @@ -463,29 +469,30 @@ ",Italic,,,,", "Arya,Bold,,515,12,a", ",Regular,,,,a", - "Asap,Bold,,4099,,", - ",BoldItalic,,,,", - ",Italic,,,,", - ",Medium,,,,", - ",MediumItalic,,,,", - ",Regular,,,,", + "Asap,Bold,,4099,,a", + ",Bold Italic,,,,a", + ",Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", ",SemiBold,,,,a", ",SemiBold Italic,,,,a", ",Symbol,,1,,", - "Asap Condensed,Bold,,4099,,", - ",Bold Italic,,,,", - ",Italic,,,,", - ",Medium,,,,", - ",Medium Italic,,,,", - ",Regular,,,,", - ",SemiBold,,,,", - ",SemiBold Italic,,,,", + "Asap Condensed,Bold,,4099,,a", + ",Bold Italic,,,,a", + ",Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", "Asar,Regular,,515,14,a", "Asset,,,1,,", "Assistant,Bold,,17,12,", ",ExtraBold,,,,", ",ExtraLight,,,,", ",Light,,,,", + ",Medium,,,,a", ",Regular,,,,", ",SemiBold,,,,", "Astloch,Bold,,1,4,a", @@ -512,7 +519,9 @@ ",Regular,,,,", "Aurulent Sans Mono,,,,,", "Autour One,,,3,4,a", - "Average,,,1,14,a", + "Avara,Bold,,1,14,", + ",Bold Italic,,,,", + "Average,Regular,,,,a", "Average Sans,,,3,12,a", "Averia Gruesa Libre,,,1,4,a", "Averia Libre,Bold,,,,a", @@ -590,6 +599,7 @@ "BPscript,Regular,a,,11,", "Bad Script,,,9,6,a", "Bahiana,,,3,4,a", + "Bahianita,,,4099,,a", "Bai Jamjuree,Bold,,5123,12,a", ",Bold Italic,,,,a", ",ExtraLight,,,,a", @@ -603,17 +613,56 @@ ",SemiBold,,,,a", ",SemiBold Italic,,,,a", "Baloo,Regular,a,4611,4,", - ",,,,,a", - ",Bhai,BalooBhai-Regular,4099,,a", - ",Bhaijaan,BalooBhaijaan-Regular,4131,,a", - ",Bhaina,BalooBhaina-Regular,4099,,a", - ",Chettan,BalooChettan-Regular,,,a", - ",Da,BalooDa-Regular,,,a", - ",Paaji,BalooPaaji-Regular,,,a", - ",Tamma,BalooTamma-Regular,,,a", - ",Tammudu,BalooTammudu-Regular,,,a", - ",Thambi,BalooThambi-Regular,,,a", - "Balthazar,Regular,,1,14,a", + ",2 Bold,Baloo2-Bold,,,a", + ",2 ExtraBold,Baloo2-ExtraBold,,,a", + ",2 Medium,Baloo2-Medium,,,a", + ",2,Baloo2-Regular,,,a", + ",2 SemiBold,Baloo2-SemiBold,,,a", + ",Bhai 2 Bold,BalooBhai2-Bold,4099,,a", + ",Bhai 2 ExtraBold,BalooBhai2-ExtraBold,,,a", + ",Bhai 2 Medium,BalooBhai2-Medium,,,a", + ",Bhai 2,BalooBhai2-Regular,,,a", + ",Bhai 2 SemiBold,BalooBhai2-SemiBold,,,a", + ",Bhaina 2 Bold,BalooBhaina2-Bold,,,a", + ",Bhaina 2 ExtraBold,BalooBhaina2-ExtraBold,,,a", + ",Bhaina 2 Medium,BalooBhaina2-Medium,,,a", + ",Bhaina 2,BalooBhaina2-Regular,,,a", + ",Bhaina 2 SemiBold,BalooBhaina2-SemiBold,,,a", + ",Chettan 2 Bold,BalooChettan2-Bold,,,a", + ",Chettan 2 ExtraBold,BalooChettan2-ExtraBold,,,a", + ",Chettan 2 Medium,BalooChettan2-Medium,,,a", + ",Chettan 2,BalooChettan2-Regular,,,a", + ",Chettan 2 SemiBold,BalooChettan2-SemiBold,,,a", + ",Da 2 Bold,BalooDa2-Bold,,,a", + ",Da 2 ExtraBold,BalooDa2-ExtraBold,,,a", + ",Da 2 Medium,BalooDa2-Medium,,,a", + ",Da 2,BalooDa2-Regular,,,a", + ",Da 2 SemiBold,BalooDa2-SemiBold,,,a", + ",Paaji 2 Bold,BalooPaaji2-Bold,,,a", + ",Paaji 2 ExtraBold,BalooPaaji2-ExtraBold,,,a", + ",Paaji 2 Medium,BalooPaaji2-Medium,,,a", + ",Paaji 2,BalooPaaji2-Regular,,,a", + ",Paaji 2 SemiBold,BalooPaaji2-SemiBold,,,a", + ",Tamma 2 Bold,BalooTamma2-Bold,,,a", + ",Tamma 2 ExtraBold,BalooTamma2-ExtraBold,,,a", + ",Tamma 2 Medium,BalooTamma2-Medium,,,a", + ",Tamma 2,BalooTamma2-Regular,,,a", + ",Tamma 2 SemiBold,BalooTamma2-SemiBold,,,a", + ",Tammudu 2 Bold,BalooTammudu2-Bold,,,a", + ",Tammudu 2 ExtraBold,BalooTammudu2-ExtraBold,,,a", + ",Tammudu 2 Medium,BalooTammudu2-Medium,,,a", + ",Tammudu 2,BalooTammudu2-Regular,,,a", + ",Tammudu 2 SemiBold,BalooTammudu2-SemiBold,,,a", + ",Thambi 2 Bold,BalooThambi2-Bold,,,a", + ",Thambi 2 ExtraBold,BalooThambi2-ExtraBold,,,a", + ",Thambi 2 Medium,BalooThambi2-Medium,,,a", + ",Thambi 2,BalooThambi2-Regular,,,a", + ",Thambi 2 SemiBold,BalooThambi2-SemiBold,,,a", + "Balsamiq Sans,Bold,,11,,a", + ",Bold Italic,,,,a", + ",Italic,,,,a", + ",Regular,,,,a", + "Balthazar,,,1,14,a", "Bangers,,,4099,4,a", "Banksia,,a,1,,", ", Black,BanksiaBlack,,,", @@ -660,8 +709,8 @@ ",Bold Italic,,,,a", ",ExtraBold,,,,a", ",ExtraBold Italic,,,,a", - ",ExLight,BarlowSemiCondensed-ExtraLight,,,a", - ",ExLight Italic,BarlowSemiCondensed-ExtraLightItalic,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", ",Italic,,,,a", ",Light,,,,a", ",Light Italic,,,,a", @@ -672,18 +721,34 @@ ",SemiBold Italic,,,,a", ",Thin,,,,a", ",Thin Italic,,,,a", - "Barrio,Regular,,3,4,a", - "Basic,,,,12,a", - "Baskervville,Italic,,,14,", - ",Regular,,,,", + "Barriecito,Regular,,,4,a", + "Barrio,,,3,,a", + "Basic,,,,12,", + "Baskervville,Italic,,,14,a", + ",Regular,,,,a", "Battambang,Bold,,2048,4,a", ",Regular,,,,a", "Baumans,,,1,,a", "Bayon,,,2048,,a", - "Bearpaw,,a,0,,", + "Be Vietnam,Bold,,4097,12,", + ",Bold Italic,,,,", + ",ExtraBold,,,,", + ",ExtraBold Italic,,,,", + ",Italic,,,,", + ",Light,,,,", + ",Light Italic,,,,", + ",Medium,,,,", + ",Medium Italic,,,,", + ",Regular,,,,", + ",SemiBold,,,,", + ",SemiBold Italic,,,,", + ",Thin,,,,", + ",Thin Italic,,,,", + "Bearpaw,Regular,a,0,4,", "Bebas,,,,,", "Bebas Kai,,a,3,12,", - "Bebas Neue,Thin,,11,,ex/bebas_neue/BebasNeue Thin.otf", + "Bebas Neue,,,,4,a", + ",Thin,,11,12,ex/bebas_neue/BebasNeue Thin.otf", ",Bold,BebasNeueBold,,,ex/bebas_neue/BebasNeue Bold.otf", ",Book,BebasNeueBook,,,ex/bebas_neue/BebasNeue Book.otf", ",Light,BebasNeueLight,,,ex/bebas_neue/BebasNeue Light.otf", @@ -692,23 +757,78 @@ "Bellefair,,,19,,", "Belleza,,,1,12,a", "Belligerent Madness,,a,0,6,", - "Bellota,Bold,,3,4,", - ",Bold Italic,,,,", - ",Italic,,,,", - ",Light,,,,", - ",Light Italic,,,,", - ",Regular,,,,", - "BenchNine,Bold,,,12,a", + "Bellota,Bold,,4107,4,a", + ",Bold Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Regular,,,,a", + "Bellota Text,Bold,,,,a", + ",Bold Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Regular,,,,a", + "BenchNine,Bold,,3,12,a", ",Light,,,,a", ",Regular,,,,a", "Benne,,,,14,", "Bentham,,,,,a", ",,BenthamRegular,,,", "Berkshire Swash,,,,13,", - "Beth Ellen 2,,BethEllen2Regular,1,6,", + "Beth Ellen,,,1,6,a", + "Beth Ellen 2,,BethEllen2Regular,,,", "Bevan,,a,3,4,", ",,,4099,,a", - "Bigelow Rules,,,3,,", + "Big Shoulders Display,Black,,,12,", + ",Bold,,,,", + ",ExtraBold,,,,", + ",Light,,,,", + ",Medium,,,,", + ",Regular,,,,", + ",SemiBold,,,,", + ",Thin,,,,", + "Big Shoulders Inline Display,Black,,,4,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", + "Big Shoulders Inline Text,Black,,,,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", + "Big Shoulders Stencil Display,Black,,,,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", + "Big Shoulders Stencil Text,Black,,,,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", + "Big Shoulders Text,Black,,,12,", + ",Bold,,,,", + ",ExtraBold,,,,", + ",Light,,,,", + ",Medium,,,,", + ",Regular,,,,", + ",SemiBold,,,,", + ",Thin,,,,", + "Bigelow Rules,Regular,,3,4,", "Bigshot One,,,1,,a", "Bilbo,,,,6,a", "Bilbo Swash Caps,,,,,a", @@ -742,11 +862,25 @@ ",Roman,,,,", "Bitstream Vera Serif,Bold,,,15,", ",Roman,,,,", - "Bitter,Bold,,11,,", - ",Bold Italic,,,,", - ",Italic,,,,", - ",Regular,,,,", - "Black And White Picture,,,64,12,a", + "Bitter,Black,,4107,14,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", + "Black And White Picture,Regular,,64,12,a", "Black Han Sans,,,0,,a", "Black Jack,,a,1,13,", "Black Ops One,,,3,16,", @@ -754,19 +888,33 @@ "Blackout,2 AM,,0,,", ",Midnight,,,,", "Blazium,Regular,a,3,8,", - "Blogger Sans,,a,11,12,", - ",Bold,,,,", - ",Bold Italic,,,,", - ",Italic,,,,", - ",Light,,,,", - ",Light Italic,,,,", - ",Medium,,,,", - ",Medium Italic,,,,", + "Blinker,Black,,,12,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", "Blokletters Balpen,Balpen,Blokletters-Balpen,1,6,", "Blokletters Potlood,Potlood,Blokletters-Potlood,,,", "Blokletters Viltstift,Viltstift,Blokletters-Viltstift,,,", "Bloody,Normal,a,0,8,", - "BodoniXT,Regular,a,1,14,", + "Bluu Next,Bold,,1,14,", + ",Bold Italic,,,,", + ",Titling,,,,", + "Bodoni Moda 11pt,Black,,3,,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + "BodoniXT,Regular,a,1,,", "Bodonitown,,a,,15,", "Boisu,Fill,,3,4,", ",Full,,,,", @@ -867,10 +1015,11 @@ ",Light,,,,a", ",Regular,,,,a", ",SemiBold,,,,a", - "Caladea,Bold,,3,14,", - ",Bold Italic,,,,", - ",Italic,,,,", - ",Regular,,,,", + "Caladea,Bold,,3,14,a", + ",Bold Italic,,,,a", + ",Italic,,,,a", + ",Regular,,,,a", + "Calistoga,,,4099,,", "Calligraffiti,,a,1,1,", "Calligraffitti,,,,6,a", "Cambay,Bold,,515,12,a", @@ -912,25 +1061,30 @@ "Carrois Gothic,,,,12,", "Carrois Gothic SC,,,,,", "Carter One,,a,,4,a", - "Caslon Calligraphic Initials,,a,0,,", + "Cascadia Code,,a,0,7,", + "Caslon Calligraphic Initials,,a,,4,", "Caslon Initials,,a,,,", - "Catamaran,Black,,1,12,", - ",Bold,,,,", - ",ExtraBold,,,,", - ",ExtraLight,,,,", - ",Light,,,,", - ",Medium,,,,", - ",Regular,,,,", - ",SemiBold,,,,", - ",Thin,,,,", + "Castoro,Italic,,3,14,a", + ",Regular,,,,a", + "Catamaran,Black,,1,12,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", "Caudex,Regular,a,7,14,a", ",Bold,,4103,,", ",Bold Italic,,,,", ",Italic,,,,", ",Regular,,,,", "Caveat,Bold,,11,6,a", + ",Medium,,,,a", ",Regular,,,,a", - "Caveat Brush,,,3,13,", + ",SemiBold,,,,a", + "Caveat Brush,Regular,,3,13,", "Caviar Dreams,,a,15,12,", ",Bold,,,,", ",Bold Italic,,,,", @@ -982,6 +1136,7 @@ ",Regular,,,,", "Chewy,,,,,a", "Chicle,,,,,a", + "Chilanka,,,,6,a", "Chivo,Black,,4099,12,", ",Black Italic,,,,", ",Bold,,,,", @@ -996,7 +1151,8 @@ ",Regular,,,,", ",Thin,,,,", ",Thin Italic,,,,", - "Chonburi,Regular,,5123,4,a", + "Chomsky,Regular,a,3,0,", + "Chonburi,,,5123,4,a", "ChunkFive,,,3,,", "ChunkFive Print,,a,0,,", "Cicle,Fina,CicleFina,1,12,", @@ -1008,7 +1164,10 @@ ",Shadow,CicleShadow,,,", "Cinzel,Black,,3,14,a", ",Bold,,,,a", + ",ExtraBold,,,,a", + ",Medium,,,,a", ",Regular,,,,a", + ",SemiBold,,,,a", "Cinzel Decorative,Black,,,4,a", ",Bold,,,,a", ",Regular,,,,a", @@ -1041,13 +1200,19 @@ "CombiNumerals Ltd,,a,,3,", "Combo,,,3,4,a", "Comfortaa,,a,7,12,", - ",,Comfortaa-Bold,4111,4,a", + ",Bold,,4111,4,a", ",Light,,,,a", ",Medium,,,,a", ",Regular,,,,a", ",SemiBold,,,,a", ",Thin,,7,12,", - "Comic Relief,Regular,a,15,2,", + "Comic Neue,Bold,,1,6,a", + ",Bold Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Regular,,,,a", + "Comic Relief,,a,15,2,", "Comic Zine OT,,a,1,8,", "Coming Soon,,,,6,a", "Commando,Commando,a,0,4,", @@ -1060,6 +1225,15 @@ ",Regular,,,,", ",SemiBold,,,,", ",Thin,,,,", + "Commissioner,Black,,4111,,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", "Communist,Regular,a,0,14,", ",Italic,CommunistItalic,,,", ",Sans,CommunistSans,,,", @@ -1149,10 +1323,11 @@ ",Regular,Costura-Light,,,", "Courgette,,,3,13,", "Courier Prime,,a,,17,", - ",Bold,,,,", - ",Bold Italic,,,,", - ",Italic,,,,", - "Courier Prime Code,,,,12,", + ",Bold,,,7,a", + ",Bold Italic,,,,a", + ",Italic,,,,a", + ",Regular,,,,a", + "Courier Prime Code,Italic,,,12,", ",Regular,,,,", "Courier Prime Sans,Bold,,,,", ",Bold Italic,,,,", @@ -1177,7 +1352,23 @@ ",Roman,,,,", ",Semibold,,3,,", ",SemiboldItalic,,,,", - "Crimson Text,Bold,,4099,,a", + "Crimson Pro,Black,,4099,,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + "Crimson Text,Bold,,,,a", ",Bold Italic,,3,,a", ",Italic,,,,a", ",Regular,,4111,,a", @@ -1188,8 +1379,12 @@ "Cuprum,Bold,,4105,12,a", ",Bold Italic,,,,a", ",Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", ",Regular,,,,a", - "Cute Font,,,0,4,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + "Cute Font,Regular,,0,4,a", "Cutive,,,3,14,a", "Cutive Mono,,,,7,a", "D-DIN,,a,1,12,", @@ -1202,20 +1397,45 @@ ",DINExp-Italic,D-DINExp-Italic,,,", "DISCO,Regular,a,0,,", "DJ Gross,Normal,DJ-Gross,1,6,", - "DPSDbeyond,Regular,a,4,4,", + "DM Mono,Italic,,3,7,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + "DM Sans,Bold,,,12,a", + ",Bold Italic,,,,a", + ",Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + "DM Serif Display,Italic,,1,14,a", + ",Regular,,,,a", + "DM Serif Text,Italic,,,,a", + ",Regular,,,,a", + "DPSDbeyond,,a,4,4,", "DX아기사랑B,Bold,DXLBaB-KSCpc-EUC-H,12,11,ex/DXLBaB-KSCpc-EUC-H.ttf", "Daela,,,1,4,", ",Book,,,,", ",Italic,,,,", "Damion,Regular,a,,6,a", "Dancing Script,Bold,,4099,,a", + ",Medium,,,,a", ",Regular,,,,a", - "Dancing Script OT,,a,1,13,", + ",SemiBold,,,,a", + "Dancing Script OT,Regular,a,1,13,", "Dangrek,,a,2048,4,a", "Daniel,Black,,1,6,", ",Bold,,,,", ",Regular,,,,", - "Datalegreya,Dot,,4099,12,", + "Darker Grotesque,Black,,4099,12,", + ",Bold,,,,", + ",ExtraBold,,,,", + ",Light,,,,", + ",Medium,,,,", + ",Regular,,,,", + ",SemiBold,,,,", + "Datalegreya,Dot,,,,", ",Gradient,,,,", ",Thin,,,,", "David Libre,Bold,,4115,14,a", @@ -1290,12 +1510,14 @@ "Do Hyeon,,,0,12,a", "Dobkin,Plain,,,13,", "Dokdo,Regular,,,6,a", - "Domine,Bold,,3,14,", - ",Regular,,,,", - "Donegal One,,,,,a", + "Domine,Bold,,3,14,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + "Donegal One,Regular,,,,a", "Doppio One,,,,12,a", "Dorsa,,,1,,a", - "Dosis,Bold,,3,,a", + "Dosis,Bold,,4099,,a", ",ExtraBold,,,,a", ",ExtraLight,,,,a", ",Light,,,,a", @@ -1431,10 +1653,30 @@ "Enigmatic,,a,1,12,", ",Bold,EnigmaticBold,,,", ",Italic,EnigmaticItalic,,,", - "Enriqueta,Bold,,3,15,", - ",Regular,,,,", - "Entypo,,a,0,3,", - "Eraser,,,,6,", + "Enriqueta,Bold,,3,14,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + "Entypo,Regular,a,0,3,", + "Epilogue,Black,,4099,12,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", + "Eraser,Regular,,0,6,", "Erica One,,,1,4,a", "Esteban,,a,,14,a", "Euphoria Script,,,,6,a", @@ -1460,22 +1702,22 @@ ",SemiBold Italic,,,,a", ",Thin,,,,a", ",Thin Italic,,,,a", - "Exo 2,Black,,11,,a", + "Exo 2,Black,,4107,,a", ",Black Italic,,,,a", ",Bold,,,,a", ",Bold Italic,,,,a", - ",Extra Bold,,,,a", - ",Extra Bold Italic,,,,a", - "Exo 2 Extra,Light,Exo2-ExtraLight,,,a", - ",Light Italic,Exo2-ExtraLightItalic,,,a", - "Exo 2,Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", ",Light,,,,a", ",Light Italic,,,,a", ",Medium,,,,a", ",Medium Italic,,,,a", ",Regular,,,,a", - ",Semi Bold,,,,a", - ",Semi Bold Italic,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", ",Thin,,,,a", ",Thin Italic,,,,a", "Expletus Sans,Regular,a,1,,", @@ -1536,12 +1778,13 @@ ",Black,,,,", "Fenix,Regular,a,,14,a", "Finger Paint,,,,4,", - "Fira Code,Bold,,15,12,", - ",Light,,,,", - ",Medium,,,,", - ",Regular,,,,", - ",Retina,,,,", - "Fira Mono,Bold,,,7,", + "Fira Code,Bold,,15,7,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",Retina,,,12,", + ",SemiBold,,,7,a", + "Fira Mono,Bold,,,,", ",Medium,,,,", ",Regular,,,,", "Fira Sans,Black,,4111,12,a", @@ -1669,6 +1912,7 @@ "Flamenco,Light,,,4,a", ",Regular,,,,a", "Flavors,,a,,8,", + ",,,,4,a", "Floralia,,a,0,3,", "Florante at Laura,,a,,1,", ",Italic,FloranteatLauraItalic,,,", @@ -1701,7 +1945,25 @@ ",Light,,,,a", ",Medium,,,,a", ",Regular,,,,a", - "Freckle Face,,,3,4,a", + "Fraunces,Black,,4099,,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", + "Freckle Face,Regular,,3,4,a", "Fredericka the Great,,,1,,a", "Fredoka One,,,,12,", "Fredoka dingbats,,a,0,,", @@ -1725,8 +1987,15 @@ "Frijole,,a,,4,a", "Fruktur,,,3,,a", "Fugaz One,,,1,,a", - "Furore,,a,8,,", - "GEIST RND,,a,0,,", + "Fulbo,Argenta,,19,,", + ",Champagne,,,,", + ",Premier,,,,", + ",Retro,,,,", + ",Tano,,,,", + "Furore,Regular,a,8,,", + "FuturaRenner,Light,,1,12,", + ",Regular,,,,", + "GEIST RND,,a,0,4,", "GFS Didot,,,4103,14,a", "GFS Neohellenic,Bold,,,12,a", ",Bold Italic,,,,a", @@ -1757,7 +2026,19 @@ ",Bold,,,,", ",Bold Italic,,,,", ",Italic,,,,", - "Gentium Basic,Regular,a,4099,14,", + "Gayathri,Bold,,1,12,a", + ",Regular,,,,a", + ",Thin,,,,a", + "Gelasio,Regular,a,4099,14,", + ",Bold,,,,", + ",Bold Italic,,,,", + ",Italic,,,,", + ",Medium,,,,", + ",Medium Italic,,,,", + ",Regular,,,,", + ",SemiBold,,,,", + ",SemiBold Italic,,,,", + "Gentium Basic,Regular,a,,,", ",Bold,,,,", ",Bold Italic,,,,", ",Italic,,,,", @@ -1781,7 +2062,8 @@ "Gidole,,,7,12,", "Gidugu,,a,3,,a", "Gilda Display,,,1,14,a", - "Give You Glory,,a,3,6,a", + "Girassol,,,3,,", + "Give You Glory,,a,,6,a", "Glacial Indifference,Bold,,1,12,", ",Italic,,,,", ",Regular,,,,", @@ -1790,10 +2072,24 @@ "Glegoo,Bold,,515,15,", ",Regular,,,,", "Gloria Hallelujah,,a,3,6,", - "Goblin,,a,1,4,", + "Go,Bold,,15,12,", + ",Bold Italic,,,,", + ",Italic,,,,", + ",Medium,GoMedium,,,", + ",Medium Italic,GoMedium-Italic,,,", + "Go Mono,Regular,a,,,", + ",Bold,,,,", + ",Bold Italic,,,,", + ",Italic,,,,", + "Go,Regular,GoRegular,,,", + "Go Smallcaps,,a,,,", + ",Italic,,,,", + "Goblin,Regular,a,1,4,", "Goblin One,,a,,,a", "Gochi Hand,,,,6,a", - "Gondola SD,,a,,1,", + "Goldman,Bold,,4099,4,a", + ",Regular,,,,a", + "Gondola SD,,a,1,1,", "Gondola SD - Swash,,a,,,", "Gong!,Normal,GongNormal,0,6,", "Gorditas,Bold,,1,4,", @@ -1808,6 +2104,7 @@ ",SemiBold,,,,a", ",Thin,,,,a", "Gothic Ultra OT,Regular,a,1,1,", + "Gotu,,,4611,12,a", "Goudy Bookletter 1911,,a,3,14,", "Sorts Mill Goudy,,GoudyStM,,,", ",Italic,GoudyStM-Italic,,,", @@ -1815,7 +2112,25 @@ ",Regular,,,,", "Graduate,,,1,,", "Grand Hotel,,,3,13,", - "Gravitas One,,a,1,4,", + "Grandstander,Black,,4099,4,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", + "Gravitas One,Regular,a,1,,", "GreatLakesNF,,a,,,", "Great Vibes,,,3,13,", "Grenze,Black,,4099,14,", @@ -1836,6 +2151,15 @@ ",SemiBold Italic,,,,", ",Thin,,,,", ",Thin Italic,,,,", + "Grenze Gotisch,Black,,,4,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", "GreyscaleBasic,Regular,a,1,12,", ",Bold,,,,", ",Bold Italic,,,,", @@ -1850,12 +2174,17 @@ ",Bold,,,,", ",Italic,,,,a", "Gugi,Regular,,0,4,a", - "Gurajada,,a,3,14,a", - "HK Grotesk,Bold,,4099,12,", + "Gupter,Bold,,1,14,a", + ",Medium,,,,a", + ",Regular,,,,a", + "Gurajada,,a,3,,a", + "HK Grotesk,Black,,4099,12,", + ",Bold,,,,", ",Bold Italic,,,,", ",Bold Legacy,,3,,", ",Bold Legacy Italic,,,,", - ",Italic,,4099,,", + ",ExtraBold,,4099,,", + ",Italic,,,,", ",Legacy Italic,,3,,", ",Light,,4099,,", ",Light Italic,,,,", @@ -1881,6 +2210,7 @@ "HVD Steinzeit,,a,,8,", ",Fill In,,,,", "Habibi,Regular,,3,14,", + "Hachi Maru Pop,,,141,6,a", "Hack,Bold,,15,7,", ",Bold Italic,,,,", ",Italic,,,,", @@ -1892,7 +2222,7 @@ ",SemiBold,,,,a", "HamburgerHeaven,Regular,a,1,11,", "Hammersmith One,,a,,4,", - "HammersmithOne,,,3,12,a", + ",,,3,12,a", "Hanalei,,,,4,", "Hanalei Fill,,,,,a", "Handlee,,,1,13,", @@ -1901,7 +2231,8 @@ "Happy Monkey,,,1,2,", "Happy Times at the IKOB,Italic,,,14,", ",Regular,,,,", - "Harmattan,,,33,12,a", + "Harmattan,Bold,,33,12,a", + ",Regular,,,,a", "Harting,Plain,,0,17,", "Hattori Hanzo,Light,,8,12,", ",Light Italic,,,,", @@ -1911,15 +2242,26 @@ "Heebo,Black,,17,12,", ",Bold,,,,", ",ExtraBold,,,,", + ",ExtraLight,,,,a", ",Light,,,,", ",Medium,,,,", ",Regular,,,,", + ",SemiBold,,,,a", ",Thin,,,,", - "Helmet,Regular,,1,,", - "Helsinki,,a,,2,", + "Helmet Neue,Regular,,3,,", + "Helsinki,,a,1,2,", "Henny Penny,,,,4,a", "HenryMorganHand,,a,0,13,", - "Herr Von Muellerhoff,,,1,6,a", + "Hepta Slab,Black,,4099,14,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", + "Herr Von Muellerhoff,Regular,,1,6,a", "Hetilica,Bold,,0,,", "Heuristica,,,4107,14,", ",Bold Italic,,,,", @@ -2048,9 +2390,26 @@ ",PRO,IM_FELL_Great_Primer_PRO_Roman,,,", ",Regular,IM_FELL_Great_Primer_Roman,,,a", ",SC,IM_FELL_Great_Primer_SC,1,,a", - "Iceberg,Regular,,,4,a", + "Ibarra Real Nova,Bold,,3,,a", + ",Bold Italic,,,,a", + ",Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + "Iceberg,Regular,,1,4,a", "Iceland,,,,,a", - "Immortal,,a,,14,", + "Imbue 10pt,Black,,4099,14,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", + "Immortal,Regular,a,1,,", "Immortal - Alternates,,a,0,,", "Impact Label,,a,1,8,", "Impact Label Reversed,,a,,,", @@ -2058,9 +2417,15 @@ "IncisedBlack,Normal,,0,0,", "IncisedBlackWide,,,,,", "Inconsolata,Medium,a,1,7,", - ",Bold,,4099,,a", + ",Black,,4099,,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Light,,,,a", + ",Medium,,,,a", ",Regular,,,,a", - "Inder,,,3,12,", + ",SemiBold,,,,a", + "Inder,Regular,,3,12,", "Indie Flower,,a,,6,", "Indigo Outline Font,,,1,4,", "Indigo,,IndigoRegular-Regular,,,", @@ -2090,21 +2455,24 @@ ",Light,,,,", ",Light Italic,,,,", ",Regular,,,,", - "Inter,Black,,4111,12,", - ",Bold,,,,", + "Inter,Black,,4111,12,a", + ",Bold,,,,a", ",Bold Italic,,,,", - ",Extra Bold,,,,", + ",ExtraBold,,,,a", ",Extra Bold Italic,,,,", + ",ExtraLight,,,,a", ",Extra Light BETA,,,,", ",Extra Light Italic BETA,,,,", ",Italic,,,,", + ",Light,,,,a", ",Light BETA,,,,", ",Light Italic BETA,,,,", - ",Medium,,,,", + ",Medium,,,,a", ",Medium Italic,,,,", - ",Regular,,,,", - ",Semi Bold,,,,", + ",Regular,,,,a", + ",SemiBold,,,,a", ",Semi Bold Italic,,,,", + ",Thin,,,,a", ",Thin BETA,,,,", ",Thin Italic BETA,,,,", "Inter UI,Black Italic,,,,", @@ -2135,33 +2503,82 @@ ",Regular,,,,a", "Jameel Noori Nastaleeq,,Jameel-Noori-Nastaleeq,33,,ex/Jameel_Noori_Nastaleeq.ttf", "Jellee,Bold,Jellee-Roman,1,,", + "Jenriv Titling,,,3,14,", + ",Bold Italic,,,,", + ",Italic,,,,", + ",Light,,,,", + ",Light Italic,,,,", + ",Regular,,,,", + "JetBrains Mono,Bold,,4111,7,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", "Jim Nightshade,Regular,,3,6,a", "Jinky,,a,1,,", "Jockey One,,,3,12,", "Jolly Lodger,,a,1,4,a", "Jomhuria,,,35,,", "Jomolhari,,a,257,10,ex/tib/S12/Jomolhari.ttf", + ",,,,14,a", "Josefin Sans,Bold,,4099,12,", ",Bold Italic,,,,", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", ",Italic,,,,", ",Light,,,,", ",Light Italic,,,,", + ",Medium,,,,a", + ",Medium Italic,,,,a", ",Regular,,,,", ",SemiBold,,,,", ",SemiBold Italic,,,,", ",Thin,,,,", ",Thin Italic,,,,", "Josefin Slab,Regular,a,1,15,", - ",Bold,,,,", - ",Bold Italic,,,,", - ",Italic,,,,", - ",Light,,,,", - ",Light Italic,,,,", - ",Regular,,,14,a", - ",SemiBold,,,15,", - ",SemiBold Italic,,,,", - ",Thin,,,,", - ",Thin Italic,,,,", + ",Bold,,,14,a", + ",Bold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", + "Jost,Black,,11,12,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", "Joti One,Regular,,3,4,a", "Journal,,a,1,6,", "jr!hand,,Jrhand,,,", @@ -2215,6 +2632,7 @@ ",SemiBold Italic,,,,a", ",Thin,,,,a", ",Thin Italic,,,,a", + "KJV1611,Regular,a,15,0,", "Kadwa,Bold,,515,14,a", ",Regular,,,,a", "Kalam,Bold,,513,6,", @@ -2241,17 +2659,27 @@ ",SemiBold Italic,,,,", ",Thin,,,,", ",Thin Italic,,,,", - "Kantumruy,Regular,a,2048,,a", - ",Bold,,,,a", - ",Light,KantumruyLight,,,a", + "Kantumruy,Bold,,2048,,a", + ",Light,,,,a", + ",Regular,,,,a", "Karatula,Bold,KaratulaBold,0,2,", ",BoldItalic,KaratulaBoldItalic,,,", ",Italic,KaratulaItalic,,,", ",Normal,KaratulaNormal,,,", - "Karla,Bold,,,12,", - ",BoldItalic,,,,", - ",Italic,,,,", - ",Regular,,,,", + "Karla,Bold,,3,12,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", "Karma,Bold,,515,14,a", ",Light,,,,a", ",Medium,,,,a", @@ -2367,10 +2795,12 @@ "Kotta One,Regular,,,14,", "Koulen,,a,2048,4,a", "Kranky,,,1,,a", - "Kreon,Bold,,,15,", - ",Light,,,,", - ",Regular,,,,", - "Kristi,Medium,a,,6,", + "Kreon,Bold,,3,14,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + "Kristi,Medium,a,1,6,", ",Regular,,,,a", "Krona One,,,3,12,", "Krub,Bold,,5123,,a", @@ -2385,8 +2815,33 @@ ",Regular,,,,a", ",SemiBold,,,,a", ",SemiBold Italic,,,,a", + "Kufam,Black,,4131,4,a", + ",Black Italic,,4099,,a", + ",Bold,,4131,,a", + ",Bold Italic,,4099,,a", + ",ExtraBold,,4131,,a", + ",ExtraBold Italic,,4099,,a", + ",Italic,,,,a", + ",Medium,,4131,,a", + ",Medium Italic,,4099,,a", + ",Regular,,4131,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,4099,,a", + "Kulim Park,Bold,,3,12,a", + ",Bold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", "Kumar One,Regular,,1,4,a", "Kumar One Outline,,,,,a", + "Kumbh Sans,Bold,,3,12,a", + ",Light,,,,a", + ",Regular,,,,a", "Kurale,,,523,14,", "LIBRARY 3 AM,,a,9,4,", "LIBRARY 3 AM soft,,a,,,", @@ -2436,6 +2891,7 @@ ",Light,,,,", ",Regular,,,,", ",Shadow,,,,", + "Lacquer,Regular,,,,a", "Lacuna,Italic,LacunaItalic,,12,", ",Regular,LacunaRegular,,,", "Laila,Bold,,513,14,a", @@ -2451,6 +2907,7 @@ "Lane - Narrow,,a,1,4,", "Lane - Posh,,a,,,", "Lane - Upper,,a,,,", + "Langar,,,3,,a", "Langdon,,a,0,,", "Lapsus Pro,Bold,,15,,", "Lateef,Regular,a,33,6,a", @@ -2497,9 +2954,17 @@ "LemonChicken,,a,0,11,", "Lemonada,Bold,,4131,4,a", ",Light,,,,a", + ",Medium,,,,a", ",Regular,,,,a", ",SemiBold,,,,a", - "Liberation Mono,Regular,a,4127,7,", + "Lexend Deca,Regular,,4099,12,a", + "Lexend Exa,,,,,a", + "Lexend Giga,,,,,a", + "Lexend Mega,,,,,a", + "Lexend Peta,,,,,a", + "Lexend Tera,,,,,a", + "Lexend Zetta,,,,,a", + "Liberation Mono,,a,4127,7,", ",Bold,,,,", ",Bold Italic,,,,", ",Italic,,,,", @@ -2531,6 +2996,7 @@ ",39 Extended,LibreBarcode39Extended-Regular,,,a", ",39 Extended Text,LibreBarcode39ExtendedText-Regular,,,a", ",39 Text,LibreBarcode39Text-Regular,,,a", + ",EAN13 Text,LibreBarcodeEAN13Text-Regular,,,a", "Libre Baskerville,Bold,,3,14,", ",Italic,,,,", ",Regular,,,,", @@ -2538,26 +3004,27 @@ ",Text Bold,LibreCaslonText-Bold,,,", ",Text Italic,LibreCaslonText-Italic,,,", ",Text,LibreCaslonText-Regular,,,", - "Libre Franklin,Black,,,12,", - ",Black Italic,,,,", - ",Bold,,,,", - ",Bold Italic,,,,", - ",ExtraBold,,,,", - ",ExtraBold Italic,,,,", - ",ExtraLight,,,,", - ",ExtraLight Italic,,,,", - ",Italic,,,,", - ",Light,,,,", - ",Light Italic,,,,", - ",Medium,,,,", - ",Medium Italic,,,,", - ",Regular,,,,", - ",SemiBold,,,,", - ",SemiBold Italic,,,,", - ",Thin,,,,", - ",Thin Italic,,,,", - "Life Savers,Bold,,,6,", - ",Regular,,,,", + "Libre Franklin,Black,,4099,12,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", + "Life Savers,Bold,,3,6,", + ",ExtraBold,,,4,a", + ",Regular,,,6,", "Lilac Malaria,,a,1,4,", "Lilita One,,a,,,a", "Lilly,,a,,6,", @@ -2584,7 +3051,23 @@ ",Italic,,,,", ",Regular,,,,", "Lintsec,,a,0,16,", - "Literata,Book Bold,LiterataBook-Bold,4111,12,", + "Literata,Black,,4111,14,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Book Bold,LiterataBook-Bold,,,", ",Book Bold Italic,LiterataBook-BoldItalic,,,", ",Book Italic,LiterataBook-Italic,,,", ",Book Medium,LiterataBook-Medium,,,", @@ -2593,7 +3076,24 @@ ",Book SemiBold,LiterataBook-SemiBold,,,", ",Book SemiBold Italic,LiterataBook-SemiBoldItalic,,,", "Little Trouble Girl BV,Regular,a,1,4,", - "Loaded,,a,0,,", + "Liu Jian Mao Cao,,,128,6,a", + "Livvic,Black,,4099,12,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", + "Loaded,Regular,a,0,4,", "Lobster,,,4107,,a", "Lobster 1.3,,a,1,13,", "Lobster,Two,LobsterTwo,,,", @@ -2608,11 +3108,16 @@ ",Solid Light,LondrinaSolid-Light,,,a", ",Solid,LondrinaSolid-Regular,,,", ",Solid Thin,LondrinaSolid-Thin,,,a", + "Long Cang,Regular,,128,6,a", "Lora,Bold,,4107,14,a", ",Bold Italic,,,,a", ",Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", ",Regular,,,,a", - "Love Ya Like A Sister,,,3,4,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + "Love Ya Like A Sister,Regular,,3,4,a", "Loved by the King,,a,,6,a", "Lovers Quarrel,,,1,,a", "Lucien Schoenschriftv CAT,,a,3,13,", @@ -2654,7 +3159,8 @@ ",Bold,,,,", ",Bold Oblique,,,,", ",Oblique,,,,", - "Macondo,Regular,,1,4,", + "Ma Shan Zheng,Regular,,128,6,a", + "Macondo,,,1,4,", "Macondo Swash Caps,,,,,", "Mada,Black,,33,12,a", ",Bold,,,,a", @@ -2691,13 +3197,17 @@ ",SemiBold Italic,,,,a", "Mallanna,Regular,a,0,12,a", "Mandali,,a,,,a", - "Manrope3,Bold,,11,,", - ",ExtraBold,,,,", - ",Light,,,,", - ",Medium,,,,", - ",Regular,,,,", - ",Semibold,,,,", - ",Thin,,,,", + "Manjari,Bold,,1,,a", + ",Regular,,,,a", + ",Thin,,,,a", + "Manrope,Bold,,4111,,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + "Mansalva,Regular,,1,6,a", "Manuale,Bold,,4099,14,", ",Bold Italic,,,,", ",Italic,,,,", @@ -2748,8 +3258,10 @@ "Matiz,Regular,a,0,4,", "Maven Pro,Black,,4099,12,a", ",Bold,,,,a", + ",ExtraBold,,,,a", ",Medium,,,,a", ",Regular,,,,a", + ",SemiBold,,,,a", ",Black,MavenProBlack,1,,", ",Bold,MavenProBold,,,", ",Medium,MavenProMedium,,,", @@ -2774,42 +3286,28 @@ ",Light,,,,", ",Light Italic,,,,", ",Regular,,,,", - "Merriweather Sans,Bold,,3,12,a", + "Merriweather Sans,Bold,,4099,12,a", ",Bold Italic,,,,a", - ",Book,,,,", + ",Book,,3,,", ",BookItalic,,,,", ",ExtraBold Italic,MerriweatherSans-ExtraBldItalic,,,", - ",ExtraBold,,,,a", + ",ExtraBold,,4099,,a", ",ExtraBold Italic,,,,a", ",Italic,,,,a", ",Light,,,,a", ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", ",Regular,,,,a", - "Metal,,a,2048,4,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + "Metal,Regular,a,2048,4,a", "Metal Mania,,,1,,a", "Metamorphous,,a,3,14,", "Metro,,a,8,4,", "Metrophobic,,a,1,12,", - ",,,,,a", - "Metropolis,Black,,,,", - ",Black Italic,,,,", - ",Bold,,,,", - ",Bold Italic,,,,", - ",Extra Bold,,,,", - ",Extra Bold Italic,,,,", - ",Extra Light,,,,", - ",Extra Light Italic,,,,", - ",Light,,,,", - ",Light Italic,,,,", - ",Medium,,,,", - ",Medium Italic,,,,", - ",Regular,,,,", - ",Regular Italic,,,,", - ",Semi Bold,,,,", - ",Semi Bold Italic,,,,", - ",Thin,,,,", - ",Thin Italic,,,,", - "Miama,Regular,a,3,13,", + ",,,4099,,a", + "Miama,,a,3,13,", "Michroma,,a,,12,", "Mikodacs,,a,11,4,", "MikodacsPCS,,a,,,", @@ -2819,7 +3317,8 @@ "Miltonian Tattoo,,,,,a", "Mina,Bold,,3,12,a", ",Regular,,,,a", - "Minipax,,a,,15,", + "Minecrafter Alt,,a,0,2,ex/pu/Minecrafter_Alt.ttf", + "Minipax,,a,3,15,", ",Bold,,,,", ",Medium,,,,", ",Regular,,,,", @@ -2966,7 +3465,16 @@ ",Regular,,,,a", ",SemiBold,,,,a", "Muli,Regular,a,,,", - ",Black,,4099,,a", + ",Bold,,,,", + ",BoldItalic,,,,", + ",ExtraLight,,,,", + ",ExtraLightItalic,,,,", + ",RegularItalic,Muli-Italic,,,", + ",Light,,,,", + ",LightItalic,,,,", + ",SemiBoldItalic,Muli-Semi-BoldItalic,,,", + ",SemiBold,,,,", + "Mulish,Black,,4099,,a", ",Black Italic,,,,a", ",Bold,,,,a", ",Bold Italic,,,,a", @@ -2977,14 +3485,24 @@ ",Italic,,,,a", ",Light,,,,a", ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", ",Regular,,,,a", - ",SemiBoldItalic,Muli-Semi-BoldItalic,3,,", - ",SemiBold,,4099,,a", + ",SemiBold,,,,a", ",SemiBold Italic,,,,a", "Munson,Regular,a,15,14,", ",Bold,,,,", ",Bold Italic,,,,", ",Italic,,,,", + "MuseoModerno,Black,,4099,4,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", "Mutlu, Ornamental,MutluOrnamental,1,13,", "My Underwood,Regular,a,0,17,", "Myndraine,,a,1,12,", @@ -2998,8 +3516,8 @@ "NanumGothic,ExtraBold,NanumGothicExtraBold,205,12,", "NanumMyeongjo,Regular,a,76,14,a", ",Bold,NanumMyeongjoBold,,,a", - "NanumMyeongjoExtraBold,Regular,a,,,a", - "Nanum Pen,,a,,6,a", + ",ExtraBold,NanumMyeongjoExtraBold,,,a", + "Nanum Pen,Regular,a,,6,a", "Nautilus Pompilius,,a,8,13,", "Negotiate,Free,NegotiateFree,3,12,", "NeoRetroDraw,Regular,a,0,4,", @@ -3014,7 +3532,8 @@ ",SemiBold Italic,,,,", ",Thin,,,,", ",Thin Italic,,,,", - "Nervous Rex,Regular,a,0,4,", + "Nerko One,Regular,,3,6,a", + "Nervous Rex,,a,0,4,", "Neucha,,a,9,6,a", "Neumann,,a,11,14,", "Neuton,Bold,,3,,", @@ -3175,13 +3694,19 @@ ",SemiCondensed Thin Italic,,,,", ",Thin,,,,", ",Thin Italic,,,,", - "Noto Sans JP,Black,,4237,,a", + "Noto Sans HK,Black,,4237,,a", ",Bold,,,,a", ",Light,,,,a", ",Medium,,,,a", ",Regular,,,,a", ",Thin,,,,a", - "Noto Sans KR,Black,,64,,a", + "Noto Sans JP,Black,,,,a", + ",Bold,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",Thin,,,,a", + "Noto Sans KR,Black,,4301,,a", ",Bold,,,,a", ",Light,,,,a", ",Medium,,,,a", @@ -3309,7 +3834,7 @@ "Nova Slim,Book,a,,,a", "Nova Square,,a,,,a", "Numans,Regular,,1,12,", - "Nunito,Black,,4099,,a", + "Nunito,Black,,4107,,a", ",Black Italic,,,,a", ",Bold,,,,a", ",Bold Italic,,,,a", @@ -3321,10 +3846,10 @@ ",Light,,,,a", ",Light Italic,,,,a", ",Medium,,3,,", - ",Regular,,4099,,a", + ",Regular,,4107,,a", ",SemiBold,,,,a", ",SemiBold Italic,,,,a", - "Nunito Sans,Black,,,,", + "Nunito Sans,Black,,4099,,", ",Black Italic,,,,", ",Bold,,,,", ",Bold Italic,,,,", @@ -3340,7 +3865,7 @@ ",SemiBold Italic,,,,", "Nymphette,Regular,a,0,3,", "OSP-DIN,DIN,a,,4,", - "Odibee Sans,Regular,,1,,", + "Odibee Sans,Regular,,1,,a", "OdorMeanChey,,a,2048,,a", "Office Code Pro,Bold,,3,12,", ",Bold Italic,,,,", @@ -3389,11 +3914,13 @@ ",Light Italic,,,,a", "Open Sans,,OpenSansLight-Italic,,,", "Oranienbaum,Regular,,11,14,", - "Orbitron,Black,,1,4,", - ",Bold,,,,", - ",Light,,,,", - ",Medium,,,,", - ",Regular,,,12,a", + "Orbitron,Black,,1,12,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",Light,,,4,", + ",Medium,,,12,a", + ",Regular,,,,a", + ",SemiBold,,,,a", "Oregano,Italic,,3,4,a", ",Regular,,,,a", "Orienta,,,1,12,a", @@ -3463,7 +3990,14 @@ ",SemiBold,,,,a", "Over the Rainbow,Regular,a,,6,", "Ovo,,a,1,14,", - "Oxygen,,a,15,12,", + "Oxanium,Bold,,,12,", + ",ExtraBold,,,,", + ",ExtraLight,,,,", + ",Light,,,,", + ",Medium,,,,", + ",Regular,,,,", + ",SemiBold,,,,", + "Oxygen,Regular,a,15,,", ",Bold,,11,,", ",Bold Italic,,,,", ",Italic,,15,,", @@ -3543,7 +4077,7 @@ "Pavanam,,,3,12,a", "Paytone One,,,4099,,a", "Peace Sans,,a,9,,", - "Pecita,Medium,a,3,6,", + "Pecita,Book,a,4111,6,", "Peddana,Regular,a,0,14,a", "Peralta,,,3,15,", "Permanent Marker,,a,1,6,", @@ -3564,13 +4098,48 @@ ",Bold Italic,PerspectiveSansBoldItalic,,,", ",Italic,PerspectiveSansItalic,,,", "Petit Formal Script,Regular,,3,6,a", - "Petrona,,,1,14,a", - "Philosopher,,a,9,12,", + "Petrona,Black,,4099,14,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", + "Philosopher,Regular,a,9,12,", ",Bold,,4105,,a", ",Bold Italic,,,,a", ",Italic,,,,a", ",Regular,,,,a", - "Piedra,,,1,4,a", + "Piazzolla,Black,,4111,14,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", + "Piedra,Regular,,1,4,a", "Pincoyablack,Black,,,,", "Pinyon Script,Regular,a,,6,a", "Pirata One,,,3,4,a", @@ -3588,8 +4157,14 @@ ",Black Italic,,,,a", ",Bold,,,,a", ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", ",Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", "Playfair Display SC,Black,,,,a", ",Black Italic,,,,a", ",Bold,,,,a", @@ -3645,11 +4220,13 @@ ",Medium,,,,", ",Regular,,,,", ",SemiBold,,,,", + "Potta One,Regular,,4227,4,a", "Pragati Narrow,Bold,,515,12,", ",Regular,,,,", "Prata,,,4105,14,", "Preah Vihear,,a,2048,4,a", "Press Start 2P,,,15,,a", + "Pribambas,,,8,2,ex/pu/Pribambas-Regular.ttf", "Pridi,Bold,,5123,14,a", ",ExtraLight,,,,a", ",Light,,,,a", @@ -3670,7 +4247,7 @@ "Prompt,Black,,5123,12,a", ",Black Italic,,,,a", ",Bold,,,,a", - ",Bold Bold Italic,Prompt-BoldItalic,,,a", + ",Bold Italic,,,,a", ",ExtraBold,,,,a", ",ExtraBold Italic,,,,a", ",ExtraLight,,,,a", @@ -3682,7 +4259,7 @@ ",Medium Italic,,,,a", ",Regular,,,,a", ",SemiBold,,,,a", - ",Semibold Italic,Prompt-SemiBoldItalic,,,a", + ",SemiBold Italic,,,,a", ",Thin,,,,a", ",Thin Italic,,,,a", "Prosto One,Regular,,9,4,a", @@ -3698,24 +4275,24 @@ ",Regular,,,,", ",SemiBold,,,,", ",SemiBold Italic,,,,", - "Public Sans,Black,,4099,,", - ",Black Italic,,,,", - ",Bold,,,,", - ",Bold Italic,,,,", - ",ExtraBold,,,,", - ",ExtraBold Italic,,,,", - ",ExtraLight,,,,", - ",ExtraLight Italic,,,,", - ",Italic,,,,", - ",Light,,,,", - ",Light Italic,,,,", - ",Medium,,,,", - ",Medium Italic,,,,", - ",Regular,,,,", - ",SemiBold,,,,", - ",SemiBold Italic,,,,", - ",Thin,,,,", - ",Thin Italic,,,,", + "Public Sans,Black,,4099,,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", "Puritan,Bold,,1,,", ",BoldItalic,,,,", ",Italic,,,,", @@ -3740,6 +4317,7 @@ "Qomolangma-Uchen Suring,,Qomolangma-Uchen-Suring,,,ex/tib/Q17/Q-UchenSuring.ttf", "Qomolangma-Uchen Sutung,,Qomolangma-Uchen-Sutung,,,ex/tib/Q17/Q-UchenSutung.ttf", "Qomolangma-Woodblock,,a,,,ex/tib/Q17/Q-Woodblock.ttf", + "Quaerite Regnum Dei,,a,0,0,", "Quando,,,3,14,a", "Quantico,Bold,,1,12,", ",Bold Italic,,,,", @@ -3752,7 +4330,7 @@ ",Bold,,,,", ",Bold Italic,,,,", ",Italic,,,,", - "Questrial,Regular,,,,", + "Questrial,Regular,,4099,,a", "Quick End Jerk,,a,0,4,", "Quicksand,Bold,,4099,12,a", ",Bold Italic,,1,,", @@ -3761,6 +4339,7 @@ ",Light Italic,,1,,", ",Medium,,4099,,a", ",Regular,,,,a", + ",SemiBold,,,,a", ",Dash,QuicksandDash-Regular,0,,", "QuigleyWiggly,Regular,a,1,13,", "Quintessential,,,3,,", @@ -3779,25 +4358,25 @@ ",SemiBold,,,,a", ",Semibold,,,,", "Rakkas,Regular,,33,4,a", - "Raleway,Black,,11,12,", - ",Black Italic,,3,,", - ",Bold,,11,,", - ",Bold Italic,,3,,", - ",ExtraBold,,11,,", - ",ExtraBold Italic,,3,,", - ",ExtraLight,,11,,", - ",ExtraLight Italic,,3,,", - ",Italic,,,,", - ",Light,,11,,", - ",Light Italic,,3,,", - ",Medium,,11,,", - ",Medium Italic,,3,,", - ",Regular,,11,,", - ",SemiBold,,,,", - ",SemiBold Italic,,3,,", - ",Thin,,11,,", - ",Thin Italic,,3,,", - "Raleway Dots ,Regular,,,4,", + "Raleway,Black,,4107,12,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", + "Raleway Dots ,Regular,,3,4,", "Ramabhadra,,a,0,12,a", "Ramaraja,,a,,14,a", "Rambla,Bold,,1,12,", @@ -3827,7 +4406,14 @@ "RawengulkSans,,a,,12,", "Rawengulk,Ultralight,RawengulkUltralight,,15,", "Rechtman,Plain,,0,13,", - "Red Hat Display,Black,,3,12,", + "Recursive,Black,,4099,12,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + "Red Hat Display,Black,,3,,", ",Black Italic,,,,", ",Bold,,,,", ",Bold Italic,,,,", @@ -3841,7 +4427,12 @@ ",Medium,,,,", ",Medium Italic,,,,", ",Regular,,,,", - "Redressed,,a,,6,", + "Red Rose,Bold,,4099,4,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + "Redressed,Regular,a,3,6,", ",,,,,a", "Reem Kufi,,,33,12,a", "Reenie Beanie,,a,1,6,a", @@ -3880,18 +4471,27 @@ ",Regular,,,,a", "Roboto Mono,Bold,,,7,a", ",Bold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", ",Italic,,,,a", ",Light,,,,a", ",Light Italic,,,,a", ",Medium,,,,a", ",Medium Italic,,,,a", ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", ",Thin,,,,a", ",Thin Italic,,,,a", - "Roboto Slab,Bold,,,15,", - ",Light,,,,", - ",Regular,,,,", - ",Thin,,,,", + "Roboto Slab,Black,,,14,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", "Rochester,Regular,a,1,13,", ",,,,6,a", "Rock Salt,,a,,,", @@ -3914,6 +4514,8 @@ ",Italic,,,,", ",Light,,,,", ",Light Italic,,,,", + ",Medium,,,,a", + ",Medium Italic,,,,a", ",Regular,,,,", ",SemiBold,,,,", ",SemiBold Italic,,,,", @@ -3941,24 +4543,34 @@ ",SemiBold Italic,,,,", ",UltraLight,,,,", ",UltraLight Italic,,,,", - "Rozha One,Regular,a,513,15,", + "Rowdies,Bold,,4099,4,a", + ",Light,,,,a", + ",Regular,,,,a", + "Rozha One,,a,513,15,", ",,,515,14,a", "Rubik,Black,,27,12,a", ",Black Italic,,,,a", ",Bold,,,,a", ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", ",Italic,,,,a", ",Light,,,,a", ",Light Italic,,,,a", ",Medium,,,,a", ",Medium Italic,,,,a", ",Regular,,,,a", - "Rubik Mono One,,,11,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + "Rubik Mono One,Regular,,11,,a", "Ruda,,a,1,,", - ",Black,,,,", - ",Bold,,,,", + ",Black,,4107,,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",Medium,,,,a", ",Regular,,,,a", - "Rufina,Bold,,,14,a", + ",SemiBold,,,,a", + "Rufina,Bold,,1,14,a", ",Regular,,,,a", "Ruge Boogie,,,,6,a", "Ruluko,,a,,12,a", @@ -4019,24 +4631,24 @@ "Sahitya,Bold,,515,14,a", ",Regular,,,,a", "Sail,,,1,13,", - "Saira,Black,,4099,12,", - ",Black Italic,,,,", - ",Bold,,,,", - ",Bold Italic,,,,", - ",ExtraBold,,,,", - ",ExtraBold Italic,,,,", - ",ExtraLight,,,,", - ",ExtraLight Italic,,,,", - ",Italic,,,,", - ",Light,,,,", - ",Light Italic,,,,", - ",Medium,,,,", - ",Medium Italic,,,,", - ",Regular,,,,", - ",SemiBold,,,,", - ",SemiBold Italic,,,,", - ",Thin,,,,", - ",Thin Italic,,,,", + "Saira,Black,,4099,12,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", "Saira Condensed,Black,,,,", ",Black Italic,,,,", ",Bold,,,,", @@ -4091,7 +4703,8 @@ ",SemiBold Italic,,,,", ",Thin,,,,", ",Thin Italic,,,,", - "Salaryman,Regular,a,0,4,", + "Saira Stencil One,Regular,,,4,a", + "Salaryman,,a,0,,", "Salsa,,,1,,", "Samba,,a,,12,", "Sanchez,Italic,,3,14,a", @@ -4115,7 +4728,14 @@ ",Medium,,,,", ",Medium Italic,,,,", ",Regular,,,,", - "Sansumi,,Sansumi-Bold,1,12,", + "Sansita Swashed,Black,,,,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + "Sansumi,Regular,Sansumi-Bold,1,12,", ",ExtraBold,,,,", "Santana,Regular,a,,4,", ",Black,,,,", @@ -4183,9 +4803,9 @@ ",Semibold,,,,", ",Semilight,,,,", "Selima,Regular,a,1,13,", - "Sen,Bold,,3,12,", - ",ExtraBold,,,,", - ",Regular,,,,", + "Sen,Bold,,3,12,a", + ",ExtraBold,,,,a", + ",Regular,,,,a", "Seshat,,,1,14,", "Sesquipedalian,,a,0,11,", "Sevillana,,,1,13,", @@ -4221,11 +4841,12 @@ "Siemreap,,a,2048,4,a", "Sigmar,,a,3,,", "Sigmar One,,,4099,,a", - "Signika,Bold,,1,12,", - ",Light,,,,", - ",Regular,,,,", + "Signika,Bold,,,12,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", ",SemiBold,,,,a", - ",Semibold,,,,", + ",Semibold,,1,,", "Signika Negative,Bold,,,,a", ",Light,,,,a", ",Regular,,,,a", @@ -4239,7 +4860,8 @@ ",Italic,,,,", ",Regular,,,,", "Simpel,Medium,,3,12,", - "Sinkin Sans,100 Thin,,,,", + "Single Day,Regular,,64,4,a", + "Sinkin Sans,100 Thin,,3,12,", ",100 Thin Italic,,,,", ",200 X Light,,,,", ",200 X Light Italic,,,,", @@ -4290,28 +4912,42 @@ ",Italic,,,,", "Solveig Text,Regular,a,,,", ",Italic,,,,", - "Song Myung,Regular,,0,14,a", + "Solway,Bold,,1,15,", + ",ExtraBold,,,,", + ",Light,,,,", + ",Medium,,,,", + ",Regular,,,,", + "Some Time Later,,a,31,4,", + "Song Myung,,,0,14,a", "Sonsie One,,a,3,4,", ",,,,,a", + "Sora,Bold,,,12,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", "Soria,Soria,,0,14,", "Sorts Mill Goudy,Italic,,3,,a", ",Regular,,,,a", "SouciSans,,a,1,4,", "SoukouMincho,,a,140,14,", - "Source Code Pro,Black,,4111,7,", - ",Black Italic,SourceCodePro-BlackIt,4099,,", - ",Bold,,4111,,", - ",Bold Italic,SourceCodePro-BoldIt,4099,,", - ",ExtraLight,,4111,,", - ",ExtraLight Italic,SourceCodePro-ExtraLightIt,4099,,", - ",Italic,SourceCodePro-It,,,", - ",Light,,4111,,", - ",Light Italic,SourceCodePro-LightIt,4099,,", - ",Medium,,4111,,", - ",Medium Italic,SourceCodePro-MediumIt,4099,,", - ",Regular,,4111,,", - ",Semibold,,,,", - ",Semibold Italic,SourceCodePro-SemiboldIt,4099,,", + "Source Code Pro,Black,,4111,7,a", + ",Black Italic,SourceCodePro-BlackIt,4099,,a", + ",Bold,,4111,,a", + ",Bold Italic,SourceCodePro-BoldIt,4099,,a", + ",ExtraLight,,4111,,a", + ",ExtraLight Italic,SourceCodePro-ExtraLightIt,4099,,a", + ",Italic,SourceCodePro-It,,,a", + ",Light,,4111,,a", + ",Light Italic,SourceCodePro-LightIt,4099,,a", + ",Medium,,4111,,a", + ",Medium Italic,SourceCodePro-MediumIt,4099,,a", + ",Regular,,4111,,a", + ",Semibold,,,,a", + ",Semibold Italic,SourceCodePro-SemiboldIt,4099,,a", "Source Han Sans,Bold,,4301,12,ex/shs/SourceHanSans-Bold.ttc", ",ExtraLight,,,,ex/shs/SourceHanSans-ExtraLight.ttc", ",Heavy,,,,ex/shs/SourceHanSans-Heavy.ttc", @@ -4404,35 +5040,49 @@ ",SemiBold Italic,,4099,,a", ",Semibold,,4111,,", ",Semibold Italic,SourceSansPro-SemiboldIt,4099,,", - "Source Serif Pro,Black,,4111,14,", - ",Black Italic,SourceSerifPro-BlackIt,3,,", - ",Bold,,4111,,", - ",Bold Italic,SourceSerifPro-BoldIt,3,,", - ",ExtraLight,,4111,,", - ",ExtraLight Italic,SourceSerifPro-ExtraLightIt,3,,", - ",Italic,SourceSerifPro-It,,,", - ",Light,,4111,,", - ",Light Italic,SourceSerifPro-LightIt,3,,", - ",Regular,,4111,,", + "Source Serif Pro,Black,,4111,14,a", + ",Black Italic,SourceSerifPro-BlackIt,,,a", + ",Bold,,,,a", + ",Bold Italic,SourceSerifPro-BoldIt,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,SourceSerifPro-ExtraLightIt,,,a", + ",Italic,SourceSerifPro-It,,,a", + ",Light,,,,a", + ",Light Italic,SourceSerifPro-LightIt,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,SourceSerifPro-SemiBoldIt,,,a", ",Semibold,,,,", ",Semibold Italic,SourceSerifPro-SemiboldIt,3,,", - "Space Grotesk,Bold,,,12,", + "Space Comics,Regular,a,0,2,ex/pu/Space Comics.ttf", + "Space Grotesk,Bold,,4099,12,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + "Space Mono,Bold,,,7,", + ",Bold Italic,,,,", + ",Italic,,,,", + ",Regular,,,,", + "Spartan,Black,,3,12,a", + ",Bold,,,,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", + "Spartan MB,Black,,,,", + ",Bold,,,,", + ",ExtraBold,,,,", + ",ExtraLight,,,,", ",Light,,,,", ",Medium,,,,", ",Regular,,,,", ",SemiBold,,,,", - "Space Mono,Bold,,4099,7,", - ",Bold Italic,,,,", - ",Italic,,,,", - ",Regular,,,,", - "Spartan MB,Black,,1,12,", - ",Bold,,,,", - ",ExtraBold,,,,", - ",Light,,,,", - ",Regular,,,,", - ",SemiBold,,,,", ",Thin,,,,", - "Special Elite,Regular,,3,17,", + "Special Elite,Regular,,,17,", "Spectral,Bold,,4107,14,a", ",Bold Italic,,,,a", ",ExtraBold,,,,a", @@ -4470,7 +5120,26 @@ "Sporting Grotesque,Bold,,5,12,", ",Regular,,,,", "Sportrop,,,3,4,", - "Squada One,,,1,,", + "Sprat,,a,1,14,", + ",Condensed Black,,,,", + ",Condensed Bold,,,,", + ",Condensed Light,,,,", + ",Condensed Medium,,,,", + ",Condensed Thin,,,,", + ",Condesed Regular,,,,", + ",Extended Black,,,,", + ",Extended Bold,,,,", + ",Extended Light,,,,", + ",Extended Medium,,,,", + ",Extended Thin,,,,", + ",Extended regular,,,,", + ",Regular,,,,", + ",Regular Black,,,,", + ",Regular Bold,,,,", + ",Regular Medium,,,,", + ",Regular Thin,,,,", + ",Regular light,,,,", + "Squada One,Regular,,,4,", "Sree Krushnadevaraya,,a,0,14,a", "Sriracha,,,5123,6,a", "Srisakdi,Bold,,,4,a", @@ -4515,7 +5184,11 @@ ",Thin Slanted,,,,", "Sue Ellen Francisco ,Regular,a,1,6,a", "Suez One,,,19,14,a", - "Sumana,Bold,,513,,a", + "Suit Icons,,SuitIconsRegular,1,3,", + "Sulphur Point,Bold,,,12,a", + ",Light,,,,a", + ",Regular,,,,a", + "Sumana,Bold,,513,14,a", ",Regular,,,,a", "Sunflower,Bold,,0,12,a", ",Light,,,,a", @@ -4532,12 +5205,17 @@ "Symbol Signs,Basis set,,0,3,", "Syncopate,Bold,,3,4,", ",Regular,,,,", - "Syne,Bold,,,12,", + "Syne,Bold,,,12,a", ",Extra,,,,", + ",ExtraBold,,,,a", ",Italic,,,,", + ",Medium,,,,a", ",Mono,,,,", - ",Regular,,,,", - "Synthetique OT,,a,1,4,", + ",Regular,,,,a", + ",SemiBold,,,,a", + "Syne Mono,Regular,,,7,a", + "Syne Tactile,,,,4,a", + "Synthetique OT,,a,1,,", "TCRC Youtso Unicode,,a,256,10,ex/tib/S12/TCRC Youtso Uni.ttf", "210 Sunflower,Light,TTSunflowerL,12,,ex/sunflower.ttf", "Tagapagsalaysay Caps (Narrator),Regular,TagapagsalaysayCapsNarrator,0,2,", @@ -4554,7 +5232,21 @@ "Tangerine,,a,,13,", ",Bold,,,,", ",Regular,,,6,a", - "Taprom,,a,2048,4,a", + "Tanohe Sans,,a,3,12,", + ",Black,,,,", + ",Black Italic,,,,", + ",Bold,,,,", + ",Bold Italic,,,,", + ",Italic,,,,", + ",Light,,,,", + ",Light Italic,,,,", + ",Medium,,,,", + ",Medium Italic,,,,", + ",SemiBold,,,,", + ",SemiBold Italic,,,,", + ",Thin,,,,", + ",Thin Italic,,,,", + "Taprom,Regular,a,2048,4,a", "TarponMotel,,a,1,12,", "Tauri,,TauriRegular,,,a", "Taviraj,Black,,5123,14,a", @@ -4628,7 +5320,25 @@ "Teutonic No3,,,,,", "Teutonic No4,,,,,", "Text Me One,Regular,,1,12,a", - "Thasadith,Bold,,5123,,a", + "Texturina 12pt,Black,,4099,14,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", + "Thasadith,Bold,,5123,12,a", ",Bold Italic,,,,a", ",Italic,,,,a", ",Regular,,,,a", @@ -4688,6 +5398,24 @@ ",SemiBold,,,,a", ",SemiBold Italic,,,,a", "Tiza,Regular,a,1,4,", + "Tomorrow,Black,,4099,12,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", + ",Italic,,,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", "Top Secret,Bold,,0,16,", "Trade Winds,Regular,a,1,4,", "TrashHand,,a,,6,", @@ -4711,6 +5439,14 @@ ",SemiBold Italic,,,,a", ",Thin,,,,a", ",Thin Italic,,,,a", + "Trispace,Bold,,4099,12,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",Thin,,,,a", "Trocchi,Regular,a,3,15,", ",Bold,,0,,", ",Regular,,3,14,a", @@ -4730,6 +5466,12 @@ ",Bold,,,,", ",Italic,,,,", "Tulpen One,Regular,,,4,", + "Turret Road,Bold,,3,,a", + ",ExtraBold,,,,a", + ",ExtraLight,,,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", "TypeMyMusic,Notation,,0,3,", "TypoSlabserif,Light,,1,15,", "Ubuntu,Regular,a,15,12,", @@ -4800,7 +5542,12 @@ "Varela,,a,4099,12,", "Varela Round,,a,1,,", ",,,4115,,a", - "Vast Shadow,,,1,4,", + "Varta,Bold,,4099,,a", + ",Light,,,,a", + ",Medium,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + "Vast Shadow,Regular,,1,4,", "Veggieburger,,a,,,", ",Bold,,,,", ",Light,,,,", @@ -4814,8 +5561,31 @@ ",Medium,,,,", ",Regular,,,,", "Veteran Typewriter,,a,0,17,", + "Viaoda Libre,,,4107,4,a", + "Vibes,,,33,,a", "Vibur,Medium,a,1,13,", - "Vidaloka ,Regular,,,4,", + "Victor Mono,Bold,,4111,12,", + ",Bold Italic,,,,", + ",Bold Oblique,,,,", + ",ExtraLight,,,,", + ",ExtraLight Italic,,,,", + ",ExtraLight Oblique,,,,", + ",Italic,,,,", + ",Light,,,,", + ",Light Italic,,,,", + ",Light Oblique,,,,", + ",Medium,,,,", + ",Medium Italic,,,,", + ",Medium Oblique,,,,", + ",Oblique,,,,", + ",Regular,,,,", + ",SemiBold,,,,", + ",SemiBold Italic,,,,", + ",SemiBold Oblique,,,,", + ",Thin,,,,", + ",Thin Italic,,,,", + ",Thin Oblique,,,,", + "Vidaloka ,Regular,,1,4,", "Viga,,,,12,", "Virgo 01,,a,,4,", "Vladivostok,Bold,,11,12,", @@ -4825,12 +5595,16 @@ ",Bold Italic,,,,", ",Italic,,,,", ",Regular,,,,", - "Vollkorn,Black,,4111,,", - ",Black Italic,,,,", - ",Bold,,,,", - ",Bold Italic,,,,", - ",Italic,,,,", - ",Regular,,,,", + "Vollkorn,Black,,4111,,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", ",SemiBold,,,,a", ",SemiBold Italic,,,,a", ",Semibold,,,,", @@ -4887,31 +5661,35 @@ ",Italic,WinterthurCondensedOblique,,,", "Wire One,Regular,a,,,a", "WoodenNickelBlack,,a,,11,", - "Work Sans,Black,,4099,12,", - ",Black Italic,,,,", - ",Bold,,,,", - ",Bold Italic,,,,", - ",ExtraBold,,,,", - ",ExtraBold Italic,,,,", - ",ExtraLight,,,,", - ",ExtraLight Italic,,,,", + "Work Sans,Black,,4099,12,a", + ",Black Italic,,,,a", + ",Bold,,,,a", + ",Bold Italic,,,,a", + ",ExtraBold,,,,a", + ",ExtraBold Italic,,,,a", + ",ExtraLight,,,,a", + ",ExtraLight Italic,,,,a", ",Hairline,,3,,", - ",Italic,,4099,,", - ",Light,,,,", - ",Light Italic,,,,", - ",Medium,,,,", - ",Medium Italic,,,,", - ",Regular,,,,", - ",SemiBold,,,,", - ",SemiBold Italic,,,,", - ",Thin,,,,", - ",Thin Italic,,,,", + ",Italic,,4099,,a", + ",Light,,,,a", + ",Light Italic,,,,a", + ",Medium,,,,a", + ",Medium Italic,,,,a", + ",Regular,,,,a", + ",SemiBold,,,,a", + ",SemiBold Italic,,,,a", + ",Thin,,,,a", + ",Thin Italic,,,,a", "XTashi,Regular,a,259,10,ex/tib/S12/XTashi.ttf", + "Xanh Mono,Italic,,4099,7,a", + ",Regular,,,,a", "Xenophone,,a,1,4,", "Yanone Kaffeesatz,Bold,,4107,12,a", ",ExtraLight,,,,a", ",Light,,,,a", + ",Medium,,,,a", ",Regular,,,,a", + ",SemiBold,,,,a", "Yantramanav,Black,,513,,a", ",Bold,,,,a", ",Light,,,,a", @@ -4939,7 +5717,8 @@ ",Regular,,,,", ",SemiBold,,,,", "Yukarimobile,Regular,a,1,4,", - "ZCOOL KuaiLe,,,128,,a", + "Yusei Magic,,,129,12,a", + "ZCOOL KuaiLe,,,128,4,a", "ZCOOL QingKe HuangYou,,,,,a", "ZCOOL XiaoWei,,,,14,a", "Zambajoun,,a,0,8,", @@ -4947,7 +5726,8 @@ "Zenda,,a,0,0,", "Zero & Zero Is,,Zero&Zero-Is,,4,", "Zeyada,,a,3,6,a", - "Zilla Slab,Bold,,,15,", + "Zhi Mang Xing,,,128,,a", + "Zilla Slab,Bold,,3,15,", ",Bold Italic,,,,", ",Italic,,,14,a", ",Light,,,15,", @@ -5201,7 +5981,7 @@ var LNG = { } ], "tables": [ - "[File;Edit;Image;Layer;Folder;Select;Filter;View::noun (Top Menu);Window;Language;Log In;Log Out;Create translation::Click it to get to www.Photopea.com/translate;[Account;Terms of Service;Back;About::\"About a program\" - the orange button at the top;Report a bug;Learn];More;Theme;Use WebGL;[Photopea: advanced image editor::The header at the top of the page;Free online editor supporting PSD, XCF, Sketch, XD and CDR formats.::Will be at the top of the page;Create a new image or open existing files from your computer. Save your work as PSD (File - Save as PSD) or as JPG / PNG / SVG (File - Export as).::Will be at the top of the page;Suggest new features at our or . Our goal is to create .::Parts between < and > will become links.;Sponsor links open in a new window.;This feature is not available.;Install Photopea]];[Open::verb;Publish online;Save::verb;Save as PSD;Print::Press to print on a printer;Open from URL;Open From Computer;Connect With Google Drive;Export as;Export Layers;Script;Open & Place::Open a document and insert it into a current document;Close;Local Storage;File Info];[Step Forward::In history of changes;Step Backward::In history of changes;Clear::Verb, press to clear the selected area;Fill::Verb, press to fill the selected area;Transform::Transform the image;Rotate;Flip VAR0::VAR0 will be replaced with Horizontally/Vertically;Scale VAR0::VAR0 will be replaced with Horizontally/Vertically;Undo / Redo;Perspective;[Auto-Blend::Auto-Blend layers together;Auto-Align::Auto-Align layers against each other];Fade;Apply Image];Adjustments;[Brightness/Contrast;Levels::Levels adjustment;Curves::Curves adjustment;Exposure;Vibrance;Hue/Saturation;Color Balance;Black & White;Photo Filter;Channel Mixer;Color Lookup;Invert;Posterize;Threshold;Gradient Map;Selective Color;[Auto Tone;Auto Contrast;Auto Color];Replace Color];[Cut;Copy;Paste::like \"insert\", not like \"toothpaste\";New;Delete;Enable;Disable;Copy Merged::Copy not from a layer, but from all layers (all merged together);Apply::Apply Mask - \"combine\" it with a layer;Again::Repeat the same aciton one more time;Update::A verb];[Duplicate Layer;New Adjustment Layer;Raster Mask;Vector Mask;Add (Reveal All)::Add a mask;[Add (Hide All)::Add a mask;Reveal Selection;Hide Selection;From Transparency];[Clipping Mask;Quick Mask Mode];Convert to Smart Object;Rasterize::Convert Text layer/vector layer to pixels;Group Layers::Put selected layers into a new group;Merge Down::Merge a layer with one below it;Merge Up::Merge a layer with one above it;[Merge Layers::Merge selected layers;Flatten Image::Merge all layers in a document into one];New Layer;Enable Raster Mask;Disable Raster Mask;Enable Vector Mask;Disable Vector Mask;Enable Clipping Mask;Disable Clipping Mask;New Folder;Add Raster Mask;Delete Raster Mask;Add Vector Mask;Delete Vector Mask;Link Raster Mask;Unlink Raster Mask;Link Vector Mask;Unlink Vector Mask;Enable Layer Effects;Disable Layer Effects;Delete Layer;Layer Opacity Change;Blending Change;Rasterize Layer Style;Layer Order::Name of the step, when reordering layers;[Creating Smart Object;Updating Smart Object;Placing Smart Object;Source (Smart Object);Stack Mode::the mode of combining (stacking) multiple images into one];Name Change;Color Change;Edit Adjustment Layer;Convert to Shape;Enable Filter Mask;Disable Filter Mask;Enable Smart Filters;Disable Smart Filters;Add Filter Mask;Delete Filter Mask;Clear Smart Filters;[[Color Fill;Gradient Fill;Pattern Fill;Content Aware];New Fill Layer;Modify Fill Layer];Layer Via Copy;Filter Mask;Delete Layer Style;Move Smart Filter;Delete Smart Filter;[Link Layers;Unlink Layers];Arrange::Arrange layers;[Bring to Front;Bring Forward;Send Backward;Send to Back];[This layer is Locked.;Lock Change;Lock::verb - lock this, lock that];Animation];[All::As in Select - All;Deselect;Inverse;Modify;Expand::Expand Selection;Contract;Feather::Feather (blur) a Selection;Move Selection;Color Range;Border::The border of a Selection;Transform Selection;Refine Edge::A tool for improving the edge of a selection;Heal Selection;Magic Cut];[Zoom In;Zoom Out;Guides::Vertical and horizontal lines over the image, to help us be more precise;Rulers;Grid;Snap::When moving objects, they will \"stick\" to other objects, guides, etc.;Snap To;Document Bounds;Pixel Grid;Paths::Elements of vector graphics;Snap to Pixels;[Slices;Slice Options];Show::A verb: to show.];[History::History of steps;Layers;Properties;Brush::A brush tool;Character::= a Letter (like a, b, c, ...);Paragraph;Info;Layer Comps::Compositions of layers;Swatches::Gallery of colors;Actions;Histogram::Usually the same in other languages;Navigator;Tool Presets;Glyphs];[Brush Tool;Clone Tool;Crop Tool;Eraser Tool;Ellipse Select;Eyedropper::A tool to pick color from the image;Gradient Tool;Hand Tool::To move (pan) across the image area;Type Tool;Lasso Select;Magnetic Lasso Select;Move Tool;Magic Wand;Paint Bucket Tool;Polygonal Lasso Select;Rectangle Select;Free Transform;Zoom Tool;Blur Tool;Sharpen Tool;Smudge Tool;Dodge Tool::Make Brighter;Burn Tool::Make Darker;Sponge Tool::Desaturate;Spot Healing Brush Tool;Healing Brush Tool;Patch Tool::Cut from one place and put to another place;Path Select::a tool to select / move paths;Direct Select::a tool to select / move knots of paths;Pen;Free Pen::Draw freely with this pen;Custom Shape;Rectangle;Ellipse;Parametric Shape;Line;Ruler::A ruler tool to measure distances;Quick Selection;Pencil Tool;Perspective Crop;Slice Tool;Slice Select Tool;Color Replacement;Red Eye Tool;Object Selection;Background Eraser;Puppet Warp;Rotate View;Content-Aware Scale;Content-Aware Move Tool];[Take a picture::Press the button to take a picture;Color Picker;Contour Editor;Canvas Size;Duplicate Into ...;Gradient Editor;Layer Style;New Project;Save for web;Warp;Image Size;Vectorize Bitmap::Convert raster pixels into vector paths;[Trim::cut away an empty area around the object;Crop::(verb) Crop the image;Reveal All];Keyboard Shortcuts;Add Guides;[Clear Guides;Guides from Layer]];[Opacity;Effects;Brightness;[Contrast;Use Legacy];Channel::Color Channel;Exposure;Offset;Gamma correction;Hue;Saturation;Lightness;Colorize;Range;Vibrance;[Size;Interpolation;Nearest Neighbor;Bilinear];Angle;Roundness;Hardness;Spacing;[Blend Mode;Blend If::Specifies a tonal range for blending];Sample Size;Contour;Style;[Reverse;Relative::When ON, you only write a number, which will be added to the original value;Anchor::To which side the object should be anchored];Tolerance;Contiguous;Fill::Noun, the content (filling) of something.;Use global angle;Distance;Spread::Spread the effected area;Noise::add random image noise;Knock out drop shadow::No drop shadow behind the object;Technique;Direction;Depth;Soften;Mode::One of possible modes of the effect;Gradient::from one color to another;Scale::scale the content - 10% or even 200%;Align with layer;Position::Position of the effect;Width;Height;Destination;Type;Foreground;Background;Custom::Color: not foreground or background, but a custom color;Name::Name of something;Create;Format;Keep Aspect Ratio;[Quality;Pages];Duplicate;Move::When you move layers, the Move step will be added to History;Smart Filters;Radius;Amount::Strength of the effect (0 ... 100);Distribution;[Uniform::uniform random distribution;Gaussian];Monochromatic;Cell Size::Mosaic filter creates \"cells\";Pattern;Flow::A brush has the opacity and the flow;Strength;Protect Detail;Fill Type;Texture;Jitter::Add Noise in Outer Glow;Edge::The inner glow is either from the center, or from the Edge;Source;Target;Channels;Mask::A noun, e.g. a vector mask or a raster mask ;Density;Aligned;[Path;Shape;Pixels;Inches;Centimeters;Millimeters;Percent];Shapes;Sides;Preferences;[Length;Ratio;Any::Any ratio of a rectangle;Grid Type;Isometric;Grid Gap;Ruler Units];Reduce noise;Colors;Distances;Rate::Liquify filter: Rate of modification;Auto-Select::Move tool option: click the object to select its layer;Find;Define New;[Photo;Screen::computer screen;Mobile::Mobile device;Ads::Advertisement;Print::A noun];[Free::Not Restricted / Not Limited;Fixed Ratio;Fixed Size];Help;[Live Shape::Shape, that can be reconstructed from parameters at any time;Edit Live Shape;Same Radii::all radiuses of a rectangle should be the same];Fuzziness;[Polygon;Star;Spiral;Square];[Corner Radius;Inner Radius]];[Color;[None::No Color;Red;Orange;Yellow;Green;Blue;Purple;Gray;White;Transparent;Black;Cyan::A color;Magenta::A color;Neutral::Apply to neutral colors];Total;Absolute;Preserve Luminosity];[Drop Shadow;Inner Shadow;Outer Glow;Inner Glow;Bevel and Emboss;Color Overlay;Gradient Overlay;Pattern Overlay;Satin;Stroke::Thick line around an object;Blending Options;Select Pixels];[Tip Shape;Tip Dynamics;Scatter::dont put brush exactly, but randomly around the target spot;Color Dynamics;[Size Jitter::change the size randomly;Minimal Diameter;Angle Jitter::change the angle randomly;Roundness Jitter::change the roundness randomly;Minimal Roundness];[Position Jitter;Count::The number of brush tips;Count Jitter];[Foreground/Background Jitter;Hue Jitter;Saturation Jitter;Brightness Jitter];[Select clone source by holding Alt (or K) and clicking on the image.;Mark Foreground with White, Background with Black, and the unknown area with Gray.;Layer is not editable.;Text Layer must be rasterized first;Smart Object must be rasterized first;Select multiple layers;Straighten Layer::Will rotate the layer, so that the horizon is horizontal;Open a document first.;Close the current window first.;Current Tool Only::Tool Presets only for the current tool];[Record::To record actions;New Action Set;New Action];[Stylus Pressure controls Opacity;Stylus Pressure controls Size];[Normal::One of Blend Modes (when empty, English version will be used);Dissolve::One of Blend Modes (when empty, English version will be used);Darken::...;Multiply::...;Color Burn::...;Linear Burn::...;Darker Color::...;Lighten;Screen;Color Dodge;Linear Dodge;Lighter Color;Overlay;Soft Light;Hard Light;Vivid Light;Linear Light;Pin Light;Hard Mix;Difference;Exclusion;Subtract;Divide;Hue;Saturation;Color;Luminosity;Pass Through::Blend Mode only for Folders]];[Leading::Text style - vertical distance between lines;Tracking::Text style - horizontal spacing between characters;Baseline shift::Move the bottom line of the text;[Convert to Point Text;Convert to Paragraph Text]];[All Layers;Current Layer;Selection;Current & Below::Current layers and all layers below it];[Replace::The new thing replaces the old one;Unite;Subtract;Intersect;Exclude;Merge];[[Linear;Radial;Angle;Reflected;Diamond;Shape Burst];[Softer;Precise];[Outer Bevel;Inner Bevel;Emboss;Pillow Emboss;Stroke Emboss;Stroke Width::The thickness of the stroke line (contour)];[Smooth::A verb: to smooth something;Chisel Hard;Chisel Soft;Smoothness];[Up;Down];[Outside;Center;Inside;From Center::Draw an object from the center];[Shadows;Midtones;Highlights];[Desaturate;Saturate];[Small;Medium;Large];[Caps;Corners;Dashes]];[Choose the object under the cursor;Transform controls;Pixel to Pixel::Zoom the image to 100% (1 image pixel = 1 screen pixel);Fit The Area;[Align Left Edges;Center Horizontally;Align Right Edges;Align Top Edges;Center Vertically;Align Bottom Edges;Equal Gaps::Equal spacing between objects]];[Place into::Place the new photo into:;Current Project;New Project;Resolution;Added into the current project.;A new project was created.;Access to the camera was denied.];[Orientation::Vertical or horizontal;Bend::Text warping: bend the text to a wave, etc.;Horizontal Distortion;Vertical Distortion;[Horizontal;Vertical;Horizontally;Vertically];[None::No Warp;Arc;Arc Lower;Arc Upper;Arch;Bulge;Shell Lower;Shell Upper;Flag;Wave;Fish;Rise;Fish Eye;Inflate;Squeeze;Twist;Custom];[Font;is not available;Will be rendered using;There is unsaved work in::File name will be added after this;Do you really want to close it?];[Swap Colors;Default: White and Black]];[loaded::File was loaded;added::Font was added;Move Guide;Delete Guide;Add Guide;;Load VAR0::Keep VAR0 in a phrase, it will be replaced with a Noun when used];[Filter Gallery;[[Liquify::A filter;[Smudge::Draw over image to spread colors along your stroke;Reconstruct::Recover to original state;Smoothen::Make the effect more smooth;Twirl::Rotate in a spiral;Shrink::Make smaller;Blow::Make bigger;Push Left::ush colors to the left along the stroke;Freeze;Unfreeze]];[Lens Correction]];Blur::A noun;[Average::Average filter - fills the image with an average color;Blur:: A verb;Blur More;Box Blur;Gaussian Blur;Lens Blur;Motion Blur;Radial Blur;Shape Blur;Smart Blur;Surface Blur];Distort;[Displace::Filter: move parts of image according to the brightness from another image;Pinch::Blow or shring around the center;Polar Coordinates;Ripple::Add tiny waves to the image;Shear;Spherize;Wave];Noise::Filetr => Noise;[Add Noise;Despeckle;Dust & Scratches;Median];Pixelate;[Color Halftone;Crystallize;Facet;Fragment;Mezzotint;Mosaic;Pointillize];Render;[Clouds;Difference Clouds;Lens Flare];Sharpen;[Sharpen;Sharpen Edges;Sharpen More;Smart Sharpen;Unsharp Mask];Stylize;[Diffuse;Emboss;Extrude;Find Edges;Oil Paint];Other;[Custom::A Custom kernel of the convolution;High Pass;Maximum;Minimum;Offset::Filter: shift the image horizontally and vertically;Repeat::Filter: Repeat the image many times];[Undefined Area;Set to Transparent;Repeat Edge Pixels;Wrap Around;Last Filter;Preview]];[Templates;[Font Filter;Keywords;Randomize];[With Symbols;With Photo];[Thumbnails;List]]", + "[File;Edit;Image;Layer;Folder;Select;Filter;View::noun (Top Menu);Window;Language;Log In;Log Out;Create translation::Click it to get to www.Photopea.com/translate;[Account;Terms of Service;Back;About::\"About a program\" - the orange button at the top;Report a bug;Learn];More;Theme;Use WebGL;[Photopea: advanced image editor::The header at the top of the page;Free online editor supporting PSD, XCF, Sketch, XD and CDR formats.::Will be at the top of the page;Create a new image or open existing files from your computer. Save your work as PSD (File - Save as PSD) or as JPG / PNG / SVG (File - Export as).::Will be at the top of the page;Suggest new features at our or . Our goal is to create .::Parts between < and > will become links.;Sponsor links open in a new window.;This feature is not available.;Install Photopea]];[Open::verb;Publish online;Save::verb;Save as PSD;Print::Press to print on a printer;Open from URL;Open From Computer;Connect With Google Drive;Export as;Export Layers;Script;Open & Place::Open a document and insert it into a current document;Close;Local Storage;File Info];[Step Forward::In history of changes;Step Backward::In history of changes;Clear::Verb, press to clear the selected area;Fill::Verb, press to fill the selected area;Transform::Transform the image;Rotate;Flip VAR0::VAR0 will be replaced with Horizontally/Vertically;Scale VAR0::VAR0 will be replaced with Horizontally/Vertically;Undo / Redo;Perspective;[Auto-Blend::Auto-Blend layers together;Auto-Align::Auto-Align layers against each other];Fade;Apply Image];Adjustments;[Brightness/Contrast;Levels::Levels adjustment;Curves::Curves adjustment;Exposure;Vibrance;Hue/Saturation;Color Balance;Black & White;Photo Filter;Channel Mixer;Color Lookup;Invert;Posterize;Threshold;Gradient Map;Selective Color;[Auto Tone;Auto Contrast;Auto Color];Replace Color];[Cut;Copy;Paste::like \"insert\", not like \"toothpaste\";New;Delete;Enable;Disable;Copy Merged::Copy not from a layer, but from all layers (all merged together);Apply::Apply Mask - \"combine\" it with a layer;Again::Repeat the same aciton one more time;Update::A verb];[Duplicate Layer;New Adjustment Layer;Raster Mask;Vector Mask;Add (Reveal All)::Add a mask;[Add (Hide All)::Add a mask;Reveal Selection;Hide Selection;From Transparency];[Clipping Mask;Quick Mask Mode];Convert to Smart Object;Rasterize::Convert Text layer/vector layer to pixels;Group Layers::Put selected layers into a new group;Merge Down::Merge a layer with one below it;Merge Up::Merge a layer with one above it;[Merge Layers::Merge selected layers;Flatten Image::Merge all layers in a document into one];New Layer;Enable Raster Mask;Disable Raster Mask;Enable Vector Mask;Disable Vector Mask;Enable Clipping Mask;Disable Clipping Mask;New Folder;Add Raster Mask;Delete Raster Mask;Add Vector Mask;Delete Vector Mask;Link Raster Mask;Unlink Raster Mask;Link Vector Mask;Unlink Vector Mask;Enable Layer Effects;Disable Layer Effects;Delete Layer;Layer Opacity Change;Blending Change;Rasterize Layer Style;Layer Order::Name of the step, when reordering layers;[Creating Smart Object;Updating Smart Object;Placing Smart Object;Source (Smart Object);Stack Mode::the mode of combining (stacking) multiple images into one];Name Change;Color Change;Edit Adjustment Layer;Convert to Shape;Enable Filter Mask;Disable Filter Mask;Enable Smart Filters;Disable Smart Filters;Add Filter Mask;Delete Filter Mask;Clear Smart Filters;[[Color Fill;Gradient Fill;Pattern Fill;Content Aware];New Fill Layer;Modify Fill Layer];Layer Via Copy;Filter Mask;Delete Layer Style;Move Smart Filter;Delete Smart Filter;[Link Layers;Unlink Layers];Arrange::Arrange layers;[Bring to Front;Bring Forward;Send Backward;Send to Back];[This layer is Locked.;Lock Change;Lock::verb - lock this, lock that];Animation];[All::As in Select - All;Deselect;Inverse;Modify;Expand::Expand Selection;Contract;Feather::Feather (blur) a Selection;Move Selection;Color Range;Border::The border of a Selection;Transform Selection;Refine Edge::A tool for improving the edge of a selection;Heal Selection;Magic Cut];[Zoom In;Zoom Out;Guides::Vertical and horizontal lines over the image, to help us be more precise;Rulers;Grid;Snap::When moving objects, they will \"stick\" to other objects, guides, etc.;Snap To;Document Bounds;Pixel Grid;Paths::Elements of vector graphics;Snap to Pixels;[Slices;Slice Options];Show::A verb: to show.];[History::History of steps;Layers;Properties;Brush::A brush tool;Character::= a Letter (like a, b, c, ...);Paragraph;Info;Layer Comps::Compositions of layers;Swatches::Gallery of colors;Actions;Histogram::Usually the same in other languages;Navigator;Tool Presets;Glyphs];[Brush Tool;Clone Tool;Crop Tool;Eraser Tool;Ellipse Select;Eyedropper::A tool to pick color from the image;Gradient Tool;Hand Tool::To move (pan) across the image area;Type Tool;Lasso Select;Magnetic Lasso Select;Move Tool;Magic Wand;Paint Bucket Tool;Polygonal Lasso Select;Rectangle Select;Free Transform;Zoom Tool;Blur Tool;Sharpen Tool;Smudge Tool;Dodge Tool::Make Brighter;Burn Tool::Make Darker;Sponge Tool::Desaturate;Spot Healing Brush Tool;Healing Brush Tool;Patch Tool::Cut from one place and put to another place;Path Select::a tool to select / move paths;Direct Select::a tool to select / move knots of paths;Pen;Free Pen::Draw freely with this pen;Custom Shape;Rectangle;Ellipse;Parametric Shape;Line;Ruler::A ruler tool to measure distances;Quick Selection;Pencil Tool;Perspective Crop;Slice Tool;Slice Select Tool;Color Replacement;Red Eye Tool;Object Selection;Background Eraser;Puppet Warp;Rotate View;Content-Aware Scale;Content-Aware Move Tool];[Take a picture::Press the button to take a picture;Color Picker;Contour Editor;Canvas Size;Duplicate Into ...;Gradient Editor;Layer Style;New Project;Save for web;Warp;Image Size;Vectorize Bitmap::Convert raster pixels into vector paths;[Trim::cut away an empty area around the object;Crop::(verb) Crop the image;Reveal All];Keyboard Shortcuts;Add Guides;[Clear Guides;Guides from Layer]];[Opacity;Effects;Brightness;[Contrast;Use Legacy];Channel::Color Channel;Exposure;Offset;Gamma correction;Hue;Saturation;Lightness;Colorize;Range;Vibrance;[Size;Interpolation;Nearest Neighbor;Bilinear];Angle;Roundness;Hardness;Spacing;[Blend Mode;Blend If::Specifies a tonal range for blending];Sample Size;Contour;Style;[Reverse;Relative::When ON, you only write a number, which will be added to the original value;Anchor::To which side the object should be anchored];Tolerance;Contiguous;Fill::Noun, the content (filling) of something.;Use global angle;Distance;Spread::Spread the effected area;Noise::add random image noise;Knock out drop shadow::No drop shadow behind the object;Technique;Direction;Depth;Soften;Mode::One of possible modes of the effect;Gradient::from one color to another;Scale::scale the content - 10% or even 200%;Align with layer;Position::Position of the effect;Width;Height;Destination;Type;Foreground;Background;Custom::Color: not foreground or background, but a custom color;Name::Name of something;Create;Format;Keep Aspect Ratio;[Quality;Pages];Duplicate;Move::When you move layers, the Move step will be added to History;Smart Filters;Radius;Amount::Strength of the effect (0 ... 100);Distribution;[Uniform::uniform random distribution;Gaussian];Monochromatic;Cell Size::Mosaic filter creates \"cells\";Pattern;Flow::A brush has the opacity and the flow;Strength;Protect Detail;Fill Type;Texture;Jitter::Add Noise in Outer Glow;Edge::The inner glow is either from the center, or from the Edge;Source;Target;Channels;Mask::A noun, e.g. a vector mask or a raster mask ;Density;Aligned;[Path;Shape;Pixels;Inches;Centimeters;Millimeters;Percent];Shapes;Sides;Preferences;[Length;Ratio;Any::Any ratio of a rectangle;Grid Type;Isometric;Grid Gap;Ruler Units];Reduce noise;Colors;Distances;Rate::Liquify filter: Rate of modification;Auto-Select::Move tool option: click the object to select its layer;Find;Define New;[Photo;Screen::computer screen;Mobile::Mobile device;Ads::Advertisement;Print::A noun];[Free::Not Restricted / Not Limited;Fixed Ratio;Fixed Size];Help;[Live Shape::Shape, that can be reconstructed from parameters at any time;Edit Live Shape;Same Radii::all radiuses of a rectangle should be the same];Fuzziness;[Polygon;Star;Spiral;Square];[Corner Radius;Inner Radius]];[Color;[None::No Color;Red;Orange;Yellow;Green;Blue;Purple;Gray;White;Transparent;Black;Cyan::A color;Magenta::A color;Neutral::Apply to neutral colors];Total;Absolute;Preserve Luminosity];[Drop Shadow;Inner Shadow;Outer Glow;Inner Glow;Bevel and Emboss;Color Overlay;Gradient Overlay;Pattern Overlay;Satin;Stroke::Thick line around an object;Blending Options;Select Pixels];[Tip Shape;Tip Dynamics;Scatter::dont put brush exactly, but randomly around the target spot;Color Dynamics;[Size Jitter::change the size randomly;Minimal Diameter;Angle Jitter::change the angle randomly;Roundness Jitter::change the roundness randomly;Minimal Roundness];[Position Jitter;Count::The number of brush tips;Count Jitter];[Foreground/Background Jitter;Hue Jitter;Saturation Jitter;Brightness Jitter];[Select clone source by holding Alt (or K) and clicking on the image.;Mark Foreground with White, Background with Black, and the unknown area with Gray.;Layer is not editable.;Text Layer must be rasterized first;Smart Object must be rasterized first;Select multiple layers;Straighten Layer::Will rotate the layer, so that the horizon is horizontal;Open a document first.;Close the current window first.;Current Tool Only::Tool Presets only for the current tool];[Record::To record actions;New Action Set;New Action];[Stylus Pressure controls Opacity;Stylus Pressure controls Size];[Normal::One of Blend Modes (when empty, English version will be used);Dissolve::One of Blend Modes (when empty, English version will be used);Darken::...;Multiply::...;Color Burn::...;Linear Burn::...;Darker Color::...;Lighten;Screen;Color Dodge;Linear Dodge;Lighter Color;Overlay;Soft Light;Hard Light;Vivid Light;Linear Light;Pin Light;Hard Mix;Difference;Exclusion;Subtract;Divide;Hue;Saturation;Color;Luminosity;Pass Through::Blend Mode only for Folders]];[Leading::Text style - vertical distance between lines;Tracking::Text style - horizontal spacing between characters;Baseline shift::Move the bottom line of the text;[Convert to Point Text;Convert to Paragraph Text]];[All Layers;Current Layer;Selection;Current & Below::Current layers and all layers below it];[Replace::The new thing replaces the old one;Unite;Subtract;Intersect;Exclude;Merge];[[Linear;Radial;Angle;Reflected;Diamond;Shape Burst];[Softer;Precise];[Outer Bevel;Inner Bevel;Emboss;Pillow Emboss;Stroke Emboss;Stroke Width::The thickness of the stroke line (contour)];[Smooth::A verb: to smooth something;Chisel Hard;Chisel Soft;Smoothness];[Up;Down];[Outside;Center;Inside;From Center::Draw an object from the center];[Shadows;Midtones;Highlights];[Desaturate;Saturate];[Small;Medium;Large];[Caps;Corners;Dashes]];[Choose the object under the cursor;Transform controls;Pixel to Pixel::Zoom the image to 100% (1 image pixel = 1 screen pixel);Fit The Area;[Align Left Edges;Center Horizontally;Align Right Edges;Align Top Edges;Center Vertically;Align Bottom Edges;Equal Gaps::Equal spacing between objects]];[Place into::Place the new photo into:;Current Project;New Project;Resolution;Added into the current project.;A new project was created.;Access to the camera was denied.];[Orientation::Vertical or horizontal;Bend::Text warping: bend the text to a wave, etc.;Horizontal Distortion;Vertical Distortion;[Horizontal;Vertical;Horizontally;Vertically];[None::No Warp;Arc;Arc Lower;Arc Upper;Arch;Bulge;Shell Lower;Shell Upper;Flag;Wave;Fish;Rise;Fish Eye;Inflate;Squeeze;Twist;Custom];[Font;is not available;Will be rendered using;There is unsaved work in::File name will be added after this;Do you really want to close it?];[Swap Colors;Default: White and Black]];[loaded::File was loaded;added::Font was added;Move Guide;Delete Guide;Add Guide;Loading;Load VAR0::Keep VAR0 in a phrase, it will be replaced with a Noun when used];[Filter Gallery;[[Liquify::A filter;[Smudge::Draw over image to spread colors along your stroke;Reconstruct::Recover to original state;Smoothen::Make the effect more smooth;Twirl::Rotate in a spiral;Shrink::Make smaller;Blow::Make bigger;Push Left::ush colors to the left along the stroke;Freeze;Unfreeze]];[Lens Correction]];Blur::A noun;[Average::Average filter - fills the image with an average color;Blur:: A verb;Blur More;Box Blur;Gaussian Blur;Lens Blur;Motion Blur;Radial Blur;Shape Blur;Smart Blur;Surface Blur];Distort;[Displace::Filter: move parts of image according to the brightness from another image;Pinch::Blow or shring around the center;Polar Coordinates;Ripple::Add tiny waves to the image;Shear;Spherize;Wave];Noise::Filetr => Noise;[Add Noise;Despeckle;Dust & Scratches;Median];Pixelate;[Color Halftone;Crystallize;Facet;Fragment;Mezzotint;Mosaic;Pointillize];Render;[Clouds;Difference Clouds;Lens Flare];Sharpen;[Sharpen;Sharpen Edges;Sharpen More;Smart Sharpen;Unsharp Mask];Stylize;[Diffuse;Emboss;Extrude;Find Edges;Oil Paint];Other;[Custom::A Custom kernel of the convolution;High Pass;Maximum;Minimum;Offset::Filter: shift the image horizontally and vertically;Repeat::Filter: Repeat the image many times];[Undefined Area;Set to Transparent;Repeat Edge Pixels;Wrap Around;Last Filter;Preview]];[Templates;[Font Filter;Keywords;Randomize];[With Symbols;With Photo];[Thumbnails;List]]", "[Soubor;Úpravy;Obraz;Vrstva;Složka;Výběr;Filtr;Zobrazení;Okno;Jazyk;Přihlášení;Odhlášení;Přeložit;[Účet;Podmínky služby;Zpět;O programu;Nahlas chybu;Nauč se];Více;Motiv vzhledu;Použít WebGL;[Photopea: pokročilý grafický editor;Bezplatný online editor podporující formáty PSD, XCF, Sketch, XD, CDR a další.;Vytvořte nový obrázek nebo otevřete existující soubory z počítače. Uložte práci jako PSD (Soubor - Uložit jako PSD) nebo jako JPG / PNG / SVG (Soubor - Uložit jako).;Navrhněte nové funkce na našem nebo . Naším cílem je vytvořit .;Odkazy sponzorů se otevřou v novém okně.;Tato funkce není dostupná.;Nainstalovat Photopea]];[Otevřít;Zveřejnit online;Uložit;Uložit jako PSD;Tisk;Otevřít z URL;Otevřít z počítače;Spojit s Google Drive;Uložit jako;Exportovat vrstvy;Skript;Otevřít a Umístit;Zavřít;Místní Úložiště;O Souboru];[Krok vpřed;Krok zpět;Vyčistit;Vyplnit;Transformace;Natočit;Překlopit VAR0;Roztáhnout VAR0;Vpřed / Zpět;Perspektivní;[Automaticky prolnout;Automaticky zarovnat];Zeslabit;Aplikovat Obraz];Úpravy;[Jas/Kontrast;Úrovně;Křivky;Expozice;Živost;Odstín/Sytost;Vyvážení barev;Černobílé;Fotografický filtr;Míchání kanálů;Vyhledání Barev;Invertovat;Posterizovat;Práh;Mapa na přechod;Selektivní barva;[Auto Tón;Auto Kontrast;Auto Barvy];Nahradit barvu];[Vyjmout;Kopírovat;Vložit;Nový;Smazat;Zapnout;Vypnout;Kopírovat z celku;Aplikovat;Znovu;Obnovit];[Duplikovat vrstvu;Nová vrstva úprav;Rastrová maska;Vektorová maska;Přidat (zobrazit vše);[Přidat (skrýt vše);Odhalit Výběr;Skrýt Výběr;Podle Průhlednosti];[Maska Ořezu;Režim Rychlá Maska];Převést na Smart Object;Rastrovat;Seskupit vrstvy;Sloučit dolů;Sloučit nahoru;[Sloučit vrstvy;Sloučit Vše];Nová vrstva;Zapnout rastrovou masku;Vypnout rastrovou masku;Zapnout vektorovou masku;Vypnout vektorovou masku;Zapnout ořezovou masku;Vypnout ořezovou masku;Nová složka;Přidat rastrovou masku;Smazat rastrovou masku;Přidat vektorovou masku;Smazat vektorovou masku;Připojit rastrovou masku;Odpojit rastrovou masku;Připojit vektorovou masku;Odpojit vektorovou masku;Zapnout efekty vrstvy;Vypnout efekty vrstvy;Smazat vrstvu;Změna průhlednost vrstvy;Změna režimu prolnutí;Rastrovat styl vrstvy;Pořadí vrstev;[Vytváření Smart Object;Aktualizace Smart Object;Vkládání Smart Object;Zdroj (Smart Object);Režim balíčku];Změna názvu;Změna barvy;Změna vrstvy úprav;Převést na tvar;Zapnout masku filtrů;Vypnout masku filtrů;Zapnout chytré filtry;Vypnout chytré filtry;Přidat masku filtrů;Smazat masku filtrů;Smazat chytré filtry;[[Vyplnění jednolitou barvou;Vyplnění přechodem;Vyplnění vzorkem;Podle Obsahu];Nová krycí vrstva;Úprava krycí vrstvy];Vrstva zkopírováním;Maska filtru;Smazat styl vrstvy;Přesun smart filtru;Smazat smart filtr;[Propojit vrstvy;Zrušit propojení vrstev];Uspořádat;[Poslat na Začátek;Poslat Dopředu;Poslat Dozadu;Poslat na Konec];[Vrstva je Zamčená.;Změna Zámku;Zamkni];Animace];[Vše;Odznačit;Invertovat;Upravit;Rozšířit;Zúžit;Změkčit okraj;Posunout výběr;Barevný rozsah;Okraj;Transformovat výběr;Zpřesnit okraje;Opravit výběr;Kouzelný Ořez];[Přiblížit;Oddálit;Vodítka;Pravítka;Mřížka;Přichytávat;Přichytávat k;Okraj dokumentu;Pixelová mřížka;Cesty;Přichytávat k pixelům;[Řezy;Parametry Řezu];Zobrazit];[Historie;Vrstvy;Vlastnosti;Štětec;Znak;Odstavec;Info;Kompozice;Vzorky;Akce;Histogram;Navigátor;Konfigurace Nástroje;Znaky];[Štětec;Klonovací razítko;Ořez;Guma;Eliptický výběr;Kapátko;Přechod;Ručička;Vodorovný text;Laso;Magnetické laso;Přesun;Kouzelná hůlka;Kyblík barvy;Mnohoúhelníkové laso;Obdélníkový výběr;Volná transformace;Lupa;Rozostření;Zostření;Rozmazání;Zesvětlení;Ztmavení;Houba;potřísnění;Retušovací štětec;Záplata;Výběr cesty;Přímý výběr;Pero;Pero od ruky;Jiný tvar;Obdélník;Elipsa;Tvar s parametry;Čára;Pravítko;Rychlý výběr;Tužka;Perspektivní ořez;Nástroj řez;Nástroj výběr řezu;Nahradit Barvu;Červené oči;Výběr objektů;Mazání pozadí;Pokřivení Loutky;Natočit Obraz;Transformace s ohledem na obsah;Přesun podle obsahu];[Vyfotit;Výběr barvy;Editor kontur;Velikost plátna;Duplikovat do…;Editor přechodu;Styl vrstvy;Nový projekt;Uložit pro web;Pokřivení;Velikost obrazu;Vektorizovat bitmapu;[Oříznout podle;Oříznout;Odhalit Vše];Klávesové zkratky;Přidat Vodítka;[Odstranit vodítka;Vodítka podle vrstvy]];[Krytí;Efekty;Jas;[Kontrast;Použít kompatibilitu];Kanál;Expozice;Posun;Gama korekce;Odstín;Sytost;Světlost;Obarvit;Rozsah;Živost;[Velikost;Interpolace;Nejbližší soused;Bilineární];Úhel;Zaoblení;Tvrdost;Mezery;[Režim prolnutí;Prolnout když];Velikost vzorku;Kontura;Styl;[Otočit;Relativní;Ukotvit];Tolerance;Souvislé;Výplň;Použít globální úhel;Vzdálenost;Rozšíření;Šum;Vyseknout vržený stín;Metoda;Směr;Hloubka;Změkčit;Režim;Přechod;Velikost;Zarovnat s vrstvou;Poloha;Šířka;Výška;Cíl;Typ;Popředí;Pozadí;Vlastní;Název;Vytvořit;Formát;Zachovat poměr stran;[Kvalita;Stránky];Duplikovat;Přesun;Chytré filtry;Poloměr;Míra;Distribuce;[Rovnoměrná;Gaussovská];Monochromatický;Velikost buňky;Vzorek;Hustota;Síla;Zachovat detaily;Typ výplně;Textura;Šum;Hrana;Zdroj;Cíl;Kanály;Maska;Hustota;Zarovnaný;[Cesta;Tvar;Pixely;Palce;Centimetry;Milimetry;Procenta];Tvary;Strany;Předvolby;[Délka;Poměr;Libovolný;Typ mřížky;Isometrický;Velikost mřížky;Jednotky pravítek];Redukovat šum;Barvy;Vzdálenosti;Míra;Auto-výběr;Najít;Definovat nový;[Foto;Obrazovka;Mobil;Reklamy;Tisk];[Volný;Pevný poměr;Pevná velikost];Nápověda;[Živý Tvar;Úprava Živého Tvaru;Stejné Poloměry];Rozmazanost;[Mnohoúhelník;Hvězda;Spirála;Čtverec];[Poloměr Rohů;Vnitřní Poloměr]];[Barva;[Žádná;Červená;Oranžová;Žlutá;Zelená;Modrá;Fialová;Šedá;Bílá;Průhledná;Černá;Azurová;Purpurová;Neutrální];Celkem;Absolutní;Zachovat světlost];[Vržený stín;Vnitřní stín;Vnější záře;Vnitřní záře;Úkos a reliéf;Překrytí barvou;Překrytí přechodem;Překrytí vzorkem;Satén;Vytažení;Možnosti prolnutí;Vybrat Pixely];[Tvar špičky;Dynamika špičky;Rozptyl;Dynamika barvy;[Kolísání velikosti;Minimální průměr;Kolísání úhlu;Kolísání zaoblení;Minimální zaoblení];[Rozptyl polohy;Počet;Kolísání počtu];[Kolísání popředí/pozadí;Kolísání odstínu;Kolísání sytosti;Kolísání jasu];[Zvolte zdroj klonování přidržením Alt a kliknutím do obrazu.;Označte popředí Bílou, pozadí Černou a neznámou oblast Šedou.;Vrstvu nelze upravovat.;Textovou vrstvu je nejprve třeba rasterizovat;Smart Object je nejprve třeba rasterizovat;Vyberte několik vrstev;Vyrovnat Vrstvu;Nejdříve otevřete dokument.;Nejdříve zavřete aktuální okno.;Jen současný nástroj];[Nahrát;Nová skupina akci;Nová akce];[Přítlak pera mění Průhlednost;Přítlak pera mění hrúbku];[Normální;Rozpustit;Ztmavit;Násobit;Ztmavit barvy;Lineárně ztmavit;Tmavší barva;Zesvětlit;Závoj;Zesvětlit barvy;Lineárně zesvětlit;Světlejší barva;Překrýt;Měkké světlo;Tvrdé světlo;Jasné světlo;Lineární světlo;Bodové světlo;Tvrdé míchání;Rozdíl;Vyloučit;Odečíst;Rozdělit;Odstín;Sytost;Barva;Světlost;Projít skrz]];[Proklad;Prostrkání;Posun účaří;[Převést na Bodový text;Převést na Odstavcový text]];[Všechny vrstvy;Stávající vrstva;Výběr;Vrstva a ty pod ní];[Nahradit;Spojit;Odečtení;Průnik;XOR;Spojit];[[Lineární;Kruhový;Úhlový;Zrcadlený;Diamant;Podle tvaru];[Měkčí;Přesná];[Vnější úkos;Vnitřní úkos;Reliéf;Poduškový reliéf;Reliéfní tah;Tloušťka vytažení];[Vyhladit;Tvrdá;Měkká;Hladkost];[Nahoru;Dolů];[Vně;Na střed;Uvnitř;Ze Středu];[Stíny;Střední tóny;Světla];[Snížit Sytost;Zvýšit Sytost];[Malý;Střední;Velký];[Zakončení;Rohy;Čárky]];[Vybrat objekt pod kurzorem;Ovládací prvky transformace;Skutečné pixely;Přizpůsobit obrazovce;[Zarovnat levé hrany;Vodorovně na střed;Zarovnat pravé hrany;Zarovnat horní hrany;Svisle na střed;Zarovnat spodní hrany;Stejné mezery]];[Vložit do;Současný projekt;Nový projekt;Rozlišení;Přidáno do současného projektu.;Nový projekt vytvořen.;Nepovolen přístup ke kameře.];[Orientace;Prohnutí;Vodorovná deformace;Svislá deformace;[Vodorovně;Svisle;Vodorovně;Svisle];[Žádné;Oblouk;Dolní oblouk;Horní oblouk;Klenba;Vyboulení;Mušle dolů;Mušle nahoru;Vlajka;Vlna;Ryba;Vyvýšení;Rybí oko;Nafouknutí;Zmáčknutí;Zkroucení;Vlastní];[Písmo;není dostupný;Pro vykreslení se použije;Máte neuloženou práci v;Opravdu to chcete zavřít?];[Prohodit barvy;Základní: černobílá]];[načten;přidány;Posun vodítka;Smazání vodítka;Přidání vodítka;Načítání;Načíst VAR0];[Galerie filtrů;[[Zkapalnit;[Rozmazat;Obnovit;Vyhladit;Zatočit;Smrsknout;Nafouknout;Posun doleva;Zmrazit;Rozmrazit]];[Korekce Čočky Objektivu]];Rozostření;[Průměr;Rozostřit;Rozostřit více;Hranolové rozostření;Gaussovské rozostření;Rozostření čočkou;Rozostření pohybem;Kruhové rozostření;Rozostření tvarem;Chytré rozostření;Rozostření povrchu];Zkreslení;[Pokřivit;Štípnout;Polární Souřadnice;Zvlnit;Střihnout;Zakulatit;Vlna];Šum;[Přidat šum;Vyhladit;Prach a škrábance;Medián];Pixelizace;[Barevné půltónování;Krystalizace;Faseta;Fragment;Mezzotinta;Mozaika;Vytečkovat];Vykreslit;[Mraky;Mraky: Rozdíl;Odlesk Objektivu];Zaostřit;[Zaostřit;Zaostřit hrany;Zaostřit více;Chytré zaostření;Maska zaostření];Stylizace;[Difúze;Reliéf;Vytáhnout;Najít hrany;Olejová Malba];Ostatní;[Vlastní;Výšky;Maximum;Minimum;Posun;Opakovat];[Oblast okolo;Zprůhlednit;Zopakovat pixely na hraně;Zopakovat obrázek;Poslední Filtr;Náhled]];[Šablony;[Filtr Písma;Klíčová slova;Zamíchat];[Se symboly;S fotkou];[Miniatury;Seznam]]", "[Archivo;Editar;Imagen;Capa;Carpeta;Seleccionar;Filtro;Visualizar;Ventana;Idioma;Iniciar sesión;Cerrar sesión;Crear traducción;[Cuenta;Términos del Servicio;Atrás;Acerca de;Reportar un error;Aprender];Más;Tema;Usar WebGL;[Photopea: Editor Avanzado de Imágenes;Editor en línea gratuito que admite formatos PSD, XCF, Sketch, XD y CDR.;Crea una nueva imagen o abre archivos existentes desde tu computadora. Guarde tu trabajo como PSD (Archivo - Guardar como PSD) o como JPG / PNG / SVG (Archivo - Exportar como).;Sugiere nuevas funciones en nuestro o . Nuestro objetivo es crear .;Enlaces de los patrocinadores se abren en una nueva ventana.;Esta característica no está disponible.;Instalar Photopea]];[Abrir;Publicar en línea;Guardar;Guardar como PSD;Imprimir;Abrir desde URL;Abrir desde computadora;Conectar con Google Drive;Exportar como;Exportar Capas;Script;Abrir y Colocar;Cerrar;Almacenamiento Local;Informarción del archivo];[Paso Adelante;Paso Atrás;Limpiar;Rellenar;Transformar;Rotar;Voltear VAR0;Escalar VAR0;Deshacer / Rehacer;Perspectiva;[Fusionar automáticamente;Alinear automáticamente];Transición;Aplicar imagen];Ajustes;[Brillo/Contraste;Niveles;Curvas;Exposición;Intensidad de color;Tono/Saturación;Balance de Color;Blanco y Negro;Filtro de Foto;Mezclador de Canales;Búsqueda de Color;Invertir;Posterizar;Umbral;Mapa de degradado;Color Selectivo;[Tono Automático;Contraste Automático;Color Automático];Reemplazar Color];[Cortar;Copiar;Pegar;Nuevo;Eliminar;Activar;Desactivar;Copiar combinado;Aplicar;Otra vez;Actualizar];[Duplicar capa;Nueva capa de ajuste;Máscara ráster;Máscara vectorial;Añadir (Mostrar todo);[Añadir (Ocultar todo);Descubrir selección;Ocultar selección;A partir de transparencia];[Máscara de recorte;Máscara rápida];Convertir a Objeto Inteligente;Rasterizar;Agrupar capas;Combinar hacia abajo;Combinar hacia arriba;[Combinar capas;Acoplar imagen];Nueva capa;Activar máscara ráster;Desactivar máscara ráster;Activar máscara vectorial;Desactivar máscara vectorial;Activar máscara de recorte;Desactivar máscara de recorte;Nueva carpeta;Añadir máscara ráster;Eliminar máscara ráster;Añadir máscara vectorial;Eliminar máscara vectorial;Enlazar máscara ráster;Desenlazar máscara ráster;Enlazar máscara vectorial;Desenlazar máscara vectorial;Activar efectos de capa;Desactivar efectos de capa;Eliminar capa;Cambio de opacidad de capa;Cambio de modo de fusión;Rasterizar el estilo de capa;Orden de capas;[Crear Objeto Inteligente;Actualizar Objeto Inteligente;Colocar Objeto Inteligente;Fuente (Objeto Inteligente);Modo de apilamiento];Cambio de nombre;Cambio de color;Editar capa de ajuste;Convertir a figura;Activar máscara de filtro;Desactivar máscara de filtro;Activar filtros inteligentes;Desactivar filtros inteligentes;Añadir máscara de filtro;Eliminar máscara de filtro;Limpiar filtros inteligentes;[[Relleno de color sólido;Relleno de degradado;Relleno de patrón;Según el contenido];Nueva capa de relleno;Modificar la capa de relleno];Capa a través de la copia;Máscara de filtro;Eliminar estilo de capa;Mover filtro inteligente;Eliminar filtro inteligente;[Enlazar capas;Desenlazar capas];Organizar;[Traer al frente;Hacia delante;Hacia atrás;Enviar detrás];[Esta capa está bloqueada.;Cambio de bloqueo;Bloquear];Animación];[Todo;Deseleccionar;Invertir;Modificar;Expandir;Contraer;Calar;Mover selección;Gama de colores;Borde;Transformar selección;Perfeccionar borde;Sanar selección;Corte mágico];[Aumentar;Reducir;Guías;Reglas;Cuadrícula;Pegarse;Pegarse a;Límites de documentos;Cuadrícula de píxeles;Trazados;Pegarse a píxeles;[Sectores;Opciones de sector];Mostrar];[Historial;Capas;Propiedades;Pincel;Carácter;Párrafo;Info;Composiciones de capas;Muestras;Acciones;Histograma;Navegador;Herramientas preestablecidas;Glifos];[Herramienta Pincel;Clonar;Recortar;Borrador;Selección elíptica;Gotero;Degradado;Herramienta Mano;Texto;Selección de lazo;Selección de lazo magnético;Mover;Varita mágica;Bote de pintura;Selección de lazo poligonal;Selección rectangular;Transformación libre;Herramienta Zoom;Herramienta de desenfoque;Sacapuntas;Herramienta de borrado;Herramienta de esquivado;Herramienta de grabación;Herramienta Esponja;Pincel corrector de punto;Pincel corrector;Herramienta Parche;Selección de trazado;Selección directa;Pluma;Pluma libre;Forma personalizada;Rectangulo;Elipse;Forma paramétrica;Línea;Regla;Selección rápida;Herramienta Lápiz;Recorte con perspectiva;Sector;Seleccionar sector;Sustitución de color;Pincel de ojos rojos;Selección de objeto;Borrador de fondos;Deformación de posición libre;Rotar vista;Escala según el contenido;Herramienta Movimiento con detección de contenido];[Tomar una foto;Elegir color;Editor de contorno;Tamaño de lienzo;Duplicar en …;Editor de degradado;Estilo de capa;Nuevo proyecto;Guardar para web;Deformar;Tamaño de la imagen;Vectorizar mapa de bits;[Cortar;Recortar;Mostrar todo];Atajos de teclado;Añadir guías;[Borrar guías;Guías de capa]];[Opacidad;Efectos;Brillo;[Contraste;Usar heredado];Canal;Exposición;Desplazamiento;Corrección gamma;Tono;Saturación;Luminosidad;Colorear;Rango;Vibración;[Tamaño;Interpolación;Por aproximación;Bilineal];Ángulo;Redondez;Dureza;Espaciar;[Modo de fusión;Fusionar si es];Tamaño de muestra;Contorno;Estilo;[Revertir;Relativo;Ancla];Tolerancia;Contiguo;Relleno;Usar ángulo global;Distancia;Dispersión;Ruido;Ocultar sombra paralela;Técnica;Dirección;Profundidad;Suavizar;Modo;Degradado;Escalar;Alinear con capa;Posición;⬌ Ancho;⬍ Alto;Destinación;Tipo;Primer plano;Fondo;Personalizado;Nombre;Crear;Formato;Mantener relación de aspecto;[Calidad;Páginas];Duplicar;Mover;Filtros inteligentes;Radio;Cantidad;Distribución;[Uniforme;Desenfoque gaussiano];Monocromático;Tamaño de la celda;Motivo;Flujo;Fuerza;Proteger detalle;Tipo de relleno;Textura;Variación;Borde;Fuente;Destino;Canales;Máscara;Densidad;Alineado;[Trazado;Forma;Píxeles;Pulgada;Centímetros;Milímetros;Porcentaje];Formas;Lados;Preferencias;[Longitud;Proporción;Cualquiera;Tipo de cuadrícula;Isometrico;Espaciado de cuadrícula;Unidad de regla];Reducir ruido;Colores;Distancias;Velocidad;Seleccion automatica;Buscar;Definir nuevo;[Foto;Pantalla;Móvil;Anuncios;Impresión];[Liberar;Proporcion fija;Tamaño fijo];Ayuda;[Forma dinamica;Editar forma dinamica;Mismo radio];Tolerancia;[Polígono;Estrella;Espiral;Cuadrado];[Radio de esquina;Radio interior]];[Color;[Ninguno;Rojo;Naranja;Amarillo;Verde;Azul;Violeta;Gris;Blanco;Transparente;Negro;Cian;Magenta;Neutro];Total;Absoluto;Conservar luminosidad];[Sombra paralela;Sombra interior;Resplandor exterior;Resplandor interior;Bisel y relieve;Superposición de colores;Superposición de degradado;Superposición de motivo;Satinar;Contorno;Opciones de fusión;Seleccionar píxeles];[Forma de la punta;Dinámica de punta;Dispersión;Dinámica de color;[Variación del tamaño;Diámetro Mínimo;Variación del ángulo;Variación de la redondez;Redondez Mínima];[Variación de la posición;Cuenta;Variación de la cuenta];[Variación frontal/de fondo;Variación del tono;Variación de la saturación;Variación del brillo];[Selecciona la fuente de clonado manteniendo Alt (o K) y dando clic sobre la imagen;Marcar el area de enfrente como blanca, la del fondo como negra y el area desconocida como gris;Esta capa no es editable;Hay que rasterizar la capa de texto antes;Hay que rasterizar el objeto inteligente antes;Seleccionar múltiples capas;Enderezar la capa;Abra un documento primero.;Cierre la ventana actual primero.;Solo herramienta actual];[Grabar;Nuevo conjunto de acciones;Nueva accion];[La presión de stylus controla la opacidad;La presión de stylus controla el tamaño];[Normal;Disolver;Oscurecer;Multiplicar;Subexponer color;Subexposición lineal;Color más oscuro;Aclarar;Trama;Sobreexponer color;Sobreexposición lineal;Color más claro;Superponer;Luz suave;Luz fuerte;Luz intensa;Luz lineal;Luz focal;Mezcla definida;Diferencia;Exclusión;Restar;Dividir;Tono;Saturación;Color;Luminosidad;Pass Through]];[Interlineado;Rastrear;Desplazamiento vertical;[Convertir a escritura de caracteres;Convertir a escritura de párrafo]];[Todas las capas;Capa actual;Selección;Actual y anteriores];[Reemplazar;Unión;Diferencia;Intersecar;Excluir;Combinar];[[Lineal;Radial;Ángulo;Reflejado;Diamante;Explosión de forma];[Más suave;Precisar];[Bisel Externo;Bisel Interno;Relieve;Relieve tipo Almohada;Relieve del Trazo;Anchura de trazo];[Suavizar;Cincel Duro;Cincel Suave;Suavizado];[Arriba;Abajo];[Afuera;Centrado;Adentro;Desde el centro];[Sombras;Tonos medios;Altas luces];[Desaturar;Saturar];[Pequeño;Mediano;Largo];[Tapas;Esquinas;Guiones]];[Selecciona el objeto bajo el cursor;Controles de transformación;Píxel por píxel;Ajustar al área;[Alinear bordes izquierdos;Centrar horizontalmente;Alinear bordes derechos;Alinear bordes superiores;Centrar verticalmente;Alinear bordes inferiores;Mismo espaciado]];[Insertar en;Proyecto actual;Nuevo proyecto;Resolución;Añadido al proyecto actual.;Se ha creado un nuevo proyecto.;El acceso a la cámara fue denegado.];[Orientación;Curvar;Distorsión horizontal;Distorsión vertical;[Horizontal;Vertical;horizontalmente;verticalmente];[Ninguno;Arco;Arco Inferior;Arco Superior;Bóveda;Abombar;Caparazón hacia abajo;Caparazón hacia arriba;Bandera;Onda;Pez;Elevar;Ojo de pez;Inflar;Estrechar;Torcer;Personalizado];[Fuente;no está disponible;Se renderizará utilizando;Hay trabajo no guardado en;¿Realmente quieres cerrarlo?];[Intercambiar Colores;Predefinido: Blanco y Negro]];[cargado;agregado;Mover Guía;Eliminar guía;Añadir guía;Cargando;Cargar VAR0];[Galería de filtros;[[Licuar;[Manchar;Reconstruir;Suavizar;Molinete;Achicar;Expandir;Empurrar para a Esquerda;Congelar;Descongelar]];[Corrección del lente]];Desenfoque;[Promediar;Desenfocar;Desenfocar más;Desenfoque de rectángulo;Desenfoque Gaussiano;Desenfoque de lente;Desenfoque de movimiento;Desenfoque radial;Desenfoque de forma;Desenfoque suavizado;Desenfoque de superficie];Filtros de distorsión;[Desplazar;Encoger;Coordenadas polares;Rizo;Distorsionar;Esferizar;Onda];Filtros de ruido;[Añadir ruido;ARICHIVOS;Polvo y Rascaduras;Mediana];Filtros para pixelizar;[Medios tonos de color;Cristalizar;Faceta;Fragmentos;Grabado mezzotinto;Mosaico;Puntillismo];Hacer;[Nubes;Nubes de diferencia;Destello];Filtros de enfoque;[Afilar;Agudizar los bordes;Afilar más;Afilado inteligente;];Estilizar;[Difusión;Realzar;Extrusión;Encontrar bordes;Pintura al óleo];Otros filtros;[Personalizado;Paso alto;Máximo;Mínimo;Compensar;Repetir];[Área indefinida;Establecer como transparente;Repita los píxeles de los bordes;Envolver alrededor;Último filtro;Previsualizar]];[Plantillas;[Filtro de fuente;Palabras clave;Aleatorizar];[Con símbolos;Con foto];[Miniaturas;Lista]]", "[Datei;Bearbeiten;Bild;Ebene;Ordner;Auswahl;Filter;Ansicht;Fenster;Sprache;Anmelden;Abmelden;Übersetzung erstellen;[Konto;Nutzungsbedingungen;Zurück;Über;Fehler melden;Lernen];Mehr;Farbschema;WebGL verwenden;[Photopea: Fortschrittliche Bildbearbeitung;Kostenloses Online-Bildbearbeitungsprogramm mit Unterstützung für PSD-, XCF-, Sketch-, XD- und CDR-Formate.;Erstellen Sie ein neues Bild oder öffnen Sie vorhandene Dateien von Ihrem Computer. Sichern Sie Ihre Arbeit als PSD (Datei - Speichern als PSD) oder als JPG / PNG / SVG (Datei - Exportieren als).;Vorschläge für neue Funktionen gerne über oder . Unser Ziel ist es, zu schaffen.;Sponsorenlinks werden in neuem Fenster geöffnet.;Diese Funktion ist nicht verfügbar.;Photopea installieren]];[Öffnen;Online veröffentlichen;Speichern;Speichern als PSD;Drucken;Von URL öffnen;Vom Computer öffnen;Mit Google Drive verbinden;Exportieren als;Ebenen exportieren;Skripten;Öffnen & einfügen;Schließen;Lokaler Speicher;Datei-Informationen];[Schritt vorwärts;Schritt rückwärts;Löschen;Füllen;Transformieren;Drehen;VAR0 spiegeln;VAR0 skalieren;Rückgängig / Wiederholen;Perspektive;[Automatisch überblenden;Automatisch ausrichten];Verblassen;Bildberechnungen];Anpassungen;[Helligkeit/Kontrast;Tonwertkorrektur;Gradationskurven;Belichtung;Dynamik;Farbton/Sättigung;Farbbalance;Schwarzweiß;Fotofilter;Kanalmixer;Farbfinder;Umkehren;Tontrennung;Schwellwert;Verlaufsumsetzung;Selektive Farbkorrektur;[Auto-Farbton;Auto-Kontrast;Auto-Farbe];Farbe ersetzen];[Ausschneiden;Kopieren;Einfügen;Neu;Löschen;Aktivieren;Deaktivieren;Vereint kopieren;Anwenden;Erneut;Aktualisieren];[Ebene duplizieren;Neue Einstellungsebene;Rastermaske;Vektormaske;Hinzufügen (alle einblenden);[Hinzufügen (alle ausblenden);Auswahl einblenden;Auswahl ausblenden;Von Transparenz];[Schnittmaske;Maskierungsmodus];In Smartobjekt konvertieren;Rastern;Ebenen gruppieren;Abwärts vereinen;Aufwärts vereinen;[Ebenen vereinen;Auf Hintergrundebene reduzieren];Neue Ebene;Rastermaske aktivieren;Rastermaske deaktivieren;Vektormaske aktivieren;Vektormaske deaktivieren;Schnittmaske aktivieren;Schnittmaske deaktivieren;Neuer Ordner;Rastermaske hinzufügen;Rastermaske entfernen;Vektormaske hinzufügen;Vektormaske entfernen;Rastermaske verbinden;Rastermaske trennen;Vektormaske verbinden;Vektormaske trennen;Ebeneneffekte aktivieren;Ebeneneffekte deaktivieren;Ebene löschen;Deckkraftänderung der Ebene;Mischmodus-Änderung;Ebenenstil rastern;Ebenenreihenfolge;[Smartobjekt erstellen;Smartobjekt aktualisieren;Smartobjekt platzieren;Quelle (Smartobjekt);Stapelmodus];Namensänderung;Farbänderung;Einstellungsebene bearbeiten;In Form umwandeln;Filtermaske aktivieren;Filtermaske deaktivieren;Smartfilter aktivieren;Smartfilter deaktivieren;Filtermaske hinzufügen;Filtermaske entfernen;Smartfilter löschen;[[Volltonfüllung;Verlaufsfüllung;Musterfüllung;Inhaltsbasiert];Neue Füllebene;Füllebene verändern];Ebene aus Kopie;Filtermaske;Ebenenstil löschen;Smartfilter verschieben;Smartfilter löschen;[Ebenen verbinden;Ebenenverbindung aufheben];Anordnen;[In den Vordergrund;Schrittweise nach vorne;Schrittweise nach hinten;In den Hintergrund];[Diese Ebene ist fixiert;Fixierungsänderung;Fixieren];Animation];[Alles;Auswahl aufheben;Umkehren;Auswahl verändern;Erweitern;Verkleinern;Weiche Kante;Auswahl verschieben;Farbbereich;Rand;Auswahl transformieren;Kante verbessern;Auswahl reparieren;Magic Cut];[Einzoomen;Auszoomen;Hilfslinien;Lineale;Raster;Ausrichten;Ausrichten an;Dokumentbegrenzungen;Pixelraster;Pfade;An Pixeln ausrichten;[Slices;Slice-Optionen];Einblenden];[Protokoll;Ebenen;Eigenschaften;Pinsel;Zeichen;Absatz;Info;Ebenenkompositionen;Farbfelder;Aktionen;Histogramm;Navigator;Werkzeugvorgaben;Glyphen];[Pinsel-Werkzeug;Kopierstempel-Werkzeug;Freisteller;Radiergummi;Ellipsen-Auswahl;Pipette;Verlaufswerkzeug;Hand-Werkzeug;Text-Werkzeug;Lasso-Auswahl;Magnetlasso-Auswahl;Verschieben-Werkzeug;Zauberstab-Werkzeug;Füllwerkzeug;Polygonlasso-Auswahl;Rechteck-Auswahl;Frei transformieren;Zoom-Werkzeug;Weichzeichner;Scharfzeichner;Wischfinger-Werkzeug;Abwedler;Nachbelichter;Schwamm-Werkzeug;Bereichsreparatur-Pinsel;Reparatur-Pinsel;Ausbessern-Werkzeug;Pfad-Auswahl;Direkt-Auswahl;Stift;Freihand-Stift;Eigene Form;Rechteck;Ellipse;Parametrische Form;Linie;Lineal;Schnell-Auswahl;Bleistift-Werkzeug;Perspektivischer Freisteller;Slice-Werkzeug;Slice-Auswahlwerkzeug;Farbe-ersetzen-Werkzeug;Rote-Augen-Werkzeug;Objektauswahl;Hintergrund-Radiergummi;Formgitter;Ansichtdrehung;Inhaltsbasiert skalieren;Inhaltsbasiert verschieben];[Foto aufnehmen;Farbwähler;Konturen-Editor;Arbeitsfläche;Duplizieren in …;Verlaufseditor;Ebenenstil;Neues Projekt;Für Web speichern;Verkrümmen;Bildgröße;Bitmap vektorisieren;[Zuschneiden;Freistellen;Alle einblenden];Tastaturkürzel;Hilfslinien hinzufügen;[Hilfslinien löschen;Hilfslinien aus Ebene]];[Deckkraft;Effekte;Helligkeit;[Kontrast;Altes Verfahren verwenden];Kanal;Belichtung;Versatz;Gammakorrektur;Farbton;Sättigung;Helligkeit;Färben;Bereich;Dynamik;[Größe;Interpolation;Pixelwiederholung;Bilinear];Winkel;Rundheit;Härte;Abstand;[Modus;Farbbereich];Aufnahmebereich;Kontur;Stil;[Umkehren;Relativ;Anker];Toleranz;Benachbart;Füllung;Globaler Winkel;Distanz;Überfüllen;Rauschen;Schlagschatten aussparen;Technik;Richtung;Tiefe;Weichz.;Modus;Farbverlauf;Skalieren;An Ebene ausrichten;Position;Breite;Höhe;Ziel;Typ;Vordergrund;Hintergrund;Benutzerdefiniert;Name;Erstellen;Format;Seitenverhältnis beibehalten;[Qualität;Seiten];Duplizieren;Verschiebung;Smartfilter;Radius;Stärke;Verteilung;[Gleichmäßig;Gauß];Monochrom;Zellengröße;Muster;Fluss;Stärke;Detail schützen;Füllart;Stuktur;Jitter;Kante;Quelle;Ziel;Kanäle;Maske;Dichte;Ausgerichtet;[Pfad;Form;Pixel;Zoll;Zentimeter;Millimeter;Prozent];Formen;Seiten;Einstellungen;[Länge;Verhältnis;Beliebig;Rasterart;Isometrisch;Rasterweite;Linealeinheiten];Rauschen reduzieren;Farben;Distanzen;Geschwindigkeit;Auto-Auswahl;Suchen;Neu festlegen;[Foto;Bildschirm;Mobiltelefon;Online-Werbung;Druck];[Normal;Festes Verhältnis;Feste Größe];Hilfe;[Liveform;Liveform bearbeiten;Gleiche Radien];Toleranz;[Polygon;Stern;Spirale;Quadratisch];[Eckenradius;Innenradius]];[Farbe;[Ohne;Rot;Orange;Gelb;Grün;Blau;Lila;Grau;Weiß;Transparent;Schwarz;Cyan;Magenta;Neutral];Gesamt;Absolut;Luminanz erhalten];[Schlagschatten;Schatten nach innen;Schein nach außen;Schein nach innen;Abgeflachte Kante und Relief;Farbüberlagerung;Verlaufsüberlagerung;Musterüberlagerung;Glanz;Kontur;Mischoptionen;Pixel auswählen];[Spitzenform;Spitzendynamik;Streuung;Farbdynamik;[Größen-Jitter;Mindestdurchmesser;Winkel-Jitter;Rundheit-Jitter;Minimale Rundheit];[Positions-Jitter;Anzahl;Anzahl-Jitter];[Vorder-/Hintergrund-Jitter;Farbton-Jitter;Sättigungs-Jitter;Helligkeits-Jitter];[Die zu klonende Quelle mit Alt (oder K) plus Klick auf das Bild auswählen.;Den Vordergrund mit Weiß, den Hintergrund mit Schwarz und die unbekannte Fläche mit Grau markieren.;Ebene ist nicht veränderbar.;Textebene muss zuerst gerastert werden.;Smartobjekt muss zuerst gerastert werden.;Bitte mehrere Ebenen auswählen;Ebene gerade ausrichten;Es ist noch kein Dokument geöffnet.;Das aktuelle Fenster muss zuerst geschlossen werden.;Nur aktuelles Werkzeug];[Aufzeichnen;Neues Aktionsset;Neue Aktion];[Stiftandruck steuert Deckkraft;Stiftandruck steuert Größe];[Normal;Sprenkeln;Abdunkeln;Multiplizieren;Farbig nachbel.;Linear nachbel.;Dunklere Farbe;Aufhellen;Negativ multipl.;Farbig abwedeln;Linear abwedeln;Hellere Farbe;Überlagern;Weiches Licht;Hartes Licht;Strahlendes Licht;Lineares Licht;Lichtpunkt;Hart mischen;Differenz;Ausschluss;Subtrahieren;Dividieren;Farbton;Sättigung;Farbe;Luminanz;Hindurchwirken]];[Zeilenabstand;Zeichenabstand;Grundlinienversatz;[In Punkttext konvertieren;In Absatztext konvertieren]];[Alle Ebenen;Aktuelle Ebene;Auswahl;Aktuelle und darunter];[Ersetzen;Vereinen;Subtrahieren;Schnittmenge;Ausschließen;Vereinen];[[Linear;Radial;Winkel;Reflektiert;Raute;Shape Burst];[Weicher;Präzise];[Abgeflachte Kante außen;Abgeflachte Kante innen;Relief;Relief an allen Kanten;Reliefkontur;Konturstärke];[Abrunden;Hart meißeln;Weich meißeln;Glättung];[Nach oben;Nach unten];[Außerhalb;Mittig;Innerhalb;Vom Mittelpunkt aus];[Tiefen;Mitteltöne;Lichter];[Sättigung verringern;Sättigung erhöhen];[Klein;Mittel;Groß];[Enden;Ecken;Striche]];[Das Objekt unter dem Cursor auswählen;Transformationsstrg.;Pixel für Pixel;Ganzes Bild;[Linke Kanten ausrichten;Waagerecht zentrieren;Rechte Kanten ausrichten;Obere Kanten ausrichten;Senkrecht zentrieren;Untere Kanten ausrichten;Gleichmäßige Abstände]];[Einfügen in;Aktuelles Projekt;Neues Projekt;Auflösung;Zum aktuellen Projekt hinzugefügt.;Ein neues Projekt wurde erstellt.;Der Zugriff auf die Kamera wurde verweigert.];[Ausrichtung;Biegung;Horizontale Verzerrung;Vertikale Verzerrung;[Horizontal;Vertikal;Horizontal;Vertikal];[Ohne;Bogen;Bogen unten;Bogen oben;Wölbung;Wulst;Muschel unten;Muschel oben;Flagge;Welle;Fisch;Ansteigend;Linse;Aufblasen;Stauchen;Strudel;Benutzerdefiniert];[Schrift;ist nicht verfügbar;Wird gerendert mit;Es gibt ungesicherte Änderungen in;Wollen Sie es wirklich schließen?];[Farben tauschen;Standard: Weiß und Schwarz]];[geladen;hinzugefügt;Hilfslinie verschieben;Hilfslinie löschen;Hilfslinie hinzufügen;Laden;VAR0 laden];[Filtergalerie;[[Verflüssigen;[Verschmieren;Rekonstruieren;Glätten;Strudel;Schrumpfen;Aufblasen;Nach links schieben;Fixieren;Lösen]];[Objektivkorrektur]];Weichzeichnen;[Durchschnitt;Weichzeichnen;Stark weichzeichnen;Feld weichzeichnen;Gaußscher Weichzeichner;Tiefenschärfe abmildern;Bewegungsunschärfe;Radialer Weichzeichner;Form weichzeichnen;Selektiver Weichzeichner;Matter machen];Verzerrungsfilter;[Versetzen;Distorsion;Polarkoordinaten;Kräuseln;Verbiegen;Wölben;Schwingungen];Rauschfilter;[Rauschen hinzufügen;Rauschen entfernen;Staub und Kratzer;Median];Vergröberungsfilter;[Farbraster;Kristallisieren;Facetteneffekt;Verwackelungseffekt;Mezzotint;Mosaik;Punktieren];Renderfilter;[Wolken;Differenzwolken;Blendenflecke];Scharfzeichnen;[Scharfzeichnen;Kanten schärfen;Stark scharfzeichnen;Selektiver Scharfzeichner;Unscharf maskieren];Stilisierungsfilter;[Korneffekt;Relief;Extrudieren;Konturen finden;Ölgemälde];Andere Filter;[Angepasst;Hochpass;Maximum;Minimum;Verschiebungseffekt;Wiederholen];[Undefin. Bereich;Auf transparent setzen;Kantenpixel wiederholen;Umfließen;Letzter Filter;Vorschau]];[Vorlagen;[Schrift-Filter;Schlüsselwörter;Neu mischen];[Mit Symbolen;Mit Foto];[Miniaturen;bangla]]", diff --git a/www.photopea.com/code/LNG2.js b/www.photopea.com/code/LNG2.js new file mode 100644 index 0000000..5a9418e --- /dev/null +++ b/www.photopea.com/code/LNG2.js @@ -0,0 +1,35246 @@ +var LNG = { + "langs": [ + { + "name": "English", + "code": "en", + "table": 0 + }, + { + "name": "Česky", + "code": "cs", + "table": 1 + }, + { + "name": "Español", + "code": "es", + "table": 2 + }, + { + "name": "Deutsch", + "code": "de", + "table": 3 + }, + { + "name": "Français", + "code": "fr", + "table": 4 + }, + { + "name": "Ελληνικά", + "code": "el", + "table": 5 + }, + { + "name": "العربية", + "code": "ar", + "table": 6 + }, + { + "name": "Português", + "code": "pt", + "table": 7 + }, + { + "name": "Русский", + "code": "ru", + "table": 8 + }, + { + "name": "Українська", + "code": "uk", + "table": 9 + }, + { + "name": "עברית", + "code": "he", + "table": 10 + }, + { + "name": "Hrvatski", + "code": "hr", + "table": 11 + }, + { + "name": "Italiano", + "code": "it", + "table": 12 + }, + { + "name": "Română", + "code": "ro", + "table": 13 + }, + { + "name": "Nederlands", + "code": "nl", + "table": 14 + }, + { + "name": "Svenska", + "code": "sv", + "table": 15 + }, + { + "name": "Dansk", + "code": "da", + "table": 16 + }, + { + "name": "Suomi", + "code": "fi", + "table": 17 + }, + { + "name": "Slovenščina", + "code": "sl", + "table": 18 + }, + { + "name": "Türkçe", + "code": "tr", + "table": 19 + }, + { + "name": "Polski", + "code": "pl", + "table": 20 + }, + { + "name": "Bahasa Indonesia", + "code": "id", + "table": 21 + }, + { + "name": "简化字 中文", + "code": "zh-CN", + "table": 22 + }, + { + "name": "正體字 中文", + "code": "zh-HK", + "table": 23 + }, + { + "name": "ภาษาไทย", + "code": "th", + "table": 24 + }, + { + "name": "日本語", + "code": "ja", + "table": 25 + }, + { + "name": "한국어", + "code": "ko", + "table": 26 + }, + { + "name": "Português do Brasil", + "code": "pt-BR", + "table": 27 + }, + { + "name": "Magyar", + "code": "hu", + "table": 28 + }, + { + "name": "Slovenčina", + "code": "sk", + "table": 29 + }, + { + "name": "Tiếng Việt", + "code": "vi", + "table": 30 + }, + { + "name": "Български език", + "code": "bg", + "table": 31 + }, + { + "name": "Српски језик", + "code": "sr", + "table": 32 + }, + { + "name": "Shqip", + "code": "sq", + "table": 33 + }, + { + "name": "தமிழ்", + "code": "ta", + "table": 34 + }, + { + "name": "བོད་ཡིག", + "code": "bo", + "table": 35 + }, + { + "name": "Català", + "code": "ca", + "table": 36 + }, + { + "name": "Norsk", + "code": "no", + "table": 37 + }, + { + "name": "Eesti", + "code": "et", + "table": 38 + }, + { + "name": "Lietuvių", + "code": "lt", + "table": 39 + } + ], + "tables": [ + [ + [ + "File", + "Edit", + "Image", + "Layer", + "Folder", + "Select", + "Filter", + "View::noun (Top Menu)", + "Window", + "Language", + "Log In", + "Log Out", + "Create translation::Click it to get to www.Photopea.com/translate", + [ + "Account", + "Terms of Service", + "Back", + "About::\"About a program\" - the orange button at the top", + "Report a bug", + "Learn" + ], + "More", + "Theme", + "Use WebGL", + [ + "Photopea: advanced image editor::The header at the top of the page", + "Free online editor supporting PSD, XCF, Sketch, XD and CDR formats.::Will be at the top of the page", + "Create a new image or open existing files from your computer. Save your work as PSD (File - Save as PSD) or as JPG / PNG / SVG (File - Export as).::Will be at the top of the page", + "Suggest new features at our or . Our goal is to create .::Parts between < and > will become links.", + "Sponsor links open in a new window.", + "This feature is not available.", + "Install Photopea" + ] + ], + [ + "Open::verb", + "Publish online", + "Save::verb", + "Save as PSD", + "Print::Press to print on a printer", + "Open from URL", + "Open From Computer", + "Connect With Google Drive", + "Export as", + "Export Layers", + "Script", + "Open & Place::Open a document and insert it into a current document", + "Close", + "Local Storage", + "File Info" + ], + [ + "Step Forward::In history of changes", + "Step Backward::In history of changes", + "Clear::Verb, press to clear the selected area", + "Fill::Verb, press to fill the selected area", + "Transform::Transform the image", + "Rotate", + "Flip VAR0::VAR0 will be replaced with Horizontally/Vertically", + "Scale VAR0::VAR0 will be replaced with Horizontally/Vertically", + "Undo / Redo", + "Perspective", + [ + "Auto-Blend::Auto-Blend layers together", + "Auto-Align::Auto-Align layers against each other" + ], + "Fade", + "Apply Image" + ], + "Adjustments", + [ + "Brightness/Contrast", + "Levels::Levels adjustment", + "Curves::Curves adjustment", + "Exposure", + "Vibrance", + "Hue/Saturation", + "Color Balance", + "Black & White", + "Photo Filter", + "Channel Mixer", + "Color Lookup", + "Invert", + "Posterize", + "Threshold", + "Gradient Map", + "Selective Color", + [ + "Auto Tone", + "Auto Contrast", + "Auto Color" + ], + "Replace Color" + ], + [ + "Cut", + "Copy", + "Paste::like \"insert\", not like \"toothpaste\"", + "New", + "Delete", + "Enable", + "Disable", + "Copy Merged::Copy not from a layer, but from all layers (all merged together)", + "Apply::Apply Mask - \"combine\" it with a layer", + "Again::Repeat the same aciton one more time", + "Update::A verb" + ], + [ + "Duplicate Layer", + "New Adjustment Layer", + "Raster Mask", + "Vector Mask", + "Add (Reveal All)::Add a mask", + [ + "Add (Hide All)::Add a mask", + "Reveal Selection", + "Hide Selection", + "From Transparency" + ], + [ + "Clipping Mask", + "Quick Mask Mode" + ], + "Convert to Smart Object", + "Rasterize::Convert Text layer/vector layer to pixels", + "Group Layers::Put selected layers into a new group", + "Merge Down::Merge a layer with one below it", + "Merge Up::Merge a layer with one above it", + [ + "Merge Layers::Merge selected layers", + "Flatten Image::Merge all layers in a document into one" + ], + "New Layer", + "Enable Raster Mask", + "Disable Raster Mask", + "Enable Vector Mask", + "Disable Vector Mask", + "Enable Clipping Mask", + "Disable Clipping Mask", + "New Folder", + "Add Raster Mask", + "Delete Raster Mask", + "Add Vector Mask", + "Delete Vector Mask", + "Link Raster Mask", + "Unlink Raster Mask", + "Link Vector Mask", + "Unlink Vector Mask", + "Enable Layer Effects", + "Disable Layer Effects", + "Delete Layer", + "Layer Opacity Change", + "Blending Change", + "Rasterize Layer Style", + "Layer Order::Name of the step, when reordering layers", + [ + "Creating Smart Object", + "Updating Smart Object", + "Placing Smart Object", + "Source (Smart Object)", + "Stack Mode::the mode of combining (stacking) multiple images into one" + ], + "Name Change", + "Color Change", + "Edit Adjustment Layer", + "Convert to Shape", + "Enable Filter Mask", + "Disable Filter Mask", + "Enable Smart Filters", + "Disable Smart Filters", + "Add Filter Mask", + "Delete Filter Mask", + "Clear Smart Filters", + [ + [ + "Color Fill", + "Gradient Fill", + "Pattern Fill", + "Content Aware" + ], + "New Fill Layer", + "Modify Fill Layer" + ], + "Layer Via Copy", + "Filter Mask", + "Delete Layer Style", + "Move Smart Filter", + "Delete Smart Filter", + [ + "Link Layers", + "Unlink Layers" + ], + "Arrange::Arrange layers", + [ + "Bring to Front", + "Bring Forward", + "Send Backward", + "Send to Back" + ], + [ + "This layer is Locked.", + "Lock Change", + "Lock::verb - lock this, lock that" + ], + "Animation" + ], + [ + "All::As in Select - All", + "Deselect", + "Inverse", + "Modify", + "Expand::Expand Selection", + "Contract", + "Feather::Feather (blur) a Selection", + "Move Selection", + "Color Range", + "Border::The border of a Selection", + "Transform Selection", + "Refine Edge::A tool for improving the edge of a selection", + "Heal Selection", + "Magic Cut" + ], + [ + "Zoom In", + "Zoom Out", + "Guides::Vertical and horizontal lines over the image, to help us be more precise", + "Rulers", + "Grid", + "Snap::When moving objects, they will \"stick\" to other objects, guides, etc.", + "Snap To", + "Document Bounds", + "Pixel Grid", + "Paths::Elements of vector graphics", + "Snap to Pixels", + [ + "Slices", + "Slice Options" + ], + "Show::A verb: to show." + ], + [ + "History::History of steps", + "Layers", + "Properties", + "Brush::A brush tool", + "Character::= a Letter (like a, b, c, ...)", + "Paragraph", + "Info", + "Layer Comps::Compositions of layers", + "Swatches::Gallery of colors", + "Actions", + "Histogram::Usually the same in other languages", + "Navigator", + "Tool Presets", + "Glyphs" + ], + [ + "Brush Tool", + "Clone Tool", + "Crop Tool", + "Eraser Tool", + "Ellipse Select", + "Eyedropper::A tool to pick color from the image", + "Gradient Tool", + "Hand Tool::To move (pan) across the image area", + "Type Tool", + "Lasso Select", + "Magnetic Lasso Select", + "Move Tool", + "Magic Wand", + "Paint Bucket Tool", + "Polygonal Lasso Select", + "Rectangle Select", + "Free Transform", + "Zoom Tool", + "Blur Tool", + "Sharpen Tool", + "Smudge Tool", + "Dodge Tool::Make Brighter", + "Burn Tool::Make Darker", + "Sponge Tool::Desaturate", + "Spot Healing Brush Tool", + "Healing Brush Tool", + "Patch Tool::Cut from one place and put to another place", + "Path Select::a tool to select / move paths", + "Direct Select::a tool to select / move knots of paths", + "Pen", + "Free Pen::Draw freely with this pen", + "Custom Shape", + "Rectangle", + "Ellipse", + "Parametric Shape", + "Line", + "Ruler::A ruler tool to measure distances", + "Quick Selection", + "Pencil Tool", + "Perspective Crop", + "Slice Tool", + "Slice Select Tool", + "Color Replacement", + "Red Eye Tool", + "Object Selection", + "Background Eraser", + "Puppet Warp", + "Rotate View", + "Content-Aware Scale", + "Content-Aware Move Tool" + ], + [ + "Take a picture::Press the button to take a picture", + "Color Picker", + "Contour Editor", + "Canvas Size", + "Duplicate Into ...", + "Gradient Editor", + "Layer Style", + "New Project", + "Save for web", + "Warp", + "Image Size", + "Vectorize Bitmap::Convert raster pixels into vector paths", + [ + "Trim::cut away an empty area around the object", + "Crop::(verb) Crop the image", + "Reveal All" + ], + "Keyboard Shortcuts", + "Add Guides", + [ + "Clear Guides", + "Guides from Layer" + ] + ], + [ + "Opacity", + "Effects", + "Brightness", + [ + "Contrast", + "Use Legacy" + ], + "Channel::Color Channel", + "Exposure", + "Offset", + "Gamma correction", + "Hue", + "Saturation", + "Lightness", + "Colorize", + "Range", + "Vibrance", + [ + "Size", + "Interpolation", + "Nearest Neighbor", + "Bilinear" + ], + "Angle", + "Roundness", + "Hardness", + "Spacing", + [ + "Blend Mode", + "Blend If::Specifies a tonal range for blending" + ], + "Sample Size", + "Contour", + "Style", + [ + "Reverse", + "Relative::When ON, you only write a number, which will be added to the original value", + "Anchor::To which side the object should be anchored" + ], + "Tolerance", + "Contiguous", + "Fill::Noun, the content (filling) of something.", + "Use global angle", + "Distance", + "Spread::Spread the effected area", + "Noise::add random image noise", + "Knock out drop shadow::No drop shadow behind the object", + "Technique", + "Direction", + "Depth", + "Soften", + "Mode::One of possible modes of the effect", + "Gradient::from one color to another", + "Scale::scale the content - 10% or even 200%", + "Align with layer", + "Position::Position of the effect", + "Width", + "Height", + "Destination", + "Type", + "Foreground", + "Background", + "Custom::Color: not foreground or background, but a custom color", + "Name::Name of something", + "Create", + "Format", + "Keep Aspect Ratio", + [ + "Quality", + "Pages" + ], + "Duplicate", + "Move::When you move layers, the Move step will be added to History", + "Smart Filters", + "Radius", + "Amount::Strength of the effect (0 ... 100)", + "Distribution", + [ + "Uniform::uniform random distribution", + "Gaussian" + ], + "Monochromatic", + "Cell Size::Mosaic filter creates \"cells\"", + "Pattern", + "Flow::A brush has the opacity and the flow", + "Strength", + "Protect Detail", + "Fill Type", + "Texture", + "Jitter::Add Noise in Outer Glow", + "Edge::The inner glow is either from the center, or from the Edge", + "Source", + "Target", + "Channels", + "Mask::A noun, e.g. a vector mask or a raster mask ", + "Density", + "Aligned", + [ + "Path", + "Shape", + "Pixels", + "Inches", + "Centimeters", + "Millimeters", + "Percent" + ], + "Shapes", + "Sides", + "Preferences", + [ + "Length", + "Ratio", + "Any::Any ratio of a rectangle", + "Grid Type", + "Isometric", + "Grid Gap", + "Ruler Units" + ], + "Reduce noise", + "Colors", + "Distances", + "Rate::Liquify filter: Rate of modification", + "Auto-Select::Move tool option: click the object to select its layer", + "Find", + "Define New", + [ + "Photo", + "Screen::computer screen", + "Mobile::Mobile device", + "Ads::Advertisement", + "Print::A noun" + ], + [ + "Free::Not Restricted / Not Limited", + "Fixed Ratio", + "Fixed Size" + ], + "Help", + [ + "Live Shape::Shape, that can be reconstructed from parameters at any time", + "Edit Live Shape", + "Same Radii::all radiuses of a rectangle should be the same" + ], + "Fuzziness", + [ + "Polygon", + "Star", + "Spiral", + "Square" + ], + [ + "Corner Radius", + "Inner Radius" + ] + ], + [ + "Color", + [ + "None::No Color", + "Red", + "Orange", + "Yellow", + "Green", + "Blue", + "Purple", + "Gray", + "White", + "Transparent", + "Black", + "Cyan::A color", + "Magenta::A color", + "Neutral::Apply to neutral colors" + ], + "Total", + "Absolute", + "Preserve Luminosity" + ], + [ + "Drop Shadow", + "Inner Shadow", + "Outer Glow", + "Inner Glow", + "Bevel and Emboss", + "Color Overlay", + "Gradient Overlay", + "Pattern Overlay", + "Satin", + "Stroke::Thick line around an object", + "Blending Options", + "Select Pixels" + ], + [ + "Tip Shape", + "Tip Dynamics", + "Scatter::dont put brush exactly, but randomly around the target spot", + "Color Dynamics", + [ + "Size Jitter::change the size randomly", + "Minimal Diameter", + "Angle Jitter::change the angle randomly", + "Roundness Jitter::change the roundness randomly", + "Minimal Roundness" + ], + [ + "Position Jitter", + "Count::The number of brush tips", + "Count Jitter" + ], + [ + "Foreground/Background Jitter", + "Hue Jitter", + "Saturation Jitter", + "Brightness Jitter" + ], + [ + "Select clone source by holding Alt (or K) and clicking on the image.", + "Mark Foreground with White, Background with Black, and the unknown area with Gray.", + "Layer is not editable.", + "Text Layer must be rasterized first", + "Smart Object must be rasterized first", + "Select multiple layers", + "Straighten Layer::Will rotate the layer, so that the horizon is horizontal", + "Open a document first.", + "Close the current window first.", + "Current Tool Only::Tool Presets only for the current tool" + ], + [ + "Record::To record actions", + "New Action Set", + "New Action" + ], + [ + "Stylus Pressure controls Opacity", + "Stylus Pressure controls Size" + ], + [ + "Normal::One of Blend Modes (when empty, English version will be used)", + "Dissolve::One of Blend Modes (when empty, English version will be used)", + "Darken::...", + "Multiply::...", + "Color Burn::...", + "Linear Burn::...", + "Darker Color::...", + "Lighten", + "Screen", + "Color Dodge", + "Linear Dodge", + "Lighter Color", + "Overlay", + "Soft Light", + "Hard Light", + "Vivid Light", + "Linear Light", + "Pin Light", + "Hard Mix", + "Difference", + "Exclusion", + "Subtract", + "Divide", + "Hue", + "Saturation", + "Color", + "Luminosity", + "Pass Through::Blend Mode only for Folders" + ] + ], + [ + "Leading::Text style - vertical distance between lines", + "Tracking::Text style - horizontal spacing between characters", + "Baseline shift::Move the bottom line of the text", + [ + "Convert to Point Text", + "Convert to Paragraph Text" + ] + ], + [ + "All Layers", + "Current Layer", + "Selection", + "Current & Below::Current layers and all layers below it" + ], + [ + "Replace::The new thing replaces the old one", + "Unite", + "Subtract", + "Intersect", + "Exclude", + "Merge" + ], + [ + [ + "Linear", + "Radial", + "Angle", + "Reflected", + "Diamond", + "Shape Burst" + ], + [ + "Softer", + "Precise" + ], + [ + "Outer Bevel", + "Inner Bevel", + "Emboss", + "Pillow Emboss", + "Stroke Emboss", + "Stroke Width::The thickness of the stroke line (contour)" + ], + [ + "Smooth::A verb: to smooth something", + "Chisel Hard", + "Chisel Soft", + "Smoothness" + ], + [ + "Up", + "Down" + ], + [ + "Outside", + "Center", + "Inside", + "From Center::Draw an object from the center" + ], + [ + "Shadows", + "Midtones", + "Highlights" + ], + [ + "Desaturate", + "Saturate" + ], + [ + "Small", + "Medium", + "Large" + ], + [ + "Caps", + "Corners", + "Dashes" + ] + ], + [ + "Choose the object under the cursor", + "Transform controls", + "Pixel to Pixel::Zoom the image to 100% (1 image pixel = 1 screen pixel)", + "Fit The Area", + [ + "Align Left Edges", + "Center Horizontally", + "Align Right Edges", + "Align Top Edges", + "Center Vertically", + "Align Bottom Edges", + "Equal Gaps::Equal spacing between objects" + ] + ], + [ + "Place into::Place the new photo into:", + "Current Project", + "New Project", + "Resolution", + "Added into the current project.", + "A new project was created.", + "Access to the camera was denied." + ], + [ + "Orientation::Vertical or horizontal", + "Bend::Text warping: bend the text to a wave, etc.", + "Horizontal Distortion", + "Vertical Distortion", + [ + "Horizontal", + "Vertical", + "Horizontally", + "Vertically" + ], + [ + "None::No Warp", + "Arc", + "Arc Lower", + "Arc Upper", + "Arch", + "Bulge", + "Shell Lower", + "Shell Upper", + "Flag", + "Wave", + "Fish", + "Rise", + "Fish Eye", + "Inflate", + "Squeeze", + "Twist", + "Custom" + ], + [ + "Font", + "is not available", + "Will be rendered using", + "There is unsaved work in::File name will be added after this", + "Do you really want to close it?" + ], + [ + "Swap Colors", + "Default: White and Black" + ] + ], + [ + "loaded::File was loaded", + "added::Font was added", + "Move Guide", + "Delete Guide", + "Add Guide", + "Loading", + "Load VAR0::Keep VAR0 in a phrase, it will be replaced with a Noun when used" + ], + [ + "Filter Gallery", + [ + [ + "Liquify::A filter", + [ + "Smudge::Draw over image to spread colors along your stroke", + "Reconstruct::Recover to original state", + "Smoothen::Make the effect more smooth", + "Twirl::Rotate in a spiral", + "Shrink::Make smaller", + "Blow::Make bigger", + "Push Left::ush colors to the left along the stroke", + "Freeze", + "Unfreeze" + ] + ], + [ + "Lens Correction" + ] + ], + "Blur::A noun", + [ + "Average::Average filter - fills the image with an average color", + "Blur:: A verb", + "Blur More", + "Box Blur", + "Gaussian Blur", + "Lens Blur", + "Motion Blur", + "Radial Blur", + "Shape Blur", + "Smart Blur", + "Surface Blur" + ], + "Distort", + [ + "Displace::Filter: move parts of image according to the brightness from another image", + "Pinch::Blow or shring around the center", + "Polar Coordinates", + "Ripple::Add tiny waves to the image", + "Shear", + "Spherize", + "Wave" + ], + "Noise::Filetr => Noise", + [ + "Add Noise", + "Despeckle", + "Dust & Scratches", + "Median" + ], + "Pixelate", + [ + "Color Halftone", + "Crystallize", + "Facet", + "Fragment", + "Mezzotint", + "Mosaic", + "Pointillize" + ], + "Render", + [ + "Clouds", + "Difference Clouds", + "Lens Flare" + ], + "Sharpen", + [ + "Sharpen", + "Sharpen Edges", + "Sharpen More", + "Smart Sharpen", + "Unsharp Mask" + ], + "Stylize", + [ + "Diffuse", + "Emboss", + "Extrude", + "Find Edges", + "Oil Paint" + ], + "Other", + [ + "Custom::A Custom kernel of the convolution", + "High Pass", + "Maximum", + "Minimum", + "Offset::Filter: shift the image horizontally and vertically", + "Repeat::Filter: Repeat the image many times" + ], + [ + "Undefined Area", + "Set to Transparent", + "Repeat Edge Pixels", + "Wrap Around", + "Last Filter", + "Preview" + ] + ], + [ + "Templates", + [ + "Font Filter", + "Keywords", + "Randomize" + ], + [ + "With Symbols", + "With Photo" + ], + [ + "Thumbnails", + "List" + ] + ] + ], + [ + [ + "Soubor", + "Úpravy", + "Obraz", + "Vrstva", + "Složka", + "Výběr", + "Filtr", + "Zobrazení", + "Okno", + "Jazyk", + "Přihlášení", + "Odhlášení", + "Přeložit", + [ + "Účet", + "Podmínky služby", + "Zpět", + "O programu", + "Nahlas chybu", + "Nauč se" + ], + "Více", + "Motiv vzhledu", + "Použít WebGL", + [ + "Photopea: pokročilý grafický editor", + "Bezplatný online editor podporující formáty PSD, XCF, Sketch, XD, CDR a další.", + "Vytvořte nový obrázek nebo otevřete existující soubory z počítače. Uložte práci jako PSD (Soubor - Uložit jako PSD) nebo jako JPG / PNG / SVG (Soubor - Uložit jako).", + "Navrhněte nové funkce na našem nebo . Naším cílem je vytvořit .", + "Odkazy sponzorů se otevřou v novém okně.", + "Tato funkce není dostupná.", + "Nainstalovat Photopea" + ] + ], + [ + "Otevřít", + "Zveřejnit online", + "Uložit", + "Uložit jako PSD", + "Tisk", + "Otevřít z URL", + "Otevřít z počítače", + "Spojit s Google Drive", + "Uložit jako", + "Exportovat vrstvy", + "Skript", + "Otevřít a Umístit", + "Zavřít", + "Místní Úložiště", + "O Souboru" + ], + [ + "Krok vpřed", + "Krok zpět", + "Vyčistit", + "Vyplnit", + "Transformace", + "Natočit", + "Překlopit VAR0", + "Roztáhnout VAR0", + "Vpřed / Zpět", + "Perspektivní", + [ + "Automaticky prolnout", + "Automaticky zarovnat" + ], + "Zeslabit", + "Aplikovat Obraz" + ], + "Úpravy", + [ + "Jas/Kontrast", + "Úrovně", + "Křivky", + "Expozice", + "Živost", + "Odstín/Sytost", + "Vyvážení barev", + "Černobílé", + "Fotografický filtr", + "Míchání kanálů", + "Vyhledání Barev", + "Invertovat", + "Posterizovat", + "Práh", + "Mapa na přechod", + "Selektivní barva", + [ + "Auto Tón", + "Auto Kontrast", + "Auto Barvy" + ], + "Nahradit barvu" + ], + [ + "Vyjmout", + "Kopírovat", + "Vložit", + "Nový", + "Smazat", + "Zapnout", + "Vypnout", + "Kopírovat z celku", + "Aplikovat", + "Znovu", + "Obnovit" + ], + [ + "Duplikovat vrstvu", + "Nová vrstva úprav", + "Rastrová maska", + "Vektorová maska", + "Přidat (zobrazit vše)", + [ + "Přidat (skrýt vše)", + "Odhalit Výběr", + "Skrýt Výběr", + "Podle Průhlednosti" + ], + [ + "Maska Ořezu", + "Režim Rychlá Maska" + ], + "Převést na Smart Object", + "Rastrovat", + "Seskupit vrstvy", + "Sloučit dolů", + "Sloučit nahoru", + [ + "Sloučit vrstvy", + "Sloučit Vše" + ], + "Nová vrstva", + "Zapnout rastrovou masku", + "Vypnout rastrovou masku", + "Zapnout vektorovou masku", + "Vypnout vektorovou masku", + "Zapnout ořezovou masku", + "Vypnout ořezovou masku", + "Nová složka", + "Přidat rastrovou masku", + "Smazat rastrovou masku", + "Přidat vektorovou masku", + "Smazat vektorovou masku", + "Připojit rastrovou masku", + "Odpojit rastrovou masku", + "Připojit vektorovou masku", + "Odpojit vektorovou masku", + "Zapnout efekty vrstvy", + "Vypnout efekty vrstvy", + "Smazat vrstvu", + "Změna průhlednost vrstvy", + "Změna režimu prolnutí", + "Rastrovat styl vrstvy", + "Pořadí vrstev", + [ + "Vytváření Smart Object", + "Aktualizace Smart Object", + "Vkládání Smart Object", + "Zdroj (Smart Object)", + "Režim balíčku" + ], + "Změna názvu", + "Změna barvy", + "Změna vrstvy úprav", + "Převést na tvar", + "Zapnout masku filtrů", + "Vypnout masku filtrů", + "Zapnout chytré filtry", + "Vypnout chytré filtry", + "Přidat masku filtrů", + "Smazat masku filtrů", + "Smazat chytré filtry", + [ + [ + "Vyplnění jednolitou barvou", + "Vyplnění přechodem", + "Vyplnění vzorkem", + "Podle Obsahu" + ], + "Nová krycí vrstva", + "Úprava krycí vrstvy" + ], + "Vrstva zkopírováním", + "Maska filtru", + "Smazat styl vrstvy", + "Přesun smart filtru", + "Smazat smart filtr", + [ + "Propojit vrstvy", + "Zrušit propojení vrstev" + ], + "Uspořádat", + [ + "Poslat na Začátek", + "Poslat Dopředu", + "Poslat Dozadu", + "Poslat na Konec" + ], + [ + "Vrstva je Zamčená.", + "Změna Zámku", + "Zamkni" + ], + "Animace" + ], + [ + "Vše", + "Odznačit", + "Invertovat", + "Upravit", + "Rozšířit", + "Zúžit", + "Změkčit okraj", + "Posunout výběr", + "Barevný rozsah", + "Okraj", + "Transformovat výběr", + "Zpřesnit okraje", + "Opravit výběr", + "Kouzelný Ořez" + ], + [ + "Přiblížit", + "Oddálit", + "Vodítka", + "Pravítka", + "Mřížka", + "Přichytávat", + "Přichytávat k", + "Okraj dokumentu", + "Pixelová mřížka", + "Cesty", + "Přichytávat k pixelům", + [ + "Řezy", + "Parametry Řezu" + ], + "Zobrazit" + ], + [ + "Historie", + "Vrstvy", + "Vlastnosti", + "Štětec", + "Znak", + "Odstavec", + "Info", + "Kompozice", + "Vzorky", + "Akce", + "Histogram", + "Navigátor", + "Konfigurace Nástroje", + "Znaky" + ], + [ + "Štětec", + "Klonovací razítko", + "Ořez", + "Guma", + "Eliptický výběr", + "Kapátko", + "Přechod", + "Ručička", + "Vodorovný text", + "Laso", + "Magnetické laso", + "Přesun", + "Kouzelná hůlka", + "Kyblík barvy", + "Mnohoúhelníkové laso", + "Obdélníkový výběr", + "Volná transformace", + "Lupa", + "Rozostření", + "Zostření", + "Rozmazání", + "Zesvětlení", + "Ztmavení", + "Houba", + "potřísnění", + "Retušovací štětec", + "Záplata", + "Výběr cesty", + "Přímý výběr", + "Pero", + "Pero od ruky", + "Jiný tvar", + "Obdélník", + "Elipsa", + "Tvar s parametry", + "Čára", + "Pravítko", + "Rychlý výběr", + "Tužka", + "Perspektivní ořez", + "Nástroj řez", + "Nástroj výběr řezu", + "Nahradit Barvu", + "Červené oči", + "Výběr objektů", + "Mazání pozadí", + "Pokřivení Loutky", + "Natočit Obraz", + "Transformace s ohledem na obsah", + "Přesun podle obsahu" + ], + [ + "Vyfotit", + "Výběr barvy", + "Editor kontur", + "Velikost plátna", + "Duplikovat do…", + "Editor přechodu", + "Styl vrstvy", + "Nový projekt", + "Uložit pro web", + "Pokřivení", + "Velikost obrazu", + "Vektorizovat bitmapu", + [ + "Oříznout podle", + "Oříznout", + "Odhalit Vše" + ], + "Klávesové zkratky", + "Přidat Vodítka", + [ + "Odstranit vodítka", + "Vodítka podle vrstvy" + ] + ], + [ + "Krytí", + "Efekty", + "Jas", + [ + "Kontrast", + "Použít kompatibilitu" + ], + "Kanál", + "Expozice", + "Posun", + "Gama korekce", + "Odstín", + "Sytost", + "Světlost", + "Obarvit", + "Rozsah", + "Živost", + [ + "Velikost", + "Interpolace", + "Nejbližší soused", + "Bilineární" + ], + "Úhel", + "Zaoblení", + "Tvrdost", + "Mezery", + [ + "Režim prolnutí", + "Prolnout když" + ], + "Velikost vzorku", + "Kontura", + "Styl", + [ + "Otočit", + "Relativní", + "Ukotvit" + ], + "Tolerance", + "Souvislé", + "Výplň", + "Použít globální úhel", + "Vzdálenost", + "Rozšíření", + "Šum", + "Vyseknout vržený stín", + "Metoda", + "Směr", + "Hloubka", + "Změkčit", + "Režim", + "Přechod", + "Velikost", + "Zarovnat s vrstvou", + "Poloha", + "Šířka", + "Výška", + "Cíl", + "Typ", + "Popředí", + "Pozadí", + "Vlastní", + "Název", + "Vytvořit", + "Formát", + "Zachovat poměr stran", + [ + "Kvalita", + "Stránky" + ], + "Duplikovat", + "Přesun", + "Chytré filtry", + "Poloměr", + "Míra", + "Distribuce", + [ + "Rovnoměrná", + "Gaussovská" + ], + "Monochromatický", + "Velikost buňky", + "Vzorek", + "Hustota", + "Síla", + "Zachovat detaily", + "Typ výplně", + "Textura", + "Šum", + "Hrana", + "Zdroj", + "Cíl", + "Kanály", + "Maska", + "Hustota", + "Zarovnaný", + [ + "Cesta", + "Tvar", + "Pixely", + "Palce", + "Centimetry", + "Milimetry", + "Procenta" + ], + "Tvary", + "Strany", + "Předvolby", + [ + "Délka", + "Poměr", + "Libovolný", + "Typ mřížky", + "Isometrický", + "Velikost mřížky", + "Jednotky pravítek" + ], + "Redukovat šum", + "Barvy", + "Vzdálenosti", + "Míra", + "Auto-výběr", + "Najít", + "Definovat nový", + [ + "Foto", + "Obrazovka", + "Mobil", + "Reklamy", + "Tisk" + ], + [ + "Volný", + "Pevný poměr", + "Pevná velikost" + ], + "Nápověda", + [ + "Živý Tvar", + "Úprava Živého Tvaru", + "Stejné Poloměry" + ], + "Rozmazanost", + [ + "Mnohoúhelník", + "Hvězda", + "Spirála", + "Čtverec" + ], + [ + "Poloměr Rohů", + "Vnitřní Poloměr" + ] + ], + [ + "Barva", + [ + "Žádná", + "Červená", + "Oranžová", + "Žlutá", + "Zelená", + "Modrá", + "Fialová", + "Šedá", + "Bílá", + "Průhledná", + "Černá", + "Azurová", + "Purpurová", + "Neutrální" + ], + "Celkem", + "Absolutní", + "Zachovat světlost" + ], + [ + "Vržený stín", + "Vnitřní stín", + "Vnější záře", + "Vnitřní záře", + "Úkos a reliéf", + "Překrytí barvou", + "Překrytí přechodem", + "Překrytí vzorkem", + "Satén", + "Vytažení", + "Možnosti prolnutí", + "Vybrat Pixely" + ], + [ + "Tvar špičky", + "Dynamika špičky", + "Rozptyl", + "Dynamika barvy", + [ + "Kolísání velikosti", + "Minimální průměr", + "Kolísání úhlu", + "Kolísání zaoblení", + "Minimální zaoblení" + ], + [ + "Rozptyl polohy", + "Počet", + "Kolísání počtu" + ], + [ + "Kolísání popředí/pozadí", + "Kolísání odstínu", + "Kolísání sytosti", + "Kolísání jasu" + ], + [ + "Zvolte zdroj klonování přidržením Alt a kliknutím do obrazu.", + "Označte popředí Bílou, pozadí Černou a neznámou oblast Šedou.", + "Vrstvu nelze upravovat.", + "Textovou vrstvu je nejprve třeba rasterizovat", + "Smart Object je nejprve třeba rasterizovat", + "Vyberte několik vrstev", + "Vyrovnat Vrstvu", + "Nejdříve otevřete dokument.", + "Nejdříve zavřete aktuální okno.", + "Jen současný nástroj" + ], + [ + "Nahrát", + "Nová skupina akci", + "Nová akce" + ], + [ + "Přítlak pera mění Průhlednost", + "Přítlak pera mění hrúbku" + ], + [ + "Normální", + "Rozpustit", + "Ztmavit", + "Násobit", + "Ztmavit barvy", + "Lineárně ztmavit", + "Tmavší barva", + "Zesvětlit", + "Závoj", + "Zesvětlit barvy", + "Lineárně zesvětlit", + "Světlejší barva", + "Překrýt", + "Měkké světlo", + "Tvrdé světlo", + "Jasné světlo", + "Lineární světlo", + "Bodové světlo", + "Tvrdé míchání", + "Rozdíl", + "Vyloučit", + "Odečíst", + "Rozdělit", + "Odstín", + "Sytost", + "Barva", + "Světlost", + "Projít skrz" + ] + ], + [ + "Proklad", + "Prostrkání", + "Posun účaří", + [ + "Převést na Bodový text", + "Převést na Odstavcový text" + ] + ], + [ + "Všechny vrstvy", + "Stávající vrstva", + "Výběr", + "Vrstva a ty pod ní" + ], + [ + "Nahradit", + "Spojit", + "Odečtení", + "Průnik", + "XOR", + "Spojit" + ], + [ + [ + "Lineární", + "Kruhový", + "Úhlový", + "Zrcadlený", + "Diamant", + "Podle tvaru" + ], + [ + "Měkčí", + "Přesná" + ], + [ + "Vnější úkos", + "Vnitřní úkos", + "Reliéf", + "Poduškový reliéf", + "Reliéfní tah", + "Tloušťka vytažení" + ], + [ + "Vyhladit", + "Tvrdá", + "Měkká", + "Hladkost" + ], + [ + "Nahoru", + "Dolů" + ], + [ + "Vně", + "Na střed", + "Uvnitř", + "Ze Středu" + ], + [ + "Stíny", + "Střední tóny", + "Světla" + ], + [ + "Snížit Sytost", + "Zvýšit Sytost" + ], + [ + "Malý", + "Střední", + "Velký" + ], + [ + "Zakončení", + "Rohy", + "Čárky" + ] + ], + [ + "Vybrat objekt pod kurzorem", + "Ovládací prvky transformace", + "Skutečné pixely", + "Přizpůsobit obrazovce", + [ + "Zarovnat levé hrany", + "Vodorovně na střed", + "Zarovnat pravé hrany", + "Zarovnat horní hrany", + "Svisle na střed", + "Zarovnat spodní hrany", + "Stejné mezery" + ] + ], + [ + "Vložit do", + "Současný projekt", + "Nový projekt", + "Rozlišení", + "Přidáno do současného projektu.", + "Nový projekt vytvořen.", + "Nepovolen přístup ke kameře." + ], + [ + "Orientace", + "Prohnutí", + "Vodorovná deformace", + "Svislá deformace", + [ + "Vodorovně", + "Svisle", + "Vodorovně", + "Svisle" + ], + [ + "Žádné", + "Oblouk", + "Dolní oblouk", + "Horní oblouk", + "Klenba", + "Vyboulení", + "Mušle dolů", + "Mušle nahoru", + "Vlajka", + "Vlna", + "Ryba", + "Vyvýšení", + "Rybí oko", + "Nafouknutí", + "Zmáčknutí", + "Zkroucení", + "Vlastní" + ], + [ + "Písmo", + "není dostupný", + "Pro vykreslení se použije", + "Máte neuloženou práci v", + "Opravdu to chcete zavřít?" + ], + [ + "Prohodit barvy", + "Základní: černobílá" + ] + ], + [ + "načten", + "přidány", + "Posun vodítka", + "Smazání vodítka", + "Přidání vodítka", + "Načítání", + "Načíst VAR0" + ], + [ + "Galerie filtrů", + [ + [ + "Zkapalnit", + [ + "Rozmazat", + "Obnovit", + "Vyhladit", + "Zatočit", + "Smrsknout", + "Nafouknout", + "Posun doleva", + "Zmrazit", + "Rozmrazit" + ] + ], + [ + "Korekce Čočky Objektivu" + ] + ], + "Rozostření", + [ + "Průměr", + "Rozostřit", + "Rozostřit více", + "Hranolové rozostření", + "Gaussovské rozostření", + "Rozostření čočkou", + "Rozostření pohybem", + "Kruhové rozostření", + "Rozostření tvarem", + "Chytré rozostření", + "Rozostření povrchu" + ], + "Zkreslení", + [ + "Pokřivit", + "Štípnout", + "Polární Souřadnice", + "Zvlnit", + "Střihnout", + "Zakulatit", + "Vlna" + ], + "Šum", + [ + "Přidat šum", + "Vyhladit", + "Prach a škrábance", + "Medián" + ], + "Pixelizace", + [ + "Barevné půltónování", + "Krystalizace", + "Faseta", + "Fragment", + "Mezzotinta", + "Mozaika", + "Vytečkovat" + ], + "Vykreslit", + [ + "Mraky", + "Mraky: Rozdíl", + "Odlesk Objektivu" + ], + "Zaostřit", + [ + "Zaostřit", + "Zaostřit hrany", + "Zaostřit více", + "Chytré zaostření", + "Maska zaostření" + ], + "Stylizace", + [ + "Difúze", + "Reliéf", + "Vytáhnout", + "Najít hrany", + "Olejová Malba" + ], + "Ostatní", + [ + "Vlastní", + "Výšky", + "Maximum", + "Minimum", + "Posun", + "Opakovat" + ], + [ + "Oblast okolo", + "Zprůhlednit", + "Zopakovat pixely na hraně", + "Zopakovat obrázek", + "Poslední Filtr", + "Náhled" + ] + ], + [ + "Šablony", + [ + "Filtr Písma", + "Klíčová slova", + "Zamíchat" + ], + [ + "Se symboly", + "S fotkou" + ], + [ + "Miniatury", + "Seznam" + ] + ] + ], + [ + [ + "Archivo", + "Editar", + "Imagen", + "Capa", + "Carpeta", + "Seleccionar", + "Filtro", + "Visualizar", + "Ventana", + "Idioma", + "Iniciar sesión", + "Cerrar sesión", + "Crear traducción", + [ + "Cuenta", + "Términos del Servicio", + "Atrás", + "Acerca de", + "Reportar un error", + "Aprender" + ], + "Más", + "Tema", + "Usar WebGL", + [ + "Photopea: Editor Avanzado de Imágenes", + "Editor en línea gratuito que admite formatos PSD, XCF, Sketch, XD y CDR.", + "Crea una nueva imagen o abre archivos existentes desde tu computadora. Guarde tu trabajo como PSD (Archivo - Guardar como PSD) o como JPG / PNG / SVG (Archivo - Exportar como).", + "Sugiere nuevas funciones en nuestro o . Nuestro objetivo es crear .", + "Enlaces de los patrocinadores se abren en una nueva ventana.", + "Esta característica no está disponible.", + "Instalar Photopea" + ] + ], + [ + "Abrir", + "Publicar en línea", + "Guardar", + "Guardar como PSD", + "Imprimir", + "Abrir desde URL", + "Abrir desde computadora", + "Conectar con Google Drive", + "Exportar como", + "Exportar Capas", + "Script", + "Abrir y Colocar", + "Cerrar", + "Almacenamiento Local", + "Informarción del archivo" + ], + [ + "Paso Adelante", + "Paso Atrás", + "Limpiar", + "Rellenar", + "Transformar", + "Rotar", + "Voltear VAR0", + "Escalar VAR0", + "Deshacer / Rehacer", + "Perspectiva", + [ + "Fusionar automáticamente", + "Alinear automáticamente" + ], + "Transición", + "Aplicar imagen" + ], + "Ajustes", + [ + "Brillo/Contraste", + "Niveles", + "Curvas", + "Exposición", + "Intensidad de color", + "Tono/Saturación", + "Balance de Color", + "Blanco y Negro", + "Filtro de Foto", + "Mezclador de Canales", + "Búsqueda de Color", + "Invertir", + "Posterizar", + "Umbral", + "Mapa de degradado", + "Color Selectivo", + [ + "Tono Automático", + "Contraste Automático", + "Color Automático" + ], + "Reemplazar Color" + ], + [ + "Cortar", + "Copiar", + "Pegar", + "Nuevo", + "Eliminar", + "Activar", + "Desactivar", + "Copiar combinado", + "Aplicar", + "Otra vez", + "Actualizar" + ], + [ + "Duplicar capa", + "Nueva capa de ajuste", + "Máscara ráster", + "Máscara vectorial", + "Añadir (Mostrar todo)", + [ + "Añadir (Ocultar todo)", + "Descubrir selección", + "Ocultar selección", + "A partir de transparencia" + ], + [ + "Máscara de recorte", + "Máscara rápida" + ], + "Convertir a Objeto Inteligente", + "Rasterizar", + "Agrupar capas", + "Combinar hacia abajo", + "Combinar hacia arriba", + [ + "Combinar capas", + "Acoplar imagen" + ], + "Nueva capa", + "Activar máscara ráster", + "Desactivar máscara ráster", + "Activar máscara vectorial", + "Desactivar máscara vectorial", + "Activar máscara de recorte", + "Desactivar máscara de recorte", + "Nueva carpeta", + "Añadir máscara ráster", + "Eliminar máscara ráster", + "Añadir máscara vectorial", + "Eliminar máscara vectorial", + "Enlazar máscara ráster", + "Desenlazar máscara ráster", + "Enlazar máscara vectorial", + "Desenlazar máscara vectorial", + "Activar efectos de capa", + "Desactivar efectos de capa", + "Eliminar capa", + "Cambio de opacidad de capa", + "Cambio de modo de fusión", + "Rasterizar el estilo de capa", + "Orden de capas", + [ + "Crear Objeto Inteligente", + "Actualizar Objeto Inteligente", + "Colocar Objeto Inteligente", + "Fuente (Objeto Inteligente)", + "Modo de apilamiento" + ], + "Cambio de nombre", + "Cambio de color", + "Editar capa de ajuste", + "Convertir a figura", + "Activar máscara de filtro", + "Desactivar máscara de filtro", + "Activar filtros inteligentes", + "Desactivar filtros inteligentes", + "Añadir máscara de filtro", + "Eliminar máscara de filtro", + "Limpiar filtros inteligentes", + [ + [ + "Relleno de color sólido", + "Relleno de degradado", + "Relleno de patrón", + "Según el contenido" + ], + "Nueva capa de relleno", + "Modificar la capa de relleno" + ], + "Capa a través de la copia", + "Máscara de filtro", + "Eliminar estilo de capa", + "Mover filtro inteligente", + "Eliminar filtro inteligente", + [ + "Enlazar capas", + "Desenlazar capas" + ], + "Organizar", + [ + "Traer al frente", + "Hacia delante", + "Hacia atrás", + "Enviar detrás" + ], + [ + "Esta capa está bloqueada.", + "Cambio de bloqueo", + "Bloquear" + ], + "Animación" + ], + [ + "Todo", + "Deseleccionar", + "Invertir", + "Modificar", + "Expandir", + "Contraer", + "Calar", + "Mover selección", + "Gama de colores", + "Borde", + "Transformar selección", + "Perfeccionar borde", + "Sanar selección", + "Corte mágico" + ], + [ + "Aumentar", + "Reducir", + "Guías", + "Reglas", + "Cuadrícula", + "Pegarse", + "Pegarse a", + "Límites de documentos", + "Cuadrícula de píxeles", + "Trazados", + "Pegarse a píxeles", + [ + "Sectores", + "Opciones de sector" + ], + "Mostrar" + ], + [ + "Historial", + "Capas", + "Propiedades", + "Pincel", + "Carácter", + "Párrafo", + "Info", + "Composiciones de capas", + "Muestras", + "Acciones", + "Histograma", + "Navegador", + "Herramientas preestablecidas", + "Glifos" + ], + [ + "Herramienta Pincel", + "Clonar", + "Recortar", + "Borrador", + "Selección elíptica", + "Gotero", + "Degradado", + "Herramienta Mano", + "Texto", + "Selección de lazo", + "Selección de lazo magnético", + "Mover", + "Varita mágica", + "Bote de pintura", + "Selección de lazo poligonal", + "Selección rectangular", + "Transformación libre", + "Herramienta Zoom", + "Herramienta de desenfoque", + "Sacapuntas", + "Herramienta de borrado", + "Herramienta de esquivado", + "Herramienta de grabación", + "Herramienta Esponja", + "Pincel corrector de punto", + "Pincel corrector", + "Herramienta Parche", + "Selección de trazado", + "Selección directa", + "Pluma", + "Pluma libre", + "Forma personalizada", + "Rectangulo", + "Elipse", + "Forma paramétrica", + "Línea", + "Regla", + "Selección rápida", + "Herramienta Lápiz", + "Recorte con perspectiva", + "Sector", + "Seleccionar sector", + "Sustitución de color", + "Pincel de ojos rojos", + "Selección de objeto", + "Borrador de fondos", + "Deformación de posición libre", + "Rotar vista", + "Escala según el contenido", + "Herramienta Movimiento con detección de contenido" + ], + [ + "Tomar una foto", + "Elegir color", + "Editor de contorno", + "Tamaño de lienzo", + "Duplicar en …", + "Editor de degradado", + "Estilo de capa", + "Nuevo proyecto", + "Guardar para web", + "Deformar", + "Tamaño de la imagen", + "Vectorizar mapa de bits", + [ + "Cortar", + "Recortar", + "Mostrar todo" + ], + "Atajos de teclado", + "Añadir guías", + [ + "Borrar guías", + "Guías de capa" + ] + ], + [ + "Opacidad", + "Efectos", + "Brillo", + [ + "Contraste", + "Usar heredado" + ], + "Canal", + "Exposición", + "Desplazamiento", + "Corrección gamma", + "Tono", + "Saturación", + "Luminosidad", + "Colorear", + "Rango", + "Vibración", + [ + "Tamaño", + "Interpolación", + "Por aproximación", + "Bilineal" + ], + "Ángulo", + "Redondez", + "Dureza", + "Espaciar", + [ + "Modo de fusión", + "Fusionar si es" + ], + "Tamaño de muestra", + "Contorno", + "Estilo", + [ + "Revertir", + "Relativo", + "Ancla" + ], + "Tolerancia", + "Contiguo", + "Relleno", + "Usar ángulo global", + "Distancia", + "Dispersión", + "Ruido", + "Ocultar sombra paralela", + "Técnica", + "Dirección", + "Profundidad", + "Suavizar", + "Modo", + "Degradado", + "Escalar", + "Alinear con capa", + "Posición", + "⬌ Ancho", + "⬍ Alto", + "Destinación", + "Tipo", + "Primer plano", + "Fondo", + "Personalizado", + "Nombre", + "Crear", + "Formato", + "Mantener relación de aspecto", + [ + "Calidad", + "Páginas" + ], + "Duplicar", + "Mover", + "Filtros inteligentes", + "Radio", + "Cantidad", + "Distribución", + [ + "Uniforme", + "Desenfoque gaussiano" + ], + "Monocromático", + "Tamaño de la celda", + "Motivo", + "Flujo", + "Fuerza", + "Proteger detalle", + "Tipo de relleno", + "Textura", + "Variación", + "Borde", + "Fuente", + "Destino", + "Canales", + "Máscara", + "Densidad", + "Alineado", + [ + "Trazado", + "Forma", + "Píxeles", + "Pulgada", + "Centímetros", + "Milímetros", + "Porcentaje" + ], + "Formas", + "Lados", + "Preferencias", + [ + "Longitud", + "Proporción", + "Cualquiera", + "Tipo de cuadrícula", + "Isometrico", + "Espaciado de cuadrícula", + "Unidad de regla" + ], + "Reducir ruido", + "Colores", + "Distancias", + "Velocidad", + "Seleccion automatica", + "Buscar", + "Definir nuevo", + [ + "Foto", + "Pantalla", + "Móvil", + "Anuncios", + "Impresión" + ], + [ + "Liberar", + "Proporcion fija", + "Tamaño fijo" + ], + "Ayuda", + [ + "Forma dinamica", + "Editar forma dinamica", + "Mismo radio" + ], + "Tolerancia", + [ + "Polígono", + "Estrella", + "Espiral", + "Cuadrado" + ], + [ + "Radio de esquina", + "Radio interior" + ] + ], + [ + "Color", + [ + "Ninguno", + "Rojo", + "Naranja", + "Amarillo", + "Verde", + "Azul", + "Violeta", + "Gris", + "Blanco", + "Transparente", + "Negro", + "Cian", + "Magenta", + "Neutro" + ], + "Total", + "Absoluto", + "Conservar luminosidad" + ], + [ + "Sombra paralela", + "Sombra interior", + "Resplandor exterior", + "Resplandor interior", + "Bisel y relieve", + "Superposición de colores", + "Superposición de degradado", + "Superposición de motivo", + "Satinar", + "Contorno", + "Opciones de fusión", + "Seleccionar píxeles" + ], + [ + "Forma de la punta", + "Dinámica de punta", + "Dispersión", + "Dinámica de color", + [ + "Variación del tamaño", + "Diámetro Mínimo", + "Variación del ángulo", + "Variación de la redondez", + "Redondez Mínima" + ], + [ + "Variación de la posición", + "Cuenta", + "Variación de la cuenta" + ], + [ + "Variación frontal/de fondo", + "Variación del tono", + "Variación de la saturación", + "Variación del brillo" + ], + [ + "Selecciona la fuente de clonado manteniendo Alt (o K) y dando clic sobre la imagen", + "Marcar el area de enfrente como blanca, la del fondo como negra y el area desconocida como gris", + "Esta capa no es editable", + "Hay que rasterizar la capa de texto antes", + "Hay que rasterizar el objeto inteligente antes", + "Seleccionar múltiples capas", + "Enderezar la capa", + "Abra un documento primero.", + "Cierre la ventana actual primero.", + "Solo herramienta actual" + ], + [ + "Grabar", + "Nuevo conjunto de acciones", + "Nueva accion" + ], + [ + "La presión de stylus controla la opacidad", + "La presión de stylus controla el tamaño" + ], + [ + "Normal", + "Disolver", + "Oscurecer", + "Multiplicar", + "Subexponer color", + "Subexposición lineal", + "Color más oscuro", + "Aclarar", + "Trama", + "Sobreexponer color", + "Sobreexposición lineal", + "Color más claro", + "Superponer", + "Luz suave", + "Luz fuerte", + "Luz intensa", + "Luz lineal", + "Luz focal", + "Mezcla definida", + "Diferencia", + "Exclusión", + "Restar", + "Dividir", + "Tono", + "Saturación", + "Color", + "Luminosidad", + "Pass Through" + ] + ], + [ + "Interlineado", + "Rastrear", + "Desplazamiento vertical", + [ + "Convertir a escritura de caracteres", + "Convertir a escritura de párrafo" + ] + ], + [ + "Todas las capas", + "Capa actual", + "Selección", + "Actual y anteriores" + ], + [ + "Reemplazar", + "Unión", + "Diferencia", + "Intersecar", + "Excluir", + "Combinar" + ], + [ + [ + "Lineal", + "Radial", + "Ángulo", + "Reflejado", + "Diamante", + "Explosión de forma" + ], + [ + "Más suave", + "Precisar" + ], + [ + "Bisel Externo", + "Bisel Interno", + "Relieve", + "Relieve tipo Almohada", + "Relieve del Trazo", + "Anchura de trazo" + ], + [ + "Suavizar", + "Cincel Duro", + "Cincel Suave", + "Suavizado" + ], + [ + "Arriba", + "Abajo" + ], + [ + "Afuera", + "Centrado", + "Adentro", + "Desde el centro" + ], + [ + "Sombras", + "Tonos medios", + "Altas luces" + ], + [ + "Desaturar", + "Saturar" + ], + [ + "Pequeño", + "Mediano", + "Largo" + ], + [ + "Tapas", + "Esquinas", + "Guiones" + ] + ], + [ + "Selecciona el objeto bajo el cursor", + "Controles de transformación", + "Píxel por píxel", + "Ajustar al área", + [ + "Alinear bordes izquierdos", + "Centrar horizontalmente", + "Alinear bordes derechos", + "Alinear bordes superiores", + "Centrar verticalmente", + "Alinear bordes inferiores", + "Mismo espaciado" + ] + ], + [ + "Insertar en", + "Proyecto actual", + "Nuevo proyecto", + "Resolución", + "Añadido al proyecto actual.", + "Se ha creado un nuevo proyecto.", + "El acceso a la cámara fue denegado." + ], + [ + "Orientación", + "Curvar", + "Distorsión horizontal", + "Distorsión vertical", + [ + "Horizontal", + "Vertical", + "horizontalmente", + "verticalmente" + ], + [ + "Ninguno", + "Arco", + "Arco Inferior", + "Arco Superior", + "Bóveda", + "Abombar", + "Caparazón hacia abajo", + "Caparazón hacia arriba", + "Bandera", + "Onda", + "Pez", + "Elevar", + "Ojo de pez", + "Inflar", + "Estrechar", + "Torcer", + "Personalizado" + ], + [ + "Fuente", + "no está disponible", + "Se renderizará utilizando", + "Hay trabajo no guardado en", + "¿Realmente quieres cerrarlo?" + ], + [ + "Intercambiar Colores", + "Predefinido: Blanco y Negro" + ] + ], + [ + "cargado", + "agregado", + "Mover Guía", + "Eliminar guía", + "Añadir guía", + "Cargando", + "Cargar VAR0" + ], + [ + "Galería de filtros", + [ + [ + "Licuar", + [ + "Manchar", + "Reconstruir", + "Suavizar", + "Molinete", + "Achicar", + "Expandir", + "Empurrar para a Esquerda", + "Congelar", + "Descongelar" + ] + ], + [ + "Corrección del lente" + ] + ], + "Desenfoque", + [ + "Promediar", + "Desenfocar", + "Desenfocar más", + "Desenfoque de rectángulo", + "Desenfoque Gaussiano", + "Desenfoque de lente", + "Desenfoque de movimiento", + "Desenfoque radial", + "Desenfoque de forma", + "Desenfoque suavizado", + "Desenfoque de superficie" + ], + "Filtros de distorsión", + [ + "Desplazar", + "Encoger", + "Coordenadas polares", + "Rizo", + "Distorsionar", + "Esferizar", + "Onda" + ], + "Filtros de ruido", + [ + "Añadir ruido", + "ARICHIVOS", + "Polvo y Rascaduras", + "Mediana" + ], + "Filtros para pixelizar", + [ + "Medios tonos de color", + "Cristalizar", + "Faceta", + "Fragmentos", + "Grabado mezzotinto", + "Mosaico", + "Puntillismo" + ], + "Hacer", + [ + "Nubes", + "Nubes de diferencia", + "Destello" + ], + "Filtros de enfoque", + [ + "Afilar", + "Agudizar los bordes", + "Afilar más", + "Afilado inteligente", + null + ], + "Estilizar", + [ + "Difusión", + "Realzar", + "Extrusión", + "Encontrar bordes", + "Pintura al óleo" + ], + "Otros filtros", + [ + "Personalizado", + "Paso alto", + "Máximo", + "Mínimo", + "Compensar", + "Repetir" + ], + [ + "Área indefinida", + "Establecer como transparente", + "Repita los píxeles de los bordes", + "Envolver alrededor", + "Último filtro", + "Previsualizar" + ] + ], + [ + "Plantillas", + [ + "Filtro de fuente", + "Palabras clave", + "Aleatorizar" + ], + [ + "Con símbolos", + "Con foto" + ], + [ + "Miniaturas", + "Lista" + ] + ] + ], + [ + [ + "Datei", + "Bearbeiten", + "Bild", + "Ebene", + "Ordner", + "Auswahl", + "Filter", + "Ansicht", + "Fenster", + "Sprache", + "Anmelden", + "Abmelden", + "Übersetzung erstellen", + [ + "Konto", + "Nutzungsbedingungen", + "Zurück", + "Über", + "Fehler melden", + "Lernen" + ], + "Mehr", + "Farbschema", + "WebGL verwenden", + [ + "Photopea: Fortschrittliche Bildbearbeitung", + "Kostenloses Online-Bildbearbeitungsprogramm mit Unterstützung für PSD-, XCF-, Sketch-, XD- und CDR-Formate.", + "Erstellen Sie ein neues Bild oder öffnen Sie vorhandene Dateien von Ihrem Computer. Sichern Sie Ihre Arbeit als PSD (Datei - Speichern als PSD) oder als JPG / PNG / SVG (Datei - Exportieren als).", + "Vorschläge für neue Funktionen gerne über oder . Unser Ziel ist es, zu schaffen.", + "Sponsorenlinks werden in neuem Fenster geöffnet.", + "Diese Funktion ist nicht verfügbar.", + "Photopea installieren" + ] + ], + [ + "Öffnen", + "Online veröffentlichen", + "Speichern", + "Speichern als PSD", + "Drucken", + "Von URL öffnen", + "Vom Computer öffnen", + "Mit Google Drive verbinden", + "Exportieren als", + "Ebenen exportieren", + "Skripten", + "Öffnen & einfügen", + "Schließen", + "Lokaler Speicher", + "Datei-Informationen" + ], + [ + "Schritt vorwärts", + "Schritt rückwärts", + "Löschen", + "Füllen", + "Transformieren", + "Drehen", + "VAR0 spiegeln", + "VAR0 skalieren", + "Rückgängig / Wiederholen", + "Perspektive", + [ + "Automatisch überblenden", + "Automatisch ausrichten" + ], + "Verblassen", + "Bildberechnungen" + ], + "Anpassungen", + [ + "Helligkeit/Kontrast", + "Tonwertkorrektur", + "Gradationskurven", + "Belichtung", + "Dynamik", + "Farbton/Sättigung", + "Farbbalance", + "Schwarzweiß", + "Fotofilter", + "Kanalmixer", + "Farbfinder", + "Umkehren", + "Tontrennung", + "Schwellwert", + "Verlaufsumsetzung", + "Selektive Farbkorrektur", + [ + "Auto-Farbton", + "Auto-Kontrast", + "Auto-Farbe" + ], + "Farbe ersetzen" + ], + [ + "Ausschneiden", + "Kopieren", + "Einfügen", + "Neu", + "Löschen", + "Aktivieren", + "Deaktivieren", + "Vereint kopieren", + "Anwenden", + "Erneut", + "Aktualisieren" + ], + [ + "Ebene duplizieren", + "Neue Einstellungsebene", + "Rastermaske", + "Vektormaske", + "Hinzufügen (alle einblenden)", + [ + "Hinzufügen (alle ausblenden)", + "Auswahl einblenden", + "Auswahl ausblenden", + "Von Transparenz" + ], + [ + "Schnittmaske", + "Maskierungsmodus" + ], + "In Smartobjekt konvertieren", + "Rastern", + "Ebenen gruppieren", + "Abwärts vereinen", + "Aufwärts vereinen", + [ + "Ebenen vereinen", + "Auf Hintergrundebene reduzieren" + ], + "Neue Ebene", + "Rastermaske aktivieren", + "Rastermaske deaktivieren", + "Vektormaske aktivieren", + "Vektormaske deaktivieren", + "Schnittmaske aktivieren", + "Schnittmaske deaktivieren", + "Neuer Ordner", + "Rastermaske hinzufügen", + "Rastermaske entfernen", + "Vektormaske hinzufügen", + "Vektormaske entfernen", + "Rastermaske verbinden", + "Rastermaske trennen", + "Vektormaske verbinden", + "Vektormaske trennen", + "Ebeneneffekte aktivieren", + "Ebeneneffekte deaktivieren", + "Ebene löschen", + "Deckkraftänderung der Ebene", + "Mischmodus-Änderung", + "Ebenenstil rastern", + "Ebenenreihenfolge", + [ + "Smartobjekt erstellen", + "Smartobjekt aktualisieren", + "Smartobjekt platzieren", + "Quelle (Smartobjekt)", + "Stapelmodus" + ], + "Namensänderung", + "Farbänderung", + "Einstellungsebene bearbeiten", + "In Form umwandeln", + "Filtermaske aktivieren", + "Filtermaske deaktivieren", + "Smartfilter aktivieren", + "Smartfilter deaktivieren", + "Filtermaske hinzufügen", + "Filtermaske entfernen", + "Smartfilter löschen", + [ + [ + "Volltonfüllung", + "Verlaufsfüllung", + "Musterfüllung", + "Inhaltsbasiert" + ], + "Neue Füllebene", + "Füllebene verändern" + ], + "Ebene aus Kopie", + "Filtermaske", + "Ebenenstil löschen", + "Smartfilter verschieben", + "Smartfilter löschen", + [ + "Ebenen verbinden", + "Ebenenverbindung aufheben" + ], + "Anordnen", + [ + "In den Vordergrund", + "Schrittweise nach vorne", + "Schrittweise nach hinten", + "In den Hintergrund" + ], + [ + "Diese Ebene ist fixiert", + "Fixierungsänderung", + "Fixieren" + ], + "Animation" + ], + [ + "Alles", + "Auswahl aufheben", + "Umkehren", + "Auswahl verändern", + "Erweitern", + "Verkleinern", + "Weiche Kante", + "Auswahl verschieben", + "Farbbereich", + "Rand", + "Auswahl transformieren", + "Kante verbessern", + "Auswahl reparieren", + "Magic Cut" + ], + [ + "Einzoomen", + "Auszoomen", + "Hilfslinien", + "Lineale", + "Raster", + "Ausrichten", + "Ausrichten an", + "Dokumentbegrenzungen", + "Pixelraster", + "Pfade", + "An Pixeln ausrichten", + [ + "Slices", + "Slice-Optionen" + ], + "Einblenden" + ], + [ + "Protokoll", + "Ebenen", + "Eigenschaften", + "Pinsel", + "Zeichen", + "Absatz", + "Info", + "Ebenenkompositionen", + "Farbfelder", + "Aktionen", + "Histogramm", + "Navigator", + "Werkzeugvorgaben", + "Glyphen" + ], + [ + "Pinsel-Werkzeug", + "Kopierstempel-Werkzeug", + "Freisteller", + "Radiergummi", + "Ellipsen-Auswahl", + "Pipette", + "Verlaufswerkzeug", + "Hand-Werkzeug", + "Text-Werkzeug", + "Lasso-Auswahl", + "Magnetlasso-Auswahl", + "Verschieben-Werkzeug", + "Zauberstab-Werkzeug", + "Füllwerkzeug", + "Polygonlasso-Auswahl", + "Rechteck-Auswahl", + "Frei transformieren", + "Zoom-Werkzeug", + "Weichzeichner", + "Scharfzeichner", + "Wischfinger-Werkzeug", + "Abwedler", + "Nachbelichter", + "Schwamm-Werkzeug", + "Bereichsreparatur-Pinsel", + "Reparatur-Pinsel", + "Ausbessern-Werkzeug", + "Pfad-Auswahl", + "Direkt-Auswahl", + "Stift", + "Freihand-Stift", + "Eigene Form", + "Rechteck", + "Ellipse", + "Parametrische Form", + "Linie", + "Lineal", + "Schnell-Auswahl", + "Bleistift-Werkzeug", + "Perspektivischer Freisteller", + "Slice-Werkzeug", + "Slice-Auswahlwerkzeug", + "Farbe-ersetzen-Werkzeug", + "Rote-Augen-Werkzeug", + "Objektauswahl", + "Hintergrund-Radiergummi", + "Formgitter", + "Ansichtdrehung", + "Inhaltsbasiert skalieren", + "Inhaltsbasiert verschieben" + ], + [ + "Foto aufnehmen", + "Farbwähler", + "Konturen-Editor", + "Arbeitsfläche", + "Duplizieren in …", + "Verlaufseditor", + "Ebenenstil", + "Neues Projekt", + "Für Web speichern", + "Verkrümmen", + "Bildgröße", + "Bitmap vektorisieren", + [ + "Zuschneiden", + "Freistellen", + "Alle einblenden" + ], + "Tastaturkürzel", + "Hilfslinien hinzufügen", + [ + "Hilfslinien löschen", + "Hilfslinien aus Ebene" + ] + ], + [ + "Deckkraft", + "Effekte", + "Helligkeit", + [ + "Kontrast", + "Altes Verfahren verwenden" + ], + "Kanal", + "Belichtung", + "Versatz", + "Gammakorrektur", + "Farbton", + "Sättigung", + "Helligkeit", + "Färben", + "Bereich", + "Dynamik", + [ + "Größe", + "Interpolation", + "Pixelwiederholung", + "Bilinear" + ], + "Winkel", + "Rundheit", + "Härte", + "Abstand", + [ + "Modus", + "Farbbereich" + ], + "Aufnahmebereich", + "Kontur", + "Stil", + [ + "Umkehren", + "Relativ", + "Anker" + ], + "Toleranz", + "Benachbart", + "Füllung", + "Globaler Winkel", + "Distanz", + "Überfüllen", + "Rauschen", + "Schlagschatten aussparen", + "Technik", + "Richtung", + "Tiefe", + "Weichz.", + "Modus", + "Farbverlauf", + "Skalieren", + "An Ebene ausrichten", + "Position", + "Breite", + "Höhe", + "Ziel", + "Typ", + "Vordergrund", + "Hintergrund", + "Benutzerdefiniert", + "Name", + "Erstellen", + "Format", + "Seitenverhältnis beibehalten", + [ + "Qualität", + "Seiten" + ], + "Duplizieren", + "Verschiebung", + "Smartfilter", + "Radius", + "Stärke", + "Verteilung", + [ + "Gleichmäßig", + "Gauß" + ], + "Monochrom", + "Zellengröße", + "Muster", + "Fluss", + "Stärke", + "Detail schützen", + "Füllart", + "Stuktur", + "Jitter", + "Kante", + "Quelle", + "Ziel", + "Kanäle", + "Maske", + "Dichte", + "Ausgerichtet", + [ + "Pfad", + "Form", + "Pixel", + "Zoll", + "Zentimeter", + "Millimeter", + "Prozent" + ], + "Formen", + "Seiten", + "Einstellungen", + [ + "Länge", + "Verhältnis", + "Beliebig", + "Rasterart", + "Isometrisch", + "Rasterweite", + "Linealeinheiten" + ], + "Rauschen reduzieren", + "Farben", + "Distanzen", + "Geschwindigkeit", + "Auto-Auswahl", + "Suchen", + "Neu festlegen", + [ + "Foto", + "Bildschirm", + "Mobiltelefon", + "Online-Werbung", + "Druck" + ], + [ + "Normal", + "Festes Verhältnis", + "Feste Größe" + ], + "Hilfe", + [ + "Liveform", + "Liveform bearbeiten", + "Gleiche Radien" + ], + "Toleranz", + [ + "Polygon", + "Stern", + "Spirale", + "Quadratisch" + ], + [ + "Eckenradius", + "Innenradius" + ] + ], + [ + "Farbe", + [ + "Ohne", + "Rot", + "Orange", + "Gelb", + "Grün", + "Blau", + "Lila", + "Grau", + "Weiß", + "Transparent", + "Schwarz", + "Cyan", + "Magenta", + "Neutral" + ], + "Gesamt", + "Absolut", + "Luminanz erhalten" + ], + [ + "Schlagschatten", + "Schatten nach innen", + "Schein nach außen", + "Schein nach innen", + "Abgeflachte Kante und Relief", + "Farbüberlagerung", + "Verlaufsüberlagerung", + "Musterüberlagerung", + "Glanz", + "Kontur", + "Mischoptionen", + "Pixel auswählen" + ], + [ + "Spitzenform", + "Spitzendynamik", + "Streuung", + "Farbdynamik", + [ + "Größen-Jitter", + "Mindestdurchmesser", + "Winkel-Jitter", + "Rundheit-Jitter", + "Minimale Rundheit" + ], + [ + "Positions-Jitter", + "Anzahl", + "Anzahl-Jitter" + ], + [ + "Vorder-/Hintergrund-Jitter", + "Farbton-Jitter", + "Sättigungs-Jitter", + "Helligkeits-Jitter" + ], + [ + "Die zu klonende Quelle mit Alt (oder K) plus Klick auf das Bild auswählen.", + "Den Vordergrund mit Weiß, den Hintergrund mit Schwarz und die unbekannte Fläche mit Grau markieren.", + "Ebene ist nicht veränderbar.", + "Textebene muss zuerst gerastert werden.", + "Smartobjekt muss zuerst gerastert werden.", + "Bitte mehrere Ebenen auswählen", + "Ebene gerade ausrichten", + "Es ist noch kein Dokument geöffnet.", + "Das aktuelle Fenster muss zuerst geschlossen werden.", + "Nur aktuelles Werkzeug" + ], + [ + "Aufzeichnen", + "Neues Aktionsset", + "Neue Aktion" + ], + [ + "Stiftandruck steuert Deckkraft", + "Stiftandruck steuert Größe" + ], + [ + "Normal", + "Sprenkeln", + "Abdunkeln", + "Multiplizieren", + "Farbig nachbel.", + "Linear nachbel.", + "Dunklere Farbe", + "Aufhellen", + "Negativ multipl.", + "Farbig abwedeln", + "Linear abwedeln", + "Hellere Farbe", + "Überlagern", + "Weiches Licht", + "Hartes Licht", + "Strahlendes Licht", + "Lineares Licht", + "Lichtpunkt", + "Hart mischen", + "Differenz", + "Ausschluss", + "Subtrahieren", + "Dividieren", + "Farbton", + "Sättigung", + "Farbe", + "Luminanz", + "Hindurchwirken" + ] + ], + [ + "Zeilenabstand", + "Zeichenabstand", + "Grundlinienversatz", + [ + "In Punkttext konvertieren", + "In Absatztext konvertieren" + ] + ], + [ + "Alle Ebenen", + "Aktuelle Ebene", + "Auswahl", + "Aktuelle und darunter" + ], + [ + "Ersetzen", + "Vereinen", + "Subtrahieren", + "Schnittmenge", + "Ausschließen", + "Vereinen" + ], + [ + [ + "Linear", + "Radial", + "Winkel", + "Reflektiert", + "Raute", + "Shape Burst" + ], + [ + "Weicher", + "Präzise" + ], + [ + "Abgeflachte Kante außen", + "Abgeflachte Kante innen", + "Relief", + "Relief an allen Kanten", + "Reliefkontur", + "Konturstärke" + ], + [ + "Abrunden", + "Hart meißeln", + "Weich meißeln", + "Glättung" + ], + [ + "Nach oben", + "Nach unten" + ], + [ + "Außerhalb", + "Mittig", + "Innerhalb", + "Vom Mittelpunkt aus" + ], + [ + "Tiefen", + "Mitteltöne", + "Lichter" + ], + [ + "Sättigung verringern", + "Sättigung erhöhen" + ], + [ + "Klein", + "Mittel", + "Groß" + ], + [ + "Enden", + "Ecken", + "Striche" + ] + ], + [ + "Das Objekt unter dem Cursor auswählen", + "Transformationsstrg.", + "Pixel für Pixel", + "Ganzes Bild", + [ + "Linke Kanten ausrichten", + "Waagerecht zentrieren", + "Rechte Kanten ausrichten", + "Obere Kanten ausrichten", + "Senkrecht zentrieren", + "Untere Kanten ausrichten", + "Gleichmäßige Abstände" + ] + ], + [ + "Einfügen in", + "Aktuelles Projekt", + "Neues Projekt", + "Auflösung", + "Zum aktuellen Projekt hinzugefügt.", + "Ein neues Projekt wurde erstellt.", + "Der Zugriff auf die Kamera wurde verweigert." + ], + [ + "Ausrichtung", + "Biegung", + "Horizontale Verzerrung", + "Vertikale Verzerrung", + [ + "Horizontal", + "Vertikal", + "Horizontal", + "Vertikal" + ], + [ + "Ohne", + "Bogen", + "Bogen unten", + "Bogen oben", + "Wölbung", + "Wulst", + "Muschel unten", + "Muschel oben", + "Flagge", + "Welle", + "Fisch", + "Ansteigend", + "Linse", + "Aufblasen", + "Stauchen", + "Strudel", + "Benutzerdefiniert" + ], + [ + "Schrift", + "ist nicht verfügbar", + "Wird gerendert mit", + "Es gibt ungesicherte Änderungen in", + "Wollen Sie es wirklich schließen?" + ], + [ + "Farben tauschen", + "Standard: Weiß und Schwarz" + ] + ], + [ + "geladen", + "hinzugefügt", + "Hilfslinie verschieben", + "Hilfslinie löschen", + "Hilfslinie hinzufügen", + "Laden", + "VAR0 laden" + ], + [ + "Filtergalerie", + [ + [ + "Verflüssigen", + [ + "Verschmieren", + "Rekonstruieren", + "Glätten", + "Strudel", + "Schrumpfen", + "Aufblasen", + "Nach links schieben", + "Fixieren", + "Lösen" + ] + ], + [ + "Objektivkorrektur" + ] + ], + "Weichzeichnen", + [ + "Durchschnitt", + "Weichzeichnen", + "Stark weichzeichnen", + "Feld weichzeichnen", + "Gaußscher Weichzeichner", + "Tiefenschärfe abmildern", + "Bewegungsunschärfe", + "Radialer Weichzeichner", + "Form weichzeichnen", + "Selektiver Weichzeichner", + "Matter machen" + ], + "Verzerrungsfilter", + [ + "Versetzen", + "Distorsion", + "Polarkoordinaten", + "Kräuseln", + "Verbiegen", + "Wölben", + "Schwingungen" + ], + "Rauschfilter", + [ + "Rauschen hinzufügen", + "Rauschen entfernen", + "Staub und Kratzer", + "Median" + ], + "Vergröberungsfilter", + [ + "Farbraster", + "Kristallisieren", + "Facetteneffekt", + "Verwackelungseffekt", + "Mezzotint", + "Mosaik", + "Punktieren" + ], + "Renderfilter", + [ + "Wolken", + "Differenzwolken", + "Blendenflecke" + ], + "Scharfzeichnen", + [ + "Scharfzeichnen", + "Kanten schärfen", + "Stark scharfzeichnen", + "Selektiver Scharfzeichner", + "Unscharf maskieren" + ], + "Stilisierungsfilter", + [ + "Korneffekt", + "Relief", + "Extrudieren", + "Konturen finden", + "Ölgemälde" + ], + "Andere Filter", + [ + "Angepasst", + "Hochpass", + "Maximum", + "Minimum", + "Verschiebungseffekt", + "Wiederholen" + ], + [ + "Undefin. Bereich", + "Auf transparent setzen", + "Kantenpixel wiederholen", + "Umfließen", + "Letzter Filter", + "Vorschau" + ] + ], + [ + "Vorlagen", + [ + "Schrift-Filter", + "Schlüsselwörter", + "Neu mischen" + ], + [ + "Mit Symbolen", + "Mit Foto" + ], + [ + "Miniaturen", + "bangla" + ] + ] + ], + [ + [ + "Fichier", + "Édition", + "Image", + "Calque", + "Dossier", + "Sélection", + "Filtre", + "Affichage", + "Fenêtre", + "Langue", + "Se connecter", + "Se déconnecter", + "Créer une traduction", + [ + "Compte", + "Conditions d'utilisation", + "Retour", + "À propos", + "Signaler un bug", + "Apprendre" + ], + "Plus", + "Thème", + "Utiliser WebGL", + [ + "Photopea: éditeur d'image avancé", + "Éditeur en ligne gratuit prenant en charge les formats PSD, XCF, Sketch, XD et CDR.", + "Créez une nouvelle image ou ouvrez des fichiers existants à partir de votre ordinateur. Enregistrez votre travail au format PSD (Fichier - Enregistrer en tant que PSD) ou JPG / PNG / SVG (Fichier - Exporter en tant que).", + "Suggérez de nouvelles fonctionnalités sur notre ou . Notre objectif est de créer .", + "Liens des sponsors s'ouvrent dans une nouvelle fenêtre.", + "Cette fonctionnalité n'est pas disponible.", + "Installer Photopea" + ] + ], + [ + "Ouvrir", + "Publier en ligne", + "Enregistrer", + "Enregistrer en tant que PSD", + "Imprimer", + "Ouvrir depuis une URL", + "Ouvrir depuis l'ordinateur", + "Se connecter avec Google Drive", + "Exporter en tant que", + "Exporter les calques", + "Script", + "Ouvrir & placer", + "Fermer", + "Stockage local", + null + ], + [ + "Étape suivante", + "Étape précédente", + "Effacer", + "Remplir", + "Transformer", + "Rotation", + "Retourner VAR0", + "Echelle VAR0", + "Annuler / Restaurer", + "Point de vue", + [ + "Fusion automatique", + "Alignement automatique" + ], + "Atténuer", + "Appliquer une image" + ], + "Ajustements", + [ + "Luminosité/contraste", + "Niveaux", + "Courbes", + "Exposition", + "Vibrance", + "Teinte/saturation", + "Balance de couleur", + "Noir et blanc", + "Filtre photo", + "Mélangeur de canaux", + "Recherche de Couleur", + "Inverser", + "Postériser", + "Seuil", + "Courbe de transfert de dégradé", + "Couleur sélective", + [ + "Tonalité automatique", + "Contraste automatique", + "Couleur automatique" + ], + "Remplacer couleur" + ], + [ + "Couper", + "Copier", + "Coller", + "Nouveau", + "Supprimer", + "Activer", + "Désactiver", + "Copie fusionnée", + "Appliquer", + "De nouveau", + "Mettre à jour" + ], + [ + "Dupliquer le calque", + "Nouveau calque d'ajustement", + "Masque raster", + "Masque vectoriel", + "Ajouter (Tout montrer)", + [ + "Ajouter (Tout cacher)", + "Faire apparaître la sélection", + "Masquer la sélection", + "D’après la transparence" + ], + [ + "Masque d'écrêtage", + "Mode Masque" + ], + "Convertir en objet dynamique", + "Rastériser", + "Grouper les calques", + "Fusionner vers le bas", + "Fusionner vers le haut", + [ + "Fusionner les calques", + "Aplatir l’image" + ], + "Nouveau calque", + "Activer le masque raster", + "Désactiver le masque raster", + "Activer le masque vectoriel", + "Désactiver le masque vectoriel", + "Activer le masque d'écrêtage", + "Désactiver le masque d'écrêtage", + "Nouveau dossier", + "Ajouter un masque raster", + "Supprimer un masque raster", + "Ajouter un masque vectoriel", + "Supprimer un masque vectoriel", + "Lier le masque raster", + "Délier le masque raster", + "Lier le masque vectoriel", + "Délier le masque vectoriel", + "Activer les effets de calque", + "Désactiver les effets de calque", + "Supprimer le calque", + "Modifier l'opacité du calque", + "Modifier le Mode de fusion", + "Rastériser le style de calque", + "Ordre des calques", + [ + "Créer un objet dynamique", + "Mettre à jour un objet dynamique", + "Placer un objet dynamique", + "Source (objet dynamique)", + "Mode empilage" + ], + "Modifier le nom", + "Changer la Couleur", + "Modifier le calque de réglages", + "Convertir en forme", + "Activer le masque filtrant", + "Désactiver le masque filtrant", + "Activer les filtres dynamiques", + "Désactiver les filtres dynamiques", + "Ajouter un masque filtrant", + "Supprimer le masque filtrant", + "Effacer les filtres dynamiques", + [ + [ + "Remplissage couleur unie", + "Remplissage en dégradé", + "Remplissage à partir d’un motif", + "Contenu pris en compte" + ], + "Nouveau calque de remplissage", + "Modifier la calque de remplisage" + ], + "Calque par copie", + "Masque filtrant", + "Supprimer le style de calque", + "Déplacer filtre dynamique", + "Supprimer filtre dynamique", + [ + "Lier les calques", + "Délier les calques" + ], + "Arranger", + [ + "Premier plan", + "En avant", + "En arrière", + "Arrière plan" + ], + [ + "Le calque est verrouillé", + "Changement de vérouillage", + "Verrouiller" + ], + null + ], + [ + "Tout", + "Désélectionner", + "Inverser", + "Modifier", + "Étendre", + "Contracter", + "Plume", + "Déplacer la sélection", + "Intervalle de couleur", + "Contour", + "Transformer la sélection", + "Améliorer le contour", + "Reconstruire la sélection", + null + ], + [ + "Zoom avant", + "Zoom arrière", + "Repères", + "Règles", + "Grille", + "Capturer", + "Capturer vers", + "Limites du document", + "Grille de pixels", + "Tracés", + "Capturer vers pixels", + [ + "Tranches", + "Option de tranche" + ], + "Afficher" + ], + [ + "Historique", + "Calques", + "Propriétés", + "Pinceau", + "Caractères", + "Paragraphes", + "Informations", + "Compositions de calques", + "Nuancier", + "Actions", + "Histogramme", + "Navigation", + "Outils prédéfinis", + "Glyphes" + ], + [ + "Outil Pinceau", + "Outil Duplication", + "Outil Recadrage", + "Outil Gomme", + "Sélection en ellipse", + "Pipette", + "Outil Dégradé", + "Outil Main", + "Outil Texte", + "Sélection avec lasso", + "Sélection avec lasso magnétique", + "Outil Déplacement", + "Baguette magique", + "Outil Pot de peinture", + "Sélection avec lasso polygonal", + "Sélection en rectangle", + "Transformation libre", + "Outil Zoom", + "Outil de Flou", + "Outil de netteté", + "Outil doigt", + "Outil densité -", + "Outil densité +", + "Outil éponge", + "Outil correcteur de tons directs", + "Pinceau correcteur", + "Outil tampon", + "Sélectionner le tracé", + "Sélection directe", + "Crayon", + "Crayon libre", + "Forme personnalisée", + "Rectangle", + "Ellipse", + "Forme parametrique", + "Ligne", + "Règle", + "Sélection rapide", + "Crayon", + "Correction de perspective par recadrage", + "Tranche", + "Sélection de tranche", + "Remplacement de couleur", + "Œil rouge", + "Sélection de l'objet", + "Gomme d’arrière-plan", + "Déformation de la marionnette", + "Rotation de l’affichage", + "Echelle basée sur le contenu", + "Déplacement basé sur le contenu" + ], + [ + "Prendre une photo", + "Sélecteur de couleur", + "Éditeur de contour", + "Taille de la zone de travail", + "Dupliquer vers …", + "Editeur de dégradé", + "Style de calque", + "Nouveau projet", + "Enregistrer pour le Web", + "Déformation", + "Taille de l'image", + "Vectoriser Bitmap", + [ + "Rognage", + "Recadrage", + "Tout montrer" + ], + "Raccourcis clavier", + "Ajouter les repères", + [ + "Effacer les repères", + "Repères à partir de calque" + ] + ], + [ + "Opacité", + "Effets", + "Luminosité", + [ + "Contraste", + "Utiliser l’ancien algorithme" + ], + "Canal", + "Exposition", + "Décalage", + "Correction Gamma", + "Teinte", + "Saturation", + "Luminosité", + "Colorisation", + "Gamme", + "Eclat", + [ + "Taille", + "Interpolation", + "Au plus proche", + "Bilinéaire" + ], + "Angle", + "Rondeur", + "Dureté", + "Espacement", + [ + "Mode", + "Comparaison" + ], + "Taille de l'échantillon", + "Contour", + "Style", + [ + "Inverser", + "Relative", + "Position" + ], + "Tolérance", + "Contigu", + "Remplir", + "Utilisez angle global", + "Distance", + "Propager", + "Bruit", + "Ombre portée", + "Technique", + "Direction", + "Profondeur", + "Adoucir", + "Mode", + "Dégradé", + "Echelle", + "Aligner avec la calque", + "Position", + "Largeur", + "Hauteur", + "Destination", + "Type", + "Premier plan", + "Arrière plan", + "Personnalisé", + "Nom", + "Créer", + "Format", + "Garder les proportions", + [ + "Qualité", + "Pages" + ], + "Dupliquer", + "Déplacer", + "Filtres dynamiques", + "Angle", + "Taux", + "Répartition", + [ + "Uniforme", + "Gaussien" + ], + "Monochrome", + "Taille de la cellule", + "Motif", + "Flux", + "Dureté", + "Protéger les détails", + "Type de remplissage", + "Texture", + "Instabilité", + "Contour", + "Source", + "Cible", + "Canaux", + "Masque", + "Densité", + "Aligné", + [ + "Tracé", + "Forme", + "Pixels", + "Pouces", + "Centimètres", + "Millimètres", + "Pourcent" + ], + "Formes", + "Côtés", + "Préférences", + [ + "Longueur", + "Ratio", + "Tous", + "Type de grille", + "Isométrique", + "Écart de grille", + "Unités de la règle" + ], + "Réduire le bruit", + "Couleurs", + "Distances", + "Pas", + "Sélection automatique", + "Trouver", + "Définir nouveau", + [ + "Photo", + "Écran", + "Mobile", + "Annonces", + "Impression" + ], + [ + "Libre", + "Ratio fixe", + "Taille fixe" + ], + "Aide", + [ + "Forme dynamique", + "Modifier la forme dynamique", + "Même rayon" + ], + "Tolérance", + [ + "Polygone", + "Étoile", + "Spirale", + "Carré" + ], + [ + "Rayon de l’angle", + "Rayon intérieur" + ] + ], + [ + "Couleur", + [ + "Aucun", + "Rouge", + "Orange", + "Jaune", + "Vert", + "Bleu", + "Violet", + "Gris", + "Blanc", + "Transparent", + "Noir", + "Cyan", + "Magenta", + "Neutre" + ], + "Total", + "Absolu", + "Conserver la luminosité" + ], + [ + "Ombre portée", + "Ombre interne", + "Lueur externe", + "Lueur interne", + "Biseautage & estampage", + "Incrustation couleur", + "Incrustation en dégradé", + "Incrustation de motif", + "Satin", + "Contour", + "Options de fusion", + "Sélectionner les pixels" + ], + [ + "Forme de la pointe", + "Dynamique de forme", + "Diffusion", + "Dynamique de la couleur", + [ + "Variation de la taille", + "Diamètre minimal", + "Variation de l'angle", + "Variation de l'arrondi", + "Arrondi minimal" + ], + [ + "Variation de la position", + "Nombre", + "Variation numérique" + ], + [ + "Variation premier plan/arrière plan", + "Variation de teinte", + "Variation de la saturation", + "Variation de la luminosité" + ], + [ + "Sélectionner la source de duplication en maintenant la touche Alt (ou K) et en cliquant sur l'image", + "Marquer premier plan en blanc, arrière-plan en noir, et zone inconnue en gris.", + "Calque non modifiable", + "Calque texte doit être rastérisé en premier", + "Smart Object doit être rastérisé en premier", + "Sélectionner plusieurs calques", + "Redresser le calque", + "Ouvrir d'abord un document.", + "Fermez d'abord la fenêtre actuelle.", + "Outil sélectionné uniquement" + ], + [ + "Enregistrer", + "Nouveau ensemble d'actions", + "Nouvelle action" + ], + [ + "La pression du stylo contrôle l'opacité", + "La pression du stylo contrôle la taille" + ], + [ + "Normal", + "Fondu", + "Obscurcir", + "Produit", + "Densité couleur +", + "Densité linéaire +", + "Couleur plus foncée", + "Eclaircir", + "Superposition", + "Densité couleur -", + "Densité linéaire -", + "Couleur plus claire", + "Incrustation", + "Lumière tamisée", + "Lumière crue", + "Lumière vive", + "Lumière linéaire", + "Lumière ponctuelle", + "Mélange maximal", + "Différence", + "Exclusion", + "Soustraire", + "Division", + "Teinte", + "Saturation", + "Couleur", + "Luminosité", + "Transfert" + ] + ], + [ + "Interlignage", + "Crénage", + "Décalage vertical", + [ + "Convertir en texte de point", + "Convertir en texte de paragraphe" + ] + ], + [ + "Tous les calques", + "Calque actif", + "Sélection", + "Actif et inférieurs" + ], + [ + "Remplacer", + "Union", + "Différence", + "Intersection", + "OU Exclusif", + "Fusionner" + ], + [ + [ + "Linéaire", + "Radial", + "Angle", + "Reflété", + "Diamant", + "Éclater la forme" + ], + [ + "Tamisé", + "Précis" + ], + [ + "Biseau externe", + "Biseau interne", + "Estampage", + "Estampage Oreiller", + "Estampage de contour", + "Largeur du contour" + ], + [ + "Lisser", + "Burin dur", + "Burin mou", + "Lissage" + ], + [ + "Haut", + "Bas" + ], + [ + "Extérieur", + "Centre", + "Interieur", + "A partir du centre" + ], + [ + "Tons foncés", + "Tons moyens", + "Tons clairs" + ], + [ + "Désaturer", + "Saturer" + ], + [ + "Petit", + "Moyen", + "Grand" + ], + [ + "Extrémités", + "Angles", + "Tirets" + ] + ], + [ + "Choisir l'objet sous le pointeur", + "Contrôles de transformation", + "Pixel à pixel", + "Ajuster à la zone", + [ + "Aligner sur le côté gauche", + "Centrer horizontalement", + "Aligner sur le côté droit", + "Aligner en haut", + "Centrer verticalement", + "Aligner en bas", + "Écarts égaux" + ] + ], + [ + "Insérer dans", + "Projet Actuel", + "Nouveau projet", + "Resolution", + "Ajouté dans le projet actuel/courant.", + "Un nouveau projet a été créé.", + "L'accès à la caméra à été refusé." + ], + [ + "Orientation", + "Inflexion", + "Déformation horizontale", + "Déformation verticale", + [ + "Horizontal", + "Vertical", + "horizontalement", + "verticalement" + ], + [ + "Sans", + "Arc", + "Arc Inférieur", + "Arc Supérieur", + "Voûte", + "Bosse", + "Coque inférieure", + "Coque supérieure", + "Marqueur", + "Vague", + "Poisson", + "Elever", + "Fish Eye", + "Gonfler", + "Comprimer", + "Tordre", + "Personnalisé" + ], + [ + "Police", + "n'est pas disponible", + "Va être rendu avec", + "Il y a du travail non sauvegardé dans", + "Voulez-vous vraiment le fermer?" + ], + [ + "Echanger couleurs", + "Défaut : Blanc et Noir" + ] + ], + [ + "chargé", + "ajouté", + "Déplacement de repère", + "Suppression du repère", + "Ajout d'un repère", + "Chargement", + "Charger VAR0" + ], + [ + "Galerie de filtres", + [ + [ + "Liquéfier", + [ + "Étaler", + "Reconstruire", + "Lisser", + "Tourbillon", + "Diminuer", + "Augmenter", + "Décaler à gauche", + "Figer", + "Libérer" + ] + ], + [ + "Correction de l'objectif" + ] + ], + "Flou", + [ + "Moyenne", + "Flou", + "Plus flou", + "Flou par moyenne", + "Flou gaussien", + "Flou de l’objectif", + "Flou directionnel", + "Flou radial", + "Flou de forme", + "Flou optimisé", + "Flou de surface" + ], + "Déformation", + [ + "Dispersion", + "Contraction", + "Coordonnées polaires", + "Ondulation", + "Cisaillement", + "Sphérisation", + "Onde" + ], + "Bruit", + [ + "Ajout de bruit", + "Flou intérieur", + "Antipoussière", + "Median" + ], + "Pixellisation", + [ + "Demi-teintes couleur", + "Cristallisation", + "Facettes", + "Fragmentation", + "Mezzo-tinto", + "Mosaïque", + "Pointillisme" + ], + "Rendu", + [ + "Nuages", + "Nuages par différence", + "Halo" + ], + "Netteté", + [ + "Plus net", + "Contours plus nets", + "Encore plus net", + "Netteté optimisée", + "Accentuation" + ], + "Stylisation", + [ + "Diffusion", + "Estampage", + "Extrusion", + "Tracé des contours", + "Peinture à l'huile" + ], + "Filtres divers", + [ + "Personnalisé", + "Passe-haut", + "Maximum", + "Minimum", + "Décalage", + "Répéter" + ], + [ + "Zone indéfinie", + "Définir à transparent", + "Répéter les pixels des bords", + "Envelopper autour", + "Dernier filtre", + "Aperçu" + ] + ], + [ + "Modèles", + [ + "Filtre de police", + "Mots clés", + "Mélanger aléatoirement" + ], + [ + "Avec Symboles", + "Avec Photo" + ], + [ + "Vignettes", + "Liste" + ] + ] + ], + [ + [ + "Αρχείο", + "Επεξεργασία", + "Εικόνα", + "Επίπεδο", + "Φάκελος", + "Επιλογή", + "Φίλτρα", + "Προβολή", + "Παράθυρο", + "Γλώσσα", + "Σύνδεση", + "Αποσύνδεση", + "Δημιουργία μετάφρασης", + [ + "Λογαριασμός", + "Όροι Χρήσης", + "Πίσω", + "Σχετικά", + "Αναφορά σφάλματος", + "Εκπαίδευση" + ], + "Περισσότερα", + "Θέμα", + "Χρήση WebGL", + [ + "Photopea: προηγμένη επεξεργασία εικόνας", + "Δωρεάν online επεξεργαστή που υποστηρίζει PSD, XCF, Sketch, XD και CDR.", + "Δημιουργήστε μια νέα εικόνα ή ανοίξτε τα υπάρχοντα αρχεία από τον υπολογιστή σας. Αποθηκεύστε την εργασία σας ως PSD (Αρχείο - Αποθήκευση ως PSD) ή ως JPG / PNG / SVG (Αρχείο - Εξαγωγή ως).", + "Προτείνετε νέες λειτουργίες στο ή στο . Στόχος μας είναι να δημιουργήσουμε <το πιο εξελιγμένο και οικονομικό πρόγραμμα επεξεργασίας φωτογραφιών>.", + "Οι σύνδεσμοι του σπόνσορα ανοίγουν σε νέο παράθυρο.", + null, + "Εγκατάσταση εφαρμογής Photopea" + ] + ], + [ + "Άνοιγμα", + "Δημοσίευσε online", + "Αποθήκευση", + "Αποθήκευση ως PSD", + "Εκτύπωση", + "Άνοιγμα από URL", + "Άνοιγμα από υπολογιστή", + "Σύνδεση με Google Drive", + "Εξαγωγή ως", + "Εξαγωγή επίπεδων", + "Σενάριο", + "Άνοιγμα & Τοποθέτηση", + "Κλείσιμο", + "Τοπική αποθήκευση", + null + ], + [ + "Βήμα εμπρός", + "Βήμα πίσω", + "Απαλοιφή", + "Γεμίζω", + "Μετασχηματισμός", + "Περιστροφή", + "VAR0 αναστροφή", + "VAR0 κλίμακα", + "Αναίρεση / Επανάληψη", + "Προοπτική", + [ + "Αυτόματη ανάμειξη", + null + ], + "Ξεθώριασμα", + null + ], + "Ρυθμίσεις", + [ + "Φωτεινότητα/αντίθεση", + "Στάθμες", + "Καμπύλες", + "Έκθεση", + "ζωηράδα χρώματος", + "Απόχρωση/κορεσμός", + "Ισορροπία χρώματος", + "Ασπρόμαυρο", + "Φίλτρο φωτογραφίας", + "Μείκτης καναλιού", + "Χρωματικές συνθέσεις", + "Αντιστροφή", + "Πόστερ", + "Κατώφλι", + "Τονική διαβάθμιση", + "Επιλεγμένο χρώμα", + [ + "Αυτόματος τόνος", + "Αυτόματη αντίθεση", + "Αυτόματο χρώμα" + ], + "Αντικατάσταση χρώματος" + ], + [ + "Αποκοπή", + "Αντιγραφή", + "Επικόληση", + "Νέο", + "Διαγραφή", + "Ενεργοποίησε", + "Απενεργοποίησε", + "Αντιγραφή συγχωνευμένη", + "Εφαρμογή", + "Επανάληψη", + "Ενημέρωση" + ], + [ + "Διπλασιάσμός επίπεδο", + "Νέο επίπεδο ρύθμισης", + "Μάσκα ράστερ", + "Διανυσματική μάσκα", + "Προσθήκη (Δείξε όλα)", + [ + "Προσθήκη (Κρύψε όλα)", + "Αποκάλυψη επιλογής", + "Απόκρυψη επιλογής", + "Από τη διαφάνεια" + ], + [ + "Μάσκα αποκοπής", + "Quick Mask" + ], + "Μετατροπή σε Έξυπνο αντικείμενο", + "Ραστεροποιήσετε", + "Στρώματα επίπεδων", + "Συγχώνευση κάτω", + "Συγχώνευση πάνω", + [ + "Συγχώνευση επίπεδων", + "Ισοπέδωση εικόνας" + ], + "Νέο επίπεδο", + "Ενεργοποίηση μάσκας ράστερ", + "Απενεργοποίηση μάσκας ράστερ", + "Ενεργοποίηση διανυσματικής μάσκας", + "Απενεργοποίηση διανυσματικής μάσκας", + "Ενεργοποίηση μάσκα αποκοπής", + "Απενεργοποίηση μάσκα αποκοπής", + "Νέος φάκελος", + "Προσθήκη μάσκας ράστερ", + "Διαγραφή μάσκας ράστερ", + "Προσθήκη διανυσματικής μάσκας", + "Διαγραφή διανυσματικής μάσκας", + "Σύνδεση μάσκας ράστερ", + "Αποσύνδεση μάσκας ράστερ", + "Σύνδεση διανυσματικής μάσκας", + "Αποσύνδεση διανυσματικής μάσκας", + "Ενεργοποίηση των εφέ επιπέδου", + "Απενεργοποίηση των εφέ επιπέδου", + "Διαγραφή επίπεδο", + "Αδιαφάνεια επιπέδου αλλαγή", + "Ανάμιξης αλλαγή", + "Ραστεροποιήσετε στυλ επιπέδου", + "Διάταξη επιπέδων", + [ + "Δημιουργία Έξυπνου αντικειμένου", + "Ενημέρωση Έξυπνου αντικειμένου", + "Τοποθέτηση Έξυπνου αντικειμένου", + "Προέλευση (Έξυπνο αντικείμενο)", + null + ], + "Ονομα αλλαγή", + "Χρώμα αλλαγή", + "Επεξεργασία επιπέδου ρύθμισης", + "Μετατροπή σε σχήμα", + "Ενεργοποίηση μάσκας φίλτρου", + "Απενεργοποίηση μάσκας φίλτρου", + "Ενεργοποίηση έξυπνων φίλτρων", + "Απενεργοποίηση έξυπνων φίλτρων", + "Προσθήκη μάσκας φίλτρου", + "Διαγραφή μάσκας φίλτρου", + "Απαλοιφή έξυπνων φίλτρων", + [ + [ + "Γέμισμα σταθερού χρώματος", + "Γέμισμα ντεγκραντέ", + "Γέμισμα με μοτίβο", + "Με βάση το περιεχόμενο" + ], + "Νέο επίπεδο γεμίσματος", + "Τροποποίηση επίπεδο γεμίσματος" + ], + "Επίπεδο μέσω αντιγραφή", + "Μάσκα φίλτρου", + "Διαγραφή στυλ επιπέδου", + "Μετακίνηση έξυπνου φίλτρου", + "Διαγραφή έξυπνου φίλτρου", + [ + "Σύνδεση επίπεδων", + "Αποσύνδεση επίπεδων" + ], + "Διάταξη", + [ + "Μεταφορά σε πρώτο πλάνο", + "Μεταφορά ένα επίπεδο εμπρός", + "Μεταφορά ένα επίπεδο πίσω", + "Μεταφορά στο φόντο" + ], + [ + "Αυτό το επίπεδο είναι κλειδωμένο.", + "Κλείδωμα αλλαγή", + null + ], + null + ], + [ + "Όλα", + "Αποεπιλογή", + "Αντιστροφή", + "Τροποποίηση", + "Επέκταση", + "Συρρίκνωση", + "Άμβλυνση", + "Μετακίνηση επιλογής", + "Χρωματικό εύρος", + "Όριο", + "Μετατροπή επιλογής", + "Εξομάλυνση Άκρων", + "Διόρθωση επιλογής", + null + ], + [ + "Μεγένθυνε", + "Σμίκρυνση", + "Οδηγοί", + "Χάρακες", + "Πλέγμα", + "Προσκόλληση", + "Προσκόλληση σε", + "Όρια εγγράφου", + "Πλέγμα pixel", + "Διαδρομές", + "Προσκόλληση σε pixel", + [ + "Slices", + "Επιλογές slice" + ], + "Προβολή" + ], + [ + "Ιστορικό", + "Επίπεδα", + "Ιδιότητες", + "Βούρτσα", + "Χαρακτήρας", + "Παράγραφος", + "Πληροφορίες", + "Επίπεδα Comps", + "Δείγματα", + "Ενέργειες", + "Ιστόγραμμα", + "Περιήγηση", + "Προεπιλογές εργαλείων", + null + ], + [ + "Βούρτσα", + "Εργαλείο αντιγραφής", + "Περικοπή", + "Γόμα", + "Ελλειπτικό μαρκάρίσμα", + "Σταγονόμετρο", + "Ντεγκραντέ", + "Χέρι", + "Κείμενο", + "Λάσο", + "Μαγνητικό λάσο", + "Μετακίνηση", + "Μαγικό ραβδί", + "Κάδος γεμίσματος", + "Πολυγωνικό λάσο", + "Ορθογωνικό μαρκάρίσμα", + "Δωρεάν μετασχηματισμός", + "Ζουμ", + "Θόλωμα", + "Όξυνση", + "Μουτζούρωμα", + "Φωτισμός", + "Κάψιμο", + "Σπόγγος", + "Πινέλο διόρθωσης σημείου", + "Πινέλο διόρθωσης", + "Μπάλωμα", + "Επιλογή διαδρομής", + "Απευθείας διαδρομή", + "Πένα", + "Πένα ελεύθερης σχεδίασης", + "Προσαρμοσμένο σχήμα", + "Ορθογώνιο", + "Ελλειψη", + "Παραμετρικό σχήμα", + "Γραμμή", + "Χάρακας", + "Γρήγορη επιλογή", + "Μολύβι", + "Προοπτική περικοπή", + "Slice", + "Επιλογή slice", + "Αντικατάσταση χρώματος", + "Εργαλείο για κόκκινα μάτια", + "Επιλογή αντικειμένου", + "Γόμα παρασκηνίου", + null, + null, + null, + null + ], + [ + "Πάρε μια φωτογραφία", + "Επιλογέας χρώματος", + "Επεξεργαστής περιγράμματος", + "Μέγεθος καμβά", + "Διπλότυπο σε...", + "Επεξεργαστή ντεγκραντέ", + "Στυλ επιπέδου", + "Νέο έργο", + "Αποθήκευση για ιστό", + "Στρέβλωση", + "Μέγεθος εικόνας", + "Μετατροπή σε διάνυσμα", + [ + "Ψαλίδιση", + "Περικοπή", + null + ], + "Συντομεύσεις πληκτρολογίου", + "Προσθήκη οδηγών", + [ + "Απαλοιφή οδηγών", + "Οδηγοί από Διαφάνειες" + ] + ], + [ + "Αδιαφάνεια", + "Εφέ", + "Φωτεινότητα", + [ + "Αντίθεση", + "Χρήση κληρονομιά" + ], + "Κανάλι", + "θέση", + "Αντιστάθμιση", + "Διόρθωση Γάμμα", + "Απόχρωση", + "Κορεσμός", + "Ελαφρότητα", + "Τίντα", + "Εύρος", + "ζώνη", + [ + "Μέγεθος", + "Παρεμβολή", + "Πλησιέστερη γειτονική", + "Διγραμμική" + ], + "Γωνία", + "Στρογγυλότητα", + "Σκληρότητα", + "Απόσταση", + [ + "Τρόπος ανάμειξης", + "Συνδυάστε αν" + ], + "Μέγεθος δείγματος", + "Τύπος περιγράμματος", + "Στυλ", + [ + "Αναστροφή", + "Σχετική", + "Σημείο αναφοράς" + ], + "Ανοχή", + "Συνεχόμενο", + "Γέμισμα", + "Χρήση καθολικής γωνίας", + "Απόσταση", + "Άπλωμα", + "Θόρυβος", + "Απωθεί την προσπίπτουσα σκιά", + "Τεχνική", + "Κατεύθυνση", + "Βάθος", + "Απάλυνση", + "Κατάσταση", + "Ντεγκραντέ", + "Κλίμακα", + "Στοίχιση με επιπέδο", + "θέση", + "Πλάτος", + "Ύψος", + "Προορισμός", + "Τύπος", + "Προσκήνιο", + "Παρασκηνίου", + "Προσαρμοσμένο", + "Ονομα", + "Δημιουργία", + "Μορφή", + "Σταθερή αναλογία", + [ + "Ποιότητα", + "Σελίδες" + ], + "Διπλασιάσμός", + "Μετακίνηση", + "Έξυπνα φίλτρα", + "Ακτίνα", + "Ποσότητα", + "Διανομή", + [ + "Ομοιόμορφη", + "Γκαουσιανό" + ], + "Μονοχρωματικό", + "Μέγεθος κελιού", + "Μοτίβου", + "Ροή", + "Δύναμη", + "Προστασία λεπτομέρειας", + "Τύπος γέμισης", + "Υφή", + "Τρέμουλο", + "Γωνία", + "Προέλευση", + "Στόχος", + "Κανάλια", + "Μάσκα", + "Πυκνότητα", + "Ευθυγραμμισμένος", + [ + "Διαδρομή", + "Σχήμα", + "Pixel", + "Ίντσες", + "Εκατοστά", + "Χιλιοστά", + "Ποσοστό" + ], + "Σχήματα", + "Πλευρές", + "Προτιμήσεις", + [ + "Μήκος", + "Αναλογία", + "Οποιοδήποτε", + "Τύπος πλέγματος", + "Ισομετρική", + "Απόσταση πλέγματος", + "Μονάδες χάρακα" + ], + "Μείωση θορύβου", + "Χρώματα", + "Αποστάσεις", + "Ρυθμός", + "Αυτόματη επιλογή", + "Αναζήτηση", + "Καθορίζω", + [ + "Φωτογραφία", + "Οθόνη", + "Κινητό", + "Διαφημίσεις", + "Εκτύπωση" + ], + [ + "Κανονικό", + "Σταθερή αναλογία", + "Σταθερό μέγεθος" + ], + "Βοήθεια", + [ + "Ζωντανή Σχήμα", + "Επεξεργασία Ζωντανού Σχήματος", + "Ίδια ακτίνα" + ], + "Ασάφεια", + [ + "Πολύγωνο", + "Αστέρι", + "Σπειροειδής", + "Τετράγωνο" + ], + [ + "Ακτίνα γωνίας", + "Εσωτερική ακτίνα" + ] + ], + [ + "Χρώμα", + [ + "Καμία", + "Κόκκινο", + "Πορτοκαλί", + "Κίτρινο", + "Πράσινο", + "Μπλε", + "Μωβ", + "Γκρι", + "Λευκό", + "Διάφανο", + "Μαύρο", + "Κυανό", + "Ματζέντα", + "Ουδέτερος" + ], + "Σύνολο", + "Απόλυτος", + "Διατήρηση φωτεινότητας" + ], + [ + "Πίπτουσα σκιά", + "Εσωτερική σκίαση", + "Εξωτερική λάμψη", + "Εσωτερική λάμψη", + "Λοξοτομή και ανάγλυφο", + "Επικάλυψη χρώματος", + "Επικάλυψη ντεγκραντέ", + "Επικάλυψη μοτίβου", + "Σατέν", + "Περίγραμμα", + "Επιλογές ανάμειξης", + "Επιλέξτε pixels" + ], + [ + "Σχήμα άκρου", + "Δυναμικό άκρου", + "Διασπορά", + "Δυναμικό χρώμα", + [ + "Μέγεθος τρέμουλο", + "Ελάχιστη διάμετρος", + "Γωνία τρέμουλο", + "Στρογγυλότητα τρέμουλο", + "Ελάχιστη στρογγυλότητα" + ], + [ + "θέση τρέμουλο", + "Μέτρημα", + "Μέτρημα τρέμουλο" + ], + [ + "Προσκήνιο/παρασκηνίου τρέμουλο", + "Απόχρωση τρέμουλο", + "Κορεσμός τρέμουλο", + "Φωτεινότητα τρέμουλο" + ], + [ + "Επιλέξτε την πηγή κλώνου κρατώντας Alt (ή K) και κάνοντας κλικ στην εικόνα.", + "Επισημάνετε το προσκήνιο με λευκό, το παρασκηνίο με μαύρο και την άγνωστη περιοχή με γκρι.", + "Το επίπεδο δεν επιδέχεται επεξεργασία", + "Το επίπεδο κειμένου πρέπει πρώτα να είναι ραστεροποιημένο", + "Έξυπνο αντικείμενο πρέπει πρώτα να είναι ραστεροποιημένο.", + "Επιλέξτε πολλαπλά επιπέδα", + "Αποστρέβλωση επίπεδο", + "Ανοίξτε πρώτα ένα έγγραφο.", + "Κλείστε πρώτα το παρόν παράθυρο.", + "Μόνο παρόν εργαλείο" + ], + [ + "Καταγραφή", + "Νέο σύνολο ενεργειών", + "Νέα ενέργεια" + ], + [ + "Η πίεση πένας ελέγχει την αδιαφάνεια", + "Η πίεση πένας ελέγχει το μέγεθος" + ], + [ + "Κανονικό", + "Διάχυση", + "Σκοτείνιασμα", + "Πολλαπλασιασμός", + "Κάψιμο χρώματος", + "Γραμμικό κάψιμο", + "Σκουρότερο χρώμα", + "Φωτισμός", + "Οθόνη", + "Φωτισμός χρώματος", + "Γραμμικός φωτισμός", + "Ανοιχτότερο χρώμα", + "Υπέρθεση", + "Απαλό φως", + "Σκληρό φως", + "Έντονο φως", + "Γραμμικός φωτισμός", + "Σημειακό φως", + "Σκληρή μείξη", + "Διαφορά", + "Αποκλεισμός", + "Αφαίρεση", + "Διαίρεση", + "Απόχρωση", + "Κορεσμός", + "Χρώμα", + "Φωτεινότητα", + "Διέλευση" + ] + ], + [ + "Διάκενο γραμμής", + "Διάκενο γραμμάτων", + "Γραμμή βάσης", + [ + "Μετατροπή σε σημειακό κείμενο", + "Μετατροπή σε κείμενο παραγράφου" + ] + ], + [ + "Όλα τα επίπεδα", + "Παρόν επίπεδο", + "Επιλογή", + "Παρόν και προηγούμενο" + ], + [ + "Αντικατάσταση", + "Πρόσθεση", + "Αφαίρεση", + "Τομή συνόλων", + "XOR", + "Συγχώνευση" + ], + [ + [ + "Γραμμικός", + "Ακτινικό", + "Γωνία", + "Αντικατοπτρισμένο", + "Διαμάντι", + "Σχήμα βούρτσας" + ], + [ + "Απαλή", + "Ακριβείς" + ], + [ + "Εξωτερική λοξοτομή", + "Εσωτερική λοξοτομή", + "Ανάγλυφο", + "Σφράγισμα", + "Ανάγλυφο περίγραμμα", + "Πλάτος γραμμής" + ], + [ + "Ομαλοποίηση", + "Σκληρό chisel", + "Μαλακό chisel", + "Ομαλότητα" + ], + [ + "Πάνω", + "Κάτω" + ], + [ + "Εκτός", + "Κέντρο", + "Εντός", + "Από το κέντρο" + ], + [ + "Σκιές", + "Μεσαίοι τόνοι", + "Τονισμοί" + ], + [ + "Αποκορεσμός", + "Αύξηση κορεσμού" + ], + [ + "Μικρό", + "Μεσαίο", + "Μεγάλο" + ], + [ + "Άκρα", + "Γωνίες", + "Παύλες" + ] + ], + [ + "Επιλογή του αντικειμένου κάτω από το δρομέα", + "Έλεγχοι μετασχηματισμού", + "1:1", + "Προσαρμογή στο παράθυρο", + [ + "Στοίχιση αριστερά άκρα", + "Οριζόντια κέντρα", + "Στοίχιση δεξιά άκρα", + "Στοίχιση επάνω άκρα", + "Κατακόρυφα κέντρα", + "Στοίχιση κάτω άκρα", + "Ίση απόσταση" + ] + ], + [ + "Τοποθέτηση σε", + "Παρόν έργο", + "Νέο έργο", + "Ανάλυση", + "Προστέθηκε στο παρόν έργο.", + "Δημιουργήθηκε ένα νέο έργο.", + "Η πρόσβαση στην κάμερα απορρίφθηκε." + ], + [ + "Προσανατολισμός", + "Κάμψη", + "Οριζόντια παραμόρφωση", + "Κατακόρυφη παραμόρφωση", + [ + "Οριζόντια", + "Κάθετη", + "Οριζόντια", + "Κάθετη" + ], + [ + "Κανένα", + "Arc", + "Arc Lower", + "Arc Upper", + "Arch", + "Bulge", + "Shell Lower", + "Shell Upper", + "Flag", + "Wave", + "Fish", + "Rise", + "Fish Eye", + "Inflate", + "Squeeze", + "Twist", + "Προσαρμοσμένο" + ], + [ + "Γραμματοσειρά", + "δεν είναι διαθέσιμη", + "Θα παρασχεθεί με χρήση του", + "Υπάρχει μη αποθηκευμένη εργασία στο", + "Θέλετε πραγματικά να το κλείσετε;" + ], + [ + "Ανταλλάξουν χρωμάτων", + "Προεπιλογή: Λευκό και μαύρο" + ] + ], + [ + "φορτωμένο", + "προστέθηκε", + "Μετακίνηση οδηγός", + "Διαγραφή οδηγός", + "Προσθήκη οδηγός", + "Φόρτωση", + "Φόρτωση VAR0" + ], + [ + "Συλλογή φίλτρων", + [ + [ + "Ρευστοποίηση", + [ + "Μουτζούρα", + "Ανοικοδομώ", + "Ομαλοποίηση", + "Συστροφή", + "Συρρίκνωση", + "Φουσκώνουν", + "Ώθηση αριστερά", + "Πάγωμα", + "Ξεπάγωμα" + ] + ], + [ + "Διόρθωση φακού" + ] + ], + "Θολούρα", + [ + "Μέσος", + "Θολούρα", + "Περισσότερο θόλωμα", + "Θόλωμα πλαισίου", + "Γκαουσιανό θόλωμα", + "Θόλωση φακού", + "Θόλωμα κίνησης", + "Ακτινικό θόλωμα", + "Θόλωμα σχήματος", + "Έξυπνο θόλωμα", + "Θόλωμα επιφάνειας" + ], + "Παραμόρφωση", + [ + "Μετατόπιση", + "Καμπή", + "Πολικές συντεταγμένες", + "Κυματισμός", + "Στρέβλωση", + "Σφαιροποίηση", + "Κύμα" + ], + "Θόρυβος", + [ + "Προσθήκη θορύβου", + "Αποκηλίδωση", + "Σκόνη & αμυχές", + "Διάμεσος" + ], + "Κουκκιδοποίηση", + [ + "Μεσαίοι χρωματικοί τόνοι", + "Κρυσταλλοποίηση", + "Όψη", + "Τμήμα", + "Τρόπος χαλκογραφίας", + "Μωσαϊκό", + "Σημειοποίηση" + ], + "Απόδοση", + [ + "Σύννεφα", + "Σύννεφα διαφοράς", + "Αναλαμπή φακού" + ], + "Όξυνση", + [ + "Όξυνση", + "Όξυνση άκρων", + "Περισσότερη όξυνση", + "Έξυπνη όξυνση", + "Μάσκα όξυνσης" + ], + "Στυλιζάρισμα", + [ + "Διάχυση", + "Aνάγλυφο", + "Εξώθηση", + "Εύρεση άκρων", + null + ], + "Άλλο", + [ + "Προσαρμοσμένη", + "Υψιπερατό", + "Μέγιστο", + "Ελάχιστο", + "Αντιστάθμιση", + "Επανάληψη" + ], + [ + "Απροσδιόριστη περιοχή", + "Ορισμός σε διαφανή", + "Επανάληψη pixel άκρων", + "Αναδίπλωση γύρω", + "Τελευταίο φίλτρο", + "Προεπισκόπηση" + ] + ], + [ + "Πρότυπα", + [ + "Φίλτρο γραμματοσειράς", + "Λέξεις-κλειδιά", + "Τυχαία" + ], + [ + "Με σύμβολα", + "Με φωτογραφία" + ], + [ + "Μικρογραφίες", + "Λίστα" + ] + ] + ], + [ + [ + "ملف", + "تحرير", + "صورة", + "طبقة", + "مجلد", + "تحديد", + "مرشح", + "عرض", + "نافذة", + "اللغة", + "تسجيل الدخول", + "تسجيل الخروج", + "إنشاء ترجمة", + [ + "الحساب", + "سياسة الخصوصية", + "الخلف", + "نبذة", + "تبليغ عن خطأ برمجي", + "تعلم" + ], + "المزيد", + "شكل", + "استخدام WebGL", + [ + "Photopea: محرر صور متقدم", + "محرر أونلاين مجاني يدعم PSD, XCF, Sketch, XD و CDR", + "إنشاء صورة جديدة أو فتح ملف متواجد على الحاسوب. حفظ العمل كـ (PSDملف - حفظ كـ) PSD أو كـ (ملف - تصدير كـ) JPG / PNG / SVG", + "إقترح خاصيات جديدة على or . هدفنا هو <تطوير محرر صور أكثر تقدما و في المتناول>", + "الروابط الإعلانية تنفتح في نافذة جديدة", + "هاته الخاصية غير متوفرة", + "تثبيت برنامج فوتوبيا" + ] + ], + [ + "فتح", + "نشر على الويب", + "حفظ", + "حفظ كملف PSD", + "طباعة", + "فتح من رابط URL", + "فتح ملف من الحاسب", + "جلب ملفات من جوجل درايف", + "تصدير كـ", + "تصدير الطبقة", + "الاسکریپت", + "فتح والصاق", + "إغلاق", + "التخزين المحلي", + "معلومات الملف" + ], + [ + "للأمام", + "للخلف", + "مسح", + "ملء", + "تدوير / تحويل", + "تدوير", + "إقلب VAR0", + "مقياس VAR0", + "رجوع", + "منظور", + [ + "دمج تلقائي", + "توسيط آلي" + ], + "تلاشي", + "تطبيق الصورة" + ], + "تعديلات", + [ + "الإضاءة", + "مستويات", + "مُنحنيات", + "تعريض", + "حيويتها", + "صبغة اللون/تشبع", + "توازن الالوان", + "ابيض واسود", + "فلتر صور", + "خلاط القنوات", + "بحث عن لون", + "عكس", + "تتال", + "عتبة", + "خريطة التدرج", + "لون انتقائي", + [ + "نغمة تلقائية", + "تبيان تلقائى", + "تلوين تلقائي" + ], + "استبدال اللون" + ], + [ + "قطع", + "نسخ", + "لصق", + "جديد", + "حذف", + "تفعيل", + "تعطيل", + "نسخ مدمج", + "تطبيق", + "مرة أخرى", + "تحديث" + ], + [ + "نسخ الطبقة", + "طبقة تعديل جديدة", + "قناع النقطية", + "قناع الفيكتور", + "اضافة(اظهار الجميع)", + [ + "اضافة (اخفاء الجميع)", + "كشف التحديد", + "اخفاء التحديد", + "من الشفافية" + ], + [ + "قناع التشذيب", + "العربية" + ], + "حول إلى عنصر ذكي", + "دمج", + "تجميع الطبقات", + "دمج للاسفل", + "دمج للاعلى", + [ + "دمج الطبقات", + "تسطيح الصورة" + ], + "طبقة جديدة", + "تمكين قناع النقطية", + "تعطيل قناع النقطية", + "تمكين قناع المتجهات", + "تعطيل قناع المتجهات", + "تمكين قناع القصاصة", + "تعطيل قناع القصاصة", + "مجلد جديد", + "إضافة قناع تنقيطي", + "(Swimming)", + "إضافة قناع فيكتور", + "حذف قناع فيكتور", + "ربط القناع النقطي", + "عدم ربط القناع النقطي", + "ربط قناع فيكتور", + "عدم ربط قناع فيكتور", + "تفعيل تأثيرات الطبقة", + "تعطيل تأثيرات الطبقة", + "حذف الطبقة", + "تغيير شفافية الطبقة", + "تغيير المزج", + "تنقيط نمط الطبقة", + "ترتيب الطبقة", + [ + "انشاء عنصر ذكي", + "تحديث عنصر ذكي", + "وضع هدف ذكي", + "مصدر )عنصر ذكي(", + "وضع التجميع" + ], + "تغيير الاسم", + "تغيير اللون", + "تعديل تنظيم الطبقة", + "تحويل إلى شكل", + "تفعيل قناع الفلتر", + "الغاء قناع الفلتر", + "تفعيل الفلتر الذكي", + "الغاء تفعيل الفلاتر الذكية", + "اضافة قناع للفلتر", + "مسح فلتر القناع", + "فلاتر نقية وذكية", + [ + [ + "تلوين مصمت", + "تلوين متدرج", + "الملء النمطي", + "إدراك بالمحتوى" + ], + "ملئ لون جديد", + "تعديل طبقة التلوين" + ], + "طبقة عبر النسخ", + "وجه الفلترة", + "حذف استايل الطبقة", + "تحريك الفلتر الذكي", + "حذف الفلتر", + [ + "ربط الطبقات", + "فك ارتباط الطبقات" + ], + "ترتيب الطبقات", + [ + "جلب للمقدمة", + "إرسال للخلف", + "إرسال للوراء", + "إرسال للخلف" + ], + [ + "الطبقة مقفلة", + "إغلاق التعديلات", + "قفل" + ], + "تحريك" + ], + [ + "الكل", + "إلغاء", + "قلب", + "تعديل", + "توسيع", + "انكماش", + "ترييش", + "تحريك المحدد", + "مدى اللون", + "حد", + "خيار التحول", + "تحسين الحواف", + "معالجة التحديد", + "المقص السحري" + ], + [ + "تقريب", + "تكبير", + "الخطوط الإرشادية", + "مساطر", + "شبكة", + "لقطة", + "التقط إلى", + "حدود المستند", + "شبكة بيكسل (عند التكبير)", + "مسارات", + "الإلتصاق بالبكسل", + [ + "شرائح", + "العربية" + ], + "إظهار" + ], + [ + "السجل", + "الطبقات", + "خصائص", + "فرشة", + "حرف", + "فقرة", + "معلومات", + "تراكيب الطبقات", + "معرض الألوان", + "العربيه", + "الرسم البياني", + "متصفح", + "مُسْبَقات الأداة", + "حروف" + ], + [ + "أداة الفرشة", + "اداة النسخ", + "أداة القطع", + "اداة الممحاة", + "اختر الإهليلج", + "قطارة", + "أداة التدريج", + "أداة اليد", + "اداة الكتابة", + "اختيار بالوهق", + "اختيار بالوهق الجاذب", + "اداة التحريك", + "عصا سحرية", + "أداة دلو الدهن", + "اختيار بالوهق الكثير الضلع", + "اختيار مستطيل", + "تحول حر", + "أداة التكبير", + "اداة الضبابية", + "اداة الحدة", + "اداة الطمس", + "اداة التفادي", + "اداة الحرق", + "اداة الاسفنجه", + "فرشاة معالجة البقع", + "فرشاة المعالجة", + "أداة التصحيح", + "اختيار المسار", + "اختيار تلقائي", + "قلم", + "قلم حر", + "هاي", + "مستطيل", + "بيضاوي", + "شكل حدودي", + "خط", + "مسطرة", + "تحديد سريع", + "اداة القلم", + "قص منظوري", + "أداة القطع:التشريح", + "أداة انتقاء الشرائح", + "استبدال اللون", + "أداة العين الحمراء", + "اختار العينة", + "ممحاة الخلفية", + "تعديل الوضعية", + "تدويرالمنظور", + "موازنة المحتوى", + "أداة تحريك المحتوى" + ], + [ + "لون", + "لاقط اللون", + "محرر الحدود", + "حجم الاطار", + "التكرار داخل...", + "محرر التدرج اللوني", + "نمط الطبقه", + "مشروع جديد", + "حفظ للويب", + "إلتواء", + "حجم الصورة", + "تحويل الى صورة متجهة", + [ + "قص", + "قص", + "عرض الكل" + ], + "اختصارات لوحة المفاتيح", + "إضافة خطوط إرشاد", + [ + "إزالة أداة التوجيه", + "أداة توجيه من الطبقة" + ] + ], + [ + "الشفافية", + "تأثيرات", + "السطوع", + [ + "التباين", + "إستخدام النظم القديمة" + ], + "قناة", + "التعريض", + "الازاحة", + "تعديل جاما", + "صبغة اللون", + "تشبع", + "الاضاءة", + "تلوين", + "مدى", + "حيوية", + [ + "الحجم", + "إسقاط", + "أقرب جوار", + "شبه خطيه" + ], + "زاوية", + "استدارة", + "الحدة", + "مباعدة", + [ + "وضع الدمج", + "دمج إذا" + ], + "حجم العينة", + "هله", + "تصميم", + [ + "عكسي", + "نسبي", + "إرساء" + ], + "التباين", + "التلامس", + "ملء", + "استخدام زاوية شامله", + "منانت", + "انتشار", + "ضجيج", + "عدم عرض التظليل", + "تقنية", + "اتجاه", + "عمق", + "تنعيم", + "الوضع", + "ميل", + "مقياس", + "محاذاة مع طبقة", + "مركز", + "العرض", + "الطول", + "المكان المقصود", + "النوع", + "المقدمة", + "خلفية", + "محدد", + "اسم", + "إنشاء", + "التنسيق", + "إبقاء نسبة القياس", + [ + "الجودة", + "صفحات" + ], + "تكرار", + "نقل", + "الفلاتر الذكية", + "نصف القطر", + "كمية", + "التوزيع", + [ + "منتظم", + "تمويه" + ], + "أحادي اللون", + "حجم الخلية", + "نمط", + "تدفق", + "سَمِيك", + "حماية التفاصيل", + "نوع الملء", + "النقش", + "تقطع", + "حافة", + "المصدر", + "هدف", + "قنوات", + "قناع", + "كثافة", + "الانحياز", + [ + "مسار", + "شكل", + "بكسل", + "بوصات", + "سنتيمترات", + "ملليمترات", + "بالمئة" + ], + "الأشكال", + "الجوانب", + "التفضيلات", + [ + "الطول", + "النسبة", + "أيّ", + "نوع الشبكة", + "متساوي القياس", + "فراغ الشبكة", + "وحدات المسطرة" + ], + "تقليل التشويش", + "ألوان", + "المسافات", + "معدل التعديل", + "تحديد تلقائي", + "بحث", + "تعريف جديد", + [ + "صورة", + "شاشة", + "هاتف ذكي", + "اعلانات", + "اطبع" + ], + [ + "مجاني", + "نسبة ثابتة", + "حجم ثابت" + ], + "مساعدة", + [ + "شكل حي", + "تحرير شكل حي", + "نفس الشعاع" + ], + "ضبابي", + [ + "متعدد الأضلاع", + "نجم", + "حلزوني", + "مربع" + ], + [ + "شعاع الزاوية", + "الشعاع الداخلي" + ] + ], + [ + "لون", + [ + "لا شيء", + "أحمر", + "برتقالي", + "أصفر", + "اخضر", + "ازرق", + "أرجواني", + "الرمادي", + "أبيض", + "شفاف", + "أسود", + "السيان", + "ماجنتا", + "محايدة" + ], + "مجموع", + "مطلق", + "الحفاظ على اللمعان" + ], + [ + "الظل الساقط", + "التظليل الداخلي", + "التوهج الخارجي", + "التوهج الداخلي", + "تشطيب وزخرفة", + "تراكيب الالوان", + "تأثير تدريج لوني", + "نمط تراكب", + "صقيل", + "جرة قلم", + "خيارات المزج", + "تحديد النقاط" + ], + [ + "شكل التلميح", + "ديناميكية التلميحات", + "بعثرة", + "ديناميكية اللون", + [ + "حجم الغضب", + "الحد الأدنى من القطر", + "زاوية القطع", + "القطع الدائري", + "الحد الأدنى من الاستدارة" + ], + [ + "وضع القطع", + "عَدّ", + "عد القطع" + ], + [ + "مقدمة\\خلفية القطع", + "درجة ألوان القطع", + "تشبع القطع", + "سطوع القطع" + ], + [ + "حدد مصدر النسخ عن طريق الضغط على Alt (أو K) والنقر فوق الصورة", + "تحديد الواجهة بالأبيض, الخلفية بالأسود, و المساحة المجهولة بالرمادي", + "الطبقة لايمكن تعديلها", + "يجب أولا أن تحول طبقة الكتابة الى صورة نقطية", + "يجب تحويل الغرض الذكي لبكسل أولاً", + "حدد طبقات متعددة", + "استقامة طبقة", + ".افتح مستند أولاً", + "أغلق النافذة الحالية أولا", + "الأداة الحالية فقط" + ], + [ + "تسجيل", + "مجموعة عمل جديدة", + "عمل جديد" + ], + [ + "ضغط القلم يتحكم في العتامة", + "ضغط القلم يتحكم في الحجم" + ], + [ + "عادي", + "Dissolve", + "Darken", + "Multiply", + "Color Burn", + "Linear Burn", + "Darker Color", + "Lighten", + "Screen", + "Color Dodge", + "Linear Dodge", + "Lighter Color", + "Overlay", + "Soft Light", + "Hard Light", + "Vivid Light", + "Linear Light", + "Pin Light", + "Hard Mix", + "Difference", + "Exclusion", + "Subtract", + "Divide", + "Hue", + "Saturation", + "اللون", + "Luminosity", + "المرور من خلال" + ] + ], + [ + "تقديم", + "تتبع", + "التحول الأساسي", + [ + "تحويل إلى نقطة النص", + "تحويل إلى نقطة الفقرة" + ] + ], + [ + "إجمالي المحتوى", + "الطبقة الحالية", + "التحديد", + "الحالي والأسفل" + ], + [ + "إستبدال", + "جمع", + "خصم", + "تقاطع", + "استبعاد", + "دمج" + ], + [ + [ + "خطي", + "شعاعي", + "زاوية", + "منعكس", + "ماسي", + "شكل انفجار" + ], + [ + "انعم", + "تدقيق" + ], + [ + "الحافة الخارجية", + "الحافة الداخلية", + "منقوش", + "وسادة منقوشة", + "ضرب الوسادة", + "ضربة عرض" + ], + [ + "ناعم", + "إزميل معقد", + "إزميل سهل", + "النعومة" + ], + [ + "أعلى", + "أسفل" + ], + [ + "خارج", + "وسط", + "داخل", + "من الوسط" + ], + [ + "الظلال", + "الدرجات اللونية المتوسطة", + "تسليط الضوء" + ], + [ + "تشبع", + "نقع" + ], + [ + "صغير", + "وسط", + "كبير" + ], + [ + "غطاء الشىء", + "الزوايا", + "شرطات" + ] + ], + [ + "اختر الشكل تحت المؤشر", + "ضوابط التحول", + "بكسل إلي بكسل", + "تناسب المنطقة", + [ + "محاذاة الحواف اليسرى", + "منتصف أفقي", + "hd", + "محاذاة أعلى الحواف", + "ر", + "محاذاة الحواف السفلية", + "فراغات متساوية" + ] + ], + [ + "ادخل في", + "المشروع الحالي", + "مشروع جديد", + "دقة", + "يضاف إلى المشروع الحالي", + "تم إنشاء مشروع جديد", + "تم منع الدخول للكاميرا" + ], + [ + "الاتجاه", + "انحناء", + "تشويه أفقي", + "تشويه عمودي", + [ + "أفقي", + "عمودي", + "أفقياً", + "عموديا" + ], + [ + "لا شيء", + "قوس", + "قوس السفلى", + "قوس الاعلى", + "قوس", + "انتفاخ", + "صدف أسفلي", + "صدف علوي", + "علم", + "موج", + "تصيد", + "ترتفع", + "عين السمكة", + "تضخيم", + "كبس", + "لف", + "مخصوص" + ], + [ + "خط", + "غير متوفر", + "سيتم تقديم باستخدام", + "هناك عمل غير محفوظ في", + "هل تريد حقًا إغلاقه؟" + ], + [ + "مبادلة الالوان", + "الإفتراضى: ابيض واسود" + ] + ], + [ + "تم التحميل", + "اضافة", + "دليل التحريك", + "دليل المسح", + "دليل الإضافة", + "جاري التحميل", + "VAR0تحميل الــ" + ], + [ + "معرض الفلاتر", + [ + [ + "تذويب", + [ + "فرك", + "إعادة البناء", + "تنعيم", + "لف", + "تقليص", + "تكبير", + "إدفع لليسار", + "تجميد", + "إزالة التجميد" + ] + ], + [ + "تصحيح العدسة" + ] + ], + "التشويش", + [ + "متوسط", + "ضباب", + "أكثر ضباباً", + "صندوق الضباب", + "التمويه الضبابي", + "ضبابية العدسة", + "ضبابية الحركة", + "ضبابية التدوير", + "ضبابية الشكل", + "الضباب الذكي", + "تنعيم الأسطح" + ], + "تشويه", + [ + "إزاحة", + "قَرْص", + "الإحداثيات القطبية", + "تموجات", + "مستعرض", + "تكوير", + "موجة" + ], + "ضجيج", + [ + "إضافة ضجيج", + "إزالة البقع", + "غبار و خدوش", + "التوسيط" + ], + "التهيئة النقطية", + [ + "الألوان النصفية", + "تبلور", + "تصغير الأسطح", + "تجزئة", + "نقش تظليلي", + "فسيفساء", + "تنقيط" + ], + "تحويل", + [ + "غيوم", + "غيوم الإختلاف", + "لمعة العدسة" + ], + "حدة", + [ + "حدة", + "حدة الحواف", + "أكثر حدة", + "الحدة الذكية", + "قناة التوضيح" + ], + "تحديد الاسلوب", + [ + "تفكيك", + "بروز", + "إطلاق", + "اوجد الحواف", + "تلوين زيتى" + ], + "غير ذلك", + [ + "مخصوص", + "مرشح ترددات عالية", + "اقصى قيمة", + "ادنى قيمة", + "إزاحة", + "تكرار" + ], + [ + "منطقة غير معرفة", + "اجعله شفاف", + "كرر نقاط الحافة", + "الإلتفاف حول", + "آخِر مرشح", + "عرض" + ] + ], + [ + "قوالب جاهزة", + [ + "مرشح الخط", + "الكلمات الرئيسية", + "عشوائية" + ], + [ + "مع الرموز", + "مع الصورة" + ], + [ + "صورة مصغّرة", + "قائمة" + ] + ] + ], + [ + [ + "Arquivo", + "Editar", + "Imagem", + "Camada", + "Pasta", + "Selecionar", + "Filtro", + "Visualizar", + "Janela", + "Idioma", + "Entrar", + "Sair", + "Criar tradução", + [ + "Conta", + "Termos de Uso", + "Voltar", + "Sobre", + "Reportar um erro", + "Aprender" + ], + "Mais", + "Tema", + "Usar WebGL", + [ + "Photopea: Editor de imagem avançado", + "Editor online gratuito que suporta os formatos PSD, XCF, Sketch, XD e CDR.", + "Crie uma nova imagem ou abra arquivos existentes no seu computador. Salve o seu trabalho como PSD (Arquivo - Gravar como PSD) ou como JPG / PNG / SVG (Arquivo - Exportar como).", + "Sugira novas funções no nosso ou . O nosso objetivo é criar .", + "Os links de patrocinadores são abertos numa nova janela.", + "Este recurso não está disponível.", + "Instale Photopea" + ] + ], + [ + "Abrir", + "Publicar Online", + "Gravar", + "Gravar como PSD", + "Imprimir", + "Abrir de URL", + "Abrir do computador", + "Conectar com Google Drive", + "Exportar como", + "Exportar Camadas", + "Script", + "Abrir e colocar", + "Fechar", + "Armazenamento local", + "Informação do Ficheiro" + ], + [ + "Avançar", + "Retroceder", + "Limpar", + "Preencher", + "Transformar", + "Rodar", + "Espelhar VAR0", + "Escalar VAR0", + "Anular / Refazer", + "Perspetiva", + [ + "Misturar automaticamente", + "Alinhar automaticamente" + ], + "Desvanecer", + "Aplicar Imagem" + ], + "Ajustamentos", + [ + "Brilho/Contraste", + "Níveis", + "Curvas", + "Exposição", + "Vibração", + "Matiz/Saturação", + "Balanço de Cores", + "Preto e branco", + "Filtro fotográfico", + "Misturador de Canais", + "Procura de Cor", + "Inverter", + "Posterizar", + "Limite", + "Mapa de gradiente", + "Cor Seletiva", + [ + "Tom automático", + "Contraste automático", + "Cor automática" + ], + "Substituir cor" + ], + [ + "Cortar", + "Copiar", + "Colar", + "Novo(a)", + "Apagar", + "Ativar", + "Desativar", + "Copiar Mesclado", + "Aplicar", + "Novamente", + "Atualizar" + ], + [ + "Duplicar Camada", + "Nova Camada de Ajustamento", + "Máscara de rasterização", + "Máscara de vetor", + "Adicionar (Revelar Tudo)", + [ + "Adicionar (Esconder Tudo)", + "Revelar seleção", + "Ocultar seleção", + "Da transparência" + ], + [ + "Máscara de recorte", + "Modo de máscara rápido" + ], + "Converter para Objeto inteligente", + "Rasterizar", + "Agrupar camadas", + "Mesclar para baixo", + "Mesclar para cima", + [ + "Mesclar camadas", + "Achatar imagem" + ], + "Nova Camada", + "Ativar máscara de rasterização", + "Desativar máscara de rasterização", + "Ativar máscara de vetor", + "Desativar máscara de vetor", + "Ativar máscara de recorte", + "Desativar máscara de recorte", + "Nova Pasta", + "Adicionar máscara de rasterização", + "Apagar máscara de rasterização", + "Adicionar máscara de vetor", + "Apagar máscara de vetor", + "Conectar máscara de rasterização", + "Desconectar máscara de rasterização", + "Conectar máscara de vetor", + "Desconectar máscara de vetor", + "Ativar efeitos de camada", + "Desativar efeitos de camada", + "Apagar Camada", + "Mudança de Opacidade da Camada", + "Mudança de Mistura", + "Rasterizar Estilo de Camada", + "Ordem de Camadas", + [ + "A Criar Objeto inteligente", + "A Atualizar Objeto inteligente", + "A Colocar Objeto inteligente", + "Fonte (Objeto inteligente)", + "Modo de pilha" + ], + "Mudança de Nome", + "Mudança de Cor", + "Editar Camada de Ajustamento", + "Converter para Forma", + "Ativar máscara de filtro", + "Desativar máscara de filtro", + "Ativar Filtros Inteligentes", + "Desativar Filtros Inteligentes", + "Adicionar máscara de filtro", + "Apagar máscara de filtro", + "Limpar Filtros Inteligentes", + [ + [ + "Preenchimento com Cor", + "Preenchimento com Gradiente", + "Preenchimento com Padrão", + "Ciente ao conteúdo" + ], + "Nova Camada de Preenchimento", + "Modificar camada de preenchimento" + ], + "Camada via cópia", + "Máscara de filtro", + "Apagar Estilo de Camada", + "Mover o Filtro Inteligente", + "Apagar o Filtro Inteligente", + [ + "Juntar Camadas", + "Separar Camadas" + ], + "Organizar", + [ + "Trazer para primeiro", + "Trazer para a frente", + "Enviar para trás", + "Enviar para último" + ], + [ + "Esta Camada está Bloqueada.", + "Travar mudança", + "Bloquear" + ], + "Animação" + ], + [ + "Tudo", + "Anular Seleção", + "Inverso", + "Modificar", + "Expandir", + "Contrair", + "Difusão", + "Mover seleção", + "Intervalo de cores", + "Borda", + "Transformar seleção", + "Refinar arestas", + "Curar seleção", + "Corte Mágico" + ], + [ + "Mais Zoom", + "Menos Zoom", + "Guias", + "Réguas", + "Grade", + "Encaixar", + "Encaixar a", + "Limites do Documento", + "Grade de pixel", + "Demarcadores", + "Encaixar a pixels", + [ + "Fatias", + "Opções de fatiar" + ], + "Mostrar" + ], + [ + "Histórico", + "Camadas", + "Propriedades", + "Pincel", + "Caractere", + "Parágrafo", + "Informações", + "Composições de camada", + "Amostras", + "Ações", + "Histograma", + "Navegação", + "Predefinições de Ferramenta", + "Glifos" + ], + [ + "Ferramenta pincel", + "Clonagem", + "Corte", + "Borracha", + "Seleção Elipsoidal", + "Conta-gotas", + "Gradiente", + "Mão", + "Texto", + "Seleção com Laço", + "Seleção com Laço Magnético", + "Mover", + "Varinha Mágica", + "Balde de Tinta", + "Seleção com Laço Poligonal", + "Seleção retangular", + "Transformação Livre", + "Ampliar", + "Ferramenta de desfoque", + "Ferramenta de foco", + "Ferramenta para borrar", + "Ferramenta de exposição", + "Ferramenta para queimar", + "Ferramenta de esponja", + "Ferramenta de cura localizada", + "Ferramenta de cura", + "Ferramenta de remendo", + "Seleção de demarcador", + "Seleção Direta", + "Caneta", + "Caneta livre", + "Forma personalizada", + "Rectângulo", + "Elipse", + "Forma paramétrica", + "Linha", + "Régua", + "Seleção rápida", + "Ferramenta lápis", + "Corte de perspectiva", + "Ferramenta de fatia", + "Ferramenta de seleção de fatia", + "Substituição de cor", + "Olhos vermelhos", + "Seleção de objeto", + "Borracha de plano de fundo", + "Distorção de marionete", + "Girar Visualização", + "Escala sensível a conteúdo", + "Movimento Sensível ao Conteúdo" + ], + [ + "Tirar foto", + "Escolher Cor", + "Editor de Contornos", + "Tamanho da Tela de pintura", + "Duplicar para...", + "Editor de Gradiente", + "Estilo da Camada", + "Novo Projeto", + "Gravar para a Web", + "Deformar", + "Tamanho da Imagem", + "Vetorizar bitmap", + [ + "Aparar", + "Cortar", + "Revelar Tudo" + ], + "Atalhos do Teclado", + "Adicionar Guias", + [ + "Apagar Guias", + "Guias da Camada" + ] + ], + [ + "Opacidade", + "Efeitos", + "Brilho", + [ + "Constraste", + "Usar Legado" + ], + "Canal", + "Exposição", + "Deslocamento", + "Correção de Gama", + "Matiz", + "Saturação", + "Luminosidade", + "Colorir", + "Extensão", + "Vibração", + [ + "Tamanho", + "Interpolação", + "Vizinho mais próximo", + "Bilinear" + ], + "Ângulo", + "Arredondamento", + "Dureza", + "Espaçamento", + [ + "Modo de Mistura", + "Mesclar Se" + ], + "Tamanho da Amostra", + "Contorno", + "Estilo", + [ + "Reverter", + "Relativa", + "Âncora" + ], + "Tolerância", + "Contíguo", + "Preenchimento", + "Usar ângulo global", + "Distância", + "Espalhamento", + "Ruído", + "Cortar Sombra", + "Técnica", + "Direção", + "Profundidade", + "Suavizar", + "Modo", + "Gradiente", + "Escalar", + "Alinhar À Camada", + "Posição", + "Largura", + "Altura", + "Destino", + "Tipo", + "Primeiro Plano", + "Plano de Fundo", + "Personalizado", + "Nome", + "Criar", + "Formatar", + "Manter Aspeto", + [ + "Qualidade", + "Páginas" + ], + "Duplicar", + "Mover", + "Filtros Inteligentes", + "Raio", + "Quantidade", + "Distribuição", + [ + "Uniforme", + "Gaussian" + ], + "Monocromático", + "Tamanho da célula", + "Padrão", + "Corrente", + "Força", + "Proteger detalhe", + "Tipo de preenchimento", + "Textura", + "Tremulação", + "Aresta", + "Fonte", + "Alvo", + "Canais", + "Máscara", + "Densidade", + "Alinhado", + [ + "Demarcador", + "Forma", + "Pixels", + "Polegadas", + "Centímetros", + "Milímetros", + "Porcentagem" + ], + "Formas", + "Lados", + "Preferências", + [ + "lange", + "Ratio", + "Qualquer", + "Tipo de grade", + "Isométrico", + "Espaçamento da grade", + "Unidades da régua" + ], + "Reduzir Ruído", + "Cores", + "Distâncias", + "Ritmo", + "Seleção automática", + "Procurar", + "Definir novo", + [ + "Foto", + "Tela", + "Celular", + "Anúncios", + "Cópia impressa" + ], + [ + "Livre", + "Taxa Fixa", + "Tamanho Fixo" + ], + "Ajuda", + [ + "Forma viva", + "Editar forma viva", + "O mesmo Raio" + ], + "Grau de seleção", + [ + "Polígono", + "Estrela", + "Espiral", + "Quadrado" + ], + [ + "Raio do canto", + "Raio interno" + ] + ], + [ + "Cor", + [ + "Nenhum", + "Vermelho", + "Laranja", + "Amarelo", + "Verde", + "Azul", + "Roxo", + "Cinzento", + "Branco", + "Transparente", + "Preto", + "Ciano", + "Magenta", + "Neutral" + ], + "Total", + "Absoluto", + "Preservar Luminosidade" + ], + [ + "Sombra", + "Sombra Interna", + "Brilho Exterior", + "Brilho Interior", + "Bisel e Relevo", + "Sobreposição de cor", + "Sobreposição de gradiente", + "Sobreposição de padrão", + "Cetim", + "Traçado", + "Opções de mistura", + "Selecionar pixels" + ], + [ + "Forma da ponta", + "Dinâmica da ponta", + "Espalhamento", + "Dinâmica de cor", + [ + "Tremulação do tamanho", + "Diâmetro mínimo", + "Tremulação de ângulo", + "Tremulação de redondez", + "Redondez mínima" + ], + [ + "Tremulação da posição", + "Quantidade", + "Tremulação da quantidade" + ], + [ + "Tremulação do Plano de fundo/Primeiro plano", + "Tremulação do matiz", + "Tremulação de saturação", + "Tremulação de brilho" + ], + [ + "Selecione a fonte de clonagem segurando Alt (ou K) e clicando na imagem.", + "Marque primeiro plano com Branco, fundo com Preto e a área desconhecida com Cinza.", + "Camada não é editável.", + "Camada de Texto têm de ser rasterizada primeiro", + "Objeto inteligente deve der rasterizado primeiro", + "Selecionar múltiplas camadas", + "Retificar camada", + "Abra um documento primeiro.", + "Feche a janela atual primeiro.", + "Somente Ferramenta Atual" + ], + [ + "Gravar", + "Novo conjunto de ações", + "Nova ação" + ], + [ + "Pressão da caneta controla a opacidade", + "Pressão da caneta controla o tamanho" + ], + [ + "Normal", + "Dissolver", + "Escurecer", + "Multiplicação", + "Superexposição de cor", + "Superexposição linear", + "Cor mais escura", + "Clarear", + "Tela", + "Subexposição de cor", + "Subexposição linear", + "Cor mais clara", + "Sobrepor", + "Luz indireta", + "Luz direta", + "Luz brilhante", + "Luz linear", + "Luz do pino", + "Mistura sólida", + "Diferença", + "Exclusão", + "Subtrair", + "Dividir", + "Matiz", + "Saturação", + "Cor", + "Luminosidade", + "Passagem" + ] + ], + [ + "Entrelinhas", + "Encalço", + "Deslocamento de linha de base", + [ + "Converter para Texto de Ponto", + "Converter para Texto de Parágrafo" + ] + ], + [ + "Todas as camadas", + "Camada atual", + "Seleção", + "Atual e abaixo" + ], + [ + "Substituir", + "União", + "Diferença", + "Intersecção", + "Excluir", + "Mesclar" + ], + [ + [ + "Linear", + "Radial", + "Ângulo", + "Reflectido", + "Diamante", + "Estouro de forma" + ], + [ + "Mais suave", + "Preciso" + ], + [ + "Bisel exterior", + "Bisel interior", + "Entalhe", + "Relevo travesseiro", + "Relevo de risco", + "Largura do traçado" + ], + [ + "Suavizar", + "Cinzel sólido", + "Cinzel suave", + "Suavidade" + ], + [ + "Cima", + "Baixo" + ], + [ + "Fora", + "Centro", + "Dentro", + "A partir do centro" + ], + [ + "Sombras", + "Tons Médios", + "Realces" + ], + [ + "Dessaturar", + "Saturar" + ], + [ + "Pequeno", + "Médio", + "Ampla" + ], + [ + "Arremates", + "Cantos", + "Traços" + ] + ], + [ + "Escolher o objeto debaixo do cursor", + "Controlos de transformação", + "Pixel a Pixel", + "Ajustar a área", + [ + "Alinhar cantos esquerdos", + "Centralizar horizontalmente", + "Alinhar cantos direitos", + "Alinhar cantos de cima", + "Centralizar verticalmente", + "Alinhar cantos de baixo", + "Lacunas iguais" + ] + ], + [ + "Insira dentro de", + "Projeto atual", + "Novo projeto", + "Resolução", + "Adicionado ao projeto atual.", + "Um novo projeto foi criado.", + "O acesso à câmera foi negado." + ], + [ + "Orientação", + "Curvatura", + "Distorção Horizontal", + "Distorção Vertical", + [ + "Horizontal", + "Vertical", + "horizontalmente", + "verticalmente" + ], + [ + "Nenhum(a)", + "Arco", + "Arco Inferior", + "Arco Superior", + "Arquear", + "Protuberância", + "Escudo Inferior", + "Escudo Superior", + "Bandeira", + "Onda", + "Peixe", + "Subir", + "Olho de Peixe", + "Esticar", + "Apertar", + "Torcer", + "Customizado" + ], + [ + "Tipo de Letra", + "não está disponível", + "Vai ser desenhado usando", + "Há trabalho não guardado no", + "Você realmente quer fechá-lo?" + ], + [ + "Permutar Cores", + "Padrão: Branco e Preto" + ] + ], + [ + "carregado", + "adicionado", + "Mover guia", + "Apagar guia", + "Adicionar guia", + "Carregando", + "Carregar VAR0" + ], + [ + "Galeria de filtros", + [ + [ + "Dissolver", + [ + "Borrar", + "Reconstruir", + "Suavizar", + "Redemoinho", + "Encolher", + "Inflar", + "Empurre à esquerda", + "Congelar", + "Descongelar" + ] + ], + [ + "Correção de lente" + ] + ], + "Desfoque", + [ + "Médio", + "Desfoque", + "Desfoque Maior", + "Desfoque de Caixa", + "Desfoque Gaussiano", + "Desfoque de Lente", + "Desfoque de Movimento", + "Desfoque Radial", + "Desfoque de Forma", + "Desfoque Inteligente", + "Desfoque de Superfície" + ], + "Distorcer", + [ + "Mesclar", + "Sucção", + "Coordenadas Polares", + "Ondulação", + "Cisalhamento", + "Esferização", + "Ondas" + ], + "Ruído", + [ + "Adicionar Ruído", + "oi", + "Poeira e Rabiscos", + "Mediana" + ], + "Pixelizar", + [ + "Meio-Tom em Cores", + "Cristalizar", + "Facetar", + "Fragmentar", + "Meia-Tinta", + "Mosaico", + "Pontilhar" + ], + "Renderizar", + [ + "Nuvens", + "Nuvens por Diferença", + "Reflexo de Flash" + ], + "Aguçar", + [ + "Tornar Nítido", + "Tornar Arestas Nítidas", + "Nitidez Maior", + "Aplicação Inteligente de Nitidez", + "Máscara de Nitidez" + ], + "Estilizar", + [ + "Difusão", + "Realçar", + "Extrusão", + "Indicação de Arestas", + "Pintura a óleo" + ], + "Outros Filtros", + [ + "Customizado", + "Alta frequência", + "Máximo", + "Mínimo", + "Deslocamento", + "Repetir" + ], + [ + "Área indefinida", + "Definir como transparente", + "Repetir pixels da aresta", + "Preencher com lado oposto", + "Último filtro", + "Visualizar" + ] + ], + [ + "Modelos", + [ + "Filtro de fontes", + "Palavras-chave", + "Aleatória" + ], + [ + "Com símbolos", + "Com foto" + ], + [ + "Miniaturas", + "Lista" + ] + ] + ], + [ + [ + "Файл", + "Редактирование", + "Изображение", + "Слой", + "Папка", + "Выделить", + "Фильтр", + "Просмотр", + "Окно", + "Язык", + "Войти", + "Выйти", + "Создать перевод", + [ + "Аккаунт", + "Правила использования", + "Назад", + "О приложении", + "Сообщить об ошибке", + "Обучение" + ], + "Больше", + "Тема", + "Использовать WebGL", + [ + "Photopea: расширенный редактор изображений", + "gjadm", + "Создайте новое изображение или откройте существующие файлы с компьютера. Сохраните свою работу как PSD (Файл - Сохранить как PSD) или как JPG / PNG / SVG (Файл - Экспортировать как).", + "Предлагайте новые возможности в нашем или . Нашей целью является создание <наиболее продвинутого и доступного по цене редактора фотографий>.", + "Ссылки на спонсоров открываются в новом окне.", + "Эта функция недоступна.", + null + ] + ], + [ + "Открыть", + "Опубликовать онлайн", + "Сохранить", + "Сохранить как PSD", + "Печать", + "Открыть по ссылке", + "Открыть с компьютера", + "Подключиться к Google Диску", + "Экспортировать как", + "Экспортировать слои", + "Скрипт", + "Открыть и поместить", + "Закрыть", + "Локальное хранилище", + null + ], + [ + "Шаг вперед", + "Шаг назад", + "Очистить", + "Заливка", + "Трансформация", + "Поворот", + "Отразить VAR0", + "Масштабирование VAR0", + "Отменить / Повторить", + "Перспектива", + [ + "Автоматическое смешивание", + "Автоматически выравнивать" + ], + "Ослабить", + "Внешний канал" + ], + "Коррекция", + [ + "Яркость/Контрастность", + "Уровни", + "Кривые", + "Экспозиция", + "Сочность", + "Тон/Насыщенность", + "Цветовой баланс", + "Черно-белое", + "Фотофильтр", + "Миксер каналов", + "Поиск цвета", + "Инвертировать", + "Постеризация", + "Порог", + "Карта градиента", + "Выборочный цвет", + [ + "Автотон", + "Автоконтраст", + "Авто цветовая коррекция" + ], + "Замена цвета" + ], + [ + "Вырезать", + "Копировать", + "Вставить", + "Новый", + "Удалить", + "Включить", + "Выключить", + "Объединение копий", + "Применить", + "Повторно", + "Обновить" + ], + [ + "Дублировать слой", + "Новый корректирующий слой", + "Растровая маска", + "Векторная маска", + "Добавить (показать все)", + [ + "Добавить (скрыть все)", + "Показать выделенную область", + "Скрыть выделенную область", + "Из прозрачности" + ], + [ + "Маска отсечения", + "Режим быстрой маски" + ], + "Конвертировать в Смарт-объект", + "Растрирование", + "Группа слоёв", + "Объединить с предыдущим", + "Объединить с верхним слоем", + [ + "Объединить слои", + "Выполнить сведение" + ], + "Новый слой", + "Включить растровую маску", + "Выключить растровую маску", + "Включить векторную маску", + "Выключить векторную маску", + "Включить маску отсечения", + "Выключить маску отсечения", + "Новая папка", + "Добавить растровую маску", + "Удалить растровую маску", + "Добавить векторную маску", + "Удалить векторную маску", + "Привязать растровую маску", + "Отвязать растровую маску", + "Привязать векторную маску", + "Отвязать векторную маску", + "Включить эффекты слоев", + "Выключить эффекты слоев", + "Удалить слой", + "Изменение прозрачности слоя", + "Изменение смешивания", + "Растеризовать стиль слоя", + "Порядок слоёв", + [ + "Создание Смарт-объекта", + "Обновление Смарт-объекта", + "Размещение Смарт-объекта", + "Источник (Смарт-объект)", + "Режим стека" + ], + "Изменение названия", + "Изменение цвета", + "Редактировать корректирующий слой", + "Преобразовать в Форму", + "Включить маску фильтра", + "Выключить маску фильтра", + "Включить умные фильтры", + "Выключить умные фильтры", + "Добавить маску фильтра", + "Удалить маску фильтра", + "Очистить умные фильтры", + [ + [ + "Заливка сплошным цветом", + "Градиентная заливка", + "Заливки узором", + "С учетом содержимого" + ], + "Новый заполняющий слой", + "Изменить заполнениние слоя" + ], + "Слой через копию", + "Маска фильтра", + "Удалить стиль слоя", + "Передвинуть Смарт фильтр", + "Удалить смарт фильтр", + [ + "Объединить слои", + "Разделить слои" + ], + "Расставить", + [ + "На передний план", + "Выдвинуть", + "Отправить назад", + "На задний план" + ], + [ + "Этот слой заблокирован.", + "Блокировать изменения", + null + ], + "Анимация" + ], + [ + "Все", + "Отменить выделение", + "Инвертировать", + "Модификация", + "Развернуть", + "Стягивать", + "Перо", + "Передвинуть выделение", + "Цветовой диапазон", + "Граница", + "Трансформировать выделение", + "Уточнить край", + "Пометить выбранное", + null + ], + [ + "Приблизить", + "Отдалить", + "Направляющие", + "Линейки", + "Сетка", + "Привязка", + "Привязка к", + "Границы документа", + "Пиксельная сетка", + "Контуры", + "Привязка к пикселям", + [ + "Фрагменты", + "Параметры среза" + ], + "Показать" + ], + [ + "История", + "Слои", + "Свойства", + "Кисть", + "Характер", + "Параграф", + "Инфо", + "Наборы слоев", + "Образы", + "Операция", + "Гистограмма", + "Навигатор", + "Наборы параметров для инструмента", + "Глифы" + ], + [ + "Кисть", + "Штамп", + "Рамка", + "Ластик", + "Выделение в форме эллипса", + "Пипетка", + "Градиент", + "Рука", + "Текст", + "Выделение лассо", + "Выделение магнитное лассо", + "Перемещение", + "Волшебная палочка", + "Заливка", + "Выделение полигональное лассо", + "Прямоугольное выделение", + "Свободное трансформирование", + "Лупа", + "Инструмент «Размытие»", + "Инструмент «Резкость»", + "Палец", + "Инструмент «Осветлитель»", + "Инструмент «Затемнитель»", + "Инструмент \"Губка\"", + "Точечная восстанавливающая кисть", + "Восстанавливающая кисть", + "Заплатка", + "Выделение контура", + "Прямой выбор", + "Ручка", + "Свободная ручка", + "Произвольная фигура", + "Прямоугольник", + "Эллипс", + "Параметрическая Форма", + "Линия", + "Линейка", + "Быстрое выделение", + "Карандаш", + "Кадрирование перспективы", + "Фрагмент", + "Выделение фрагмента", + "Замена цвета", + "Красные глаза", + "Выбор объекта", + "Убрать фон", + "Кукольное искажение", + "Поворот вида", + "Масштаб с учетом содержимого", + "Перемещение с учетом содержимого" + ], + [ + "Сделать снимок", + "Выбор цвета", + "Редактор контура", + "Размер холста", + "Дублировать в ...", + "Редактор градиента", + "Стиль слоя", + "Новый проект", + "Сохранить для интернета", + "Деформация", + "Размер изображения", + "Трассировка", + [ + "Тримминг", + "Вырезать", + "Раскрыть все" + ], + "Горячие клавиши", + "Добавить направляющие", + [ + "Удалить направляющие", + "Направляющие из слоя" + ] + ], + [ + "Непрозр.", + "Эффекты", + "Яркость", + [ + "Контраст", + "Использовать прежние" + ], + "Канал", + "Выдержка", + "Смещение", + "Коррекция гаммы", + "Тон", + "Насыщенность", + "Освещенность", + "Раскрасить", + "Диапозон", + "Сочность", + [ + "Размер", + "Интерполяция", + "Ближайшего соседа", + "Билинейная" + ], + "Угол", + "Скругленность", + "Жесткость", + "Интервал", + [ + "Режим смешивания", + "Наложить, если" + ], + "Размер образца", + "Контур", + "Стиль", + [ + "Обратить", + "Относительно", + "Расположение" + ], + "Допуск", + "Непрерывный", + "Заливка", + "Использовать глобальный угол", + "Смещение", + "Разброс", + "Шум", + "Убрать тень", + "Метод", + "Направление", + "Глубина", + "Смягчать", + "Режим", + "Карта градиента", + "Масштаб", + "Выровнять по слою", + "Позиция", + "Ширина", + "Высота", + "Цель", + "Тип", + "Передний план", + "Задний план", + "Специальный", + "Имя", + "Создать", + "Формат", + "Сохранять пропорции", + [ + "Качество", + "Страницы" + ], + "Дублировать", + "Двигать", + "Умные фильтры", + "Радиус", + "Количество", + "Дистрибуция", + [ + "Форма", + "По Гауссу" + ], + "Однотонный", + "Размер Ячейки", + "Шаблон", + "Нажим", + "Сила", + "Защитить детали", + "Тип обводки", + "Текстура", + "Колебание", + "край", + "Источник", + "Цель", + "Каналы", + "Маска", + "Плотность", + "Выравнивание", + [ + "Контур", + "форма", + "Пиксели", + "Дюймы", + "Сантиметры", + "Миллиметры", + "Процент" + ], + "Формы", + "Стороны", + "Предпочтения", + [ + "Длина", + "Соотношение", + "Любой", + "Сетка стиль", + "Изометрический", + "Размеры сетки", + "Разметка линеек" + ], + "Уменьшить шум", + "Краски", + "Расстояния", + "Рейтинг", + "Авто-выбор", + "Поиск", + "Определить новый", + [ + "Фото", + "Экран", + "Мобильный", + "Реклама", + "Печать" + ], + [ + "Свободный", + "Фикс. соотношение", + "Фикс. размер" + ], + "Помощь", + [ + "Живые фигуры", + "Изменить фигуру", + "Те же радиусы" + ], + "Разброс", + [ + "Многоугольник", + "Звезда", + "Спираль", + "Квадратный" + ], + [ + "Радиус скруглений", + "Внутренний радиус" + ] + ], + [ + "Цвет", + [ + "Отсутствует", + "Красный", + "Оранжевый", + "Желтый", + "Зеленый", + "Синий", + "Фиолетовый", + "Серый", + "Белый", + "Прозрачный", + "Чёрный", + "голубой", + "пурпурный", + "Нейтральный" + ], + "Всего", + "Абсолютная", + "Сохранить свечение" + ], + [ + "Тень", + "Внутренняя тень", + "Внешнее свечение", + "Внутреннее свечение", + "Тиснение", + "Наложение цвета", + "Наложение градиента", + "Наложение узора", + "Глянец", + "Обводка", + "Параметры наложения", + "Выберите точки" + ], + [ + "Форма кончика", + "Динамический советник", + "разброс", + "Цветовая динамика", + [ + "Размер Джиттер", + "Минимальный диаметр", + "Угол дрожания", + "Округлость дрожания", + "Минимальная окружность" + ], + [ + "Позиция угла", + "Подсчёт", + "Подсчёт углов" + ], + [ + "Переднего/Заднего плана угла", + "Тон угла", + "Колебание насыщенности", + "Колебание яркости" + ], + [ + "Выберите источник клонирования, удерживая Alt и нажав на изображение.", + "Выбрать цвет переднего плана Белым, заднего плана Черным и не известную зону Серым", + "Слой не редактируемый", + "Слой с текстом должен быть растрирован вначале", + "Смарт-объект должен быть сначала растрирован", + "Выберите нескольких слоев", + "Выпрямить слой", + "Сначала откройте документ.", + "Сначала закройте текущее окно.", + "Только активный инструмент" + ], + [ + "Запись", + "Новый набор операций", + "Новая операция" + ], + [ + "Нажим управляет непрозрачностью", + "Нажим управляет размером" + ], + [ + "Обычный", + "Растворение", + "Замена темным", + "Умножение", + "Затемнение основы", + "Линейный затемнитель", + "Темнее", + "Замена светлым", + "Осветление", + "Осветление основы", + "Линейный осветлитель", + "Светлее", + "Перекрытие", + "Рассеянный свет", + "Направленный свет", + "Яркий свет", + "Линейный свет", + "Точечный свет", + "Жесткое смешение", + "Разница", + "Исключение", + "Вычитание", + "Разделение", + "Тон", + "Насыщенность", + "Цвет", + "Свечение", + "Пропустить" + ] + ], + [ + "Интерлиньяж", + "Трекинг", + "Базовая линия", + [ + "Преобразовать в короткий текст", + "Преобразовать в блочный текст" + ] + ], + [ + "Все слои", + "Текущий слой", + "Выделение", + "Текущий и следующие" + ], + [ + "Заменить", + "Объединение", + "Разница", + "Пересечение", + "Исключающее ИЛИ", + "Слияние" + ], + [ + [ + "Линейный", + "Радиальные", + "Угол", + "Отражение", + "Алмаз", + "Разбивка фигуры" + ], + [ + "Мягче", + "Точное" + ], + [ + "Внешний скос", + "Внутренний Скос", + "рельеф", + "Выпуклый рельеф", + "Рельефная кайма", + "Обводка ширина" + ], + [ + "Оптимизировать", + "Твердый резец", + "Мягкий резец", + "Гладкость" + ], + [ + "Вверх", + "Вниз" + ], + [ + "Снаружи", + "Центр", + "Внутри", + "От центра" + ], + [ + "Тени", + "Средние тоны", + "Свет" + ], + [ + "Десатурация", + "Сатурация" + ], + [ + "Маленький", + "Средний", + "Большой" + ], + [ + "Концы", + "Углы", + "Тире" + ] + ], + [ + "Выбрать объект под курсором", + "Контроль трансформации", + "Пиксель в пиксель", + "Подогнать площадь", + [ + "Выровнять левые края", + "Горизонтально по центру", + "Выровнять правые края", + "Выровнять верхние края", + "Вертикально по центру", + "Выровнять нижние края", + "Равные пробелы" + ] + ], + [ + "Вставить в", + "Текущий Проект", + "Новый Проект", + "Разрешение", + "Добавлено в текущий проект", + "Был создан новый проект.", + "Доступ к камере было отказано." + ], + [ + "Ориентация", + "Изгиб", + "Искажение по горизонтали", + "Искажение по вертикали", + [ + "Горизонтальная", + "Вертикальная", + "по горизонтали", + "по вертикали" + ], + [ + "Нет", + "Дуга", + "Дуга вниз", + "Дуга вверх", + "Арка", + "выпуклость", + "Нижняя оболочка", + "Верхняя оболочка", + "Флаг", + "Волна", + "Рыба", + "Рост", + "Рыбий Глаз", + "Надуть", + "Выжать", + "Поворот", + "Пользовательский" + ], + [ + "Шрифт", + "недоступен", + "Будет отображаться с использованием", + "Существует несохраненные работы в", + "Вы действительно хотите закрыть это?" + ], + [ + "Замена цветов", + "По умолчанию: Белое и черное" + ] + ], + [ + "загружается", + "Добавлено", + "Переместить направляющую", + "Удалить направляющую", + "Добавить направляющую", + "Загрузка", + "Загрузить VAR0" + ], + [ + "Галерея фильтров", + [ + [ + "Пластика", + [ + "Размазать", + "Перестроить", + "Разглаживать", + "Скручивать", + "Сжать", + "Надуть", + "Нажать влево", + "Заморозить", + "Разморозить" + ] + ], + [ + "Корректировка объектива" + ] + ], + "Размытие", + [ + "Среднее", + "Размытие", + "Больше размытия", + "Размытие по рамке", + "Размытие по Гауссу", + "Lens Blur", + "Motion Blur", + "Radial Blur", + "Shape Blur", + "Интеллектуальная Размытость", + "Поверхностное размытие" + ], + "Исказить", + [ + "Заменить", + "Щепотка", + "Полярные координаты", + "Волнистый", + "Сдвиг", + "Сферизация", + "Волна" + ], + "Шум", + [ + "Добавить шум", + "Удаление пятен", + "Пыль и Царапины", + "Медиана" + ], + "Оформление", + [ + "Цвет Полутонов", + "кристаллизовать", + "Фасет", + "Фрагмент", + "глубокая печать", + "Мозаика", + "Акварель" + ], + "Рендеринг", + [ + "Облака", + "Разные облака", + "Блики" + ], + "Резкость", + [ + "Резкость", + "Резкие границы", + "Больше резкости", + "Умная Резкость", + "Нерезкая Маска" + ], + "Стилизовать", + [ + "Рассеить", + "Тиснение", + "Вытянуть", + "Найти края", + "Масляная краска" + ], + "Другие", + [ + "Настройка", + "Цветовой контраст", + "Максимум", + "Минимум", + "Смещение", + "Повторить" + ], + [ + "Неопределенная Область", + "Обозначить Прозрачным", + "Повторить Крайние Пиксели", + "Обернуть Вокруг", + "Предыдущий фильтр", + "Просмотр" + ] + ], + [ + "Шаблоны", + [ + "Фильтр шрифтов", + "Ключевые слова", + "Случайно" + ], + [ + "С символами", + "С фото" + ], + [ + "Миниатюры", + "Список" + ] + ] + ], + [ + [ + "Файл", + "Редагувати", + "Зображення", + "Шар", + "Папка", + "Виділити", + "Фільтр", + "Перегляд", + "Вікно", + "Мова", + "Увійти", + "Вийти", + "Створення перекладу", + [ + "Профіль", + "Умови використання", + "Назад", + "Про програму", + "Повідомити про помилку", + "Навчання" + ], + "Більше", + "Тема", + "Використовувати WebGL", + [ + "Photopea: Розширений редактор зображень", + "Безкоштовний онлайн-редактор, що підтримує формати PSD, XCF, Sketch, XD і CDR.", + "Створити нове зображення або відкрити наявні файли з комп'ютера. Збережіть роботу як PSD (Файл - Зберегти як PSD) або як JPG / PNG / SVG (Файл - Експортувати як).", + "Запропонуйте нові функції на нашому або . Нашою метою є створення <найбільш передових і доступних фото-редактор>.", + "Спонсорські посилання відкриваються в новому вікні.", + "Ця функція недоступна.", + null + ] + ], + [ + "Відкрити", + "Опублікувати онлайн", + "Зберегти", + "Зберегти як PSD", + "Друк", + "Відкрити з URL", + "Відкрити з комп'ютера", + "Під'єднати до Google Drive", + "Експортувати як", + "Експортувати шари", + "Скрипт", + "Відкрити і помістити", + "Закрити", + "Локальне Сховище", + null + ], + [ + "Крок уперед", + "Крок назад", + "Очистити", + "Заповнити", + "Трансформувати", + "Повернути", + "Перевернути VAR0", + "Масштабувати VAR0", + "Скасувати / Повторити", + "Перспектива", + [ + "Автоматичне накладання", + "Автовирівнювання" + ], + "Затухання", + "Застосувати зображення" + ], + "Коригування", + [ + "Яскравість / Контрастність", + "Рівні", + "Криві", + "Експозиція", + "Соковитість", + "Відтінок/Насиченість", + "Баланс Кольорів", + "Чорно-білий", + "Фільтр Фото", + "Мікшер каналів", + "Пошук кольорів", + "Інвертувати", + "Постеризація", + "Поріг", + "Градієнтна Карта", + "Вибірковий колір", + [ + "Автоматичний відтінок", + "Автоматичний контраст", + "Автоматичний колір" + ], + "Замінити колір" + ], + [ + "Вирізати", + "Копіювати", + "Вставити", + "Створити", + "Видалити", + "Увімкнути", + "Вимкнути", + "Копіювати об'єднано", + "Застосувати", + "Знову", + "Оновити" + ], + [ + "Дублікувати шар", + "Новий шар корекції", + "Растрова маска", + "Векторна маска", + "Додати (показати все)", + [ + "Додати (сховати все)", + "Показати виділення", + "Сховати виділення", + "З прозорості" + ], + [ + "Маска відсікання", + "Режим швидкої маски" + ], + "Перетворити на смарт-об'єкт", + "Растеризувати", + "Групувати шари", + "Об'єднати з нижче", + "Об'єднати з вище", + [ + "Об'єднати шари", + "Виконати зведення" + ], + "Новий шар", + "Увімкнути растрову маску", + "Вимкнути растрову маску", + "Увімкнути векторну маску", + "Вимкнути векторну маску", + "Увімкнути відсічну маску", + "Вимкнути відсічну маску", + "Нова папка", + "Додати растрову маску", + "Видалити растрову маску", + "Додати векторну маску", + "Видалити векторну маску", + "Пов'язати растрову маску", + "Від’єднати растрову маску", + "Пов'язати векторну маску", + "Від’єднати векторну маску", + "Увімкнути ефекти шарів", + "Вимкнути ефекти шарів", + "Видалити шар", + "Зміна непрозорості шару", + "Зміна змішування", + "Растеризувати стиль шару", + "Порядок шарів", + [ + "Створення смарт-об'єкта", + "Оновлення смарт-об'єкта", + "Розміщення смарт-об'єкта", + "Джерело (Смарт-об'єкт)", + "Пакетний режим" + ], + "Зміна назви", + "Зміна кольору", + "Редагувати шар коригування", + "Перетворити на фігуру", + "Увімкнути маску фільтра", + "Вимкнути маску фільтра", + "Увімкнути розумні фільтри", + "Вимкнути розумні фільтри", + "Додати маску фільтра", + "Видалити маску фільтра", + "Очистити розумні фільтри", + [ + [ + "Заповнення суцільним кольором", + "Заповнення градієнтом", + "Заповнення патерном", + "Відповідно до вмісту" + ], + "Новий шар заповнення", + "Змінити шар заповнення" + ], + "Скопіювати на новий шар", + "Маска фільтра", + "Видалити стиль шару", + "Пересунути смарт фільтр", + "Видалити смарт фільтр", + [ + "Зв'язування шари", + "Звільнення шари" + ], + "Розставити", + [ + "На передній план", + "Перемістити вперед", + "Перемістити назад", + "На задній план" + ], + [ + "Цей шар заблокований.", + "Зміна блокування", + null + ], + null + ], + [ + "Усе", + "Скасувати виділення", + "Інвертувати", + "Змінити", + "Розгорнути", + "Стиснути", + "Перо", + "Перемістити виділення", + "Колірний діапазон", + "Межа", + "Трансформувати виділення", + "Уточнити край", + "Виправити виділення", + null + ], + [ + "Збільшити масштаб", + "Зменшити масштаб", + "Напрямні", + "Лінійки", + "Сітка", + "Прив'язка", + "Прив'язати до", + "Межі документа", + "Піксельна сітка", + "Контури", + "Прив'язати до пікселів", + [ + "Фрагменти", + "Параметри фрагменту" + ], + "Показати" + ], + [ + "Історія", + "Шари", + "Властивості", + "Пензель", + "Символ", + "Параграф", + "Інформація", + "Композиції шарів", + "Зразки", + "дії", + "Гістограма", + "Навігатор", + "Стилі інструментів", + "Гліфи" + ], + [ + "Пензель", + "Інструмент клонування", + "Кадр", + "Гумка", + "Вибір еліпсом", + "Піпетка", + "Градієнт", + "Рука", + "Текст", + "Вибір ласо", + "Вибір магнітним ласо", + "Переміщення", + "Чарівна Паличка", + "Заливка", + "Виділення багатокутним ласо", + "Вибір прямокутником", + "Вільна трансформація", + "Лупа", + "Розмиття", + "Різкість", + "Палець", + "Освітлювач", + "Випалювання", + "Палець", + "Точковий пензель відновлення", + "Пензель відновлення", + "Латка", + "Виділення Контуру", + "Виділення Вузла", + "Ручка", + "Вільна ручка", + "Довільна фігура", + "Прямокутник", + "Еліпс", + "Параметрична форма", + "Лінія", + "Лінійка", + "Швидке виділення", + "Олівець", + "Кадрування перспективи", + "Фрагмент", + "Виділення фрагмента", + "Заміна кольору", + "Червоні очі", + "Вибір об'єкта", + "Фонова гумка", + "Деформація гумової сітки", + "Вигляд обертання", + "Масштабування з урахуванням вмісту", + "Переміщення з урахуванням вмісту" + ], + [ + "Зробити знімок", + "Піпетка", + "Редактор контуру", + "Розмір полотна", + "Дублювати в ...", + "Редактор градієнта", + "Стиль шару", + "Новий проект", + "Зберегти для web", + "Деформація", + "Розмір зображення", + "Перевести картинку в вектор", + [ + "Обрізати", + "Кадрування", + "Показати все" + ], + "поєднання клавіш", + "Додати напрямні", + [ + "Очистити направляючі", + "Направляючі з шару" + ] + ], + [ + "Непрозорість", + "Ефекти", + "Яскравість", + [ + "Контраст", + "Застосувати існуюче" + ], + "Канал", + "Експозиція", + "Зсув", + "Корекція гами", + "Відтінок", + "Насиченість", + "Яскравість", + "Розфарбувати", + "Діапазон", + "Соковитість", + [ + "Розмір", + "Інтерполяція", + "Найближчий сусіда", + "Білінійна" + ], + "Кут", + "Округлість форми", + "Жорсткість", + "Інтервал", + [ + "Режим", + "Накладати якщо" + ], + "Розмір Зразка", + "Контур", + "Стиль", + [ + "Реверс", + "Відносне", + "Прив'язки" + ], + "Толерантність", + "Безперервний", + "Заповнити", + "Використати глобальний кут", + "Відстань", + "Рознести", + "Шум", + "Подолати тінь", + "Техніка", + "Напрям", + "Глибина", + "Зменшити різкість", + "Режим", + "Градієнт", + "Масштаб", + "Вирівняти з шаром", + "Розташування", + "Ширина", + "Висота", + "Призначення", + "Тип", + "Передній план", + "Тло", + "Настроюваний", + "Назва", + "Створити", + "Формат", + "Зберегти коефіцієнт пропорційності", + [ + "Якість", + "Сторінки" + ], + "Дублювати", + "Перемістити", + "Розумні фільтри", + "Радіус", + "Кількість", + "Розподіл", + [ + "Рівномірний", + "Гаус" + ], + "Одноколірний", + "Розмір комірки", + "Візерунок", + "Потік", + "Міцність", + "Захистити деталі", + "Тип заповнення", + "Текстура", + "Тремтіння", + "Край", + "Джерело", + "Мета", + "Канали", + "Маска", + "Густина", + "Вирівняний", + [ + "Контур", + "Форма", + "Пікселі", + "Дюйми", + "Сантиметри", + "Міліметри", + "Відсоток" + ], + "Фігури", + "Сторони", + "Налаштування", + [ + "Довжина", + "Коефіцієнт", + "Будь-яке", + "Тип сітки", + "Ізометричні", + "Лінія сітки кожні", + "Початок координат" + ], + "Зменшити шум", + "Кольори", + "Відстані", + "Скорость", + "Автовиділення", + "Знайти", + "Визначити нове", + [ + "Фото", + "Екран", + "Мобільний", + "Рекламна", + "Друк" + ], + [ + "Звичайний", + "Фіксований коефіцієнт с.", + "Сталий розмір" + ], + "Допомога", + [ + "Динамічні фігуру", + "Редагувати динамічну форму", + "Однаковий радіус" + ], + "Розкид", + [ + "багатокутник", + "Зірка", + "Спіраль", + "Квадратний" + ], + [ + "Радіус кутів", + "Внутрішній радіус" + ] + ], + [ + "Колір", + [ + "Немає", + "Червоний", + "Оранжевий", + "Жовтий", + "Зелений", + "Синій", + "Фіолетовий", + "Сірий", + "Білий", + "Прозорий", + "Чёрный", + "Ціан", + "Маджента", + "Нейтральний" + ], + "Усього", + "Абсолютний", + "Зберігати свічення" + ], + [ + "Тінь", + "Внутрішня тінь", + "Зовнішнє сяйво", + "Внутрішнє сяйво", + "Тиснення", + "Накладання кольору", + "Накладання градієнта", + "Накладання візерунком", + "Атлас", + "Обведення", + "Параметри накладання", + "Вибрати пікселі" + ], + [ + "Форма наконечника", + "Динаміка наконечника", + "Точкова", + "Динаміка кольору", + [ + "Коливання розміру", + "Мінімальний діаметр", + "Коливання кута", + "Коливання заокругленості", + "Мінімальна заокругленість" + ], + [ + "Коливання розташування", + "Кількість", + "Кількість коливань" + ], + [ + "Коливання Переднього плану/Тла", + "Коливання відтінку", + "Коливання насиченості", + "Коливання яскравості" + ], + [ + "Виберіть джерело клонування, тримаючи Alt (або K) та клацаючи на зображення.", + "Позначте передній план з білим, тлом з чорним і невідомою областю з сірим.", + "Шар не можна редагувати.", + "Спочатку шар тексту потрібно растеризованим", + "Спочатку смарт-об'єкт потрібно растеризованим", + "Виберіть кілька шарів", + "Випрямити шар", + "Спочатку відкрийте документ.", + "Спочатку закрийте поточне вікно.", + "Лише поточний інструмент" + ], + [ + "Записувати", + "Новий набір дій", + "Нові дії" + ], + [ + "Контроль непрозорості натиском на планшет", + "Контроль розміру натиском на планшет" + ], + [ + "Звичайний", + "Розчинення", + "Затемнення", + "Множення", + "Затемнення основи", + "Лінійний затемнювач", + "Темніший колір", + "Заміна світлим", + "Екран", + "Освітлення основи", + "Лінійне освітлення", + "Світліший колір", + "Накладання", + "Розсіяне світло", + "Направлене світло", + "Живе світло", + "Лінійне світло", + "Точкове світло", + "Жорстке змішування", + "Різниця", + "Виключення", + "Відняти", + "Розділення", + "Колірний тон", + "Насиченість", + "Колір", + "Свічення", + "Пропускання" + ] + ], + [ + "Інтерліньяж", + "Трекінг", + "Базова лінія", + [ + "Перетворити на точковий текст", + "Перетворити на текст з абзацами" + ] + ], + [ + "Усі шари", + "Поточний шар", + "Виділення", + "Поточний та нижче" + ], + [ + "Замінити", + "Об'єднати", + "Відняти", + "Перетин", + "Виключити", + "Об'єднати" + ], + [ + [ + "Лінійний", + "Радіальний", + "Кут", + "Відбитий", + "Ромб", + "Форма вибух" + ], + [ + "М'якіше", + "Точно" + ], + [ + "Зовнішня рамка", + "Внутрішня рамка", + "Тиснення", + "Тиснення подушка", + "Ударний рельєф", + "Обведення ширина" + ], + [ + "Оптимізувати", + "Жорстке витісування", + "М'яке витісування", + "Плавність" + ], + [ + "Вгору", + "Вниз" + ], + [ + "Ззовні", + "По центру", + "Усередині", + "Від центру" + ], + [ + "Тіні", + "Напівтони", + "Світлі тони" + ], + [ + "Знебарвлення", + "Наситити" + ], + [ + "Малий", + "Середній", + "Великий" + ], + [ + "Наконечники", + "Кути", + "Тире" + ] + ], + [ + "Виберіть об'єкт під курсором", + "Керування трансформацією", + "Піксел до піксела", + "Підібрати під розмір області", + [ + "Вирівняти ліві краї", + "Відцентрувати горизонтально", + "Вирівняти праві краї", + "Вирівняти верхні краї", + "Відцентрувати вертикально", + "Вирівняти нижні краї", + "Рівномірно влаштований" + ] + ], + [ + "Вставити в", + "Поточний проект", + "Новий проект", + "Роздільна здатність", + "Додано до поточного проекту.", + "Було створено новий проект.", + "Доступ до камери було заборонено." + ], + [ + "Орієнтація", + "Вигин", + "Горизонтальне спотворення", + "Вертикальне спотворення", + [ + "Горизональний", + "Вертикальний", + "горизонтально", + "вертикально" + ], + [ + "Немає", + "Дуга", + "Нижня Дуга", + "Верхня Дуга", + "Арка", + "Випуклість", + "Нижня Оболонка", + "Верхня Оболонка", + "Позначка", + "Хвиля", + "Риба", + "Підйом", + "Рибне Око", + "Опукла Лінза", + "Стиснення", + "Крутіння", + "Настроюваний" + ], + [ + "Шрифт", + "недоступний", + "Буде відмальовано за допомогою", + "Існує незбережена робота в", + "Ви дійсно хочете закрити його?" + ], + [ + "Обміняти Кольори", + "Стандартно: Білий та Чорний" + ] + ], + [ + "завантажено", + "додано", + "Переместити напрямну", + "Видалити напрямну", + "Додати напрямну", + "Завантаження", + "Завантажити VAR0" + ], + [ + "Галерея фільтрів", + [ + [ + "Пластика", + [ + "Розмазати", + "Реконструювати", + "Розгладжувати", + "Twirl", + "Стиснути", + "Надути", + "Переміщення ліворуч", + "Заморозити", + "Розморозити" + ] + ], + [ + "Корекція лінз об'єктива" + ] + ], + "Розмивання", + [ + "Середнє значення", + "Розмивання", + "Розмити більше", + "Розмивання Квадратом", + "Розмивання Гауса", + "Розмивання при малій глибині різкості", + "Розмивання в Русі", + "Радіальне Розмиття", + "Розмивання за Фігурою", + "\"Розумне\" Розмивання", + "Розмивання по Поверхні" + ], + "Спотворення", + [ + "Зміщення", + "Стискання", + "Полярні координати", + "Брижі", + "Нахил", + "Сферизація", + "Wave" + ], + "Шум", + [ + "Додати Шум", + "Ретуш", + "Пил та Подряпини", + "Медіана" + ], + "Оформлення", + [ + "Півтон кольору", + "Кристалізувати", + "Грань", + "Фрагмент", + "Меццо-тінто", + "Мозаїка", + "Пуантілізм" + ], + "Відмалювати", + [ + "Хмари", + "Хмари з накладанням", + "Відблиски" + ], + "Посилити різкість", + [ + "Посилити різкість", + "Посилити різкість країв", + "Ще Посилити різкість", + "\"Розумна\" Різкість", + "Контурна Різкість" + ], + "Стилізувати", + [ + "Діффузія", + "Тиснення", + "Видавлення", + "Виявлення Контурів", + "Масляна фарба" + ], + "Інше", + [ + "Власна", + "Фільтр верхніх частот", + "Максимум", + "Мінімум", + "Зсув", + "Повторити" + ], + [ + "Невизначений Район", + "Встановити як Прозорий", + "Повторити пікселі краю", + "Огортання", + "Останній фільтр", + "Перегляд" + ] + ], + [ + "Шаблони", + [ + "Фільтр шрифтів", + "Ключові слова", + "Випадкові" + ], + [ + "З символами", + "З фото" + ], + [ + "Мініатюри", + "Список" + ] + ] + ], + [ + [ + "קובץ", + "ערוך", + "תמונה", + "שכבה", + "תיקייה", + "בחר", + "מסנן", + "תצוגה", + "חלון", + "שפה", + "היכנס", + "צא", + "צור תרגום", + [ + "חשבון", + "תנאי שימוש", + "חזור", + "אודות", + "דיווח על שגיאה", + "למד" + ], + "עוד", + "נושא", + "השתמש בספריה מקוונת", + [ + "Photopea: עורך תמונות מתקדמות", + "מערכת באינטרנט לעריכת קבצים מסוג PSD, XCF, Sketch, XD, CRR", + "צור תמונה חדשה או פתח קבצים קיימים מהמחשב שלך. שמור את עבודתך כ- PSD (קובץ - שמור כ- PSD) או כ- JPG / PNG / SVG (קובץ - ייצוא).", + "הצע פיצ'רים חדשים ב שלנו או ב<פייסבוק>. המטרה שלנו היא ליצור את <עורך התמונות הזול והמתקדם ביותר>", + "הקישור של נותנים החסות ייפתח בחלון חדש", + null, + null + ] + ], + [ + "פתח", + "פרסם ברשת", + "שמור", + "שמור כקובץ PSD", + "הדפס", + "פתח מכתובת רשת", + "פתח מהמחשב שלך", + "התחבר עם גוגל דרייב", + "יצא כקובץ", + "ייצא שכבות", + "תסריט", + "פתח ומקם", + "סגור", + "אחסון מקומי", + null + ], + [ + "קדימה", + "אחורה", + "נקה", + "מלא", + "המר", + "סובב", + "הפוך VAR0", + "קנה מידה VAR0", + "לבטל", + "פרספקטיבה", + [ + "שילוב אוטומטי", + null + ], + "דהייה", + null + ], + "התאמות", + [ + "בהירות / ניגודיות", + "דרגות", + "עקומות", + "רמת חשיפה", + "חיוניות", + "גוון / רוויה", + "איזון צבע", + "שחור לבן", + "מסנן תמונה", + "מערבל ערוצים", + "חיפוש צבע", + "הפוך", + "פוסטריזציה", + "סף", + "מפת מעבר צבע", + "התאמת צבעים", + [ + "גוון אוטומטי", + "ניגודיות אוטומטית", + "צבע אוטומטי" + ], + "החלף צבע" + ], + [ + "גזור", + "העתק", + "הדבק", + "חדש", + "מחק", + "אפשר", + "השבת", + "העתק מאוחדים", + "החל", + "שוב", + "עדכן תוכנה" + ], + [ + "שכפל שכבה", + "שכבת התאמה חדשה", + "שורון סריקה", + "מסיכה וקטורית", + "הוסף (הראה הכול)", + [ + "הוסף (הסתר הכול)", + "הצג בחירה", + "הסתר בחירה", + "משקיפות" + ], + [ + "מסיכת חיתוך", + "מצב \"מסכה מהירה\"" + ], + "המר לעצם חכם", + "הפוך למפת סיביות", + "קבץ שכבות", + "מזג מטה", + "מזג מעלה", + [ + "מזג שכבות", + "שיטוח התמונה" + ], + "שכבה חדשה", + "אפשר מסיכת סיביות", + "בטל מסיכת סיביות", + "אפשר מסיכת וקטור", + "בטל מסיכת וקטור", + "אפשר מסיכת חיתוך", + "בטל מסיכת חיתוך", + "תיקייה חדשה", + "הוסף מסיכת סיביות", + "מחק מסיכת סיביות", + "הוסף מסיכת וקטור", + "בטל מסיכת וקטור", + "קשר מסיכת סיביות", + "נתק מסיכת סיביות", + "חבר מסיכת וקטור", + "נתק מסיכת וקטור", + "אפשר אפקטי שכבה", + "השבת אפקטי שכבה", + "מחק שכבה", + "שינוי שקיפות שכבה", + "שינוי ערבוב", + "הפוך שכבת סגנון לפיקסלים", + "סדר שכבות", + [ + "יצירת אובייקט חכם", + "עדכון אובייקט חכם", + "הצבת אובייקט חכם", + "מקור (אוביקט חכם)", + null + ], + "שינוי שם", + "שינוי צבע", + "ערוך שכבת התאמה", + "המר לצורה", + "אפשר מסיכת פילטר", + "בטל מסיכת פילטר", + "אפשר מסננים חכמים", + "השבת מסננים חכמים", + "הוסף מסיכת פילטר", + "מחק מסיכת פילטר", + "נקה מסננים חכמים", + [ + [ + "מילוי צבע אחיד", + "מילוי הדרגתי", + "מילוי דוגמה", + "מבוסס-תוכן" + ], + "שכבת מילוי חדשה", + "שנה שכבת מילוי" + ], + "שכבה דרך העתקה", + "מסיכת פילטר", + "מחק שכבת סגנון", + "הזז פילטר חכם", + "מחק פילטר חכם", + [ + "קשר שכבות", + "בטל קישור שכבות" + ], + "סדר", + [ + "העבר לקדמה", + "העבר קדימה", + "העבר אחורה", + "העבר לרקע" + ], + [ + "שכבה נעולה.", + "נעל שינויים", + null + ], + "sdf" + ], + [ + "הכל", + "בטל בחירה", + "הפוך בחירה", + "שנה", + "הרחב", + "צמצם", + "נוצה", + "הזז בחירה", + "טווח צבעים", + "גבול", + "הזז בחירה", + "לטש קצוות", + "אחה בחירה", + null + ], + [ + "הגדל", + "הקטן", + "קווי עזר", + "סרגלים", + "רשת", + "צלם", + "צלם אל", + "גבולות מסמך", + "רשת פיקסלים", + "שבילים", + "דבק לפיקסל", + [ + "פרוסות", + "הגדרות חיתוך" + ], + "הצג" + ], + [ + "היסטוריה", + "שכבות", + "מאפיינים", + "מברשת", + "אות", + "פסקה", + "מידע", + "מרכיבי שכבה", + "דוגמיות", + "פעולות", + "היסטוגרמה", + "הניווט", + null, + null + ], + [ + "כלי מברשת", + "כלי שכפול", + "כלי גזירה", + "כלי מחק", + "בחירה אליפטית", + "טפטפת", + "כלי גרדיאנט", + "כלי יד", + "כלי דפוס", + "בחירת לאסו", + "בחירת לאסו מגנטי", + "כלי הזזה", + "מטה הקסם", + "כלי דלי צבע", + "בחירת לאסו פוליגוני", + "בחירה מלבנית", + "שינוי חופשי", + "זכוכית מגדלת", + "כלי עירפול", + "כלי חידוד", + "כלי מריחה", + "כלי הבהרה", + "כלי שריפה", + "כלי ספוג", + "כלי מברשת איחוי כתמים", + "כלי מברשת איחוי", + "כלי טלאי", + "בחירת נתיב", + "בחירה ישירה", + "עט", + "עט חופשי", + "צורה מותאמת אישית", + "מרובע", + "אליפסה", + "צורה פרמטרית", + "קו", + "סרגל", + "בחירה מהירה", + "עפרון", + "חתך פרספקטיבה", + "כלי פריסה", + "כלי בחירת פריסה", + "החלפת צבעים", + "כלי עיניים אדומות", + "בחירת אוביקט", + "מחק רקע", + null, + null, + "asdasf", + null + ], + [ + "צלם תמונה", + "בוחר צבע", + "עורך קו מתאר", + "גודל בד ציור", + "שכפל לתוך ...", + "עורך גרדיאנט", + "סגנון שכבה", + "מיזם חדש", + "שמור עבור הצגה ברשת", + "עוות", + "גודל תמונה", + "הפוך מפת סיביות לוקטור", + [ + "קיטום", + "חתוך", + null + ], + "קיצורי מקלדת", + "הוסף מדריכים", + [ + null, + null + ] + ], + [ + "שקיפות", + "אפקטים", + "בהירות", + [ + "ניגודיות", + null + ], + "ערוץ", + "חשיפה", + "היסט", + "תיקון גמא", + "גוון", + "רוויה", + "בהירות", + "צבע", + "טווח", + "חיוניות", + [ + "גודל", + "אינטרפולציה", + "השכן הקרוב", + "ביליניארית" + ], + "זווית", + "עגלגלות", + "קשיות", + "ריווח", + [ + "סגנון ערבוב", + "ערבב אם" + ], + "גודל דגימה", + "קונטור", + "סגנון", + [ + "הפוך", + null, + null + ], + "סבילות", + "רציף", + "מלא", + "השתמש בזווית גלובלית", + "מרחק", + "פרוס", + "רעש", + "הפל את הצל", + "טכניקה", + "כיוון", + "עומק", + "ריכוך", + "מצב", + "גרדיאנט", + "קנה מידה", + "יישר בהתאם לשכבה", + "מיקום", + "רוחב", + "גובה", + "יעד", + "הקלד", + "רקע קדמי", + "רקע", + "התאמה אישית", + "שם", + "צור", + "תבנית", + "שמור יחס רוחב גובה", + [ + "איכות", + "דפים" + ], + "שכפל", + "הזז", + "מסננים חכמים", + "מחוג", + "כמות", + "תפרוסת", + [ + "אחד", + "פרוס" + ], + "חד גוני", + "גודל תא", + "דוגמה", + "זרימה", + "חוזק", + "הגן על פרט", + "סוג מילוי", + "מרקם", + "ריצוד", + "קצה", + "מקור", + "יעד", + "ערוצים", + "מסיכה", + "צפיפות", + "מיושר", + [ + "שביל", + "צורה", + "פיקסלים", + "אינצ'ים", + "סנטימטרים", + "מילימטרים", + "אחוזים" + ], + "צורות", + "צדדים", + "העדפות", + [ + "אורך", + "יחס", + "הכול", + "סוג תשבוץ", + "יסומטרי", + "דבק תשבוץ", + "יחידות מידה" + ], + "הפחת רעש", + "צבעים", + "מרחקים", + "דרג", + "בחר אוטומטית", + "מצא", + "הגדר חדש", + [ + "תמונה", + "מסך", + "נייד", + "פרסומות", + "הדפס" + ], + [ + "חינם", + "יחס קבוע", + "גודל קבוע" + ], + "עזרה", + [ + "צורות חיות", + "ערוך צורות חיות", + "אותם רדיוסים" + ], + "רמת טשטוש", + [ + "פוליגון", + "כוכב", + "ספירלי", + "מרובע" + ], + [ + "רדיוס פינה", + "רדיוס פנימי" + ] + ], + [ + "צבע", + [ + "כלום", + "אדום", + "כתום", + "צהוב", + "ירוק", + "כחול", + "סגול", + "אפור", + "לבן", + "שקוף", + "שחור", + "תכלת", + "מגנטה", + "ניטראלי" + ], + "סך הכל", + "אבסולוטי", + "שמור בהירות" + ], + [ + "הטל צל", + "צל פנימי", + "זוהר חיצוני", + "זוהר פנימי", + "שפוע ו הבלטה", + "כיסוי צבע", + "כיסוי הדרגתי", + "כיסוי תבנית", + "סאטן", + "משיכת קולמוס", + "אפשרויות מיזוג", + null + ], + [ + "צורת חוד", + "דינמיקות קצה", + "פיזור", + "דינמיקות צבע", + [ + "ריצוד גודל", + "קוטר מזערי", + "ריצוד זווית", + "ריצוד עגלגלות", + "עגלגלות מזערית" + ], + [ + "ריצוד מיקום", + "מספר", + "ריצוד מספר פריטים" + ], + [ + "ריצוד צבע רקע/צבע חזית", + "ריצוד גוון", + "ריצוד רוויה", + "ריצוד בהירות" + ], + [ + "בחר מקור לשכפול על ידי החזקת מקש Alt ולחיצה על התמונה", + "סמן רקע קדמי בלבן, רקע אחורי בשחור ואזור לא ידוע באפור", + "שכבה אינה ניתנת לעריכה", + "עליך קודם להפוך את שכבת הטקסט לפיקסלים", + "עליך קודם להפוך את האובייקט החכם לפיקסלים", + "בחר שכבות מרובות", + "ישר שכבה", + "קודם יש לפתוח קובץ", + "סגור חלון זה קודם", + "רק לכלי נוכחי" + ], + [ + "הקלט", + null, + "פעולה חדשה" + ], + [ + null, + null + ], + [ + "רגיל", + "Dissolve", + "Darken", + "Multiply", + "Color Burn", + "Linear Burn", + "Darker Color", + "Lighten", + "Screen", + "Color Dodge", + "Linear Dodge", + "Lighter Color", + "Overlay", + "Soft Light", + "Hard Light", + "Vivid Light", + "Linear Light", + "Pin Light", + "Hard Mix", + "Difference", + "Exclusion", + "Subtract", + "Divide", + "Hue‏‏", + "Saturation", + "Color", + "Luminosity", + "Pass Through" + ] + ], + [ + "מרווח אנכי בין שורות", + "מרווח בין תווים בשורה", + "הזחה של קו הבסיס", + [ + null, + null + ] + ], + [ + "כל השכבות", + "שכבה נוכחית", + "בחירה", + "שכבה נוכחית ומתחתיה" + ], + [ + "החלף", + "איחוד", + "הבדל", + "הצטלבות", + "או' בררני'", + "מזג" + ], + [ + [ + "קווי", + "מחוגי", + "זווית", + "משתקף", + "צורת יהלום", + "התפרצות צורה" + ], + [ + "רך יותר", + "מדויק" + ], + [ + "שיקוע חיצוני", + "שיקוע פנימי", + "תבליט", + "הבלטת כרית", + "הבלטה קווית", + null + ], + [ + "החלק", + "מפסלת קשה", + "מפסלת רכה", + "חלקות" + ], + [ + "מעלה", + "מטה" + ], + [ + "חוץ", + "מרכז", + "פנים", + "ממרכז" + ], + [ + "צללים", + "גווני ביניים", + "אזורי האור" + ], + [ + "הפחתת רוויה", + "רוויה" + ], + [ + "קטן", + "בינוני", + "גדול" + ], + [ + null, + "פינות", + null + ] + ], + [ + "בחר את העצם תחת הסמן", + "בקרי שינוי צורה", + "הגדלה לגודל אמיתי", + "התאם את השטח", + [ + "יישור לקצוות השמאליים", + "יישור לאמצע אופקי", + "יישור לקצוות ימניים", + "יישר לקצה העליון", + "יישר למרכז", + "יישור לקצה תחתון", + "ריווח שווה" + ] + ], + [ + "הדבק אל", + "מיזם נוכחי", + "מיזם חדש", + "כושר אבחנה", + "התווסף אל המיזם הנוכחי.", + "מיזם חדש נוצר", + "גישה אל המצלמה נדחתה" + ], + [ + "כיוון", + "כופף", + "עיוות אופקי", + "עיוות אנכי", + [ + "אופקי", + "אנכי", + "אופקית", + "אנכית" + ], + [ + "כלום", + "קשת", + "קשת תחתונה", + "קשת עליונה", + "קשת", + "בליטה", + "צדפה תחתונה", + "צדפה עליונה", + "דגל", + "גל", + "דג", + "עלייה", + "עין הדג", + "נפח", + "מחץ", + "סיבוב", + "מותאם אישית" + ], + [ + "גופן", + "אינו זמין", + "יעובד באמצעות", + null, + "בטוח שברצונך לסגור?" + ], + [ + "החלפת צבעים", + "ברירת מחדל: לבן ושחור" + ] + ], + [ + "טעון", + "נוסף", + "הזז קו עזר", + "הסר קו עזר", + "הוסף קו עזר", + "טעינה", + "טען VAR0" + ], + [ + "גלריית פילטרים", + [ + [ + "נזילות", + [ + "מריחה", + "שחזור", + "החלק", + "סחרור", + "כיווץ", + "ניפוח", + "דחיפה ימינה", + "הקפאה", + "ביטול הקפאה" + ] + ], + [ + "תיקון עדשות" + ] + ], + "טשטוש", + [ + "ממוצע", + "טשטש", + "טשטש עוד", + "טשטוש קופסה", + "טשטוש מתפרש", + "טשטוש עדשה", + "טשטוש תנועה", + "טשטוש מחוגי", + "טשטש צורה", + "טשטוש חכם", + "טשטש משטח" + ], + "עוות", + [ + null, + null, + null, + null, + null, + null, + "גל" + ], + "רעש", + [ + "הוסף רעש", + "הסר כתמים", + "אבק ושריטות", + "חציון" + ], + "פקסל", + [ + null, + null, + null, + "קטע", + "מצוטינט", + "פסיפס", + "הפוך לנקודות" + ], + "עבד", + [ + "עננים", + null, + null + ], + "חדד", + [ + "חדד", + "חדד קצוות", + "חדד עוד", + "חידוד חכם", + "מסיכה ללא חידוד" + ], + "סגנן", + [ + null, + null, + null, + "מצא קצוות", + null + ], + "אחר", + [ + "התאמה אישית", + null, + "מקסימום", + "מינימום", + "היסט", + null + ], + [ + "אזור לא מוגדר", + "קבע כשקוף", + null, + "עטוף סביב", + "סינון אחרון", + "תצוגה מקדימה" + ] + ], + [ + "תבניות", + [ + "מסנן גופן", + "מילות מפתח", + "אקראי" + ], + [ + "עם סמלים", + "עם תמונה" + ], + [ + "תמונות ממוזערות", + "רשימה" + ] + ] + ], + [ + [ + "Datoteka", + "Uređivanje", + "Slika", + "Sloj", + "Mapa", + "Odabir", + "Filter", + "Prikaz", + "Prozor", + "Jezik", + "Prijava", + "Odjava", + "Stvori prijevod", + [ + "Račun", + "Uvjeti korištenja", + "Natrag", + "O aplikaciji", + "Prijavite pogrešku", + "Nauči se" + ], + "Ostalo", + "Tema", + "Koristi WebGL", + [ + "Photopea: napredni uređivač slika", + "Besplatni online urednik koji podržava PSD, XCF, Sketch, XD i CDR formate.", + "Izradite novu sliku ili otvorite postojeće datoteke s računala. Spremite svoj rad kao PSD (Datoteka - Spremi kao PSD) ili kao JPG / PNG / SVG (Datoteka - Izvezi kao).", + "Predložite nove značajke na našim ili . Naš je cilj stvoriti .", + "Sponzorske veze otvorene u novom prozoru.", + null, + null + ] + ], + [ + "Otvori", + "Objavi", + "Spremi", + "Spremi kao PSD", + "Ispis", + "Otvori URL", + "Učitati s računala", + "Poveži s Google Drive", + "Izvezi kao", + "Izvezi slojeve", + "Skripta", + "Otvori i Postavi", + "Zatvori", + "Lokalne pohrane", + null + ], + [ + "Korak naprijed", + "Korak natrag", + "Očisti", + "Ispuna", + "Transformacija", + "Okreni", + "Okrenite VAR0", + "Skaliranje VAR0", + "Poništi / Ponovi", + "Perspektiva", + [ + "Automatski miješaj", + null + ], + "Izblijedjeti", + null + ], + "Prilagođavanja", + [ + "Svjetlost/Kontrast", + "Razine", + "Krivulje", + "Ekspozicija", + "Živost boja", + "Nijansa / Zasićenje", + "Balans boje", + "Crno i bijelo", + "Filter fotografije", + "Mikser kanala", + "Pronalaženje boja", + "Obrni", + "Posteriziraj", + "Prag", + "Karta gradijenta", + "Selektivna boja", + [ + "Automatski ton", + "Automatski kontrast", + "Automatska boja" + ], + "Zamijeni boju" + ], + [ + "Izreži", + "Kopiraj", + "Zalijepi", + "Novo", + "Izbriši", + "Omogući", + "Onesposobiti", + "Kopiraj stopljeno", + "Primjeni", + "Ponovi radnju", + "Ažuriraj" + ], + [ + "Dupliciraj sloj", + "Novi podešavajući sloj", + "Rasterska maska", + "Vektorska maska", + "Dodaj (Prikaži sve)", + [ + "Dodaj (Sakrij sve)", + "Otkrij odabir", + "Sakrij odabir", + "Od transparentnosti" + ], + [ + "Maska isječka", + null + ], + "Pretvori u Pametni Objekt", + "Rasteriziraj", + "Grupiraj slojeve", + "Spoji donje", + "Spoji gornje", + [ + "Spoji slojeve", + "Spoji sve slojeve" + ], + "Novi sloj", + "Omogući rastersku masku", + "Onesposobiti rastersku masku", + "Omogući vektorsku masku", + "Onesposobiti vektorsku masku", + "Omogući masku isječka", + "Onesposobiti masku isječka", + "Nova mapa", + "Dodaj rastersku masku", + "Izbriši rastersku masku", + "Dodaj vektorsku masku", + "Izbriši vektorsku masku", + "Poveži rastersku masku", + "Prekini vezu rastersku masku", + "Poveži vektorsku masku", + "Prekini vezu vektorsku masku", + "Omogući efekte sloja", + "Onesposobiti efekte sloja", + "Izbriši sloj", + "Promjena providnosti sloja", + "Promjena Miješanja", + "Rasteriziraj stil sloja", + "Redoslijed slojeva", + [ + "Stvaram Pametni Objekt", + "Osvježavam Pametni Objekt", + "Postavljam Pametni Objekt", + "Izvor (Pametni Objekt)", + null + ], + "Promjena imena", + "Promjena Boje", + "Uredi sloj za postavke", + "Pretvori u Oblik", + "Omogući masku filtera", + "Onesposobiti masku filtera", + "Omogući pametne filtere", + "Onesposobiti pametne filtere", + "Dodaj masku filtera", + "Obriši masku filtera", + "Očisti pametne filtere", + [ + [ + "Ispunjenje punom bojom", + "Popuna gradijentom", + "Ispunjenje uzorkom", + "Svijest o sadržaju" + ], + "Novi sloj popune", + "Uredi sloj popune" + ], + "Sloj preko kopiranja", + "Maska filtera", + "Obriši stil sloja", + "Pomakni pametni filter", + "Izbriši pametni filter", + [ + "Poveži slojeve", + "Prekini vezu slojeve" + ], + "Posloži", + [ + "Pomakni na vrh", + "Pomakni naprijed", + "Pomakni nazad", + "Pomakni na kraj" + ], + [ + "Ovaj sloj je zaključan.", + "Zaključaj promjenu", + null + ], + null + ], + [ + "Sve", + "Odznači", + "Inverzija", + "Promjeni", + "Proširi", + "Suzi", + "Pero", + "Pomjeri označeno", + "Raspon Boja", + "Rub", + "Preobrazi označeno", + "Poboljšaj Rub", + "Zaliječi označeno", + null + ], + [ + "Približi", + "Udalji", + "Vodiči", + "Ravnala", + "Mreža", + "Poravnaj", + "Poravnaj s", + "Granice Dokumenta", + "Mreža piksela", + "Putanje", + "Poravnaj s piksele", + [ + "Kriške", + null + ], + null + ], + [ + "Povijest", + "Slojevi", + "Prilagodi", + "Četka", + "Znak", + "Paragraf", + "Informacije", + "Kompozicije sloja", + "Színtár", + "Radnje", + "Histogram", + "Navigator", + "Konfiguracija alata", + null + ], + [ + "Četka", + "Alat za kloniranje", + "Alat za obrezivanje", + "Alat za brisanje", + "Odabir elipse", + "Kapaljka", + "Alat za gradijent", + "Ruka (slobodno pomjeranje)", + "Tekst", + "Laso", + "Magnetni laso", + "Pomicanje", + "Magični štapić", + "Kantica s bojom", + "Poligonalni laso odabir", + "Pravokutni odabir", + "Slobodna transformacija", + "Zumiranje", + "Zamagljivanje", + "Izoštravanje", + "Razmazivanje", + "Alat za zatamnjivanje", + "Alat za posvjetljavanje", + "Spužva", + "Liječenje mrlje", + "Četka za liječenje", + "Alat za krpanje", + "Odabir staze", + "Direktni odabir", + "Kemijska", + "Slobodna kemijska", + "Prilagođen oblik", + "Pravokutnik", + "Elipsa", + "Parametarski oblik", + "Linija", + "Ravnalo", + "Brzi odabir", + "Olovka", + "Obrezivanje perspektive", + "Alat za kriške", + "Alat za odabir kriške", + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "Snimite fotografiju", + null, + "Uređivač obrisa", + "Veličina radne površine", + "Napravi kopiju", + "Uređivač gradijenta", + "Stil sloja", + "Novi Projekt", + "Spremi za web", + "Iskrivi", + "Veličina slike", + "Vektoriziraj bitnu mapu", + [ + "Skrati", + "Usjev", + null + ], + "Tipkovničke Prečice", + "Dodaj vodiče", + [ + null, + null + ] + ], + [ + "Providnost", + "Efekti", + "Svjetlost", + [ + "Kontrast", + "Koristi kompatibilnost" + ], + "Kanal", + "Ekspozicija", + "Ofset", + "Gama ispravak", + "Nijansa", + "Zasićenost", + "Svjetlina", + "Kolorizacija", + "Domet", + "Živost boja", + [ + "Veličina", + "Interpolacija", + "Najbližeg susjeda", + "Bilinearna" + ], + "Kut", + "Oblina", + "Tvrdoća", + "Razmaci", + [ + "Vrsta Miješanja", + "Izmješaj ako" + ], + "Veličina uzorka", + "Kontura", + "Stil", + [ + "Preokreni", + "Relativno", + "Sidro" + ], + "Tolerancija", + "Granični", + "Ispuniti", + "Koristi globalni kut", + "Udaljenost", + "Proširi", + "Šum", + "Izbaci padnu sjenu", + "Tehnika", + "Smjer", + "Dubina", + "Ublaži", + "Način", + "Gradijent", + "Skala", + "Poravnaj sa slojem", + "Pozicija", + "Širina", + "Visina", + "Destinacija", + "Vrsta", + "Prvi plan", + "Pozadina", + "Prilagođeno", + "Naziv", + "Stvori", + "Format", + "Zadrži Omjer", + [ + "Kvaliteta", + "Stranice" + ], + "Napravi duplikat", + "Pomjeri", + "Pametni filtri", + "Radius", + "Količina", + "Raspodjela", + [ + "Jednolično", + "Gaussov" + ], + "Monokromatski", + "Veličina Ćelije", + "Uzorak", + "Tok", + "Snaga", + "Zaštiti detalj", + "Vrsta ispune", + "Tekstura", + "Nervoza", + "Rub", + "Izvor", + "Cilj", + "Kanali", + "Maska", + "Gustoća", + "Poravnanje", + [ + "Put", + "Oblik", + "Pikseli", + "Inči", + "Centimetri", + "Milimetri", + "Procenat" + ], + "Oblici", + "Strane", + "Postavke", + [ + "Dužina", + "Omjer", + "Bilokoji", + "Vrsta mreže", + "Izometrijska", + "Veličina mreže", + "Jedinice ravnala" + ], + "Smanji šum", + "Boje", + "Udaljenosti", + "Stopa", + "Automatski odabir", + "Nađi", + "Definiraj novi", + [ + "Fotografija", + "Zaslon", + "Mobitel", + "Reklame", + "Štampanje" + ], + [ + "Slobodno", + "Fiksni omjer", + "Fiksna veličina" + ], + "Upomoć", + [ + "Živi Oblik", + "Uredi Živi Oblik", + "Isti radijusi" + ], + "Maljavost", + [ + "Poligon", + "Zvijezda", + "Spirala", + "Kvadrat" + ], + [ + "Radijus kuta", + "Unutarnji radijus" + ] + ], + [ + "Boja", + [ + "Ništa", + "Crvena", + "Narančasta", + "Žuta", + "Zelena", + "Plava", + "Ljubičasta", + "Siva", + "Bijela", + "Prozirno", + "Crna", + "Cijan", + "Magenta", + "Neutralna" + ], + "Sveukupna", + "Apsolutna", + "Zadrži luminoznost" + ], + [ + "Padna sjena", + "Unutarnja sjena", + "Vanjska sjena", + "Unutarnji sjaj", + "Nagib i klesanje", + "Overlay boja", + "Overlay gradijenta", + "Overlay uzorka", + "Saten", + "Zamah", + "Mogućnosti miješanja", + "Izaberi piksele" + ], + [ + "Oblik ruba", + "Dinamičnost ruba", + "Rasprši", + "Dinamičnosti boja", + [ + "Vibracija veličine", + "Minimalni promjer", + "Vibracija ugla", + "Vibracija obline", + "Minimalna oblina" + ], + [ + "Vibracija položaja", + "Zbroj", + "Vibracija broja" + ], + [ + "Vibracija prednje strane i pozadine", + "Vibracija boje", + "Vibracija zasićenosti", + "Vibracija svjetlosti" + ], + [ + "Odaberite izvor klonova tako da držite Alt (ili K) i kliknete na sliku.", + "Označite prednji plan s bijelom, pozadinom s crnom, a nepoznato područje sa sivom.", + "Sloj se ne može uređivati.", + "Tekstni sloj mora biti prvo rasteriziran", + "Pametni Objekt mora biti prvo rasteriziran", + "Odaberite više slojeva", + "Poravnajte sloj", + "Najprije otvorite dokument.", + "Najprije zatvorite trenutnu prozor.", + "Samo trenutni alat" + ], + [ + "Snimi", + "Novi skup radnji", + "Nova radnja" + ], + [ + "Kontrole neprozirnosti za pritisak olovke", + "Kontrole veličine za pritisak olovke" + ], + [ + "Normalno", + "Razlaganje", + "Potamnjivanje", + "Umnožavanje", + "Gorenje boje", + "Linearno gorenje", + "Tamnija boja", + "Posvjetljivanje", + "Ekran", + "Izbjegavanje boje", + "Linearno izbjegavanje", + "Lakša boja", + "Prekrivka", + "Meko svjetlo", + "Teško svjetlo", + "Živahno svjetlo", + "Linearno svjetlo", + "Lagano pribosti", + "Tvrda mješavina", + "Razlika", + "Isključenje", + "Oduzeti", + "Podijeliti", + "Nijansa", + "Zasićenje", + "Boja", + "Luminoznost", + "Proći kroz" + ] + ], + [ + "Vodeće", + "Praćenje", + "Osnovna smjena", + [ + "Pretvori u tekst točke", + "Pretvori u tekst odlomka" + ] + ], + [ + "Ukupni sadržaj", + "Trenutni sloj", + "Odabir", + "Trenutačno & Ispod" + ], + [ + "Zamijeni", + "Ujedini", + "Razlika", + "Presjek", + "XOR", + "Spoji" + ], + [ + [ + "Linearno", + "Radijalno", + "Kut", + "Odraženo", + "Dijamant", + "Prasak oblika" + ], + [ + "Mekše", + "Precizno" + ], + [ + "Vanjski nagib", + "Unutarnji nagib", + "Reljef", + "Uzglavni reljef", + "Udarni reljef", + "Širina linije" + ], + [ + "Glatkost", + "Teško izdubi", + "Lagano izdubi", + "Glatkost" + ], + [ + "Gore", + "Dole" + ], + [ + "Vani", + "Sredina", + "Unutrašnjost", + "Iz centra" + ], + [ + "Sjenke", + "Srednji tonovi", + "Naglasci" + ], + [ + "Manje zasićenje", + "Zasićenje" + ], + [ + "Mali", + "Srednji", + "Veliki" + ], + [ + "Nastavci", + "Kutovi", + "Crtice" + ] + ], + [ + "Odaberi objekt ispod kursora", + "Kontrole transformacije", + "Piksel do piksela", + "Ispuni površinu", + [ + "Poravnaj lijeve rubove", + "Centriraj horizontalno", + "Poravnaj desne rubove", + "Poravnaj gornje rubove", + "Centriraj vertikalno", + "Poravnaj donje rubove", + "Jednake praznine" + ] + ], + [ + "Umetnuti u", + "Trenutni projekat", + "Novi Projekt", + "Rezolucija", + "Dodano u trenutni projekat", + "Novi projekt je stvoren.", + "Pristup kameri odbijen." + ], + [ + "Orijentacija", + "Iskrivi", + "Horizontalno iskrivljenje", + "Vertikalno iskrivljenje", + [ + "Horizontalno", + "Vertikalno", + "horizontalno", + "vertikalno" + ], + [ + "Ništa", + "Luk", + "Donji luk", + "Gornji luk", + "Luk", + "Izbočina", + "Donja ljuska", + "Gornja ljuska", + "Zastava", + "Val", + "Riba", + "Uspon", + "Riblje Oko", + "Napuhati", + "Iscijediti", + "Uviti", + "Prilagođeno" + ], + [ + "Font", + "nije dostupno", + "Izvršiti će se pomoću", + "Neki radovi nisu spremljeni u", + "Želite li ga doista zatvoriti?" + ], + [ + "Razmijeni boje", + "Zadano: bijelo i crno" + ] + ], + [ + "učitano", + "Dodano", + "Vodič za pomicanje", + "Vodič za brisanje", + "Vodič za dodavanje", + "Učitavanje", + "Učitaj VAR0" + ], + [ + "Filtriraj galeriju", + [ + [ + "Otopiti", + [ + "Zamrljati", + "Rekonstruirati", + "Izgladiti", + "Vrtložiti", + "Umanji", + "Napuhnuti", + "Gurni lijevo", + "Zamrzni", + "Odmrzni" + ] + ], + [ + "Korekcija objektiva" + ] + ], + "Zamagli", + [ + "Prosječno", + "Zamagliti", + "Zamagli više", + "Kvadratno zamagljivanje", + "Gaussovo zamagljivanje", + "Objektivno zamagljivanje", + "Pokretno zamagljivanje", + "Radijalno zamaglivanje", + "Oblikovno zamagljivanje", + "Pametno zamagljivanje", + "Površno zamagljivanje" + ], + "Izobličavanje", + [ + "Premještanje", + "Stegnuti", + "Polarne koordinate", + "Valovito", + "Smicanje", + "Sfera", + "Val" + ], + "Šum", + [ + "Dodaj šum", + "Smanji efekt pjega", + "Prašina i ogrebotine", + "Srednja linija" + ], + "Pikselizacija", + [ + "Poluton boja", + "Kristalizacija", + "Aspekt", + "Fragmentiranje", + "Mecotinta", + "Mozaik", + "Efekt uboda" + ], + "Izvrši", + [ + "Oblaci", + "Razlika oblaci", + "Odsjaj sočiva" + ], + "Izoštriti", + [ + "Izoštri", + "Izoštri rubove", + "Izoštri više", + "Pametno izoštravanje", + "Smanji izoštrenost maske" + ], + "Podesiti prema stilu", + [ + "Difuzno", + "Reljef", + "Utiskivanje", + "Pronađi rubove", + null + ], + "Drugo", + [ + "Prilagođeno", + "Visina", + "Maksimum", + "Minimum", + "Ofset", + "Ponovi" + ], + [ + "Nedefinisano područije", + "Podesi da bude providno", + "Ponovi rubne piksele", + "Zamotavanje", + "Posljednji filter", + "Pregled" + ] + ], + [ + "Šabloni", + [ + "Font filteri", + "Ključne riječi", + "Nasumično" + ], + [ + "S simbolima", + "S fotografijom" + ], + [ + "Minijature", + "Popis" + ] + ] + ], + [ + [ + "Archivio", + "Modifica", + "Immagine", + "Livello", + "Cartella", + "Selezione", + "Filtro", + "Visualizza", + "Finestra", + "Lingua", + "Accedi", + "Disconnetti", + "Crea traduzione", + [ + "Account", + "Termini del Servizio", + "Indietro", + "Informazioni", + "Segnalare un bug", + "Apprendi" + ], + "Di più", + "Tema", + "Usa WebGL", + [ + "Photopea: editor di immagini avanzato", + "Editor online gratuito che supporta i formati PSD, XCF, Sketch, XD e CDR.", + "Crea una nuova immagine o apri i file esistenti dal tuo computer. Salva il tuo lavoro come PSD (File - Salva come PSD) o come JPG / PNG / SVG (File - Esporta come).", + "Suggerisci nuove funzionalità nel nostro o . Il nostro obiettivo è creare .", + "Link degli sponsor si aprono in una nuova finestra.", + "Questa funzione non è disponibile.", + "Installa Photopea" + ] + ], + [ + "Apri", + "Pubblica online", + "Salva", + "Salva come PSD", + "Stampa", + "Apri da URL", + "Apri da computer", + "Connetti a Google Drive", + "Esporta come", + "Esporta livelli", + "Script", + "Apri & posiziona", + "Chiudi", + "File locali", + null + ], + [ + "Passo avanti", + "Passo indietro", + "Pulisci", + "Riempi", + "Trasforma", + "Ruota", + "Inverti VAR0", + "Scala VAR0", + "Indietro / Rifai", + "Prospettiva", + [ + "Fusione automatica", + "Allineamento automatico" + ], + "Dissolvi", + "Applica immagine" + ], + "Aggiustamenti", + [ + "Luminosità/Contrasto", + "Livelli", + "Curve", + "Esposizione", + "Vibrance", + "Tinta/Saturazione", + "Bilanciamento del ceolor", + "Bianco e Nero", + "Filtro Fotografico", + "Mixer di canale", + "Ricerca Colore", + "Inverti", + "Posterizza", + "Soglia", + "Mappa sfumatura", + "Colore Selettivo", + [ + "Tono automatico", + "Contrasto automatico", + "Colore automatico" + ], + "Sostituzione Colore" + ], + [ + "Taglia", + "Copia", + "Incolla", + "Nuovo", + "Elimina", + "Abilita", + "Disabilita", + "Copia elementi uniti", + "Applica", + "Ancora", + "Aggiorna" + ], + [ + "Duplica livello", + "Nuovo Livello di aggiustamento", + "Maschera raster", + "Maschera vettoriale", + "Aggiungi (Mostra Tutto)", + [ + "Aggiungi (Nascondi Tutto)", + "Mostra selezione", + "Nascondi selezione", + "Da trasparenza" + ], + [ + "Maschera di ritaglio", + "Maschera veloce" + ], + "Converti in Oggetto Smart", + "Rendi in Bitmap", + "Raggruppa livelli", + "Unisce sotto", + "Unisce sopra", + [ + "Unisci livelli", + "Unico livello" + ], + "Nuovo livello", + "Abilita maschera raster", + "Disabilita maschera raster", + "Abilita maschera vettoriale", + "Disabilita maschera vettoriale", + "Abilita maschera di ritaglio", + "Disabilita maschera di ritaglio", + "Nuova Cartella", + "Aggiungi maschera raster", + "Elimina maschera raster", + "Aggiungi maschera vettoriale", + "Elimina maschera vettoriale", + "Collega maschera raster", + "Scollega maschera raster", + "Collega maschera vettoriale", + "Scollega maschera vettoriale", + "Abilita effetti del livello", + "Disabilita effetti del livello", + "Elimina livello", + "Cambia opacità livello", + "Cambia fusione", + "Rasterizza stile livello", + "Ordine livello", + [ + "Creazione Oggetto Smart", + "Aggiornamento Oggetto Smart", + "Posizionamento Oggetto Smart", + "Fonte (Oggetto Smart)", + "Metodo serie di immagini" + ], + "Cambia nome", + "Cambia Colore", + "Modifica Livello di aggiustamento", + "Converti in forma", + "Abilita maschera filtro", + "Disabilita maschera filtro", + "Abilita Filtri intelligenti", + "Disabilita filtri intelligenti", + "Aggiungi maschera filtro", + "Elimina maschera filtro", + "Pulisci filtri intelligenti", + [ + [ + "Riempimento di colore uniforme", + "Riempimento sfumatura", + "Riempimento pattern", + "In base al contenuto" + ], + "Nuovo Livello di riempimento", + "Modificare livello di riempimento" + ], + "Crea livello da copia", + "Maschera filtro", + "Elimina lo stile del livello", + "Muovi filtro intelligente", + "Elimina filtro intelligente", + [ + "Collega livelli", + "Scollega livelli" + ], + "Organizza", + [ + "Porta in cima", + "Porta avanti", + "Manda indietro", + "Manda in fondo" + ], + [ + "Questo livello è bloccato.", + "Cambia blocco", + "Blocca" + ], + null + ], + [ + "Tutto", + "Deseleziona", + "Inverso", + "Modifica", + "Espandi", + "Contrai", + "Sfuma", + "Sposta selezione", + "Intervallo colori", + "Contorno", + "Trasforma selezione", + "Migliora bordo", + "Correggi la selezione", + null + ], + [ + "Ingrandisci", + "Riduci", + "Guide", + "Righelli", + "Griglia", + "Attacca", + "Attacca a", + "Limiti del documento", + "Griglia pixel", + "Tracciati", + "Attacca a pixels", + [ + "Sezioni", + "Opzioni sezione" + ], + "Mostra" + ], + [ + "Cronologia", + "Livelli", + "Proprietà", + "Pennello", + "Carattere", + "Paragrafo", + "Info", + "Composizioni livelli", + "Campioni", + "Azioni", + "Istogramma", + "Navigazione", + "Strumenti predefiniti", + "Glifi" + ], + [ + "Strumento pennello", + "Strumento Clone", + "Strumento Ritaglia", + "Strumento Gomma", + "Seleziona ellittica", + "Contagocce", + "Strumento sfumatura", + "Strumento Mano", + "Strumento Font", + "Selezione con Lazo", + "Selezione con Lazo magnetico", + "Strumento Sposta", + "Bacchetta Magica", + "Strumento Secchiello", + "Seleziona con Lazo poligonale", + "Selezione rettangolare", + "Trasformazione libera", + "Strumento Zoom", + "Strumento Sfoca", + "Strumento Nitidezza", + "Strumento Sfumino", + "Strumento Scherma", + "Strumento Brucia", + "Strumento Spugna", + "Pennello correttivo al volo", + "Pennello correttivo", + "Strumento Toppa", + "Selezione tracciato", + "Selezione Diretta", + "Penna", + "Penna a mano libera", + "Forma Personale", + "Rettangolo", + "Punto Ellittico", + "Forma parametrica", + "Linea", + "Righello", + "Selezione rapida", + "Strumento matita", + "Ritaglio Prospettico", + "Sezione", + "Selezione sezioni", + "Sostituzione colore", + "Occhi Rossi", + "Selezione oggetti", + "Gomma per sfondo", + "Alterazione marionetta", + "Ruota vista", + "Scala in base al contenuto", + "Sposta in base al contenuto" + ], + [ + "Scatta una foto", + "Tavoletta Colori", + "Editor Contorni", + "Dimensione quadro", + "Duplica in ...", + "Editore sfumatura", + "Stile Livello", + "Nuovo progetto", + "Salva per il web", + "Altera", + "Dimensione immagine", + "Bitmap vettorizzata", + [ + "Rifila", + "Ritagliare", + "Mostra Tutto" + ], + "Scorciatoie da tastiera", + "Aggiungi guide", + [ + "Cancella guide", + "Guide dal livello" + ] + ], + [ + "Opacità", + "Effetti", + "Luminosità", + [ + "Contrasto", + "Usa la vecchia procedura" + ], + "Canale", + "Esposizione", + "Spostamento", + "Correzione Gamma", + "Tonalità", + "Saturazione", + "Luminosità", + "Colorare", + "Range", + "Vibrazione", + [ + "Dimensione", + "Interpolazione", + "Vicina più prossima", + "Bilineare" + ], + "Angolo", + "Rotondità", + "Durezza", + "Spaziatura", + [ + "Metodo fusione", + "Fondi se" + ], + "Dimensione di prova", + "Contorno", + "Stile", + [ + "Inverso", + "Relativo", + "Ancoraggio" + ], + "Tolleranza", + "Contiguo", + "Riempi", + "Usa angolo globale", + "Distanza", + "Propagazione", + "Rumore", + "Setta fuori ombra", + "Tecnica", + "Direzione", + "Profondità", + "Ammorbidire", + "Modalità", + "Sfumature", + "Scala", + "Allinea con livello", + "Posizione", + "Larghezza", + "Altezza", + "Destinazione", + "Tipo", + "Primopiano", + "Sfondo", + "Personale", + "Nome", + "Crea", + "Formato", + "Mantieni proporzioni", + [ + "Qualità", + "Pagine" + ], + "Duplica", + "Muovi", + "Filtri intelligenti", + "Raggio", + "Totale", + "Distribuzione", + [ + "Uniforma", + "Sfoca" + ], + "Monocromatico", + "Dimensione cella", + "Pattern", + "Flusso", + "Intensità", + "Protezione dettagli", + "Tipo di riempimento", + "Trama", + "Jitter", + "Margine", + "Fonte", + "Obbiettivo", + "Canali", + "Maschera", + "Densità", + "Allineato", + [ + "Tracciato", + "Forma", + "Pixels", + "Pollici", + "Centimetri", + "Millimetri", + "Percentuale" + ], + "Sfumature", + "Lati", + "Preferenze", + [ + "Lunghezza", + "Rapporto", + "Qualsiasi", + "Tipo di griglia", + "Isometrico", + "Distanza griglia", + "Unità righello" + ], + "Riduci rumore", + "Colori", + "Distanze", + "Velocità", + "Selezione-Automatica", + "Trova", + "Definisci nuovo", + [ + "Foto", + "Schermo", + "Dispositivo Mobile", + "Pubblicità", + "Stampa" + ], + [ + "Libero", + "Proporzione Fissa", + "Misura fissa" + ], + "Aiuto", + [ + "Forma Viva", + "Modifica Forma Viva", + "Stesso raggio" + ], + "Sfocatura", + [ + "Poligono", + "Stella", + "Spirale", + "Quadrato" + ], + [ + "Raggio d'Angolo", + "Raggio Interno" + ] + ], + [ + "Colore", + [ + "Vuoto", + "Rosso", + "Arancione", + "Giallo", + "Verde", + "Blu", + "Viola", + "Grigio", + "Bianco", + "Trasparente", + "Nero", + "Ciano", + "Magenta", + "Neutro" + ], + "Totale", + "Assoluto", + "Mantenere la Luminosità" + ], + [ + "Ombra", + "Ombra interna", + "Bagliore esterno", + "Bagliore interno", + "Smussatura e rilievo", + "Sovrapposizione colore", + "Sovrapposizione sfumatura", + "Sovrapposizione pattern", + "Satinato", + "Contorno", + "Opzioni di fusione", + "Seleziona pixels" + ], + [ + "Forma della punta", + "Dinamica della forma", + "Diffusione", + "Dinamica dei colori", + [ + "Regola dimensione", + "Diametro minimo", + "Regola angolo", + "Regola rotondità", + "Rotondità minima" + ], + [ + "Regola posizione", + "Conta", + "Regola Conteggio" + ], + [ + "Regola Primopiano/Sfondo", + "Regola Tonalità", + "Regola saturazione", + "Regola luminosità" + ], + [ + "Seleziona la sorgente da clonare tenendo premuto Alt e facendo clic sull'immagine.", + "Segna il Primo Piano con Bianco, Sfondo con Nero e le aree sconosciute con Grigio", + "Livello non modificabile.", + "Il Livello Testo deve prima essere rasterizzato", + "L'Oggetto Smart deve prima essere rasterizzato", + "Seleziona livelli multipli", + "Raddrizza strato", + "Per prima cosa apri un documento.", + "Per prima cosa chiudi la finestra corrente.", + "Solo strumento attivo" + ], + [ + "Registra", + "Nuovo set di azioni", + "Nuova azione" + ], + [ + "Pressione dello Stilo controlla l'Opacità", + "Pressione dello Stilo controlla la Dimensione" + ], + [ + "Normale", + "Dissolvi", + "Scurisci", + "Moltiplica", + "Colore brucia", + "Brucia lineare", + "Colore più scuro", + "Schiarisci", + "Scolora", + "Colore scherma", + "Scherma lineare", + "Colore più chiaro", + "Sovrapponi", + "Luce soffusa", + "Luce intensa", + "Luce vivida", + "Luce lineare", + "Luce puntiforme", + "Miscela dura", + "Differenza", + "Esclusione", + "Sottrai", + "Dividi", + "Tonalità", + "Saturazione", + "Colore", + "Luminosità", + "Attraversa" + ] + ], + [ + "Interlinea", + "Traccia", + "Spostamento linea di base", + [ + "Converti in Testo Punto", + "Converti in Testo Paragrafo" + ] + ], + [ + "Tutti", + "Livello attuale", + "Selezione", + "Attuale e sotto" + ], + [ + "Sostituisci", + "Unione", + "Differenza", + "Intersezione", + "XOR", + "Unisci" + ], + [ + [ + "Lineare", + "Radiale", + "Angolo", + "Riflesso", + "Diamante", + "Shape Burst" + ], + [ + "Ammorbidisci", + "Preciso" + ], + [ + "Smusso Esterno", + "Smusso Interno", + "Effetto rilievo", + "Effetto Rilievo Pillow", + "Effetto Rilievo Stroke", + "Spessore della traccia" + ], + [ + "Arrotonda", + "Scalpello (duro)", + "Scalpello (soft)", + "Omogeneità" + ], + [ + "Su", + "Giù" + ], + [ + "Fuori", + "Centro", + "Dentro", + "Dal Centro" + ], + [ + "Ombre", + "Mezzitoni", + "Luci" + ], + [ + "Togli saturazione", + "Satura" + ], + [ + "Piccolo", + "Medio", + "Grande" + ], + [ + "Tracejada", + "Angoli", + "Trattini" + ] + ], + [ + "Seleziona l'oggetto sotto il cursore", + "Controlli trasformazione", + "Pixel per pixel", + "Riempi l'area", + [ + "Allinea i bordi a SX", + "Centra orizzontalmente", + "Allinea i bordi a DX", + "Allinea i bordi in alto", + "Centra verticalmente", + "Allinea i bordi in basso", + "Spazi Uguali" + ] + ], + [ + "Inserisci in", + "Progetto attuale", + "Nuovo progetto", + "Risoluzione", + "Aggiunto al corrente progetto", + "Un nuovo progetto è stato creato", + "L'accesso alla cam è stato negato" + ], + [ + "Orientamento", + "Curva", + "Distorsione orizzontale", + "Distorsione verticale", + [ + "Orizzontale", + "Verticale", + "orizzontalmente", + "verticalmente" + ], + [ + "Nessuno", + "Arco", + "Arco inferiore", + "Arco superiore", + "Arcata", + "Rigonfiamento", + "Arco conchiglia inf.", + "Arco conchiglia sup.", + "Bandiera", + "Onda", + "Pesce", + "Pendo", + "Grandangolo", + "Gonfio", + "Comprimi", + "Torsione", + "Personale" + ], + [ + "Font", + "non è disponibile", + "Sarà rappresentato utilizzando", + "C'è lavoro non salvato in", + "Vuoi davvero chiuderlo?" + ], + [ + "Inverti colori", + "Base: bianco e nero" + ] + ], + [ + "caricato", + "aggiunto", + "Muovi guide", + "Elimina guide", + "Aggiungi guida", + "Caricamento", + "Carica VAR0" + ], + [ + "Galleria filtri", + [ + [ + "Fluidifica", + [ + "Sbafa", + "Ricostruisci", + "Smussato", + "Rotea", + "Riduci", + "Gonfia", + "Spingi a Sinistra", + "Fissa", + "Rilascia" + ] + ], + [ + "Correzione delle lenti" + ] + ], + "Sfocatura", + [ + "Media", + "Sfocatura", + "Sfoca maggiormente", + "Controllo sfocatura", + "Sfocatura gaussiana", + "Sfocatura lente", + "Sfocatura movimento", + "Sfocatura radiale", + "Sfocatura Forma", + "Sfocatura Intelligente", + "Sfocatura Superficie" + ], + "Distorci", + [ + "Sostituisci", + "Pizzica", + "Coordinate polari", + "Effetto Onde", + "Cesoia", + "Rendi Sferico", + "Onda" + ], + "Disturbo", + [ + "Aggiungi disturbo", + "Smacchia", + "Polvere e grana", + "Mediana" + ], + "Effetto pixel", + [ + "Colore Mezzitoni", + "Cristallizza", + "Sfaccettatura", + "Frammenta", + "Mezzetinte", + "Mosaico", + "Puntinatura" + ], + "Rappresenta", + [ + "Nuvole", + "Nuvole differenziali", + "Riflesso obiettivo" + ], + "Contrasta", + [ + "Contrasta", + "Contrasta Bordi", + "Contrasta maggiormente", + "Contrasto Intelligente", + "Maschera di contrasto" + ], + "Stilizzazione", + [ + "Diffondi", + "Effetto rilievo", + "Estrusione", + "Trova Bordi", + "Pittura a olio" + ], + "Altro", + [ + "Personale", + "Accentua Passaggio", + "Massimo", + "Minimo", + "Sposta", + "Ripeti" + ], + [ + "Area indefinita", + "Imposta Trasparenza", + "Ripeti Pixel del Bordo", + "Involucro attorno", + "Ultimo filtro", + "Anteprima" + ] + ], + [ + "Modelli", + [ + "Filtro font", + "Parole Chiave", + "Rendi casuale" + ], + [ + "Con Simboli", + "Con Foto" + ], + [ + "Miniature", + "Elenco" + ] + ] + ], + [ + [ + "Fișier", + "Editare", + "Imagine", + "Strat", + "Dosar", + "Selectează", + "Filtru", + "Vedere", + "Fereastră", + "Limbă", + "Logare", + "Ieșire", + "Creează traducere", + [ + "Cont", + "Termeni de Utilizare", + "Înapoi", + "Despre", + "Raportează o eroare", + "Învăța" + ], + "Mai mult", + "Opțiuni temă", + "Folosește WebGL", + [ + "Photopea: Editor de imagini avansate", + "Editor gratuit online care acceptă formatele PSD, XCF, Sketch, XD și CDR.", + "Creați o imagine nouă sau deschideți fișierele existente de pe computer. Salvați munca dvs. ca PSD (Fișier - Salvează ca PSD) sau ca JPG / PNG / SVG (Fișier - Exportează că și).", + "Sugerați noi caracteristici la sau . Scopul nostru este de a crea .", + "Linkurile sponsorului se deschid într-o fereastră nouă.", + null, + null + ] + ], + [ + "Deschide", + "Publică online", + "Salvează", + "Salvează ca PSD", + "Printează", + "Deschideți de la URL", + "Deschideți din computer", + "Conectează-te cu Google Drive", + "Exportează că și", + "Exportează straturi", + "Script", + "Deschide & Pune", + "Închide", + "Stocare locală", + null + ], + [ + "Dă cu un pas înainte", + "Dă cu un pas înapoi", + "Curăță", + "Umplere", + "Transformă", + "Rotește", + "Rotiți VAR0", + "Scala VAR0", + "Anulează / Refă", + "Perspectivă", + [ + "Auto-Nuanțare", + null + ], + "Spălăci", + null + ], + "Ajustări", + [ + "Strălucire/Contrast", + "Nivele", + "Curbe", + "Expunere", + "Vibranță", + "Nuanță/Saturație", + "Echilibrare culori", + "Alb-negru", + "Filtru de fotografie", + "Mixer de canale", + "Caută culoare", + "Inversează", + "Posterizează", + "Prag", + "Hartă de gradient", + "Culoare selectivă", + [ + "Ton automat", + "Contrast automat", + "Culoare automată" + ], + "Înlocuiți culoarea" + ], + [ + "Taie", + "Copiază", + "Lipește", + "Nou", + "Șterge", + "Activează", + "Dezactivează", + "Copiază straturi unite", + "Aplică", + "Din nou", + "Actualizați" + ], + [ + "Multiplică strat", + "Nou strat de ajustare", + "Mască de rasterizare", + "Mască vectorială", + "Adaugă (Arată tot)", + [ + "Adaugă (Ascunde tot)", + "Revelați selecția", + "Ascundeți selecția", + "Din transparență" + ], + [ + "Mască de atașare", + "Quick Mask Mode" + ], + "Schimbă ca obiect smart", + "Rasterizează", + "Grupează straturi", + "Unește în jos", + "Unește în sus", + [ + "Unește straturi", + "Flatten Image" + ], + "Strat nou", + "Activează Masca de rasterizare", + "Dezactivează Masca de rasterizare", + "Activează Masca vectorială", + "Dezactivează Masca vectorială", + "Activează Masca de atașare", + "Dezactivează Masca de atașare", + "Dosar nou", + "Adaugă Mască de rasterizare", + "Șterge Masca de rasterizare", + "Adaugă Mască vectorială", + "Șterge Masca vectorială", + "Leagă Masca de rasterizare", + "Dezleagă Masca de rasterizare", + "Leagă Masca vectorială", + "Dezleagă Masca vectorială", + "Activează efectele de strat", + "Dezactivează efectele de strat", + "Șterge strat", + "Schimbă opacitatea stratului", + "Schimbă efectele de amestecare", + "Rasterizează stilul stratului", + "Ordinea straturilor", + [ + "Creează obiect smart", + "Actualizează obiectul smart", + "Plasează obiectul smart", + "Sursă (obiect smart)", + null + ], + "Schimbă nume", + "Schimbă culoare", + "Editează stratul de ajustare", + "Schimbă în forma...", + "Activează Masca de filtre", + "Dezactivează masca de filtre", + "Activează filtrele Smart", + "Dezactivează filtrele Smart", + "Adaugă mască de filtre", + "Șterge masca de filtre", + "Curăță filtrele Smart", + [ + [ + "Umplere cu o culoare solidă", + "Umplere cu gradient", + "Umplere cu model", + "Conștient de conținut" + ], + "Nou strat de umplere", + "Modifică stratul de umplere" + ], + "Strat via copiere", + "Mască de filtre", + "Ştergere Stil Layer", + "Mutare Filtru Smart", + "Ştergere Filtru Smart", + [ + "Linkez straturi", + "Delinkeaza straturi" + ], + "Aranjează", + [ + "Mută în fața", + "Mută înainte", + "Trimite înapoi", + "Trimite în spate" + ], + [ + "Layerul este blocat.", + "Blochează schimbarea", + null + ], + null + ], + [ + "Tot", + "Deselectează", + "Invers", + "Modifică", + "Extinde", + "Strânge", + "Pană", + "Mută selecția", + "Rază de culori", + "Margine", + "Transformă selecția", + "Redefinire Margine", + "Vindecă selecția", + null + ], + [ + "Focalizează mai mult", + "Focalizează mai puțin", + "Ghiduri", + "Riglele", + "Grilă", + "Prinde", + "Prinde la", + "Limite Document", + "Grilă pixel", + "Cale", + "Prinde la pixeli", + [ + "Felii", + "Opțiuni de feliere" + ], + "Arată" + ], + [ + "Istoric", + "Straturi", + "Proprietăți", + "Pensulă", + "Caracter", + "Paragraf", + "Info", + "Compoziții de straturi", + "Specimene", + "Acţiuni", + "Histograma", + "Navigator", + "Presetări de unealtă", + null + ], + [ + "Unealtă Pensulă", + "Clonare", + "Decupare", + "Gumă de șters", + "Selectează cu Oval", + "Pipetă", + "Unealtă de gradient", + "Unealta Mână", + "Unealtă de Scris", + "Selectează cu Lasou", + "Selectează cu Lasou Magnetic", + "Mutare", + "Bagheta magică", + "Găleată de vopsea", + "Selectează ca Lasou Poligonal", + "Selectează cu Dreptunghi", + "Transformă în mod liber", + "Focalizare", + "Încețoșare", + "Evidențiere", + "Pătare", + "Evitare", + "Ardere", + "Burete", + "Pensulă de îndepărtare a petelor", + "Pensulă de îndepărtare", + "Unealtă de Petice", + "Selectează cale", + "Selectează direct", + "Stilou", + "Stilou liber", + "Formă originală", + "Dreptunghi", + "Oval", + "Formă parametrică", + "Linie", + "Riglă", + "Selecție rapidă", + "Creion", + "Trunchiere de Perspectivă", + "Ustensilă de feliere", + "Ustensilă de selectare felie", + "Înlocuire culoare", + "Unealtă ochi roșii", + "Selectare obiect", + "Ștergere fundal", + "Puppet Warp", + null, + null, + null + ], + [ + "Fă o poză", + "Selector de culoare", + "Editor de contur", + "Dimensiune pânză", + "Multiplică în ...", + "Editor de gradiente", + "Stil strat", + "Proiect nou", + "Salvează pentru Internet", + "Teleportează", + "Dimensiuni imagine", + "Vectorizare Bitmap", + [ + "Tăiere", + "Trunchiere", + "Reveal All" + ], + "Comenzi rapide de la tastatură", + "Adaugă ghiduri", + [ + "Curăță ghiduri", + "Guides from Layer" + ] + ], + [ + "Opacitate", + "Efecte", + "Strălucire", + [ + "Contrast", + "Utilizați algoritmul vechi" + ], + "Canal", + "Expunere", + "Ofset", + "Corecție gamma", + "Nuanță", + "Saturație", + "Luminozitate", + "Vopsire", + "Rază", + "Vibranță", + [ + "Mărime", + "Interpolarea", + "Cel-mai-apropiat-vecin", + "Biliniară" + ], + "Unghi", + "Rotunjire", + "Tărie", + "Spațiere", + [ + "Mod amestecare", + "Amestecare dacă" + ], + "Mărime probă", + "Contur", + "Stil", + [ + "Schimbă înapoi", + "Relativă", + "Ancoră" + ], + "Toleranță", + "Continuu", + "Umplere", + "Folosește unghi global", + "Distanță", + "Împrăștiere", + "Zgomot", + "Umbră pe dinafară", + "Tehnică", + "Direcție", + "Adâncime", + "Inmoaie", + "Mod", + "Gradient", + "Scala", + "Aliniază cu stratul", + "Poziție", + "Lățime", + "Înălțime", + "Destinație", + "Tip", + "Prim plan", + "Fundal", + "Personalizat", + "Nume", + "Creați", + "Format", + "Mențineți raportul de aspect", + [ + "Calitate", + "Pagini" + ], + "Duplicat", + "Mișcă", + "Filtrele Smart", + "Rază", + "Cantitate", + "Distribuție", + [ + "Uniformă", + "Gaussian" + ], + "Monocromatic", + "Dimensiunea celulei", + "Model", + "Curgere", + "Putere", + "Protecție detalii", + "Tip de umplere", + "Textură", + "Vibrație", + "Margine", + "Sursă", + "Țintă", + "Canale", + "Mască", + "Densitate", + "Aliniat", + [ + "Cale", + "Formă", + "Pixeli", + "Inci", + "Centimetri", + "Milimetri", + "Procent" + ], + "Forme", + "Fețe", + "Preferințe", + [ + "Lungime", + "Raport", + "Orice", + "Tip de grilă", + "Izometrică", + "Spațiu dintre grile", + "Unități de riglă" + ], + "Reducere zgomot", + "Culori", + "Distanţe", + "Rată", + "Selectare automată", + "Caută", + "Definiți nou", + [ + "Imagine", + "Ecran", + "Mobile", + "Reclame", + "Printuri" + ], + [ + "Liber", + "Raport fix", + "Mărime fixă" + ], + "Ajutor", + [ + "Formă în timp real", + "Editare formă în timp real", + "Aceleași raze" + ], + "Neclaritate", + [ + "Poligon", + "Stea", + "Spirală", + "Pătrat" + ], + [ + "Raza de colț", + "Raza interioară" + ] + ], + [ + "Culoare", + [ + "Nimic", + "Roșu", + "Portocaliu", + "Galben", + "Verde", + "Albastru", + "Purpuriu", + "Gri", + "Alb", + "Transparent", + "Negru", + "Azuriu", + "Purpuriu", + "Neutră" + ], + "Total", + "Absolut", + "Păstrați luminozitatea" + ], + [ + "Umbră", + "Umbră interioară", + "Strălucire exterioară", + "Strălucire interioară", + "Echer si Grava", + "Suprapunere de culoare", + "Suprapunere de gradient", + "Suprapunere de model", + "Satin", + "Lovire", + "Opțiuni de amestecare", + "Selectează Pixeli" + ], + [ + "Formă vârf", + "Tip dinamică", + "Împrăștiere", + "Dinamica culorilor", + [ + "Mărimea variația", + "Diametru minim", + "Unghi variația", + "Rotunjire variația", + "Rotunjire minimă" + ], + [ + "Poziția variația", + "Numărare", + "Numără variația" + ], + [ + "Variația in Prim Plan/Fundal", + "Nuanță variația", + "Saturație variația", + "Strălucire variația" + ], + [ + "Selectați sursa de clonare prin mentinerea tastelor ALT (sau K) și apăsând pe imagine.", + "Marcați în prim plan cu alb, fundal cu negru și zona necunoscută cu gri.", + "Stratul nu poate fi editabil.", + "Stratul de text trebuie rasterizat mai întâi", + "Obiectul Smart trebuie rasterizat mai întâi", + "Selectați mai multe straturi", + "Îndreptare Strat", + "Deschideți mai întâi un document.", + "Închideți mai întâi fereastra curentă.", + "Numai unealtă curentă" + ], + [ + "Înregistrați", + "Noul set de acțiuni", + "Noua acțiune" + ], + [ + "Presiunea penului controlează opacitatea", + "Presiunea penului controlează dimensiunea" + ], + [ + "Normal", + "Dizolvare", + "Întunecare", + "Multiplică", + "Ardere de Culoare", + "Ardere liniară", + "Culoare mai Întunecată", + "Luminează", + "Ecran", + "Evitare de Culoare", + "Evitare Liniară", + "Culoare mai Luminoasă", + "Suprapunere", + "Lumină slabă", + "Lumină puternică", + "Lumină intensă", + "Lumină liniară", + "Pin Light", + "Amestecare Puternică", + "Diferență", + "Excludere", + "Scade", + "Împarte", + "Nuanță", + "Saturație", + "Culoare", + "Luminozitate", + "Treci Prin" + ] + ], + [ + "Spațiere linie", + "Spațiere caractere", + "Linie de bază", + [ + "Convertește la Text Punct", + "Convertește la Text Paragraf" + ] + ], + [ + "Tot straturi", + "Strat curent", + "Selecție", + "Curent și mai jos" + ], + [ + "Înlocuiește", + "Unifică", + "Extrage", + "Intersectează", + "Exclude", + "Unește" + ], + [ + [ + "Liniar", + "Radial", + "Unghi", + "Reflectat", + "Diamant", + "Shape Burst" + ], + [ + "Moale", + "Precis" + ], + [ + "Outer Bevel", + "Inner Bevel", + "Gravare", + null, + null, + "Lăţime liniei" + ], + [ + "Netezire", + null, + null, + "Netezime" + ], + [ + "Sus", + "Jos" + ], + [ + "Exterior", + "Centru", + "Interior", + "Din centru" + ], + [ + "Umbre", + "Tonuri mijlocii", + "Sublinieri" + ], + [ + "Desaturați", + "Saturați" + ], + [ + "Mic", + "Mediu", + "Larg" + ], + [ + null, + "Colțuri", + "Cratime" + ] + ], + [ + "Selecteaza obiectul de sub cursor", + "Transformă controalele", + "Pixel la Pixel", + "Potriviți în zonă", + [ + "Aliniaza dupa muchiile din stinga", + "Centreaza orizontal", + "Aliniaza dupa muchiile din dreapta", + "Aliniaza dupa muchiile de sus", + "Centreaza vertical", + "Aliniaza dupa muchiile de jos", + "Spatiere Egala" + ] + ], + [ + "Plasează în", + "Proiect curent", + "Proiect nou", + "Rezolutie", + "Adaugat la proiectul curent.", + "Un proiect nou a fost creat.", + "Accesul la camera a fost negat." + ], + [ + "Orientare", + "Îndoaie", + "Distorsiuni orizontale", + "Distorsiuni verticale", + [ + "Orizontal", + "Vertical", + "orizontal", + "vertical" + ], + [ + "Niciunul", + null, + null, + null, + null, + null, + null, + null, + "Steag", + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "Font", + "nu este disponibil", + "Este redat cu", + "Există locuri de muncă nesalvate:", + "Chiar vrei să închizi?" + ], + [ + "Schimba Culori", + "Implicit: Alb și negru" + ] + ], + [ + "încărcat", + "a fost adăugat", + "Mutare ghid", + "Ştergere ghid", + "Adăugare ghid", + null, + null + ], + [ + "galerie de filtre", + [ + [ + null, + [ + null, + null, + null, + null, + "micsoreaza", + null, + null, + "Blochează", + "Deblochează" + ] + ], + [ + null + ] + ], + null, + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + null, + [ + null, + null, + null, + null, + null, + null, + null + ], + null, + [ + "Adăuga zgomot", + null, + null, + "Median" + ], + "Pixelează", + [ + null, + "Cristalizare", + null, + "Fragment", + null, + "mozaic", + null + ], + "Randare", + [ + "Nori", + null, + null + ], + null, + [ + null, + null, + null, + null, + null + ], + "Stilizează", + [ + "Difuz", + null, + "Extrudare", + "Găsește Colțuri", + null + ], + "Altul", + [ + null, + null, + "Maxim", + "Minim", + null, + "Repetă" + ], + [ + "Arie Nedefinită", + "Setează ca Transparent", + "Repetați pixeli margine", + "Înfășoară în jurul", + "Ultimul filtru", + "Previzual" + ] + ], + [ + "Șabloane", + [ + "Filtru de fonturi", + "Cuvinte cheie", + "Randomizare" + ], + [ + "Cu simboluri", + "Cu fotografie" + ], + [ + "Miniaturi", + "Listă" + ] + ] + ], + [ + [ + "Bestand", + "Bewerken", + "Afbeelding", + "Laag", + "Map", + "Selecteren", + "Filter", + "Beeld", + "Venster", + "Taal", + "Log in", + "Log uit", + "Maak een vertaling", + [ + "Account", + "Algemene voorwaarden", + "Terug", + "Over", + "Meld een bug", + "Leren" + ], + "Meer", + "Thema", + "Gebruik WebGL", + [ + "Photopea: geavanceerde fotobewerking", + "Gratis online bewerker, ondersteunt PSD-, XCF-, Sketch-, XD- en CDR-formaten", + "Maak een nieuwe afbeelding of open bestaande bestanden vanaf uw computer. Sla uw werk op als PSD (Bestand - Opslaan als PSD) of als JPG / PNG / SVG (Bestand - Exporteren als).", + "Stel nieuwe functies voor op onze of . Ons doel is om te maken.", + "Sponsorlinks openen in een nieuw venster.", + "Deze functie is niet beschikbaar.", + "Photopea installeren" + ] + ], + [ + "Open", + "Publiceer online", + "Opslaan", + "Opslaan als PSD", + "Printen", + "Open via URL", + "Open vanaf computer", + "Verbind met Google Drive", + "Exporteren als", + "Exporteer lagen", + "Schrijf", + "Open en plaats", + "Sluiten", + "Lokale opslag", + "Info" + ], + [ + "Stap vooruit", + "Stap terug", + "Leegmaken", + "Vul", + "Transformeer", + "Draaien", + "VAR0 spiegelen", + "VAR0 schalen", + "Ongedaan maken / Opnieuw", + "Perspectief", + [ + "Automatisch overvloeien", + "Automatisch uitlijnen" + ], + "Vervagen", + "Afbeelding toepassen" + ], + "Aanpassingen", + [ + "Helderheid/contrast", + "Niveaus", + "Curves", + "Belichting", + "Levendigheid", + "Kleurtoon/verzadiging", + "Kleurbalans", + "Zwart-wit", + "Fotofilter", + "Kanaalmixer", + "Kleur-opzoektabellen", + "Omkeren", + "Waarden beperken", + "Drempelwaarde", + "Verloop toewijzen", + "Kleurbereik", + [ + "Automatische tint", + "Automatisch contrast", + "Automatische kleuren" + ], + "Vervang kleur" + ], + [ + "Knippen", + "Kopiëren", + "Plakken", + "Nieuw", + "Verwijderen", + "Inschakelen", + "Uitschakelen", + "Verenigd kopiëren", + "Toepassen", + "Opnieuw", + "Bijwerken" + ], + [ + "Dupliceer laag", + "Nieuwe aanpassingslaag", + "Rastermasker", + "Vectormasker", + "Toevoegen (toon alles)", + [ + "Toevoegen (verberg alles)", + "Selectie tonen", + "Selectie verbergen", + "Vanuit transparantie" + ], + [ + "Knipmasker", + "Snelmaskermodus" + ], + "Converteren naar Slim Object", + "Omzetten naar pixels", + "Groepeer lagen", + "Omlaag samenvoegen", + "Omhoog samenvoegen", + [ + "Lagen samenvoegen", + "Alle lagen samenvoegen" + ], + "Nieuwe laag", + "Rastermasker inschakelen", + "Rastermasker uitschakelen", + "Vectormasker inschakelen", + "Vectormasker uitschakelen", + "Knipmasker inschakelen", + "Knipmasker uitschakelen", + "Nieuwe map", + "Rastermasker toevoegen", + "Rastermasker verwijderen", + "Vectormasker toevoegen", + "Vectormasker verwijderen", + "Rastermasker koppelen", + "Rastermasker ontkoppelen", + "Vectormasker koppelen", + "Vectormasker ontkoppelen", + "Laageffecten inschakelen", + "Laageffecten uitschakelen", + "Laag verwijderen", + "Laagdekking wijzigen", + "Overvloeimodus wijzigen", + "Zet laagstijl om naar pixels", + "Laagvolgorde", + [ + "Slim Object creëren", + "Slim Object updaten", + "Slim Object plaatsen", + "Bron (Slim Object)", + "Stapelmodus" + ], + "Naamwijziging", + "Kleurwijziging", + "Wijzig aanpassingslaag", + "Converteer naar vorm", + "Filtermasker inschakelen", + "Filtermasker uitschakelen", + "Slimme filters inschakelen", + "Slimme filters uitschakelen", + "Voeg filtermasker toe", + "Verwijder filtermasker", + "Verwijder slimme filters", + [ + [ + "Effen kleurvulling", + "Verloopvulling", + "Patroonvulling", + "Met behoud van inhoud" + ], + "Nieuwe vullingslaag", + "Wijzig vullingslaag" + ], + "Laag vanuit selectie", + "Filtermasker", + "Verwijder laagstijl", + "Verplaats slim filter", + "Verwijder slim filter", + [ + "Koppel lagen", + "Ontkoppel lagen" + ], + "Rangschikken", + [ + "Verplaats naar voorgrond", + "Verplaats naar voren", + "Verplaats naar achteren", + "Verplaats naar achtergrond" + ], + [ + "Deze laag is vergrendeld.", + "Verander vergrendeling", + "Vergrendelen" + ], + "Animatie" + ], + [ + "Alles", + "Deselecteren", + "Selectie omkeren", + "Bewerken", + "Uitbreiden", + "Inkrimpen", + "Verdoezel", + "Verplaats selectie", + "Kleurbereik", + "Rand", + "Transformeer selectie", + "Rand verfijnen", + "Herstel selectie", + "Magisch knippen" + ], + [ + "Zoom in", + "Zoom uit", + "Hulplijnen", + "Linialen", + "Raster", + "Vastklikken", + "Vastklikken aan", + "Documentsgrenzen", + "Pixelraster", + "Paden", + "Vastklikken aan pixels", + [ + "Segmenten", + "Segmentopties" + ], + "Toon" + ], + [ + "Geschiedenis", + "Lagen", + "Eigenschappen", + "Penseel", + "Karakter", + "Paragraaf", + "Info", + "Laagsamenstellingen", + "Kleurstalen", + "Handelingen", + "Histogram", + "Navigator", + "Voorinstellingen gereedschap", + "Glyphs" + ], + [ + "Penseel", + "Kloonstempel", + "Uitsnijden", + "Gummetje", + "Ovaal selectiekader", + "Pipet", + "Verloop", + "Handje", + "Tekst", + "Lasso", + "Magnetische lasso", + "Verplaatsen", + "Toverstaf", + "Emmertje", + "Veelhoeklasso", + "Rechthoekig selectiekader", + "Vrije transformatie", + "Zoomen", + "Vervagen", + "Verscherpen", + "Natte vinger", + "Tegenhouden", + "Doordrukken", + "Spons", + "Snel retoucheerpenseel", + "Retoucheerpenseel", + "Reparatie", + "Padselectie", + "Directe selectie", + "Pen", + "Pen voor vrije vorm", + "Aangepaste vorm", + "Rechthoek", + "Ellips", + "Parametrische vorm", + "Lijn", + "Liniaal", + "Snelle selectie", + "Potlood", + "Uitsnijden met perspectief", + "Segment", + "Segmentselectie", + "Kleur vervangen", + "Rode ogen verwijderen", + "Object selecteren", + "Achtergrondgummetje", + "Marionet verdraaien", + "Weergave roteren", + "Zo schalen dat inhoud behouden blijft", + "Verplaatsen met behoud van inhoud" + ], + [ + "Neem een foto", + "Kleurkiezer", + "Contouren wijzigen", + "Canvasgrootte", + "Dupliceren naar …", + "Verloop wijzigen", + "Laagstijl", + "Nieuw project", + "Opslaan voor web", + "Verdraaien", + "Afbeeldingsgrootte", + "Bitmap vectoriseren", + [ + "Verkleinen", + "Uitsnijden", + "Toon alles" + ], + "Sneltoetsen", + "Hulplijnen toevoegen", + [ + "Hulplijnen wissen", + "Hulplijnen van Laag" + ] + ], + [ + "Dekking", + "Effecten", + "Helderheid", + [ + "Contrast", + "Verouderde instelling gebruiken" + ], + "Kanaal", + "Belichting", + "Verschuiving", + "Gammacorrectie", + "Kleurtoon", + "Verzadiging", + "Lichtheid", + "Inkleuren", + "Bereik", + "Levendigheid", + [ + "Grootte", + "Interpolatie", + "Naaste buur", + "Bilineair" + ], + "Hoek", + "Rondheid", + "Hardheid", + "Interlinie", + [ + "Overvloeimodus", + "Overvloeien als" + ], + "Monstergrootte", + "Randen", + "Stijl", + [ + "Omkeren", + "Relatief", + "Plaatsing" + ], + "Tolerantie", + "Aangrenzend", + "Vulling", + "Gebruik globale hoek", + "Afstand", + "Verspreiden", + "Ruis", + "Gebruik slagschaduw", + "Techniek", + "Richting", + "Diepte", + "Verzachten", + "Modus", + "Verloop", + "Schalen", + "Uitlijnen met laag", + "Positie", + "Breedte", + "Hoogte", + "Bestemming", + "Type", + "Voorgrond", + "Achtergrond", + "Aangepast", + "Naam", + "Maak", + "Indeling", + "Behoud beeldverhouding", + [ + "Kwaliteit", + "Pagina's" + ], + "Dupliceer", + "Verplaats", + "Slimme filters", + "Straal", + "Hoeveelheid", + "Verspreiding", + [ + "Gelijkmatig", + "Gaussiaans" + ], + "Monochroom", + "Celgrootte", + "Patroon", + "Stroom", + "Sterkte", + "Details beschermen", + "Opvullingstype", + "Textuur", + "Wiebelen", + "Rand", + "Bron", + "Doel", + "Kanalen", + "Masker", + "Dichtheid", + "Uitgelijnd", + [ + "Pad", + "Vorm", + "Pixels", + "Inches", + "Centimeters", + "Millimeters", + "Procent" + ], + "Vormen", + "Zijden", + "Voorkeuren", + [ + "Lengte", + "Verhouding", + "Elke", + "Rastertype", + "Isometrisch", + "Rasterlijn na elke", + "Liniaaleenheden" + ], + "Verminder ruis", + "Kleuren", + "Afstanden", + "Snelheid", + "Automatisch selecteren", + "Zoeken", + "Definieer nieuw", + [ + "Foto", + "Beeldscherm", + "Mobiel", + "Advertenties", + "Afdruk" + ], + [ + "Vrij", + "Vaste verhouding", + "Vaste grootte" + ], + "Help", + [ + "Actieve Vorm", + "Bewerk Actieve Vorm", + "Dezelfde straal" + ], + "Overeenkomst", + [ + "Veelhoek", + "Ster", + "Spiraal", + "Vierkant" + ], + [ + "Hoekstraal", + "Binnenstraal" + ] + ], + [ + "Kleur", + [ + "Geen", + "Rood", + "Oranje", + "Geel", + "Groen", + "Blauw", + "Paars", + "Grijs", + "Wit", + "Transparant", + "Zwart", + "Cyaan", + "Magenta", + "Neutraal" + ], + "Totaal", + "Absoluut", + "Lichtsterkte behouden" + ], + [ + "Slagschaduw", + "Schaduw binnen", + "Gloed buiten", + "Gloed binnen", + "Schuine kant en reliëf", + "Kleurbedekking", + "Verloopbedekking", + "Patroonbedekking", + "Satijn", + "Lijn", + "Opties voor overvloeien", + "Selecteer pixels" + ], + [ + "Puntvorm", + "Puntdynamiek", + "Verstrooien", + "Kleurdynamiek", + [ + "Grootte - jitter", + "Minimale diameter", + "Hoek - jitter", + "Ronding - jitter", + "Minimale rondingen" + ], + [ + "Positie - jitter", + "Aantal", + "Aantal - jitter" + ], + [ + "Voorgrond/achtergrond - jitter", + "Kleurtoon - jitter", + "Verzadiging - jitter", + "Helderheid - jitter" + ], + [ + "Selecteer de kloonbron door Alt (of K) ingedrukt te houden en op de afbeelding te klikken.", + "Markeer de voorgrond met wit, de achtergrond met zwart en het onbekende gebied met grijs.", + "Laag is niet bewerkbaar.", + "Tekstlaag moet eerst gerasteriseerd worden", + "Slim Object moet eerst gerasteriseerd worden", + "Selecteer meerdere lagen", + "Laag rechttrekken", + "Open eerst een document.", + "Sluit het huidige venster eerst.", + "Alleen huidig gereedschap" + ], + [ + "Opnemen", + "Nieuwe handelingenset", + "Nieuwe handeling" + ], + [ + "Pendruk bepaalt dekking", + "Pendruk bepaalt grootte" + ], + [ + "Normaal", + "Verspreiden", + "Donkerder", + "Vermenigvuldigen", + "Kleur doordrukken", + "Lineair doordrukken", + "Donkerdere kleur", + "Lichter", + "Bleken", + "Kleur tegenhouden", + "Lineair tegenhouden", + "Lichtere kleur", + "Bedekken", + "Zwak licht", + "Fel licht", + "Levendig licht", + "Lineair licht", + "Puntlicht", + "Harde mix", + "Verschil", + "Uitsluiting", + "Aftrekken", + "Verdelen", + "Kleurtoon", + "Verzadiging", + "Kleur", + "Lichtsterkte", + "Doorheen halen" + ] + ], + [ + "Regelafstand", + "Letterspatiëring", + "Verticale verplaatsing", + [ + "Omzetten in punttekst", + "Omzetten in alineatekst" + ] + ], + [ + "Alle lagen", + "Huidige laag", + "Selectie", + "Huidige & onderliggende laag" + ], + [ + "Vervangen", + "Samenvoegen", + "Verschil", + "Doorsnede", + "Uitsluiting", + "Samenvoegen" + ], + [ + [ + "Rechtlijnig", + "Radiaal", + "Hoek", + "Gereflecteerd", + "Ruitvormig", + "Uitstralen" + ], + [ + "Zachter", + "Precies" + ], + [ + "Buitenste afschuining", + "Binnenste afschuining", + "Reliëf", + "Kussenreliëf", + "Lijnreliëf", + "Lijndikte" + ], + [ + "Vloeiend maken", + "Harde beitel", + "Zachte beitel", + "Vloeiend" + ], + [ + "Omhoog", + "Omlaag" + ], + [ + "Buiten", + "Midden", + "Binnen", + "Vanuit middelpunt" + ], + [ + "Schaduwen", + "Middentonen", + "Hooglichten" + ], + [ + "Minder verzadiging", + "Verzadigen" + ], + [ + "Klein", + "Middelgroot", + "Groot" + ], + [ + "Uiteinden", + "Hoeken", + "Strepen" + ] + ], + [ + "Kies het object onder de muis", + "Aanpassingsknoppen", + "Pixel naar pixel", + "Vul de ruimte", + [ + "Linkerranden uitlijnen", + "Horizontaal centreren", + "Rechterranden uitlijnen", + "Bovenranden uitlijnen", + "Verticaal centreren", + "Onderranden uitlijnen", + "Gelijke tussenruimte" + ] + ], + [ + "Invoegen in", + "Huidig project", + "Nieuw project", + "Resolutie", + "Toegevoegd aan het huidige project.", + "Er is een nieuw project aangemaakt.", + "Toegang tot de camera geweigerd." + ], + [ + "Oriëntatie", + "Buigen", + "Horizontale vervorming", + "Verticale vervorming", + [ + "Horizontaal", + "Verticaal", + "Horizontaal", + "Verticaal" + ], + [ + "Geen", + "Boog", + "Boog onder", + "Boog boven", + "Boog", + "Bollend", + "Schelp omlaag", + "Schelp omhoog", + "Vlag", + "Golf", + "Vis", + "Omhoog", + "Fisheye-lens", + "Opblazen", + "Samendrukken", + "Draaien", + "Aangepast" + ], + [ + "Lettertype", + "is niet beschikbaar", + "Zal worden weergegeven met", + "Er zijn onopgeslagen bewerkingen in", + "Weet u zeker dat u dit wilt sluiten?" + ], + [ + "Wissel kleuren", + "Standaard: Wit en Zwart" + ] + ], + [ + "geladen", + "toegevoegd", + "Verplaats hulplijn", + "Verwijder hulplijn", + "Voeg hulplijn toe", + "Aan het laden", + "VAR0 laden" + ], + [ + "Filtergalerie", + [ + [ + "Uitvloeien", + [ + "Uitsmeren", + "Reconstrueren", + "Verzachten", + "Verdraaien", + "Krimpen", + "Opblazen", + "Naar links duwen", + "Bevriezen", + "Ontdooien" + ] + ], + [ + "Lenscorrectie" + ] + ], + "Vervaging", + [ + "Gemiddelde", + "Vervagen", + "Meer vervagen", + "Omgevingsvervagen", + "Gaussiaans vervagen", + "Lensvervaging", + "Bewegingsonscherpte", + "Radiaal vervagen", + "Vormvervagen", + "Slim vervagen", + "Oppervlak vervagen" + ], + "Vervormen", + [ + "Verplaatsen", + "Kneep", + "Polaire coördinaten", + "Rimpels", + "Verschuiving", + "Opbollen", + "Golf" + ], + "Ruis", + [ + "Ruis toevoegen", + "Uitstippen", + "Stof & Krassen", + "Mediaan" + ], + "Pixel", + [ + "Kleurhalftoon", + "Kristal", + "Facet", + "Fragmentatie", + "Mezzotint", + "Mozaïek", + "Pointilleren" + ], + "Rendering", + [ + "Wolken", + "Wolken (Verschil)", + "Lens flare" + ], + "Verscherpen", + [ + "Verscherpen", + "Scherpe randen", + "Scherper", + "Slim verscherpen", + "Onscherp masker" + ], + "Stileren", + [ + "Diffuus", + "Reliëf", + "Geef diepte", + "Omtreklijn", + "Olie verf" + ], + "Overige", + [ + "Aangepast", + "Hoogdoorlaat", + "Maximum", + "Minimum", + "Verschuiven", + "Herhaal" + ], + [ + "Ongedefiniëerd gebied", + "Maak transparant", + "Herhaal de pixels aan de randen", + "Wikkel rond documentsgrenzen", + "Vorige filter", + "Voorbeeld" + ] + ], + [ + "Sjablonen", + [ + "Lettertype kleur", + "Sleutelwoorden", + "Willekeurig" + ], + [ + "Met symbolen", + "Met foto" + ], + [ + "Miniaturen", + "Lijst" + ] + ] + ], + [ + [ + "Fil", + "Redigera", + "Bild", + "Lager", + "Mapp", + "Markera", + "Filter", + "Vy", + "Fönster", + "Språk", + "Logga in", + "Logga ut", + "Skapa översättning", + [ + "Konto", + "Användarvillkor", + "Bakåt", + "Om appen", + "Rapportera en bugg", + "Lära sig" + ], + "Mer", + "Tema", + "Använd WebGL", + [ + "Photopea: avancerad bildredigerare", + "Gratis online-editor som stöder PSD, XCF, Sketch, XD och CDR-format.", + "Skapa en ny bild eller öppna befintliga filer från din dator. Spara ditt jobb som PSD (Fil - Spara som PSD) eller som JPG / PNG / SVG (Fil - Exportera som).", + "Föreslå nya funktioner på vår eller . Vårt mål är att skapa .", + "Sponsorlänkar öppnas i ett nytt fönster.", + "Den här funktionen är inte tillgänglig.", + "Installera Photopea" + ] + ], + [ + "Öppna", + "Publicera online", + "Spara", + "Spara som PSD", + "Skriv ut", + "Öppna från URL", + "Öppna från dator", + "Connecta med Google Drive", + "Exportera som", + "Exportera lager", + "Script", + "Öppen & Placera", + "Stäng", + "Lokal lagring", + null + ], + [ + "Stega framåt", + "Stega bakåt", + "Rensa", + "Fyll", + "Omforma", + "Rotera", + "Vänd VAR0", + "Skala VAR0", + "Ångra / Upprepa", + "Perspektiv", + [ + "Blanda automatiskt", + "Justera automatiskt" + ], + "Toning", + "Använd bild" + ], + "Justeringar", + [ + "Ljusstyrka/kontrast", + "Nivåer", + "Kurvor", + "Exponering", + "Lyster", + "Nyans/mättnad", + "Färgbalans", + "Svartvitt", + "Fotofilter", + "Kanalmixer", + "Färgsökning", + "Invertera", + "Färgreduktion", + "Tröskel", + "Övertoningskarta", + "Selektiv färg", + [ + "Automatisk toning", + "Autokontrast", + "Automatisk färg" + ], + "Byt färg" + ], + [ + "Klipp ut", + "Kopiera", + "Klistra in", + "Ny", + "Radera", + "Aktivera", + "Inaktivera", + "Kopiera sammanslagning", + "Tillämpa", + "Igen", + "Uppdatera" + ], + [ + "Duplicera lager", + "Nytt justeringslager", + "Rastermask", + "Vektormask", + "Lägg till (Visa alla)", + [ + "Lägg till (Dölj alla)", + "Visa markering", + "Dölj markering", + "Från Genomskinlighet" + ], + [ + "Urklippsmask", + "Snabbmask" + ], + "Konvertera till Smart objekt", + "Rasterisera", + "Gruppera lager", + "Slå samman nedåt", + "Slå samman uppåt", + [ + "Slå samman lager", + "Gör till ett lager" + ], + "Nytt lager", + "Aktivera Rastermask", + "Inaktivera Rastermask", + "Aktivera Vektormask", + "Inaktivera Vektormask", + "Aktivera Urklippsmask", + "Inaktivera Urklippsmask", + "Ny mapp", + "Lägg till Rastermask", + "Radera Rastermask", + "Lägg till Vektormask", + "Radera Vektormask", + "Länka Rastermask", + "Avlänka Rastermask", + "Länka Vektormask", + "Avlänka Vektormask", + "Aktivera Lagereffekter", + "Inaktivera Lagereffekter", + "Radera lager", + "Lageropacitet ändring", + "Blandningsläge ändring", + "Rasterisera lagerstil", + "Lagerordning", + [ + "Skapar Smart objekt", + "Uppdaterar Smart objekt", + "Placerar Smart objekt", + "Källa (Smart objekt)", + "Stapelläge" + ], + "Namn ändring", + "Färg ändring", + "Ändra Justeringslager", + "Konvertera till Form", + "Aktivera Filtermask", + "Inaktivera Filtermask", + "Aktivera Smarta filter", + "Inaktivera Smarta filter", + "Lägg till Filtermask", + "Radera Filtermask", + "Rensa Smarta filter", + [ + [ + "Enfärgad fyllning", + "Övertoningsfyllning", + "Mönsterfyllning", + "Innehållsmedveten" + ], + "Nytt fyllningslager", + "Ändra fyllningslager" + ], + "Lager via kopia", + "Filtermask", + "Radera lagerstil", + "Flytta smart filter", + "Radera smart filter", + [ + "Länka lager", + "Koppla ifrån Lager" + ], + "Arrangera", + [ + "Flytta Främst", + "Flytta Framåt", + "Flytta Bakåt", + "Flytta Bakerst" + ], + [ + "Lagret är låst.", + "Lås ändring", + "Lås" + ], + null + ], + [ + "Allt", + "Avmarkera", + "Invertera", + "Ändra", + "Expandera", + "Dra samman", + "Ludd", + "Flytta markering", + "Färgintervall", + "Ram", + "Omforma markering", + "Förfina kant", + "Läka markering", + null + ], + [ + "Zooma in", + "Panorera ut", + "Stödlinjer", + "Linjaler", + "Stödraster", + "Fäst", + "Fäst mot", + "Dokument Gräns", + "Pixelrutnät", + "Banor", + "Fäst mot pixelar", + [ + "Segment", + "Segmentalternativ" + ], + "Visa" + ], + [ + "Historik", + "Lager", + "Egenskaper", + "Pensel", + "Tecken", + "Stycke", + "Info", + "Lagerkompositioner", + "Färgrutor", + "Funktionsmakron", + "Histogram", + "Överblick", + "Verktygsförinställningar", + "Specialtecken" + ], + [ + "Penselverktyget", + "Klonverktyget", + "Beskärningsverktyget", + "Suddverktyget", + "Ellipsmarkering", + "Pipetten", + "Övertoningsverktyget", + "Handverktyget", + "Textverktyget", + "Lassomarkering", + "Magnetisk lassomarkering", + "Flyttaverktyget", + "Trollspöet", + "Färgburksverktyget", + "Polygonal lassomarkering", + "Rektangelmarkering", + "Omforma fritt", + "Zoomverktyget", + "Blurra", + "Skärpa", + "Smeta ut", + "Skugga", + "Efterbelys", + "Svamp", + "Smart lagningspensel", + "Lagningspensel", + "lapp verktyg", + "Banmarkering", + "Direktmarkering", + "Penna", + "Fri penna", + "Egen form", + "Rektangel", + "Ellips", + "Parametrisk form", + "Linje", + "Linjal", + "Snabb val", + "Penselverktyg", + "Perspektivbeskärning", + "Segment", + "Markera segment", + "Färgersättning", + "Röda ögon", + "Objektmarkering", + "Bakgrundssuddgummi", + "Tänjning av marionett", + "Rotera vy", + "Skala för innehållsmedvetenhet", + "Innehållsmedveten flyttning" + ], + [ + "Ta en bild", + "Färgväljaren", + "Konturredigeraren", + "Storlek på arbetsyta", + "Duplicera in i...", + "Övertoningsredigeraren", + "Lagerstil", + "Nytt projekt", + "Spara för webb", + "Tänj", + "Bildstorlek", + "Vektorisera bitkarta", + [ + "Rensa", + "Beskära", + "Visa Allting" + ], + "Genvägar Tangentbord", + "Lägg till Stödlinjer", + [ + "Radera stödlinjer", + "Stödlinjer från Lager" + ] + ], + [ + "Opacitet", + "Effekter", + "Ljushet", + [ + "Kontrast", + "Använd äldre" + ], + "Kanal", + "Exponering", + "Förskjutning", + "Gammakorrigering", + "Nyans", + "Mättnad", + "Ljushet", + "Färga", + "Omfång", + "Lyster", + [ + "Storlek", + "Interpolation", + "Närmast intilliggande", + "Bilinjär" + ], + "Vinkel", + "Rundhet", + "Hårdhet", + "Mellanrum", + [ + "Blandningsläge", + "Blanda om" + ], + "Provstorlek", + "Kontur", + "Stil", + [ + "Omvänd", + "Relativ", + "Placering" + ], + "Tolerans", + "Angränsande", + "Fyll", + "Använd Global vinkel", + "Avstånd", + "Spridning", + "Brus", + "Slå ut skugga", + "Teknik", + "Riktning", + "Djup", + "Mjuka upp", + "Läge", + "Övertoning", + "Skala", + "Justera med lager", + "Position", + "Bredd", + "Höjd", + "Destination", + "Typ", + "Förgrund", + "Bakgrund", + "Egen", + "Namn", + "Skapa", + "Format", + "Behåll bildförhållande", + [ + "Kvalitet", + "Sidor" + ], + "Duplicera", + "Flytta", + "Smarta filter", + "Radie", + "Mängd", + "Fördelning", + [ + "Enhetlig", + "Gaussisk" + ], + "mongolia", + "Cellstorlek", + "Mönster", + "flöde", + "Styrka", + "Skyddad detalj", + "Fyll typ", + "Textur", + "Darr", + "Gräns", + "Källa", + "Mål", + "Kanaler", + "Mask", + "Densitet", + "Justera", + [ + "Bana", + "Form", + "Pixelar", + "Tum", + "Centimeter", + "Millimeter", + "Procent" + ], + "Former", + "Sidor", + "Preferenser", + [ + "Längd", + "Förhållande", + "Någon", + "Rutnät Typ", + "Isometrisk", + "Rasterlinje var", + "Linjalenheter" + ], + "Reducera brus", + "Färger", + "Avstånden", + "Hastighet", + "Automarkera", + "Hitta", + "Definiera nya", + [ + "Foto", + "Bildskärm", + "Mobil", + "Reklam", + "Avtryck" + ], + [ + "Fri", + "Fasta proportioner", + "Fastställd storlek" + ], + "Hjälp", + [ + "Aktuell Form", + "Ändra Aktuell Form", + "Samma Radie" + ], + "Överstrålning", + [ + "Polygon", + "Stjärna", + "Spiral", + "Kvadratisk" + ], + [ + "Hörn Radie", + "Inre Radie" + ] + ], + [ + "Färg", + [ + "Ingen", + "Röd", + "Orange", + "Gul", + "Grön", + "Blå", + "Violett", + "Grå", + "Vit", + "Transparent", + "Svart", + "Cyan", + "Magenta", + "Neutral" + ], + "Fullständig", + "Absolut", + "Bevara luminiscens" + ], + [ + "Skugga", + "Innerskugga", + "Yttre glöd", + "Inre glöd", + "Avfasning och relief", + "Färgöverlägg", + "Övertoningsöverlägg", + "Mönsteröverlägg", + "Satäng", + "Ramlinje", + "Blandningsval", + "Välj pixelar" + ], + [ + "Spetsform", + "Spetsdynamik", + "Utspridning", + "Färgdynamik", + [ + "Storleksvariation", + "Minimal diameter", + "Vinkelvariation", + "Rundhetsvariation", + "Minimal rundhet" + ], + [ + "Lägesvariation", + "Antal", + "Antalsvariation" + ], + [ + "Förgrunds-/Bakgrundsvariation", + "Nyansvariation", + "Mättnadsvariation", + "Ljushetsvariation" + ], + [ + "Välj kloningskälla genom att hålla nere Alt (eller K) och klicka på bilden", + "Markera förgrund med vitt, bakgrund med svart, och det okända området med grått.", + "Lagret kan inte ändras.", + "Text Lager måste rastreras först", + "Smart objekt måste rastreras först", + "Välj flera lager", + "Räta upp lager", + "Öppna ett dokument först.", + "Stäng det nuvarande fönsret först.", + "Endast aktuellt verktyg" + ], + [ + "Spela in", + "Ny funktionsmakro uppsättning", + "Nytt funktionsmakro" + ], + [ + "Nåltryck kontroller Opacitet", + "Nåltryck kontroller Storlek" + ], + [ + "Normal", + "Lös upp", + "Mörkare", + "Multiplicera", + "Efterbel. färg", + "Linjär efterbel.", + "Mörkare färg", + "Ljusare", + "Raster", + "Färgskugga", + "Linjär skugga", + "Ljusare färg", + "Täcka över", + "Mjukt ljus", + "Skarpt ljus", + "Klart ljus", + "Linjärt ljus", + "Strålljus", + "Hård blandning", + "Differens", + "Uteslutning", + "Subtrahera", + "Dela upp", + "Nyans", + "Mättnad", + "Färg", + "Luminiscens", + "Gå igenom" + ] + ], + [ + "Radavstånd", + "Knipning", + "Baslinjeförskjutning", + [ + "Konvertera till punkttext", + "Konvertera till stycketext" + ] + ], + [ + "Alla lager", + "Aktuellt lager", + "Markering", + "Aktuellt och underliggande" + ], + [ + "Byt ut", + "Koppling", + "Skillnad", + "Överlappa", + "Uteslut", + "Slå ihop" + ], + [ + [ + "Linjär", + "Radiell", + "Vinkel", + "Reflekterad", + "Diamant", + "Form ström" + ], + [ + "Mjukare", + "Exakt" + ], + [ + "Yttre avfasing", + "Inre avfasning", + "Relief", + "Kuddrelief", + "drag ciselera", + "Stregbredden" + ], + [ + "Utjämna", + "Mejsel hård", + "Mejsel mjuk", + "Släthet" + ], + [ + "Upp", + "Ned" + ], + [ + "Utsidan", + "Mitten", + "Insidan", + "Från mitten" + ], + [ + "Skuggor", + "Mellantoner", + "Högdagrar" + ], + [ + "Tunna ut", + "Mätta" + ], + [ + "Lilla", + "Medium", + "Stor" + ], + [ + "Ändpunkter", + "Hörn", + "Strecken" + ] + ], + [ + "Välj föremålet under markören", + "Omvandla kontroller", + "Pixel till Pixel", + "Anpassa till skärm", + [ + "Justera vänsterkanter", + "Centrera horisontellt", + "Justera högerkanter", + "Justera överkanter", + "Centrera vertikalt", + "Justera nederkanter", + "Lika Mellanrum" + ] + ], + [ + "Placera i", + "Nuvarande projekt", + "Nytt projekt", + "Upplösning", + "Tillagd i det här projektet.", + "Ett nytt projekt skapades.", + "Tillgång till kameran var avvisad." + ], + [ + "Orientering", + "Böj", + "Horisontell förvrängning", + "Vertikal förvrängning", + [ + "Horisontell", + "Vertikal", + "horisontellt", + "vertikalt" + ], + [ + "Ingen", + "Båge", + "Lägre Båge", + "Övre Båge", + "Valv", + "Utbuktning", + "Lägre skal", + "Övre skal", + "Flagga", + "Våg", + "Fisk", + "Res", + "Fisköga", + "Blåsa upp", + "Pressa", + "Vrid", + "Egen" + ], + [ + "Typsnitt", + "är inte tillgänglig", + "Kommer att göras med hjälp av", + "Det är olovat arbete i", + "Vill du verkligen stänga den?" + ], + [ + "Byt färger", + "Standard: Vit och Svart" + ] + ], + [ + "laddad", + "tillagd", + "Flytta stödlinjen", + "Radera stödlinjen", + "Lägg till stödlinjen", + "Läser in", + "Läs in VAR0" + ], + [ + "Filtergalleri", + [ + [ + "Kondensera", + [ + "Fläckar", + "Rekonstruera", + "Jämna till", + "Virvel", + "Krymp", + "Blås", + "Tryck åt vänster", + "Frys", + "Tina" + ] + ], + [ + "Objektivkorrigering" + ] + ], + "Oskärpefilter", + [ + "Jämka", + "Oskärpa", + "Mer oskärpa", + "Rutoskärpa", + "Gaussisk oskärpa", + "Linsoskärpa", + "Rörelseoskärpa", + "Radiell oskärpa", + "Formoskärpa", + "Smart oskärpa", + "Ytoskärpa" + ], + "Förvrängningsfilter", + [ + "Förskjutning", + "Knipning", + "Polära koordinater", + "Krusning", + "Skeva", + "Sfär", + "Våg" + ], + "Brusfilter", + [ + "Lägg till brus", + "Ytutjämning", + "Damm och repor", + "Median" + ], + "Pixelförvandlingsfilter", + [ + "Färgraster", + "Kristallisera", + "Fasett", + "Fragment", + "Mezzotint", + "Mosaik", + "Skapa fläckar" + ], + "Återgivningsfilter", + [ + "Moln", + "Differensmoln", + "Linsöverstrålning" + ], + "Skärpefilter", + [ + "Skärpa", + "Kantskärpa", + "Mera skärpa", + "Smart skärpa", + "Oskarp mask" + ], + "Stiliseringsfilter", + [ + "Diffusera", + "Relief", + "Djup", + "Hitta konturer", + "Oljemålning" + ], + "Andra filter", + [ + "Egen", + "Högpass", + "Maximum", + "Minimum", + "Förflyttning", + "Upprepa" + ], + [ + "Odefinierat område", + "Sätt till transparent", + "Upprepa bildpunkter", + "Vira runt", + "Sista filtret", + "Förhandsvisa" + ] + ], + [ + "Mallar", + [ + "Typsnitt filter", + "Nyckelorden", + "Slumpmässig" + ], + [ + "Med symboler", + "Med foto" + ], + [ + "Miniatyrbilder", + "Lista" + ] + ] + ], + [ + [ + "Fil", + "Rediger", + "Billede", + "Lag", + "Mappe", + "Marker", + "Filter", + "Vis", + "Vindue", + "Sprog", + "Log ind", + "Log ud", + "Lav oversættelse", + [ + "Konto", + "Brugervilkår", + "Tilbage", + "Om", + "Anmeld en fejl", + "Lær" + ], + "Mere", + "Tema", + "Brug WebGL", + [ + "Photopea: avanceret billedredigeringsprogram", + "Gratis online editor, der understøtter PSD, XCF, Sketch, XD og CDR formater.", + "Opret et nyt billede eller åben eksisterende filer fra din computer. Gem dit arbejde som PSD (Fil - Gem som PSD) eller som JPG / PNG / SVG (Fil - Eksporter som).", + "Foreslå nye funktioner på vores eller . Vores mål er at skabe .", + "Sponsorlinks åbnes i et nyt vindue.", + "Denne funktion er ikke tilgængelig.", + "Installer Photopea" + ] + ], + [ + "Åbn", + "Udgiv online", + "Gem", + "Gem som PSD", + "Udskriv", + "Åben fra URL", + "Åben fra computer", + "Forbind med Google Drive", + "Eksporter som", + "Eksporter lag", + "Script", + "Åben og placer", + "Luk", + "Lokalt lager", + null + ], + [ + "Fremad", + "Tilbage", + "Fjern", + "Fyld ud", + "Transformer", + "Roter", + "Vend VAR0", + "Skaler VAR0", + "Fortryd / Gentag", + "Perspektiv", + [ + "Sammenlæg automatisk", + "Juster automatisk" + ], + "Udton", + "Overfør billede" + ], + "Justeringer", + [ + "Lysstyrke/kontrast", + "Niveauer", + "Kurver", + "Udsættelse", + "Dynamik", + "Farvetone/mætning", + "Farvebalance", + "Sort-hvid", + "Fotofilter", + "Kanaler", + "Farveopslag", + "Invertér", + "Farvereduktion", + "Grænse", + "Farveforløbskort", + "Vælg farve", + [ + "Autotone", + "Autokontrast", + "Autofarve" + ], + "Erstat farve" + ], + [ + "Klip", + "Kopier", + "Indsæt", + "Ny", + "Slet", + "Aktiver", + "Deaktiver", + "Kopier sammenflettede", + "Tilføj", + "Gentag", + "Opdater" + ], + [ + "Dupliker lag", + "Nyt justeringslag", + "Rastermaske", + "Vektormaske", + "Tilføj (vis alle)", + [ + "Tilføj (skjul alle)", + "Vis markering", + "Skjul markering", + "Fra gennemsigtighed" + ], + [ + "Klippemaske", + "Ekspresafmaskning" + ], + "Konverter til Smart Objekt", + "Rasteriser", + "Gruppér lag", + "Flet ned", + "Flet op", + [ + "Flet lag", + "Samkopier billede" + ], + "Nyt lag", + "Aktiver rastermaske", + "Deaktiver raster maske", + "Aktiver vektor maske", + "Deaktiver vektor maske", + "Aktiver klippemaske", + "Deaktiver klippemaske", + "Ny mappe", + "Tilføj raster maske", + "Slet raster maske", + "Tilføj vektor maske", + "Slet vektor maske", + "Forbind raster maske", + "Ophæv raster maske", + "Forbind vektor maske", + "Ophæv vektor maske", + "Aktiver lageffekter", + "Deaktiver lageffekter", + "Slet lag", + "Lag opacitet ændring", + "Blanding ændring", + "Rasteriser Lag Stil", + "Lag rækkefølge", + [ + "Opret Smart Objekt", + "Opdatér Smart Objekt", + "Placér Smart Objekt", + "Kilde (Smart Objekt)", + "Staktilstand" + ], + "Navn ændring", + "Farve ændring", + "Rediger justeringslag", + "Konverter til formattributter", + "Aktiver filter maske", + "Deaktiver filter maske", + "Aktiver Smart filtre", + "Deaktiver Smart filtre", + "Tilføj filter maske", + "Slet filter maske", + "Ryd Smart filtre", + [ + [ + "Ren farve fyld", + "Farveforløbsudfyldning", + "Mønster fyld", + "Afhænger af indholdet" + ], + "Nyt udfyldningslag", + "Ændr udfyldningslag" + ], + "Lag via kopi", + "Filter maske", + "Slet Lag Stil", + "Flyt Smart filtre", + "Slet Smart filtre", + [ + "Link Lag", + "Fjern kæde til lag" + ], + "Arrangér", + [ + "Placer forrest", + "Bring frem", + "Flyt bagud", + "Placer bagest" + ], + [ + "Lag er låst", + "Lås ændring", + "Lås" + ], + "Animation" + ], + [ + "Alt", + "Fravælg", + "Inverter", + "Modificer", + "Udvid", + "Træk sammen", + "Udtynding", + "Flyt markering", + "Farvespænd", + "Kant", + "Transformer markering", + "Juster kant", + "Forbedre markering", + null + ], + [ + "Zoom ind", + "Zoom ud", + "Hjælpelinjer", + "Linealer", + "Gitter", + "Fastgør", + "Fastgør til", + "Dokument grænser", + "Pixelgitter", + "Kurver", + "Fastgør til pixels", + [ + "Udsnits", + "Udsnitsindstillinger" + ], + "Vis" + ], + [ + "Oversigt", + "Lag", + "Egenskaber", + "Brush", + "Karakter", + "Afsnit", + "Info", + "Lagsammensætninger", + "Farveprøver", + "Handlinger", + "Histogram", + "Navigator", + "Forudindstillinger til værktøj", + "Glyffer" + ], + [ + "Brush værktøj", + "Kloneværktøj", + "Beskæringsværktøj", + "Sletteværktøj", + "Marker eliptisk", + "Øjendråbe", + "Farveforløbsværktøjet", + "Hånd Værktøj", + "Tekstværktøj", + "Lasso-markering", + "Magnetisk lassomarkering", + "Flytteværktøj", + "Tryllestav", + "Malerspand værktøj", + "Polygonal lassomarkering", + "Firkantet markering", + "Fri transformering", + "Zoom Værktøj", + "Sløringsværktøj", + "Skærpenværktøj", + "Udtværingsværktøjet", + "Svampeværktøj", + "Brænde Værktøj", + "Fjern farvemætning", + "Spot healing brushværktøj", + "Healing brushværktøj", + "Lappe Værktøj", + "Kurvemarkøring", + "Vælg direkte", + "Pen", + "Fri pen", + "Tilpas form", + "Rektangel", + "Ellipo", + "Parametrisk form", + "Linie", + "Lineal", + "Hurtigmarkering", + "Blyantværktøj", + "Perspektivbeskæring", + "Udsnitsværktøjet", + "Udsnitsmarkeringsværktøjet", + "Farveerstatnings-værktøjet", + "Værktøjet til røde øjne", + "Objektmarkering", + "Baggrundsviskelæder", + "Fordrej som marionetdukke", + "Roter visning", + "Skalering, der afhænger af indholdet", + "Indholdsafhængig flytning" + ], + [ + "Tag et foto", + "Farvevælger", + "Kontur redigering", + "Lærredsstørrelse", + "Duplikér ind i...", + "Farveforløbseditor", + "Lagtype", + "Nyt Projekt", + "Gem til web", + "Fordrej", + "Billede størrelse", + "Vektorisér bitmap", + [ + "Studs", + "Beskær", + "Vis alle" + ], + "Genvejstaster", + "Tilføj hjælpelinjer", + [ + "Slet hjælpelinjer", + "Hjælpelinjer fra lag" + ] + ], + [ + "Opacitet", + "Effekter", + "Lysstyke", + [ + "Kontrast", + "Brug ældre" + ], + "Kanal", + "Eksponering", + "Forskydning", + "Gammakorrigering", + "Farvetone", + "Farvemætning", + "Lysstyrke", + "Farvelæg", + "Rækkevidde", + "Klarhed", + [ + "Størrelse", + "Interpolation", + "Nærmeste nabo", + "Bi-lineær" + ], + "Vinkel", + "Runding", + "Hårdhed", + "Plads", + [ + "Blandingstilstand", + "Bland hvis" + ], + "Sample størrelse", + "Kontur", + "Stil", + [ + "Gå tilbage", + "Relativ", + "Anker" + ], + "Tolerance", + "Sammenhængende", + "Fyld", + "Brug global vinkel", + "Afstand", + "Spredning", + "Støj", + "Fjern slagskygge", + "Teknik", + "Retning", + "Dybde", + "Blødgør", + "Tilstand", + "Farveforløb", + "Skaler", + "Juster med lag", + "Placering", + "Bredde", + "Højde", + "Destination", + "Type", + "Forgrund", + "Baggrund", + "Tilpasset", + "Navn", + "Opret", + "Format", + "Bevar proportioner", + [ + "Kvalitet", + "Sider" + ], + "Duplikér", + "Flyt", + "Smart filtre", + "Radius", + "Beløb", + "Distribution", + [ + "Uniform", + "Gaussian" + ], + "Monokromatisk", + "Cellestørrelse", + "Mønster", + "Flow", + "Styrke", + "Beskyt detaljer", + "Fyldtype", + "Tekstur", + "Variation", + "Kant", + "Kilde", + "Modtager", + "Kanaler", + "Maske", + "Massefylde", + "Justeret", + [ + "Kurve", + "Form", + "Pixels", + "Tommer", + "Centimeter", + "Millimeter", + "Procent" + ], + "Former", + "Sider", + "Indstillinger", + [ + "Længde", + "Ratio", + "Nogen", + "Gittertype", + "Isometrisk", + "Gitterlinje for hver", + "Måleenheder" + ], + "Reducér støj", + "Farver", + "Afstande", + "Hastighed", + "Vælg automatisk", + "Søg", + "Definér ny", + [ + "Foto", + "Skærm", + "Mobil", + "Reklamer", + "Aftryk" + ], + [ + "Fri", + "Låst forhold", + "Låst størrelse" + ], + "Hjælp", + [ + "Live Form", + "Rediger Live Form", + "Samme radius" + ], + "Sløring", + [ + "Polygon", + "Stjerne", + "Spirale", + "Kvadratisk" + ], + [ + "Hjørneradius", + "Indre radius" + ] + ], + [ + "Farve", + [ + "Ingen", + "Rød", + "Orange", + "Gul", + "Grøn", + "Blå", + "Lilla", + "Grå", + "Hvid", + "Gennemsigtigt", + "Sort", + "Cyan", + "Magenta", + "Neutral" + ], + "Total", + "Absolut", + "Bevar luminans" + ], + [ + "Slagskygge", + "Indvendig skygge", + "Udvendig glød", + "Indvendig glød", + "Facet og prægning", + "Farvemaske", + "Farveforløbsmaske", + "Mønstermaske", + "Satin", + "Strøg", + "Blandingsmuligheder", + "Vælg pixel" + ], + [ + "Spidsform", + "Spidsdynamik", + "Spredning", + "Farvedynamik", + [ + "Størrelsesvariation", + "Minimal Diameter", + "Vinkelvariation", + "Rundhedsvariation", + "Minimal Rundhed" + ], + [ + "Placering Variation", + "Tæl", + "Tæl Variation" + ], + [ + "Forgrunds/baggrundsvariation", + "Farvetonevariation", + "Farvemætningsvariation", + "Lysstyrkevariation" + ], + [ + "Vælg kilde til kloning ved at holde Alt (eller K) og klikke på billedet.", + "Marker forgrunden med hvid, baggrund med sort, og det ukendte område med grå.", + "Laget kan ikke redigeres.", + "Tekstlag skal først rasteriseres", + "Smart Objekt skal rasteriseres først", + "Vælg flere lag", + "Rett lag", + "Åbn et dokument først.", + "Luk det nuværende vindue først.", + "Kun aktuelt værktøj" + ], + [ + "Indspille", + "Ny handling set", + "Ny handling" + ], + [ + "Stylus tryk styrer opacitet", + "Stylus tryk styrer størrelsen" + ], + [ + "Normal", + "Opløs", + "Mørkere", + "Multiplicer", + "Farvebrænding", + "Lineær brænding", + "Mørkere farve", + "Lysere", + "Skærm", + "Farveudtværing", + "Forøg lysstyrkeforskel", + "Lysere farve", + "Maske", + "Blødt lys", + "Hårdt lys", + "Livligt lys", + "Lineært lys", + "Punktlys", + "Hård", + "Forskel", + "Eksklusion", + "Træk fra", + "Opdel", + "Farvetone", + "Farvemætning", + "Farve", + "Luminans", + "Videregivelse" + ] + ], + [ + "Linjeafstand", + "Sporing", + "Grundlinjeforskydning", + [ + "Konverter til punkttekst", + "Konverter til afsnitstekst" + ] + ], + [ + "Alle lag", + "Nuværende lag", + "Markering", + "Nuværende og under" + ], + [ + "Udskift", + "Forene", + "Træk fra", + "Overlap", + "XOR", + "Flet" + ], + [ + [ + "Lineært", + "Radialt", + "Vinklet", + "Reflekteret", + "Diamant", + "Shape Burst" + ], + [ + "Blødere", + "Præcis" + ], + [ + "Udvendig facet", + "Indvendig facet", + "Prægning", + "Pudeprægning", + "Strøgprægning", + "Stregbredden" + ], + [ + "Udglat", + "Hård mejsel", + "Blød mejsel", + "Udjævning" + ], + [ + "Op", + "Ned" + ], + [ + "Udvendig", + "Midten", + "Indvendig", + "Fra centrum" + ], + [ + "Skygge", + "Mellemtoner", + "Højlys" + ], + [ + "Dæmp farvemætning", + "Mætning" + ], + [ + "Lille", + "Medium", + "Stor" + ], + [ + "Afslutninger", + "Hjørner", + "Streger" + ] + ], + [ + "Vælg objektet under pilen", + "Transformeringshåndtagene", + "Pixel til pixel", + "Tilpas til skærm", + [ + "Juster venstrekanter", + "Vandrette midtpunkter", + "Juster højrekanter", + "Juster øverste kanter", + "Lodrette midtpunkter", + "Juster nederste kanter", + "Selv afstande" + ] + ], + [ + "Placer i", + "Nuværende projekt", + "Nyt projekt", + "Opløsning", + "Tilføjet i det nuværende projekt.", + "Nyt projekt oprettet", + "Kamera adgang afvist" + ], + [ + "Retning", + "Bøj", + "Vandret forvrængning", + "Lodret forvrængning", + [ + "Vandret", + "Lodret", + "horisontalt", + "vertikalt" + ], + [ + "Ingen", + "Bue", + "Bue nede", + "Bue oppe", + "Hvælving", + "Bule", + "Shell form ned", + "Shell form opad", + "Flag", + "Bølge", + "Fisk", + "At stige", + "Fiskeøje", + "Pump op", + "Pres", + "Twist", + "Tilpasset" + ], + [ + "Skrifttype", + "er ikke tilgængelig", + "Vil gengives ved hjælp af", + "Der er ufarvet arbejde i", + "Vil du virkelig lukke den?" + ], + [ + "Byt farver", + "Standard: Hvid og sort" + ] + ], + [ + "indlæst", + "tilføjet", + "Flyt hjælpelinje", + "Slet hjælpelinje", + "Tilføj hjælpelinje", + "Indlæser", + "Indlæs VAR0" + ], + [ + "Filtergalleri", + [ + [ + "Blødgør", + [ + "Udtvære", + "Genopbyg", + "Udglatter", + "Hvirvle", + "Shrink", + "Opblæs", + "Skub til venstre", + "Fastlåse", + "Lås op" + ] + ], + [ + "Linsekorrektion" + ] + ], + "Sløringsfiltre", + [ + "Gennemsnit", + "Sløring", + "Mere sløring", + "Bokssløring", + "Gaussisk sløring", + "Linsesløring", + "Bevægelsessløring", + "Radial sløring", + "Formsløring", + "Smart sløring", + "Overfladesløring" + ], + "Forvræng", + [ + "Kantede strøg", + "Knibning", + "Polære koordinater", + "Krusning", + "Vridning", + "Sfærisk effekt", + "Bølge" + ], + "Støjfiltre", + [ + "Tilføj Støj", + "Fjern støj", + "Støv og ridser", + "Median" + ], + "Pixelér", + [ + "Farvehalvtone", + "Krystallisering", + "Facet", + "Fragment", + "Mezzotint", + "Mosaik", + "Pointillistisk arbejdsmåde" + ], + "Gengivelsesfiltre", + [ + "Skyer", + "Skyblandinger", + "Linsebrydning" + ], + "Skarpere", + [ + "Gør skarpere", + "Gør kanter skarpere", + "Endnu skarpere", + "Smart skarphed", + "Uskarp maskning" + ], + "Effektfiltre", + [ + "Spredning", + "Prægning", + "Ekstrudering", + "Find kanter", + "Oliemaleri" + ], + "Andre filtre", + [ + "Brugerdefineret", + "Højpas", + "Maksimum", + "Minimum", + "Forskydning", + "Gentag" + ], + [ + "Udefineret område", + "Sat til gennemsigtig", + "Gentag kantpixel", + "Bøj rundt", + "Sidste Filter", + "Forhåndsvis" + ] + ], + [ + "Skabeloner", + [ + "Skrifttype filter", + "Nøgleord", + "Tilfældig" + ], + [ + "Med symboler", + "Med foto" + ], + [ + "Miniaturebillede", + "Liste" + ] + ] + ], + [ + [ + "Tiedosto", + "Muokkaa", + "Kuva", + "Taso", + "Kansio", + "Valitse", + "Suodatin", + "Näkymä", + "Ikkuna", + "Kieli", + "Kirjaudu sisään", + "Kirjaudu ulos", + "Luo käännös", + [ + "Tili", + "Palveluehdot", + "Takaisin", + "Tietoja", + "Ilmoita virheestä", + "Oppia" + ], + "Enemmän", + "Teema", + "Käytä WebGL", + [ + "Photopea: Edistynyt kuvankäsittelyohjelma", + "Ilmainen online-editori, joka tukee PSD-, XCF-, Sketch-, XD- ja CDR-muotoja.", + "Luo uusi kuva tai avaa tietokoneesta olemassa olevat tiedostot. Tallenna työsi PSD-muodossa (Tiedosto - Tallenna nimellä PSD) tai JPG / PNG / SVG (Tiedosto - Vie muodossa).", + "Ehdota uusia ominaisuuksia tai . Tavoitteenamme on luoda .", + "Sponsori linkit avautuvat uuteen ikkunaan.", + "Tätä toimintoa ei ole.", + "Asenna Photopea" + ] + ], + [ + "Avaa", + "Julkaise verkossa", + "Tallenna", + "Tallenna nimellä PSD", + "Tulosta", + "Avaa osoitteesta", + "Avaa tietokoneelta", + "Yhdistä Google Drive", + "Vie muodossa", + "Vie tasot", + "Skriptit", + "Avaa ja sijoita", + "Sulje", + "Paikallinen tallennustila", + null + ], + [ + "Askel eteenpäin", + "Askel taaksepäin", + "Pyyhi", + "Täytä", + "Muunna", + "Pyöritä", + "Peilikuvaksi VAR0", + "Skaalaa VAR0", + "Kumoa / Tee uudelleen", + "Perspektiivi", + [ + "Sekoita automaattisesti", + "Tasaa automaattisesti" + ], + "Häivytä", + "Käytä kuvaa" + ], + "Säädöt", + [ + "Kirkkaus/kontrasti", + "Tasojen säätö", + "Käyrien säätö", + "Valotus", + "Sävyeloisuus", + "Sävy/kylläisyys", + "Väritasapaino", + "Mustavalkoinen", + "Valokuvasuodatin", + "Kanavamikseri", + "Värihaku", + "Negatiivi", + "Porrasta", + "Kynnys", + "Liukuvärikartta", + "Valikoiva väri", + [ + "Automaattinen sävy", + "Automaattinen kontrasti", + "Automaattinen väri" + ], + "Korvaa väri" + ], + [ + "Leikkaa", + "Kopioi", + "Liitä", + "Uusi", + "Poista", + "Ota käyttöön", + "Poista käytöstä", + "Kopioi yhdistynyt", + "Käytä", + "Jälleen", + "Päivitä" + ], + [ + "Monista taso", + "Uusi säätötaso", + "Rasterimaski", + "Vektorimaski", + "Lisää (näytä kaikki)", + [ + "Lisää (kätke kaikki)", + "Näytä valinta", + "Piilota valinta", + "Läpinäkyvästä" + ], + [ + "Leikkuumaski", + "Pikamaskaustila" + ], + "Muunna älykkääksi objektiksi", + "Rasteroi", + "Ryhmitä tasot", + "Yhdistä alas", + "Yhdistä ylös", + [ + "Yhdistä tasot", + "Litistä kaikki tasot" + ], + "Uusi taso", + "Ota käyttöön rasterimaski", + "Poista rasterimaski käytöstä", + "Ota käyttöön vektorimaski", + "Poista vektorimaski käytöstä", + "Ota käyttöön leikkuumaski", + "Poista leikkuumaski käytöstä", + "Uusi kansio", + "Lisää rasterimaski", + "Poista rasterimaski", + "Lisää vektorimaski", + "Poista vektorimaski", + "Linkkaa rasterimaski", + "Poista rasterimaskin linkitys", + "Linkkaa vektorimaski", + "Poista vektorimaskin linkitys", + "Ota käyttöön tason tehosteet", + "Poista tason tehosteet käytöstä", + "Poista taso", + "Tason peittävyyden muutos", + "Sekoituksen muutos", + "Rasteroi tason tyyli", + "Tasojen järjestys", + [ + "Uuden älykkään objektin luominen", + "Älykkään objektin päivitys", + "Älykkään objektin sijoitus", + "Lähde (Älykäs objekti)", + "Pinoamistila" + ], + "Nimen muutos", + "Värin muutos", + "Muokkaa säätötasoa", + "Muunna muodoksi", + "Ota käyttöön suodinmaski", + "Poista suodinmaski käytöstä", + "Ota käyttöön älykkäät suotimet", + "Poista älykkäät suotimet käytöstä", + "Lisää suodinmaski", + "Poista suodinmaski", + "Pyyhi älykkäät suotimet", + [ + [ + "Täyttö tasavärillä", + "Täyttö liukuvärillä", + "Täyttö kuviolla", + "Sisältötietoinen" + ], + "Uusi täyttötaso", + "Muokkaa täyttötaso" + ], + "Kopioi tasoksi", + "Suodinmaski", + "Poista tasotyyli", + "Siirrä älykäs suodin", + "Poista älykäs suodin", + [ + "Linkitä tasot", + "Poista tasojen linkitys" + ], + "Järjestä", + [ + "Tuo päälle", + "Siirrä päällemmäksi", + "Siirrä alemmaksi", + "Vie alle" + ], + [ + "Taso on lukittu.", + "Lukitse muutos", + "Lukitse" + ], + null + ], + [ + "Kaikki", + "Kumoa valinta", + "Käänteinen valinta", + "Muuta", + "Laajenna", + "Supista", + "Häivytys", + "Siirrä valintaa", + "Värialue", + "Reunus", + "Muunna valinta", + "Hienosäädä reuna", + "Korjaa valinta", + null + ], + [ + "Zoomaa sisään", + "Zoomaa ulos", + "Apulinjat", + "Viivaimet", + "Ruudukko", + "Kohdista", + "Kohdista kohteeseen", + "Dokumentin rajat", + "Pikseli ruudukko", + "Reitit", + "Kohdista pikseleihin", + [ + "Osia", + "Osan asetukset" + ], + "Näytä" + ], + [ + "Historia", + "Tasot", + "Ominaisuudet", + "Sivellin", + "Kirjain", + "Kappale", + "Tietoja", + "Tasovedokset", + "Värimallit", + "Makrot", + "Histogrammi", + "Navigaattori", + "Työkalujen esimääritykset", + "Kuviot" + ], + [ + "Sivellinyökalulla", + "Kloonisivellin", + "Rajaustyökalu", + "Kumi", + "Ellipsivalinta", + "Pipetti", + "Liukuvärityökalu", + "Käsi", + "Tekstityökalu", + "Lassovalinta", + "Magneettinen lassovalinta", + "Siirtotyökalu", + "Taikasauva", + "Maalipurkki", + "Monikulmiolassovalinta", + "Suorakulmiovalinta", + "Vapaa muunto", + "Zoomaus", + "Häivytä", + "Terävöitä", + "Hankaus", + "Varjostustyökalu", + "Lisävalotustyökalu", + "Pesusieni", + "Spottikorjaussivellin", + "Korjaussivellin", + "Paikkaa valinnalla", + "Reitin valinta", + "Suoravalinta", + "Vektoripiirrin", + "Vektorikynä", + "Vapaa muoto", + "Suorakulmio", + "Ellipsi", + "Parametrinen muoto", + "Viiva", + "Viivain", + "Pikavalintatyökalu", + "Kynätyökalulla", + "Perspektiivirajaustyökalu", + "Ositustyökalulla", + "Osanvalintatyökalulla", + "Värin korvaustyökalulla", + "Punasilmäisyystyökalu", + "Objektin valintatyökalu", + "Taustan pyyhintä", + "Nukketeatterin käyristysmuunnos", + "Kierrä näkymää", + "Sisältötietoinen skaalaus", + "Sisältötietoinen siirto" + ], + [ + "Ota kuva", + "Värivalitsin", + "Korkeusrajan editori", + "Piirtoalue", + "Monista kohteeseen ...", + "Liukuvärieditori", + "Tason tyyli", + "Uusi projekti", + "Tallenna verkkoon", + "Käyristä", + "Kuvan koko", + "Vektoroi bittikartta", + [ + "Poista reunat", + "Rajaus", + "Näytä kaikki" + ], + "Näppäinkomennot", + "Lisää apulinjat", + [ + "Pyyhi apulinjat", + "Apulinjat tasolta" + ] + ], + [ + "Peittävyys", + "Tehosteet", + "Kirkkaus", + [ + "Kontrasti", + "Käytä vanhaa" + ], + "Kanava", + "Valotus", + "Siirtymä", + "Gamman korjaus", + "Sävy", + "Kylläisyys", + "Valoisuus", + "Väritä", + "Aluerajaus", + "Eloisuus", + [ + "Koko", + "Interpolaatioon", + "Lähimmän naapurin", + "Bilineaarinen" + ], + "Kulma", + "Pyöreys", + "Kovuus", + "Välistys", + [ + "Sekoitustapa", + "Sekoita jos" + ], + "Näytteen koko", + "Korkeusraja", + "Tyyli", + [ + "Käänteinen", + "Suhteellinen", + "Tukipiste" + ], + "Toleranssi", + "Vierekkäiset", + "Täyttö", + "Käytä globaalia kulmaa", + "Etäisyys", + "Levitys", + "Kohina", + "Heittovarjon sisäpuolen aukko", + "Tekniikka", + "Suunta", + "Syvyys", + "Pehmennä", + "Moodi", + "Liukuväri", + "Skaalaus", + "Tasaa tason kanssa", + "Sijainti", + "Leveys", + "Korkeus", + "Määränpää", + "Tyyppi", + "Edustan", + "Taustan", + "Mukautettu", + "Nimi", + "Luo", + "Tiedostomuoto", + "Säilytä kuvasuhde", + [ + "Laatu", + "Sivut" + ], + "Monista", + "Siirrä", + "Älykkäät suotimet", + "Säde", + "Voimakkuus", + "Jakauma", + [ + "Tasainen", + "Gaussin" + ], + "Yksisävyinen", + "Solun koko", + "Kuvio", + "Virtaama", + "Voimakkuus", + "Säilytä yksityiskohdat", + "Täytön tyyppi", + "Tekstuuri", + "Hajoama", + "Reuna", + "Lähde", + "Kohde", + "Kanavat", + "Maski", + "Tiheys", + "Kohdistettu", + [ + "Reitin", + "Muoto", + "Pikseliä", + "Tuumaa", + "Senttimetriä", + "Millimetriä", + "Prosentti" + ], + "Muodot", + "Sivut", + "Asetukset", + [ + "Pituus", + "Suhde", + "Kaikki", + "Ruudukon tyyppi", + "Isometrinen", + "Ruudukon tiheys", + "Viivaimen yksiköt" + ], + "Lievitä rakeisuutta", + "Värit", + "Etäisyydet", + "Teho", + "Automaattinen valinta", + "Etsi", + "Määritä uusi", + [ + "Valokuva", + "Näyttö", + "Mobiililaite", + "Mainokset", + "Tuloste" + ], + [ + "Vapaa", + "Vakiosuhde", + "Kiinteä koko" + ], + "Ohje", + [ + "Live Shape", + "Muokkaa Live Shape", + "Yhtenevät säteet" + ], + "Sallittu poikkeama", + [ + "Monikulmio", + "Tähti", + "Spiraali", + "Neliö" + ], + [ + "Kulman säde", + "Sisäinen säde" + ] + ], + [ + "Väri", + [ + "Väritön", + "Punainen", + "Oranssi", + "Keltainen", + "Vihreä", + "Sininen", + "Violetti", + "Harmaa", + "Valkoinen", + "Läpinäkyvä", + "Musta", + "Syaani", + "Magenta", + "Neutraali" + ], + "Totaalinen", + "Absoluuttinen", + "Säilytä värin kirkkaus" + ], + [ + "Heittovarjo", + "Sisävarjo", + "Ulkoinen hohto", + "Sisäinen hohto", + "Viiste ja korkokuva", + "Väripäällyste", + "Liukuväripäällyste", + "Kuviopäällyste", + "Satiini", + "Viiva", + "Sekoitusvaihtoehdot", + "Valitse pikselien" + ], + [ + "Kärjen muoto", + "Kärjen dynaamiset ominaisuudet", + "Hajonta", + "Värien dynamiikka", + [ + "Koko Värinä", + "Minimihalkaisija", + "Kulma Värinä", + "Pyöreys Värinä", + "Minimipyöreys" + ], + [ + "Sijainti Värinä", + "Lukumäärä", + "Lukumäärä Värinä" + ], + [ + "Edustan/Taustan Värinä", + "Sävyn Värinä", + "Kylläisyyden Värinä", + "Kirkkauden Värinä" + ], + [ + "Valitse kloonauksen lähde pitämällä Alt-näppäintä pohjassa ja klikkaamalla kuvaa.", + "Merkitse edusta valkoinen, tausta mustalla ja tuntematon alue harmaalla.", + "Taso ei ole muokattavissa.", + "Tekstin taso on ensin rasteroitava", + "Älykäs objekti on ensin rasteroitava", + "Valitse useita tasoja", + "Suorista taso", + "Avaa dokumentti ensin.", + "Sulje nykyinen ikkuna ensin.", + "Vain nykyinen työkalu" + ], + [ + "Tallenna", + "Uusi Makrojoukko", + "Uusi Makro" + ], + [ + "Kynän paine määrittää peittävyyden", + "Kynän paine määrittää koon" + ], + [ + "Normaali", + "Roiskiva", + "Tummentava", + "Kertova", + "Värilisävalotus", + "Lineaarinen lisävalotus", + "Tummempi väri", + "Vaalentava", + "Rasteri", + "Värivarjostus", + "Lineaarinen varjostus", + "Vaaleampi väri", + "Sulauttava", + "Pehmeä valo", + "Kova valo", + "Kirkas vaalea", + "Lineaarinen valo", + "Kohdevalo", + "Kova sekoitus", + "Erottava", + "Poistava", + "Vähennä", + "Pilko osiin", + "Sävy", + "Kylläisyys", + "Väri", + "Värin kirkkaus", + "Läpiohjaus" + ] + ], + [ + "Rivivälistys", + "Merkkiväli", + "Peruslinjan siirto", + [ + "Muunna pistetekstiksi", + "Muunna kappaletekstiksi" + ] + ], + [ + "Kaikki tasot", + "Nykyinen taso", + "Valinta", + "Nykyinen ja alapuoliset" + ], + [ + "Korvaa", + "Liitto", + "Eroavaisuus", + "Leikkaus", + "XOR", + "Yhdistä" + ], + [ + [ + "Lineaarinen", + "Radiaalinen", + "Kulma", + "Peilattu", + "Timantti", + "Shape Burst" + ], + [ + "Pehmeämpi", + "Tarkempi" + ], + [ + "Ulompi viiste", + "Sisäinen viiste", + "Korkokuva", + "Tyynykorkokuva", + "Reunakorkokuva", + "Viiva leveys" + ], + [ + "Pehmennä", + "Kova taltta", + "Pehmeä taltta", + "Tasaisuus" + ], + [ + "Ylös", + "Alas" + ], + [ + "Ulkopuolelle", + "Keskelle", + "Sisäpuolelle", + "Keskeltä" + ], + [ + "Varjostukset", + "Keskisävyt", + "Korostukset" + ], + [ + "Haalista", + "Kyllästä" + ], + [ + "Pieni", + "Keskikokoinen", + "Suuri" + ], + [ + "Päät", + "Kulmat", + "Viivoja" + ] + ], + [ + "Valitse objekti osoittimen alla", + "Muuntovalinnat", + "Pikseli pikseliin", + "Sovita alueelle", + [ + "Vasemmat reunat", + "Keskusta vaakasuunnassa", + "Vasemmat reunat", + "Yläreunat", + "Keskitä pystysuunnassa", + "Alareunat", + "Yhtä etäisyydet" + ] + ], + [ + "Laittaa sisään", + "Nykyinen projekti", + "Uusi projekti", + "Resoluutio", + "Lisätty nykyiseen projektiin.", + "Uusi projekti luotiin.", + "Käyttöoikeus kameraan estettiin." + ], + [ + "Suuntaus", + "Väännä", + "Vaakavääristys", + "Pystyvääristys", + [ + "Vaaka", + "Pysty", + "vaakasuunnassa", + "pystysuunnassa" + ], + [ + "Ei", + "Kaari", + "Alempi kaari", + "Ylempi kaari", + "Holvikaari", + "Pullistus", + "Alempi kuori", + "Ylempi kuori", + "Lippu", + "Aalto", + "Kala", + "Nosto", + "Kalansilmä", + "Paisutus", + "Puristus", + "Kierre", + "Mukautettu" + ], + [ + "Kirjasin", + "ei ole saatavilla", + "Piirretään käyttäen", + "Tämän työtä ei ole tallennettu:", + "Haluatko todella sulkea sen?" + ], + [ + "Vaihda värit", + "Oletusasetus: valkoinen ja musta" + ] + ], + [ + "ladattu", + "lisätty", + "Siirrä apulinjan", + "Poista apuviiva", + "Lisää apulinja", + "Ladataan", + "Lataa VAR0" + ], + [ + "Suodatingalleria", + [ + [ + "Sulata-suotimen", + [ + "Levittä", + "Uudelleenmuodosta", + "Tasoitaa", + "Pyöräytä", + "Kutista", + "Puhalla", + "Vasemmalle työntävä", + "Jäädytä", + "Vapauta" + ] + ], + [ + "Linssikorjaus" + ] + ], + "Sumenna", + [ + "Keskiarvo", + "Sumenna", + "Sumenna lisää", + "Ruutusumennus", + "Gauss-sumennus", + "Linssisumennus", + "Liike-epäterävyys", + "Säteittäinen sumennus", + "Muotosumennus", + "Älykäs sumennus", + "Pintasumennus" + ], + "Vääristä", + [ + "Poikkeuta", + "Paina kuopalle", + "Napakoordinaatit", + "Väreily", + "Taivuta", + "Pullista", + "Aalto" + ], + "Kohina", + [ + "Lisää kohinaa", + "Poista pilkut", + "Pöly ja naarmut", + "Mediaani" + ], + "Pikselöinti", + [ + "Värirasterointi", + "Kiteytä", + "Fasetti", + "Fragmentoi", + "Mezzotinto", + "Mosaiikki", + "Pistemaalaus" + ], + "Muodosta", + [ + "Pilvet", + "Erottavat pilvet", + "Linssiheijastus" + ], + "Terävöitys", + [ + "Terävöitä", + "Terävöitä reunoja", + "Terävöitä lisää", + "Älykäs terävöinti", + "Epäterävä maski" + ], + "Tyylittele", + [ + "Hajota", + "Korkokuva", + "Työnnä ulos", + "Etsi reunat", + "Öljy Maali" + ], + "Muut suotimet", + [ + "Mukautettu", + "Ylipäästö", + "Maksimi", + "Minimi", + "Siirtymä", + "Toista" + ], + [ + "Määrittämätön alue", + "Aseta läpinäkyväksi", + "Toista reunan pikselit", + "Toisesta reunasta", + "Viimeinen suodatin", + "Esikatselu" + ] + ], + [ + "Mallit", + [ + "Kirjasin suodatin", + "Avainsanat", + "Satunnaista" + ], + [ + "Symboleilla", + "Valokuvalla" + ], + [ + "Miniatyyri", + "Luettelo" + ] + ] + ], + [ + [ + "Datoteka", + "Uredi", + "Slika", + "Plast", + "Mapa", + "Izberi", + "Filter", + "Ogled", + "Okno", + "Jezik", + "Vpis", + "Odjava", + "Ustvari prevod", + [ + "Račun", + "Pogoji storitve", + "Nazaj", + "Opis", + "Prijavi napako", + "Nauči se" + ], + "Več", + "Tema", + "Uporabi WebGL", + [ + "Photopea: napredni urejevalnik slik", + "Brezplačen spletni urejevalnik, ki podpira formate PSD, XCF, Sketch, XD in CDR.", + "Ustvarite novo sliko ali odprite obstoječe datoteke iz računalnika. Shranite svoje delo kot PSD (Datoteka - Shrani kot PSD) ali kot JPG / PNG / SVG (Datoteka - Izvozi kot).", + "Predlagajte nove funkcije v našem ali . Naš cilj je ustvariti .", + "Sponzorske povezave so odprte v novem oknu.", + null, + null + ] + ], + [ + "Odpri", + "Objavi", + "Shrani", + "Shrani kot PSD", + "Natisni", + "Odpri iz URL", + "Odpri iz računalnika", + "Poveži z Google Drive", + "Izvozi kot", + "Izvozi plasti", + "Skripta", + "Odpri & postavi", + "Zapri", + "Lokalni podatki", + null + ], + [ + "Korak naprej", + "Korak nazaj", + "Počisti", + "Zapolni", + "Preoblikuj", + "Zavrti", + "Obrni VAR0", + "Spremeni velikost VAR0", + "Razveljavi / Ponovi", + "Perspektiva", + [ + "Samodejno zmešaj", + null + ], + "Zbledi", + null + ], + "Prilagoditve", + [ + "Svetlost/Kontrast", + "Ravni", + "krivulje", + "Osvetljenost", + "Živahnost", + "Odtenek/Zasičenost", + "Uravnoteženost barv", + "Črno & Belo", + "Foto filter", + "Kanalski mešalnik", + "Barvni pregled", + "Invert", + "Posterizirati", + "Prag", + "Prelivanje", + "Izberi Barvo", + [ + "Samodejni odtenek", + "Samodejni kontrast", + "Samodejna barva" + ], + "Nadomesti barvo" + ], + [ + "Izreži", + "Kopiraj", + "Prilepi", + "Novo", + "Izbriši", + "Omogoči", + "Onemogoči", + "Kopiraj vse", + "Uporabi", + "Ponovno", + "Posodobi" + ], + [ + "Podvoji plast", + "Nova nastavitvena plast", + "Rasterska Maska", + "Vektorska Maska", + "Dodaj (Pokaži vse)", + [ + "Dodaj (Skrij vse)", + null, + null, + null + ], + [ + "Obrezana maska", + null + ], + "Pretvori v Pametni Objekt", + "Rasteriziraj", + "Združi plasti", + "Združi plasti ▼", + "Združi plasti ▲", + [ + "Združi izbrane plasti", + "Združi plasti" + ], + "Nova plast", + "Omogoči Rastersko Masko", + "Onemogoči Rastersko Masko", + "Omogoči Vektorsko Masko", + "Onemogoči Vektorsko Masko", + "Omogoči obrezano masko", + "Onemogoči obrezano masko", + "Nova mapa", + "Dodaj Rastersko Masko", + "Zbriši Rastersko Masko", + "Dodaj Vektorsko Masko", + "Zbriši Vektorsko Masko", + "Poveži Rastersko Masko", + "Razveži Rastersko Masko", + "Poveži Vektorsko Masko", + "Razveži Vektorsko Masko", + "Omogoči Efekte Plasti", + "Onemogoči Efekte Plasti", + "Zbriši plast", + "Sprememba prosojnosti plasti", + "Sprememba mešanja", + "Rasteriziraj Stil Plasti", + "Vrstni Red Plasti", + [ + "Ustvari pametni objekt", + "Osveži Pameti Objekt", + "Postavitev pametnega objekta", + "Vir (pametni objekt)", + null + ], + "Sprememba imena", + "Sprememba barve", + "Uredi nastavitveno plast", + "Pretvori v obliko", + "Omogoči Masko Filtra", + "Onemogoči Masko Filtra", + "Omogoči Pametne Filtre", + "Onemogoči Pametne Filtre", + "Dodaj Masko Filtra", + "Zbriši Masko Filtra", + "Odstrani Pametne Filtre", + [ + [ + "Zapolni z Barvo", + "Zapolni z Prelivom", + "Zapolni z Vzorcem", + "Zavedanje vsebine" + ], + "Nova zapolnitvena plast", + "Uredi zaplonitveno plast" + ], + "Plast prek kopije", + "Maska Filtra", + "Izbriši Stil Plasti", + "Premakni Pametni Filter", + "Izbriši Pametni Filter", + [ + "Poveži Plasti", + "Razveži Plasti" + ], + "Uredi", + [ + "V ospredje", + "Naprej", + "Nazaj", + "Pošlji Nazaj" + ], + [ + "Plast je Zaklenjena", + "Zakleni Spreminjanje", + null + ], + null + ], + [ + "Vse", + "Odznači", + "Obrni", + "Uredi", + "Razširi", + "Stisni", + "Širina Roba", + "Premakni izbiro", + "Razpon Barv", + "Obroba", + "Transformiraj izbiro", + "Izboljšaj Robove", + "Popravi izbiro", + null + ], + [ + "Približaj", + "Oddalji", + "Vodila", + "Ravnila", + "Mreža", + "Pripni", + "Pripni na", + "Meje dokumenta", + "Točkovna Mreža", + "Krivulje", + "Pripni na piksle", + [ + null, + null + ], + "Pokaži" + ], + [ + "Zgodovina", + "Plasti", + "Možnosti", + "Čopič", + "Znak", + "Odstavek", + "Informacije", + "Kompozicije plasti", + "Barve", + "Akcije", + "Histogram", + "Navigator", + "Konfiguracija orodja", + null + ], + [ + "Čopiči", + "Kloniranje", + "Izrezovanje", + "Brisanje", + "Elipsa", + "Kapalka", + "Prelivanje", + "Premik pogleda", + "Pisave", + "Laso", + "Magnetni Laso", + "Premikanje", + "Čarobna palica", + "Barvanje", + "Poligonski Laso", + "Pravokotnik", + "Prosta transformacija", + "Lupa", + "Zameglitev", + "Izostritev", + "Razlivanje", + "Orodje osvetlitve", + "Potemnitev", + "Razbarvaj", + "Čopič za popravljanje madežev", + "Čopič za popravke", + "Premik zaplate", + "Izberi krivulje", + "Izberi direktno", + "Svinčnik", + "Prosto pisalo", + "Oblika po Meri", + "Kvadrat", + "Elipsa", + "Večkotnik", + "Črta", + "Ravnilo", + "Hitra izbira", + "Risanje", + "Obreži s perspektivo", + null, + null, + "Zamenjaj barvo", + "Rdeče oči", + null, + "Odstrani ozadje", + null, + null, + null, + null + ], + [ + "Fotografiraj", + "Izberi barvo", + "Urejanje Obrobe", + "Velikost platna", + "Podvoji v ...", + "Urejanje Prelivanja", + "Stil Plasti", + "Nov Projekt", + "Shrani za Splet", + "Ukrivi", + "Velikost slike", + "Spremeni pike v črte", + [ + "Odreži", + "Izreži", + "Pokaži vse" + ], + "Bljižnice tipkovnice", + "Dodaj vodila", + [ + null, + null + ] + ], + [ + "Gostota", + "Efekti", + "Svetlost", + [ + "Kontrast", + "Použiť kompatibilitu" + ], + "Kanal", + "Osvetlitev", + "Odmakni", + "Gamma Nastavitve", + "Odtenek", + "Nasičenost", + "Svetlost", + "Obarvaj", + "Razpon", + "Živahnost", + [ + "Velikost", + "Interpolacija", + "Najbližja sosednja", + "Bilinearna" + ], + "Naklon", + "Zaobljenost robov", + "Trdota", + "Razmak", + [ + "Način mešanja", + "Mešajte, ko" + ], + "Velikost vzorca", + "Obroba", + "Stil", + [ + "Obrni", + "Relativno", + "Sidro" + ], + "Toleranca", + "Sosednje", + "Zapolni", + "Uporabi Globalni Naklon", + "Razdalija", + "Razširi", + "Šum", + "Ne nariši sence", + "Tehnika", + "Smer", + "Globina", + "Zmehčaj", + "Način", + "Preliv", + "Moč", + "Poravnaj s Plastjo", + "Lokacija", + "Širina", + "Višina", + "Cilj", + "Tip", + "Ospredje", + "Ozadje", + "Po Meri", + "Ime", + "Ustvari", + "Format", + "Ohrani Razmerje Stranic", + [ + "Kvaliteta", + "Strani" + ], + "Podvoji", + "Premakni", + "Pametni Filtri", + "Radij", + "Gostota", + "Porazdelitev", + [ + "Uniformna", + "Gaussova" + ], + "Monokromatsko", + "Velikost Celice", + "Vzorec", + "Tok", + "Moč", + "Zaščiti Podrobnosti", + "Vrsta Polnila", + "Tekstura", + "Dodaj Šum", + "Rob", + "Izvor", + "Cilj", + "Kanali", + "Maska", + "Gostota", + "Poravnano", + [ + "Pot", + "Oblika", + "Pikice", + "Inče", + "Centimetrov", + "Milimetrov", + "Odstotkov" + ], + "Oblike", + "Strani", + "Lastnosti", + [ + "Dolžina", + "Razmerje", + "Katerikoli", + "Vrsta mreže", + "Izometrično", + "Razmak mreže", + "Enote ravnila" + ], + "Zmanjšaj Šum", + "Barve", + "Razdalje", + "Stopnja", + "Samodejno Izberi", + "Najdi", + "Definiraj novo", + [ + "Fotografija", + "Zaslon", + "Mobilna Naprava", + "Oglasi", + "Tisk" + ], + [ + "Brezplačno", + "Zaklenjeno Razmerje", + "Zaklenjena Velikost" + ], + "Pomoč", + [ + "Obstojne oblike", + "Uredi obstojne oblike", + "Enak premer" + ], + "Nejasnost", + [ + "Večkotnik", + "Zvezda", + "Spirala", + "Kvadrat" + ], + [ + "Polmer roba", + "Notranji polmer" + ] + ], + [ + "Barva", + [ + "Brez", + "Rdeča", + "Oranžna", + "Rumena", + "Zelena", + "Modra", + "Vijolična", + "Siva", + "Bela", + "Prosojna", + "Črna", + "Cian", + "Magenta", + "Neutralno" + ], + "Celotno", + "Absolutno", + "Ohrani svetlost" + ], + [ + "Senca", + "Notranja Senca", + "Zunanji Sijaj", + "Notranji Sijaj", + "Zaobljenost in izbočenost", + "Prelij z Barvo", + "Prekrij z Prelivom", + "Prekrij z Vzorcem", + "Saten", + "Obrobi", + "Možnosti mešanja", + null + ], + [ + "Oblika konice", + "Dinamika konice", + "Raztresi", + "Dinamika barve", + [ + "Naključnost velikosti", + "Minimalni premer", + "Naključnost kota", + "Naključnost zaobljenosti", + "Minimalna zaobljenost" + ], + [ + "Naključnost pozicije", + "Število", + "Naključnost števila" + ], + [ + "Naključnost ospredja/ozadja", + "Naključnost odtenka", + "Naključnost nasičenosti", + "Naključnost svetlosti" + ], + [ + "Izberi področje dupliciranja s pritiskom Alt (ali K) in klikom na sliko.", + "Označi Ospredje z Belo, Ozadje z Črno in neznano področje z Sivo barvo.", + "Plasti ni mogoče urejati.", + "Tekstovna Plast mora biti najprej rasterizirana.", + "Pametni Objekt mora biti najprej rasteriziran.", + "Izberi več plasti", + "Poravnaj plast", + "Najprej odpri dokument.", + "Najprej zapri trenutno okno", + "Samo trenutno orodje" + ], + [ + "Snemaj", + "Nov nabor akcij", + "Nova akcija" + ], + [ + "Pritiska stylusa kontrolira prosojnost", + "Pritiska stylusa kontrolira velikost" + ], + [ + "Normalno", + "Raztopi", + "Potemni", + "Zmnoži", + "Vžgi barvo", + "Vžgi linearno", + "Temnejša barva", + "Posvetli", + "Presvetli", + "Izogni se barvam", + "Linearno se izogni", + "Svetlejša barva", + "Prekrij", + "Mehka svetloba", + "Trda svetloba", + "Živa svetloba", + "Linearna svetloba", + "Točkasta svetloba", + "Trda mešanica", + "Razlika", + "Izključitev", + "Odštej", + "Deli", + "Odtenek", + "Nasičenost", + "Barva", + "Svetlost", + "Spusti skozi" + ] + ], + [ + "Razmak vrstic", + "Razpiranje", + "Premik črkovne črte", + [ + "Pretvori v naslovni tekst", + "Pretvori v glavni tekst" + ] + ], + [ + "Vse Plasti", + "Trenutna Plast", + "Izbira", + "Trenutni in spodnji" + ], + [ + "Zamenjaj", + "Združi", + "Odštej", + "Presek", + "Izključi", + "Združi" + ], + [ + [ + "Linearno", + "Krožno", + "Kot", + "Zrcaljeno", + "Diamant", + "Vtis oblike" + ], + [ + "Mehkeje", + "Natančno" + ], + [ + "Zaobljenost zunaj", + "Zaobljenost znotraj", + "Izboči", + "Zaobljenost zamenjana", + "Zaobljenost obrobe", + "Širina poteze" + ], + [ + "Mehko", + "Trdo izklesano", + "Mehko izklesano", + "Mehkost" + ], + [ + "Gor", + "Dol" + ], + [ + "Zunanji Rob", + "Centriraj", + "Znotraj", + "Iz sredine" + ], + [ + "Sence", + "Srednji toni", + "Svetli toni" + ], + [ + "Odstrani barve", + "Nasiči" + ], + [ + "Malo", + "Srednje", + "Veliko" + ], + [ + "Zakončeni", + "Rohy", + "Čiarky" + ] + ], + [ + "Izberi objekt pod kazalcem", + "Kontrole transformacije", + "Piksel za piksel", + "Zapolni prostor", + [ + "Poravnaj leve robove", + "Poravnaj Horizontalno", + "Poravnaj desne robove", + "Poravnaj zgornje robove", + "Poravnaj Vertikalno", + "Poravnaj spodnje robove", + "Enaki razmaki" + ] + ], + [ + "Vstavi v", + "Trenutni Projekt", + "Nov Projekt", + "Ločljivost", + "Dodano v trenutni projekt.", + "Nov projekt je pripravljen", + "Nimam dostopa do kamere." + ], + [ + "Orientacija", + "Ukrivi", + "Vodoravno popačenje", + "Navpično popačenje", + [ + "Horizontalno", + "Vertikalno", + "Vodoravno", + "Navpično" + ], + [ + "Nič", + "Lok", + "Lok spodaj", + "Lok zgoraj", + "Obok", + "Izboklina", + "Školjka spodaj", + "Školjka zgoraj", + "Zastavica", + "Val", + "Riba", + "Dvigni", + "Ribje oko", + "Napihni", + "Stisni", + "Zasuk", + "Po Meri" + ], + [ + "Pisava", + "ni na voljo", + "Se bo prikazalo s pomočjo", + "Nekaj dela ni shranjenega v", + "Želite res zapreti?" + ], + [ + "Zamenjaj Barve", + "Privzeto: Črno - Belo" + ] + ], + [ + "naložen", + "dodan", + "Premakni Vodilo", + "Izbriši Vodilo", + "Dodaj Vodilo", + "Nalagam", + "Naloži VAR0" + ], + [ + "Galerija Filtrov", + [ + [ + "Utekočini", + [ + "Zmehčaj", + "Povrni", + "Zmehčaj", + "Zavrti Spiralno", + "Stisni", + "Razširi", + "Potisni Levo", + "Zamrzni", + "Odmrzni" + ] + ], + [ + "Popravek Leče" + ] + ], + "Zameglitev", + [ + "Povprečje", + "Zameglitev", + "Močna Zameglitev", + "Kvadratna Zameglitev", + "Nastavljiva Zameglitev", + "Zameglitev Leče", + "Smerna Zameglitev", + "Krožna zameglitev", + "Oblikovna Zameglitev", + "Pametna Zameglitev", + "Površinska Zameglitev" + ], + "Popači", + [ + "Razporedi", + "Napihni v sredini", + "Polarne koordinate", + "Valovito", + "Nagni", + "Zaobli", + "Valovito" + ], + "Šum", + [ + "Dodaj Šum", + "Odstrani prah", + "Prah in Praske", + "Mediana" + ], + "Pikčasto", + [ + "Barvni raster", + "Kristaliziraj", + "Pikice", + "Razkoščkaj", + "Jedkanje", + "Mozaik", + "Pointilizem" + ], + "Upodobi", + [ + "Oblaki", + "Drugačni oblaki", + null + ], + "Ostro", + [ + "Ostro", + "Ostri Robovi", + "Več Ostrine", + "Pametna Ostrina", + "Maska Ostrine" + ], + "Stiliziraj", + [ + "Razprši", + "Izboči", + "Iztisni", + "Najdi Robove", + "Oljna slika" + ], + "Drugo", + [ + "Po meri", + "Prepusti visoke frekvence", + "Maximum", + "Minimum", + "Zamakni", + "Ponovi" + ], + [ + "Nedefinirano Področje", + "Nastavi Prosojno", + "Ponovi robne piksle", + "Ovij", + "Zadnji Filter", + "Predogled" + ] + ], + [ + "Predloge", + [ + "Filter pisav", + "Ključne besede", + "Naključno" + ], + [ + "S simboli", + "S sliko" + ], + [ + "Sličice", + "Seznam" + ] + ] + ], + [ + [ + "Dosya", + "Düzenle", + "Resim", + "Katman", + "Klasör", + "Seç", + "Filtre", + "Görünüm", + "Pencere", + "Dil", + "Giriş Yap", + "Çıkış", + "Tercüme Et", + [ + "Hesap", + "Kullanım Şartları", + "Geri", + "Hakkında", + "Hata Bildir", + "Öğren" + ], + "Daha Fazla", + "Tema", + "WebGL Kullan", + [ + "Photopea: Gelişmiş Resim Editörü", + "PSD, XCF, Sketch, XD ve CDR formatlarını destekleyen ücretsiz çevrimiçi editör.", + "Yeni bir resim oluşturun veya mevcut dosyaları bilgisayarınızdan açın. Çalışmanızı PSD (Dosya - PSD Olarak Kaydet) veya JPG / PNG / SVG (Dosya - Farklı Dışa Aktar) olarak kaydedin.", + " veya 'ta yeni özellikler önerin. Amacımız oluşturmaktır.", + "Sponsor bağlantıları yeni bir pencerede açılır.", + "Bu özellik bulunmamaktadır.", + "Photopea uygulamasını yükle" + ] + ], + [ + "Aç", + "Online Yayınla", + "Kaydet", + "PSD Olarak Kaydet", + "Yazdır", + "URL Bağlantısını Aç", + "Bilgisayardan Aç", + "Google Drive bağlan", + "Farklı Dışa Aktar", + "Katmanları Dışa Aktar", + "Betik", + "Aç ve Yerleştir", + "Kapat", + "Yerel Depolama", + "Dosya Bilgisi" + ], + [ + "İleri Git", + "Geri Git", + "Temizle", + "Doldur", + "Dönüştür", + "Döndür", + "VAR0 Çevir", + "VAR0 Ölçek", + "Geri / İleri", + "Perspektif", + [ + "Otomatik Harmanla", + "Otomatik Hizala" + ], + "Soldur", + "Resme Uygula" + ], + "Ayarlamalar", + [ + "Parlaklık/Kontrast", + "Seviye", + "Eğriler", + "Poz", + "Titreşim", + "Ton/Doygunluk", + "Renk Dengesi", + "Siyah-Beyaz", + "Fotoğraf Filtresi", + "Kanal Değiştirici", + "Renk Arama", + "Ters Çevir", + "Posterize", + "Eşik", + "Degrade Eşleme", + "Renk Seçici", + [ + "Otomatik Ton", + "Otomatik Kontrast", + "Otomatik Renk" + ], + "Renkleri Değiştir" + ], + [ + "Kes", + "Kopyala", + "Yapıştır", + "Yeni", + "Sil", + "Etkinleştir", + "Devre Dışı Bırak", + "Birleştirilmiş Kopyala", + "Uygula", + "Tekrar", + "Güncelle" + ], + [ + "Katmanı Çoğalt", + "Yeni Ayarlama Katmanı", + "Raster Maskesi", + "Vektör Maskesi", + "Ekle (Tümünü Göster)", + [ + "Ekle (Tümünü Gizle)", + "Seçimi Göster", + "Seçimi Gizle", + "Saydamlıktan" + ], + [ + "Kırpma Maskesi", + "Hızlı Maske Kipi" + ], + "Akıllı Nesneye Dönüştür", + "Rasterleştir", + "Katmanları Grupla", + "Alttakiyle Birleştir", + "Üsttekiyle Birleştir", + [ + "Katmanları Birleştir", + "Görüntüyü Düzleştir" + ], + "Yeni Katman", + "Raster Maskesini Etkinleştir", + "Raster Maskesini Devre Dışı Bırak", + "Vektör Maskesini Etkinleştir", + "Vektör Maskesini Devre Dışı Bırak", + "Kırpma Maskesini Etkinleştir", + "Kırpma Maskesini Devre Dışı Bırak", + "Yeni Dosya", + "Raster Maskesi Ekle", + "Raster Maskesini Sil", + "Vektör Maskesi Ekle", + "Vektör Maskesini Sil", + "Raster Maskesini Bağla", + "Raster Maskesini Bağlantılarını Kaldır", + "Vektör Maskesini Bağla", + "Vektör Maskesinin Bağlantılarını Kaldır", + "Katman Efektlerini Etkinleştir", + "Katman Efektlerini Devre Dışı Bırak", + "Katmanı Sil", + "Katman Opaklığını Değiştir", + "Karıştırma değiştir", + "Katman Stilini Sıfırla", + "Katman sıralaması", + [ + "Akıllı Nesne Oluşturuluyor", + "Akıllı Nesne Güncelleniyor", + "Akıllı Nesneyi Yerleştirme", + "Kaynak (Akıllı Nesne)", + "Yığın Modu" + ], + "İsim Değiştir", + "Renk Değiştir", + "Ayarlama Katmanını Düzenle", + "Şekile Dönüştür", + "Filtre Maskesini Etkinleştir", + "Filtre Maskesini Devre Dışı Bırak", + "Akıllı Filtreleri Etkinleştir", + "Akıllı Filtreleri Devre Dışı Bırak", + "Filtre Maskesi Ekle", + "Filtre Maskesini Sil", + "Akıllı Filtreleri Temizle", + [ + [ + "Katı Renk Dolgu", + "Degrade Dolgu", + "Desen Dolgu", + "İçeriğe Uygun" + ], + "Yeni Dolgu Katmanı", + "Dolgu Katmanını Değiştir" + ], + "Önceki Katmanı Kopyala", + "Filtre Maskesi", + "Katman Stilini Sil", + "Akıllı Filtreyi Taşı", + "Akıllı Filtreyi Sil", + [ + "Katmanları Bağla", + "Katmanları Çöz" + ], + "Yerleştir", + [ + "En Öne Getir", + "Bir Öne Getir", + "Arkaya Gönder", + "En Arkaya Gönder" + ], + [ + "Katman kilitlendi.", + "Değişikliğe Kilitle", + "Kilitle" + ], + "Animasyon" + ], + [ + "Tümü", + "Seçimi Kaldır", + "Tersine Çevir", + "Değiştir", + "Genişlet", + "Kontrast", + "Geçiş Yumuşatma", + "Seçimi Taşı", + "Renk Aralığı", + "Çerçeve", + "Seçimi Dönüştür", + "Kenarları Yumuşat", + "Seçimi İyileştir", + "Sihirli Kesme" + ], + [ + "Büyült", + "Küçült", + "Kılavuzlar", + "Cetveller", + "Izgara", + "Tutun", + "Şuna Tutun", + "Belge Sınırları", + "Piksel Izgarası", + "Yollar", + "Piksellere Tutun", + [ + "Dilimler", + "Dilim Seçenekleri" + ], + "Göster" + ], + [ + "Geçmiş", + "Katmanlar", + "Özellikleri", + "Fırça", + "Karakter", + "Paragraf", + "Bilgi", + "Katman Kompozisyonları", + "Renk Örnekleri", + "Eylemler", + "Histogram", + "Gezgin", + "Araç Ön Ayarları", + "Gılifler" + ], + [ + "Fırça Aracı", + "Klonlama Aracı", + "Kırpma Aracı", + "Silgi Aracı", + "Oval Seçim", + "Damlalık", + "Degrade Aracı", + "El Aracı", + "Yazı Aracı", + "Kement", + "Manyetik Kement", + "Taşıma Aracı", + "Sihirli Değnek", + "Boya Kovası", + "Çokgen Kement", + "Dikdörtgen Seçim", + "Serbest Dönüştürme", + "Yakınlaştırma", + "Bulanıklaştırma", + "Keskinleştirme", + "Leke", + "Soldurma", + "Yakma", + "Sünger", + "Benek İyileştirme Fırçası", + "İyileştirme Fırçası", + "Yama Aracı", + "Yol Seçimi", + "Doğrudan Seçim", + "Kalem", + "Serbest Biçim Kalemi", + "Özel Şekil", + "Dikdörtgen", + "Elips", + "Parametrik Şekil", + "Çizgi", + "Cetvel", + "Hızlı Seçim", + "Kalem Aracı", + "Perspektif Kırp", + "Dilimleme Aracı", + "Dilim Seçimi", + "Renk Değiştirme", + "Kırmızı Göz Aracı", + "Nesne Seçimi", + "Arka Plan Silgisi", + "Kukla Çarpıtma", + "Görünümü Döndür", + "İçeriğe Duyarlı Ölçekleme", + "İçeriğe-Duyarlı Taşıma" + ], + [ + "Fotoğraf Çek", + "Renk Damlalığı", + "Kontur Editörü", + "Tuval Alanı", + "İçine Çoğalt", + "Degrade Düzenleyicisi", + "Katman Sitili", + "Yeni Proje", + "Web için Kaydet", + "Çarpıt", + "Resim Boyutu", + "Bitmap'i Vektörleştir", + [ + "Buda", + "Kırp", + "Tümünü Göster" + ], + "Klavye Kısayolları", + "Kılavuzları Ekle", + [ + "Kılavuzları Temizle", + "Katmandan Kılavuzlar" + ] + ], + [ + "Opaklık", + "Efektler", + "Parlaklık", + [ + "Kontrast", + "Eskiyi Kullan" + ], + "Kanal", + "Poz", + "Kaydırma", + "Gama Düzeltmesi", + "Ton", + "Doygunluk", + "Aydınlık", + "Renklendirme", + "Aralık", + "Titreşimlilik", + [ + "Boyut", + "Enterpolasyonu", + "En Yakın Komşu", + "Bilineer" + ], + "Açı", + "Yuvarlaklık", + "Sertlik", + "Aralık", + [ + "Karıştırma modu", + "Bu Koşulda Karıştır" + ], + "Örnek Boyutu", + "Kontur", + "Stil", + [ + "Ters Çevir", + "Göreli", + "Bağlantı" + ], + "Tolerans", + "Bitişik", + "Dolgu", + "Genel Açıyı Kullan", + "Mesafe", + "Yayılmış", + "Gürültü", + "Gölge Düşür", + "Teknik", + "Yön", + "Derinlik", + "Yumuşatmak", + "Mod", + "Degrade", + "Ölçek", + "Katmanla Hizala", + "Pozisyon", + "Genişlik", + "Yükseklik", + "Destinasyon", + "Tip", + "Ön plan", + "Arkaplan", + "Özel", + "İsim", + "Oluştur", + "Format", + "En-boy oranını koru", + [ + "Kalite", + "Sayfalar" + ], + "Çoğalt", + "Taşıyın", + "Akıllı Filtreler", + "Yarıçap", + "Tutar", + "Dağılım", + [ + "Genel", + "Gauss" + ], + "Tek renkli", + "Hücre Boyutu", + "Desen", + "Akış", + "Sertlik", + "Ayrıntıyı Koru", + "Dolgu Türü", + "Doku", + "Seğirme", + "Kenar", + "Kaynak", + "Hedef", + "Kanallar", + "Maske", + "Yoğunluk", + "Hizalı", + [ + "Yol", + "Şekil", + "Piksel", + "İnç", + "Santimetre", + "Milimetre", + "Yüzde" + ], + "Şekiller", + "Kenarlar", + "Özellikler", + [ + "Uzunluk", + "Oran", + "Hiç", + "Izgara tipi", + "Izometrik", + "Izgara aralığı", + "Cetvel Birimleri" + ], + "Paraziti Azalt", + "Renkler", + "Mesafeler", + "Hızı", + "Oto-Seçim", + "Bulmak", + "Yeni Tanımla", + [ + "Fotoğraf", + "Ekran", + "Mobil", + "Reklam", + "Baskı" + ], + [ + "Ücretsiz", + "Sabit Oran", + "Sabit Boyut" + ], + "Yardım", + [ + "Canlı Şekli", + "Canlı Şekli Düzenle", + "Aynı Yarıçaplar" + ], + "Belirsizlik", + [ + "Çokgen", + "Yıldız", + "Spiral", + "Kare" + ], + [ + "Köşe yarıçap", + "İç yarıçap" + ] + ], + [ + "Renk", + [ + "Yok", + "Kırmızı", + "Turuncu", + "Sarı", + "Yeşil", + "Mavi", + "Mor", + "Gri", + "Beyaz", + "Şeffaf", + "Siyah", + "Camgöbeği", + "Macenta", + "Nötr" + ], + "Toplam", + "Mutlak", + "Parlaklığı Sakla'yı" + ], + [ + "Alt Gölge", + "İç Gölge", + "Dış Işıma", + "İç Işıma", + "Eğim Ver ve Kabart", + "Renk Kaplama", + "Degrade Kaplama", + "Desen Kaplama", + "Saten", + "Kontur", + "Karıştırma seçenekleri", + "Pikselleri Seç" + ], + [ + "Uç Biçimi", + "İpucu Dinamikleri", + "Saç", + "Renk Dinamikleri", + [ + "Boyut Değişimi", + "Minimum Çap", + "Açı Değişimi", + "Yuvarlaklık Değişimi", + "Minimum Yuvarlaklık" + ], + [ + "Pozisyon Değişimi", + "Adet", + "Adet Değişimi" + ], + [ + "Ön Plan/Arka Plan Değişimi", + "Ton Değişimi", + "Doygunluk Değişimi", + "Parlaklık Değişimi" + ], + [ + "Alt (veya K) tuşunu basılı tutun ve görüntüyü tıklatarak kopyalama kaynağını seçin.", + "Beyazla Ön Plan, Siyahla Arka Plan ve Gri ile bilinmeyen alanı işaretleyin.", + "Bu katman düzenlenemez.", + "Önce Metin Katmanı rasterleştirilmelidir", + "Akıllı Nesne önce rasterleştirilmelidir", + "Birden fazla katman seç", + "Katmanı Düzleştir", + "Önce bir belge açın.", + "Önce geçerli pencereyi kapatın.", + "Sadece Geçerli Araç" + ], + [ + "Kaydet", + "Yeni Eylem Kümesi", + "Yeni eylem" + ], + [ + "Kalem basınç kontrolleri opaklık", + "Kalem basınç kontrolleri boyut" + ], + [ + "Normal", + "Erime", + "Koyulaştır", + "Çoğalt", + "Renk Yanması", + "Doğrusal Yanma", + "Daha Koyu Renk", + "Açıklaştır", + "Ekran", + "Renk Soldurma", + "Doğrusal Soldurma", + "Daha Açık Renk", + "Kaplama", + "Yumuşak Işık", + "Sert Işık", + "Canlı Işık", + "Doğrusal Işık", + "Pin Işığı", + "Katı Karışım", + "Fark", + "Dışlama", + "Çıkar", + "Böl", + "Ton", + "Doygunluk", + "Renk", + "Parlaklığı", + "Pass Through" + ] + ], + [ + "Satır Aralığı", + "İzleme", + "Satır Taban Çizgisi Kayması", + [ + "Nokta Metnine Dönüştür", + "Paragraf Metnine Dönüştür" + ] + ], + [ + "Tüm Katmanlar", + "Geçerli Katman", + "Seçim", + "Geçerli ve Altı" + ], + [ + "Değiştir", + "Birim", + "Çıkar", + "Kesiştir", + "Dışlamak", + "Birleştir" + ], + [ + [ + "Doğrusal", + "Radyal", + "Açı", + "Yansımış", + "Baklava", + "Shape Burst" + ], + [ + "Daha Yumuşak", + "Kesin" + ], + [ + "Dış Eğim", + "İç Eğim", + "Kabartma", + "Yastık Kabartma", + "Kontur Kabartma", + "Kontur genişliği" + ], + [ + "Düzgünleştir", + "Sert Keski", + "Yumuşak Keski", + "Düzgünlük" + ], + [ + "Yukarı", + "Aşağı" + ], + [ + "Dışına", + "Merkez", + "Içine", + "Merkezden" + ], + [ + "Gölgeler", + "Orta tonlar", + "Vurgular" + ], + [ + "Doygunluğu Azalt", + "Doygunlaştır" + ], + [ + "Küçük", + "Orta", + "Büyük" + ], + [ + "Uçlar", + "Köşeler", + "Çizgiler" + ] + ], + [ + "İmlecin altındaki nesneyi seç", + "Dönüşüm kontrolleri", + "Piksel Piksele", + "Alana Sığdır", + [ + "Sol Kenarları Hizala", + "Yatay Merkez", + "Sağ Kenarları Hizala", + "Üst Kenarları Hizala", + "Dikey Merkez", + "Alt Kenarları Hizala", + "Eşit Boşluklar" + ] + ], + [ + "İçine Yerleştir", + "Geçerli Proje", + "Yeni Proje", + "Çözünürlük", + "Geçerli projeye eklendi.", + "Yeni proje oluşturuldu.", + "Kamera erişimi reddedildi." + ], + [ + "Yönlendirme", + "Bük", + "Yatay deformasyon", + "Dikey deformasyon", + [ + "Yatay", + "Dikey", + "Yatay", + "Dikey" + ], + [ + "Yok", + "Yay", + "Altı Yaylaştır", + "Üstü Yaylaştir", + "Kemer", + "Çıkıntı", + "Aşağıyı Toparla", + "Yukarıyı Toparla", + "Bayrak", + "Dalga", + "Balık", + "Yükseliş", + "Balık gözü", + "Şişirmek", + "Sıkmak", + "Girdap", + "Özel" + ], + [ + "Yazı tipi", + "kullanılabilir değil", + "Kullanılarak oluşturulacak", + "Kaydedilmemiş çalışma var:", + "Gerçekten kapatmak istiyor musun?" + ], + [ + "Renkleri Değiştir", + "Varsayılan: Beyaz ve Siyah" + ] + ], + [ + "yüklendi", + "eklendi", + "Kılavuzu Taşıyın", + "Kılavuzu Sil", + "Kılavuzu Ekle", + "Yükleniyor", + "VAR0 Yükle" + ], + [ + "Filtre Galerisi", + [ + [ + "Sıvılaştır", + [ + "Lekelemek", + "Imar etmek", + "Yumuşatır", + "Burgu", + "Küçültmek", + "Şişirmek", + "Sola İt", + "Dondurmak", + "Erimek" + ] + ], + [ + "Mercek Düzeltmesi" + ] + ], + "Bulanıklaştırma", + [ + "Ortalama", + "Bulanıklaştırma", + "Daha Fazla Bulanıklaştırma", + "Kutu Bulanıklaştırma", + "Gauss Bulanıklığı", + "Mercek Bulanıklığı", + "Hareket Bulanıklığı", + "Radyal Bulanıklık", + "Şekil Bulanıklığı", + "Akıllı Bulanıklaştırma", + "Yüzey Bulanıklaştırma" + ], + "Çarpıtmak", + [ + "Ötele", + "Bükme", + "Polar Koordinatlar", + "Dalgacık", + "Yamult", + "Küreleştirme", + "Dalga" + ], + "Gürültü", + [ + "Gürültü Ekle", + "Lekeleri Temizle", + "Toz ve Çizikler", + "Medyan" + ], + "Pikselleştirme", + [ + "Renkli Yarım Tonlu", + "Kristalleştir", + "Yön", + "Parça", + "Bakır Klişe Baskı", + "Mozaik", + "Noktalaştır" + ], + "Görüntü Oluşturma", + [ + "Bulutlar", + "Fark Bulutları", + "Mercek Parlaması" + ], + "Keskinleştirme", + [ + "Keskinleştir", + "Kenarları Keskinleştir", + "Daha Keskinleştir", + "Akıllı Keskinleştirme", + "Keskinliği Azaltma Maskesi" + ], + "Stilize", + [ + "Yaygın", + "Kabartma", + "Derinlik", + "Sınırları Bul", + "Yağlı Boya" + ], + "Diğer", + [ + "Özel", + "Yüksek Geçiş", + "Maksimum", + "Minimum", + "Kaydırma", + "Tekrarla" + ], + [ + "Tanımsız Alan", + "Şeffaf Olarak Ayarla", + "Kenar Piksellerini Tekrarla", + "Etrafına Sar", + "Son Filtre", + "Önizleme" + ] + ], + [ + "Şablonlar", + [ + "Yazı Tipi Filtresi", + "Anahtar kelimeler", + "Karıştırmak" + ], + [ + "Sembolleri ile", + "Fotoğraf ile" + ], + [ + "Minik Resimler", + "Liste" + ] + ] + ], + [ + [ + "Plik", + "Edycja", + "Obraz", + "Warstwa", + "Folder", + "Wybierz", + "Filtr", + "Widok", + "Okno", + "Język", + "Zaloguj się", + "Wyloguj się", + "Utwórz tłumaczenie", + [ + "Konto", + "Warunki korzystania", + "Powrót", + "O programie", + "Zgłoś błąd", + "Ucz się" + ], + "Więcej", + "Motyw", + "Użyj WebGL", + [ + "Photopea: zaawansowany edytor obrazów", + "Darmowy edytor online obsługujący formaty PSD, XCF, Sketch, XD i CDR.", + "Utwórz nowy obraz lub otwórz istniejące pliki z komputera. Zapisz swoją pracę jako PSD (Plik - Zapisz jako PSD) lub jako JPG / PNG / SVG (Plik - Eksportuj jako).", + "Zaproponuj nowe funkcje w naszym lub . Naszym celem jest stworzenie .", + "Linki sponsora otwierają się w nowym oknie.", + "Ta funkcja jest nie dostępna.", + "Zainstaluj Photopea" + ] + ], + [ + "Otwórz", + "Publikuj online", + "Zapisz", + "Zapisz jako PSD", + "Drukuj", + "Otwórz z adresu URL", + "Otwórz z komputera", + "Połącz z Google Drive", + "Eksportuj jako", + "Eksportuj warstwy", + "Skrypt", + "Otwórz i umieść", + "Zamknij", + "Pamięć lokalna", + "Informacje o pliku" + ], + [ + "Krok do przodu", + "Krok do tyłu", + "Wyczyść", + "Wypełnij", + "Przekształć", + "Obróć", + "Odbij VAR0", + "Skaluj VAR0", + "Cofnij / Ponów", + "Perspektywa", + [ + "Auto-mieszanie", + "Automatycznie wyrównaj" + ], + "Stonuj", + "Zastosuj obraz" + ], + "Dostosowania", + [ + "Jasność/Kontrast", + "Poziomy", + "Krzywe", + "Ekspozycja", + "Jaskrawość", + "Barwa/Nasycenie", + "Balans kolorów", + "Czarny i Biały", + "Filtr fotograficzny", + "Mikser kanałów", + "Wyszukiwanie kolorem", + "Odwróć", + "Posteryzacja", + "Próg", + "Mapa gradientu", + "Kolor selektywny", + [ + "Auto-tony", + "Auto-kontrast", + "Auto-kolor" + ], + "Zamień kolor" + ], + [ + "Wytnij", + "Kopiuj", + "Wklej", + "Nowy", + "Usuń", + "Włącz", + "Wyłącz", + "Kopiuj scalone", + "Zastosuj", + "Ponownie", + "Uaktualnij" + ], + [ + "Duplikuj warstwę", + "Nowa warstwa dopasowania", + "Maska rastrowa", + "Maska wektorowa", + "Dodaj (pokaż wszystko)", + [ + "Dodaj (ukryj wszystko)", + "Odkryj zaznaczenie", + "Ukryj zaznaczenie", + "Z przezroczystości" + ], + [ + "Maska przycinająca", + "Tryb szybkiej maski" + ], + "Konwertuj na obiekt inteligentny", + "Rasteryzuj", + "Grupuj warstwy", + "Scal w dół", + "Scal w górę", + [ + "Scal warstwy", + "Spłaszcz obraz" + ], + "Nowa warstwa", + "Włącz maskę rastrową", + "Wyłącz maskę rastrową", + "Włącz maskę wektorową", + "Wyłącz maskę wektorową", + "Włącz maskę przycinającą", + "Wyłącz maskę przycinającą", + "Nowy folder", + "Dodaj maskę rastrową", + "Usuń maskę rastrową", + "Dodaj maskę wektorową", + "Usuń maskę wektorową", + "Połącz maskę rastrową", + "Rozłącz maskę rastrową", + "Połącz wektorową maskę", + "Odłącz maskę wektorową", + "Włącz efekty warstwy", + "Wyłącz efekty warstwy", + "Usuń warstwę", + "Zmiana krycia warstwy", + "Zmiana mieszania", + "Rasteryzuj styl warstwy", + "Kolejność warstwy", + [ + "Tworzenie obiektu inteligentnego", + "Aktualizacja obiektu inteligentnego", + "Umieszczenie obiektu inteligentnego", + "Źródło (obiekt inteligentny)", + "Tryb nakładania" + ], + "Zmiana nazwy", + "Zmiana koloru", + "Edycja warstwy dopasowania", + "Konwertuj na kształt", + "Włącz maskę filtru", + "Wyłącz maskę filtru", + "Włącz inteligentne filtry", + "Wyłącz inteligentne filtry", + "Dodaj maskę filtra", + "Usuń maskę filtra", + "Wyczyść filtry inteligentne", + [ + [ + "Wypełnienie kolorem", + "Wypełnienie gradientem", + "Wypełnienie wzorem", + "Uwzględnianie zawartości" + ], + "Nowa warstwa wypełnienia", + "Modyfikuj warstwę wypełnienia" + ], + "Kopiuj poprzez warstwę", + "Maska filtru", + "Usuń Styl Warstwy", + "Przesuń Filtr Inteligentny", + "Usuń Filtr Inteligentny", + [ + "Połącz warstwy", + "Odłącz warstwy" + ], + "Ułóż", + [ + "Przenieś na wierzch", + "Przenieś wyżej", + "Przenieś niżej", + "Przenieś na spód" + ], + [ + "Warstwa jest zablokowana", + "Zablokuj zmianę", + "Zablokuj" + ], + "Animacja" + ], + [ + "Wszystko", + "Odznacz", + "Odwróć", + "Zmień", + "Rozszerz", + "Zawęź", + "Wtapianie", + "Przesuń Zaznaczenie", + "Zakres kolorów", + "Granica", + "Przekształć zaznaczenie", + "Popraw krawędź", + "Naprawa zaznaczenia", + "Magiczne obcięcie" + ], + [ + "Przybliż", + "Oddal", + "Linie pomocnicze", + "Linijki", + "Siatka", + "Przyciągnij", + "Przyciągnij do", + "Obszar dokumentu", + "Siatka pikseli", + "Ścieżki", + "Przyciągnij do pikseli", + [ + "Plasterki", + "Opcje plasterków" + ], + "Pokaż" + ], + [ + "Historia", + "Warstwy", + "Właściwości", + "Pędzel", + "Znak", + "Akapit", + "Informacje", + "Kompozycje warstw", + "Próbki", + "Operacje", + "Histogram", + "Nawigator", + "Ustawienia domyślne narzędzi", + "Glify" + ], + [ + "Narzędzia pędzla", + "Narzędzia klonowania", + "Kadrowanie", + "Narzędzie usuwania", + "Zaznaczenie elipsy", + "Pipeta", + "Gradient", + "Narzędzie Rączka", + "Tekst", + "Lasso", + "Lasso magnetyczne", + "Przesunięcie", + "Różdżka", + "Wiadro z farbą", + "Lasso wielokątne", + "Prostokąt", + "Przekształć Swobodnie", + "Narzędzie Powiększenie", + "Rozmycie", + "Wyostrzenie", + "Smużenie", + "Rozjaśnianie", + "Ściemnianie", + "Gąbka", + "Punktowy pędzel korygujący", + "Pędzel korygujący", + "Łatka", + "Wybierz ścieżkę", + "Zaznaczenie bezpośrednie", + "Pióro", + "Pióro dowolne", + "Niestandardowy Kształt", + "Prostokąt", + "Elipsa", + "Kształt Parametryczny", + "Linia", + "Linijka", + "Szybki wybór", + "Ołówek", + "Kadrowanie perspektywiczne", + "Narzędzie Odcięcie", + "Narzędzie Zaznaczanie odcięcia", + "Zastępowanie kolorów", + "Narzędzie Czerwone oczy", + "Zaznaczanie obiektów", + "Usuwanie Tła", + "Wypaczenie marionetkowe", + "Obracanie widoku", + "Skala z uwzględnieniem zawartości", + "Przesuwanie z uwzględnieniem zawartości" + ], + [ + "Zrób zdjęcie", + "Wybieranie koloru", + "Edytor konturów", + "Rozmiar obszaru roboczego", + "Duplikuj", + "Edytor gradientów", + "Styl warstwy", + "Nowy projekt", + "Zapisz do sieci", + "Wypaczenie", + "Rozmiar obrazu", + "Wektoryzuj Bitmapę", + [ + "Przytnij", + "Kadrowanie", + "Odkryjajas" + ], + "Skróty klawiszowe", + "Dodaj linie pomocnicze", + [ + "Usuń linie pomocnicze", + "Warstwa na ścieżki" + ] + ], + [ + "Krycie", + "Efekty", + "Jasność", + [ + "Kontrast", + "Użyj dziedziczenia" + ], + "Kanał", + "Ekspozycja", + "Przesunięcie", + "Korekcja gammy", + "Barwa", + "Nasycenie", + "Jasność", + "Koloryzuj", + "Zasięg", + "Jaskrawość", + [ + "Rozmiar", + "Interpolacji", + "Najbliższy sąsiad", + "Dwuliniowa" + ], + "Kąt", + "Zaokrąglenie", + "Twardość", + "Odstęp", + [ + "Opcja mieszania", + "Mieszaj gdy" + ], + "Wielkość próbki", + "Kontura", + "Styl", + [ + "Cofnij", + "Względna", + "Zakotwiczenie" + ], + "Tolerancja", + "Ciągłe", + "Wypełnij", + "Użyj globalnego kąta", + "Odległość", + "Rozpiętość", + "Szum", + "Warstwa odcina cień", + "Technika", + "Kierunek", + "Głębia", + "Zmiękczyć", + "Tryb", + "Gradient", + "Skala", + "Dopasuj do warstwy", + "Pozycja", + "Szerokość", + "Wysokość", + "Cel", + "Typ", + "Pierwszy plan", + "Tło", + "Dostosuj", + "Nazwa", + "Utwórz", + "Format", + "Zachowaj proporcje", + [ + "Jakość", + "Strony" + ], + "Powiel", + "Przesuń", + "Sprytne filtry", + "Promień", + "Miara", + "Dystrybucja", + [ + "Jednolity", + "Gaussa" + ], + "Monochromatyczne", + "Rozmiar komórki", + "Wzór", + "Przepływ", + "Siła", + "Chroń Szczegóły", + "Typ Wypełnienia", + "Tekstura", + "Drganie", + "Krawędź", + "Źródło", + "Cel", + "Kanały", + "Maska", + "Gęstość", + "Wyrównane", + [ + "Ścieżka", + "Kształt", + "Piksele", + "Cale", + "Centymetry", + "Milimetry", + "Procent" + ], + "Kształty", + "Strony", + "Preferencje", + [ + "Długość", + "Proporcje", + "Dowolny", + "Typ siatki", + "Izometryczny", + "Rozstaw siatki", + "Jednostki miarki" + ], + "Zmniejsz szum", + "Kolory", + "Odległości", + "Częstotliwość", + "Auto zaznaczenie", + "Znajdź", + "Zdefiniuj nowe", + [ + "Zdjęcie", + "Ekran", + "Mobilne", + "Reklamy", + "Druk" + ], + [ + "Dowolny", + "Stały współczynnik", + "Stały rozmiar" + ], + "Pomoc", + [ + "Aktywny kształt", + "Edycja aktywny kształt", + "Identyczny promień" + ], + "Tolerancja", + [ + "Wielokąt", + "Gwiazda", + "Spirala", + "Obszar" + ], + [ + "Promień zaokrąglenia", + "Promień wewnętrzny" + ] + ], + [ + "Kolor", + [ + "Brak", + "Czerwony", + "Pomarańczowy", + "Żołty", + "Zielony", + "Niebieski", + "Fioletowy", + "Szary", + "Biały", + "Przezroczysty", + "Czarny", + "Niebieskozielony", + "Karmazynowy", + "Neutralny" + ], + "Total", + "Absolutny", + "Utrzymaj jasność" + ], + [ + "Cień zewnętrzny", + "Cień wewnętrzny", + "Zewnętrzna poświata", + "Wewnętrzna poświata", + "Faza i płaskorzeźba", + "Nakładka koloru", + "Nakładka gradientu", + "Nakładka wzorem", + "Satyna", + "Obrys", + "Opcje mieszania", + "Zaznacz Piksele" + ], + [ + "Kształt końcówki", + "Dynamika końcówki", + "Rozproszenie", + "Dynamika koloru", + [ + "Rozmiar Drgań", + "Minimalna Średnica", + "Kąt Drgań", + "Okrągłość Drgań", + "Minimalna okrągłość" + ], + [ + "Pozycja Drgań", + "Ilość", + "Ilość Drgań" + ], + [ + "Pierwszy Plan/Tło Drgań", + "Barwa Drgań", + "Nasycenie drgań", + "Jasność drgań" + ], + [ + "Wybierz źródło powielenia przytrzymując Alt (lub K) i klikając na obraz.", + "Zaznacz pierwszy plan na biały, tło czarnym i inny obszar za pomocą szarego.", + "Warstwa nie jest edytowalna.", + "Warstwa tekstowa musi najpierw zostać zrasteryzowana", + "Obiekt inteligentny musi najpierw zostać zrasteryzowany", + "Wybierz wiele warstw", + "Prostuj warstwę", + "Najpierw otwórz dokument.", + "Zamknij bieżące okno jako pierwsze", + "Tylko bieżące narzędzie" + ], + [ + "Nagrywaj", + "Nowy zestaw operacji", + "Nowa operacja" + ], + [ + "Nacisk pisaka kontroluje kryciem", + "Nacisk pisaka kontroluje rozmiar" + ], + [ + "Zwykły", + "Rozpuszczanie", + "Ciemniej", + "Mnożenie", + "Ściemnianie", + "Ściemnianie liniowe", + "Ciemniejszy kolor", + "Jaśniej", + "Ekran", + "Rozjaśnianie", + "Rozjaśnianie liniowe", + "Jaśniejszy kolor", + "Nakładka", + "Łagodne światło", + "Ostre światło", + "Światło jaskrawe", + "Światło liniowe", + "Światło punktowe", + "Mieszanie twarde", + "Różnica", + "Wykluczenie", + "Odejmowanie", + "Dzielenie", + "Barwa", + "Nasycenie", + "Kolor", + "Jasność", + "Przejście bezpośrednie" + ] + ], + [ + "Interlinia", + "Spacjowanie", + "Przesunięcie linii bazowej", + [ + "Konwertuj na tekst punktowy", + "Konwertuj na tekst akapitowy" + ] + ], + [ + "Wszystkie warstwy", + "Bieżąca warstwa", + "Wybór", + "Bieżąca i niższa" + ], + [ + "Zamień", + "Połączenie", + "Różnica", + "Przecięcie", + "XOR", + "Scal" + ], + [ + [ + "Liniowe", + "Promieniowe", + "Kąt", + "Odbicie", + "Diament", + "Rozerwij Kształt" + ], + [ + "Minkštesnis", + "Dokładny" + ], + [ + "Faza zewnętrzna", + "Faza wewnętrzna", + "Płaskorzeźba", + "Żłobienie", + "Płaskorzeźba obrysu", + "Grubości obrysu" + ], + [ + "Gładki", + "Dłuto twarde", + "Dłuto miękkie", + "Gładkość" + ], + [ + "W górę", + "W dół" + ], + [ + "Na zewnątrz", + "W środku", + "Wewnątrz", + "Ze środka" + ], + [ + "Cienie", + "Półcienie", + "Podświetlenia" + ], + [ + "Zmniejsz nasycenie", + "Zwiększ nasycenie" + ], + [ + "Mały", + "Średni", + "Duży" + ], + [ + "Zakończenia", + "Narożniki", + "Kreski" + ] + ], + [ + "Wybierz obiekt pod kursorem", + "Kontrolki przekształcenia", + "Pixel do Pixela", + "Dopasuj do powierzchni", + [ + "Wyrównaj Lewe Krawędzie", + "Wyrównaj w poziomie", + "Wyrównaj Prawe Krawędzie", + "Wyrównaj Górne Krawędzie", + "Wyrównaj w pionie", + "Wyrównaj Dolne Krawędzie", + "Równe przerwy" + ] + ], + [ + "Umieść w", + "Bieżący projekt", + "Nowy projekt", + "Rozdzielczość", + "Dodano do bieżącego projektu.", + "Utworzono nowy projekt.", + "Odmówiono dostępu do aparatu." + ], + [ + "Orientacja", + "Pochylenie", + "Zniekształcenie poziome", + "Odkształcenie pionowe", + [ + "Poziomy", + "Pionowy", + "w poziomie", + "w pionie" + ], + [ + "Brak", + "Łuk", + "Łuk Dolny", + "Łuk Górny", + "Łuk", + "Wybrzuszenie", + "Muszla w dół", + "Muszla w górę", + "Flaga", + "Fala", + "Ryba", + "Wzrost", + "Rybie oko", + "Nadmuchać", + "Wyciskać", + "Wykręcać", + "Niestandardowy" + ], + [ + "Czcionka", + "nie jest dostępny", + "Zostanie wyrenderowane za pomocą", + "Jest tu niezapisana praca.", + "Czy aby na pewno chcesz to zamknąć?" + ], + [ + "Zamień Kolory", + "Domyślnie: Biały i Czarny" + ] + ], + [ + "załadowane", + "dodane", + "Przesuń linię pomocniczą", + "Usuń linię pomocniczą", + "Dodaj linię pomocniczą", + "Ładowanie", + "Załaduj VAR0" + ], + [ + "Galeria filtrów", + [ + [ + "Transformacja", + [ + "Smużyć", + "Zrekonstruować", + "Wygładzać", + "Wir", + "Kurczyć", + "Wiać", + "Naciśnij w lewo", + "Zamroź", + "Odmroź" + ] + ], + [ + "Korekcja soczewki" + ] + ], + "Rozmycie", + [ + "Uśredniony", + "Rozmycie", + "Rozmyj bardziej", + "Rozmycie Pudełkowe", + "Rozmycie Gaussowskie", + "Rozmycie Optyczne", + "Rozmycie Ruchu", + "Rozmycie Radialne", + "Rozmycie Kształtem", + "Inteligentne Rozmycie", + "Rozmycie Powierzchni" + ], + "Przekształć", + [ + "Przemieszczenie", + "Ściśnięcie", + "Współrzędne biegunowe", + "Falowanie", + "Ścinanie", + "Sferyzacja", + "Fale" + ], + "Szum", + [ + "Dodaj Szum", + "Odplamkuj", + "Kurz i zarysowania", + "Mediana" + ], + "Pikselizuj", + [ + "Półton", + "Krystalizacja", + "Aspekt", + "Fragmentuj", + "Mezzotinta", + "Mozaika", + "Pointylizacja" + ], + "Renderuj", + [ + "Chmury", + "Chmury różnicowe", + "Flara obiektywu" + ], + "Wyostrz", + [ + "Wyostrz", + "Wyostrz Krawędzie", + "Wyostrz Bardziej", + "Inteligentne Wyostrzenie", + "Wyostrz Krawędzie" + ], + "Stylizacja", + [ + "Rozpraszanie", + "Płaskorzeźba", + "Wytłaczanie", + "Znajdź krawędzie", + "Farba olejna" + ], + "Inne", + [ + "Dostosuj", + "Filtr Górnoprzepustowy", + "Maksimum", + "Minimum", + "Przesunięcie", + "Powtarzać" + ], + [ + "Niezdefiniowany obszar", + "Ustaw jako przezroczyste", + "Powtórz Piksele Brzegowe", + "Owiń w okół", + "Ostatni filtr", + "Podgląd" + ] + ], + [ + "Szablony", + [ + "Filtr czcionek", + "Słowa kluczowe", + "Losowanie" + ], + [ + "Z symbolami", + "Ze zdjęciem" + ], + [ + "Miniaturki", + "Lista" + ] + ] + ], + [ + [ + "Berkas", + "Ubah", + "Gambar", + "Lapisan", + "Folder", + "Pilih", + "Penyaring", + "Tampilan", + "Jendela", + "Bahasa", + "Masuk", + "Keluar", + "Buat terjemahan", + [ + "Akun", + "Syarat Pelayanan", + "Kembali", + "Mengenai", + "Laporkan bug", + "Belajar" + ], + "Lainnya", + "Tema", + "Gunakan WebGL", + [ + "Photopea: editor gambar tingkat lanjut", + "Editor online gratis yang mendukung format PSD, XCF, Sketch, XD dan CDR.", + "Buat gambar baru atau membuka file yang ada dari komputer Anda. Simpan pekerjaan Anda sebagai PSD (Berkas - Simpan sebagai PSD) atau sebagai JPG / PNG / SVG (Berkas - Ekspor sebagai).", + "Sarankan fitur baru di atau kami. Tujuan kami adalah untuk menciptakan .", + "Tautan sponsor terbuka di jendela baru.", + "Tampilan ini tidak tersedia", + "Install Photopea" + ] + ], + [ + "Buka", + "Terbitkan online", + "Simpan", + "Simpan sebagai PSD", + "Cetak", + "Buka dari URL", + "Buka Dari Komputer", + "Sambungkan Dengan Google Drive", + "Ekspor sebagai", + "Ekspor lapisan", + "Skrip", + "Buka & Letakkan", + "Tutup", + "Penyimpanan Lokal", + "Info Berkas" + ], + [ + "Langkah berikutnya", + "Langkah sebelumnya", + "Bersihkan", + "Isi", + "Ubah", + "Putar", + "Balik VAR0", + "Skala VAR0", + "Batalkan / Kembalikan", + "Perspektif", + [ + "Blend Otomatis", + null + ], + "Luntur", + null + ], + "Pengaturan", + [ + "Kecerahan/Kontras", + "Level", + "Kurva", + "Eksposur", + "Vibransi", + "Hue/Saturasi", + "Keseimbangan Warna", + "Hitam & Putih", + "Filter Foto", + "Channel Mixer", + "pencarian warna", + "Inversi", + "Posterize", + "Ambang", + "Peta Gradient", + "Selektif Warna", + [ + "Nada Otomatis", + "Kontras Otomatis", + "Warna Otomatis" + ], + "Ganti Warna" + ], + [ + "Potong", + "Salin", + "Tempel", + "Baru", + "Hapus", + "ada", + "Nonaktifkan", + "Salin Digabung", + "Terapkan", + "Ulangi aksi", + "Perbaharui" + ], + [ + "Lapisan duplikat", + "Lapisan Penyesuaian Baru", + "Mask Raster", + "Masker Vektor", + "Tambah (Lihat Semua)", + [ + "Tambah (Sembunyikan Semua)", + "auswahl", + "Sembunyikan Pilihan", + "aus" + ], + [ + "Clipping Mask", + null + ], + "Konversiere ke Smart Object", + "Rasterize", + "gruppenebene", + "zusammenführe", + "Gabung", + [ + "Gabung Lapisan", + "Ratakan Gambar" + ], + "Lapisan Baru", + "Aktifkan Mask Raster", + "Nonaktifkan Mask Raster", + "Aktifkan Vector Mask", + "Nonaktifkan Vector Mask", + "Aktifkan Clipping Mask", + "Nonaktifkan Clipping Mask", + "Folder Baru", + "Tambahkan Mask Raster", + "Hapus Mask Raster", + "Tambahkan Vector Mask", + "Hapus Vector Mask", + "Link Masker Raster", + "Batalkan tautan Masker Raster", + "Link Vector Mask", + "Hapus Mask Vector", + "Aktifkan Efek Lapisan", + "Nonaktifkan Efek Lapisan", + "Hapus Lapisan", + "Perubahan Kegelapan Lapisan", + "Perubahan Campuran", + "Rasterisasi Lapisan", + "Urutan Lapisan", + [ + "Membuat Obyek Pintar", + "Memperbaharui Obyek Pintar", + "Menempatkan Obyek Pintar", + "Sumber (Smart Object)", + "Mode Tumpuk" + ], + "Ubah Nama", + "Ubah Warna", + "Ubah Penyesuaian Lapisan", + "Konversi ke bentuk", + "Hidupkan Filter Mask", + "Matikan Filter Mask", + "Nyalakan Filter Pintar", + "Matikan Filter Pintar", + "Tambah Filter Mask", + "Hapus Filter Mask", + "Bersihkan Filter Pintar", + [ + [ + "Isi Warna Dasar", + "Isi Gradasi", + "Isi Motif", + "Kesadaran Konten" + ], + "Lapisan Isi Baru", + "Atur Lapisan Isi" + ], + "Lapisan Baru Dengan Disalin", + "Filter Mask", + "Hapus Lapisan Gaya", + "Pindahkan Filter Pintar", + "Hapus Filter Pintar", + [ + "Hubungkan Lapisan", + "Putushubungkan Antar Lapisan" + ], + "Atur", + [ + "Taruh di Depan", + "Taruh di atasnya", + "Taruh di belakang", + "Taruh di belakangnya" + ], + [ + "Lapisan ini terkunci.", + "Kunci perubahan", + "Kunci" + ], + "Animasi" + ], + [ + "Semua", + "Lepaskan pemilihan", + "Balikan", + "Ubah", + "Tambahkan", + "Kontrak", + "Kehalusan pinggiran", + "Pindahkan pemilih", + "Rentang Warna", + "Garis tepi", + "Pilih untuk perpindahan", + "Haluskan Tepi", + "Pemilih perbaikan gambar", + null + ], + [ + "Memperbesar", + "Memperkecil", + "Garis bantu", + "Penggaris", + "Garis Bantu Persegi", + "Lekatkan", + "Lekatkan ke", + "Batas dokumen", + "Kisi Piksel", + "Garis pemotong", + null, + [ + null, + null + ], + "Tampilkan" + ], + [ + "Riwayat", + "Lapisan", + "Properti", + "Kuas", + "Karakter", + "Paragraf", + "Info", + "Komposisikan Lapisan", + null, + null, + "Histogram", + null, + null, + null + ], + [ + "Alat kuas", + "Alat peniru", + "Pemotong", + "Penghapus", + "Pemilih Bundar", + "Ambil sample warna", + "Gradasikan", + "Geserkan Layar", + "Isi kata-kata", + "Garis Pemilih Bebas", + null, + "Pindahkan", + "Pemilih otomatis", + "Isi seluruh area", + "Garis pemilih bersiku", + "Kotak pemilih", + null, + "Besarkan layar", + "Buramkan", + "Pertajamkan", + null, + null, + null, + null, + "Perbaiki titik hitam", + "Kuas Perbaikan", + null, + null, + "Pilih langsung", + "Pulpen", + "Pulpen bebas", + "Bentuk Kustom", + "Persegi", + "Lingkaran/Bundar", + "Bentuk Parametrik", + "Garis", + "Penggaris", + "Pemilihan Cepat", + "Pensil", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "Ambil gambar", + "Ambil contoh warna", + "Pengedit Kontur", + "Ukuran Kanvas", + "Duplikatkan ke...", + "Pengedit Gradasi", + "Gaya Lapisan", + "Proyek Baru", + "Simpan untuk web", + "Lengkungkan", + "Ukuran Gambar", + "Vektorkan Bitmap", + [ + "Pangkas", + null, + null + ], + "Pintasan Keyboard", + null, + [ + null, + null + ] + ], + [ + "Tingkat transparansi", + "Efek", + "Kecerahan", + [ + "Kontras", + null + ], + null, + "Tingkat Terang", + null, + "Perbaiki Gamma", + "Hue", + "Tingkat Warna", + "Tingkat pencahayaan", + "Warnai", + "Rentang", + "Tingkat Semarak Warna", + [ + "Ukuran", + "Interpolasi", + "Bertetangga", + "Bilinier" + ], + "Sudut", + "Tingkat kebulatan", + "Tingkat kekerasan", + "Jarak", + [ + "Modus Penyatuan", + null + ], + "Ukuran Sampel", + "Kontur", + "Gaya", + [ + "Balikan", + null, + null + ], + "Tingkat toleransi", + "Dekatkan", + "Isi", + "Gunakan Angle Global", + "Jarak", + "Penyebaran", + "Pecahkan", + null, + "Teknik", + "Arah", + "Kedalaman", + "Kehalusan", + "Modus", + "Gradasi", + "Ukuran", + "Sejajar dengan lapisan", + "Posisi", + "Panjang", + "Lebar", + "Destinasi", + "Tipe", + "Latar depan", + "Latar belakang", + "Kustom", + "Nama", + "Buat", + "Format", + "Jaga Aspek Rasio", + [ + "Kualitas", + "Halaman" + ], + "Duplikat", + "Pindahkan", + "Filter Pintar", + "Radius", + "Jumlah", + "Distribusi", + [ + "Seragam", + "Gaussian" + ], + "Monokromatik", + "Ukuran Sel", + "Corak", + "Alur", + "Kuatkan", + "Jaga Detail", + "Tipe isi", + "Tekstur", + "Jitter", + "Sudut", + "Sumber", + "Target", + null, + null, + null, + null, + [ + "Alur", + "Bentuk", + "Piksel", + null, + "Sentimeter", + "Milimeter", + null + ], + null, + "Sisi", + "Preferensi", + [ + "Panjang", + "Rasio", + "Semua", + null, + "Isometrik", + null, + null + ], + "Kurangi pecah gambar", + "Warna", + "Jarak", + "Tingkat", + "Pilih otomatis", + "Cari", + null, + [ + "Foto", + "Tampilan", + "Telepon", + "Iklan", + null + ], + [ + null, + "Rasio tetap", + "Ukuran tetap" + ], + "Bantuan", + [ + "Bentuk Langsung", + "Ubah Bentuk Langsung", + null + ], + null, + [ + "Poligon", + "Bintang", + "Spiral", + "Persegi" + ], + [ + null, + null + ] + ], + [ + "Warna", + [ + "Kosong", + "Merah", + "Jingga", + "Kuning", + "Hijau", + "Biru", + "Ungu", + "Abu-Abu", + "Putih", + "Transparansi", + "Hitam", + "Cyan", + "Magenta", + null + ], + null, + null, + null + ], + [ + "Taruh Bayangan", + "Bayangan di dalam", + "Bersinar di luar", + "Bersinar di dalam", + "Sudut dan Timbul", + "Lapisi Warna", + "Lapisi Gradasi", + "Lapisi Corak", + "Satin", + "Garis tepi", + "Pilihan Campuran", + null + ], + [ + "Titik berbentuk", + "Titik dinamis", + "Hamburkan", + "Warna Dinamis", + [ + "Ukuran Jitter", + "Diameter Minimal", + "Sudut Jitter", + "Tingkat kebulatan Jitter", + "Tingkat minimal kebulatan" + ], + [ + null, + "Jumlah", + "Jumlah Jitter" + ], + [ + "Latar Depan/Belakang Jitter", + "Warna Jitter", + "Tingkat warna jitter", + "Tingkat kecerahan jitter" + ], + [ + "Pilih sampel contoh dengan tekan Alt (atau K) terus klik di gambar", + "Tandai Latar Depan pake Putih, Latar Depan pake Item terus Area lainnya pake abu-abu", + "Lapisannya gak bisa diedit", + "Lapisan teks harus di-raterize dulu", + "Smart Object-nya harus di-rasterize dulu", + "Pilih beberapa lapisan", + null, + null, + null, + null + ], + [ + null, + null, + null + ], + [ + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + "Layar", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + ], + [ + "Arahkan", + "Lacak", + "Tukar garis dasar", + [ + null, + null + ] + ], + [ + "Semua Lapisan", + "Lapisan saat ini", + "Pilihan", + "Ini dan bawahnya" + ], + [ + "Ganti", + "Satukan", + "Kurangi", + "Potong", + "Kecualikan", + null + ], + [ + [ + "Garis lurus", + "Bundar", + "Sudut", + "Cerminkan", + "Berlian", + "Bentuk Semburan" + ], + [ + "Lebih halus", + "Presisi" + ], + [ + "Sudut luar", + "Sudut dalam", + "Timbul", + "Timbulan halus", + "Timbulan keras", + null + ], + [ + "Halus", + "Pahatan Keras", + "Pahatan Halus", + null + ], + [ + "Atas", + "Bawah" + ], + [ + "Luar", + "Tengah", + "Dalam", + "Dari tengah" + ], + [ + "Bayangan", + "Cahaya Umumnya", + "Sorotan Cahaya" + ], + [ + "Pudarkan warna", + "Warnai" + ], + [ + "Kecil", + "Sedang", + "Besar" + ], + [ + null, + null, + null + ] + ], + [ + "Pilih objek di bawah kursor", + "Kontrol transformasi", + "Piksel ke Piksel", + "Sesuaikan dengan Area", + [ + "Sejajarkan dengan Sudut Kiri", + "Tengah secara horizontal", + "Sejajarkan dengan Sudut Kanan", + "Sejajarkan dengan Sudut Atas", + "Tengah secara vertikal", + "Sejajarkan dengan Sudut Bawah", + "Samakan jarak" + ] + ], + [ + "Taruh ke dalam...", + "Proyek Sekarang", + "Proyek Baru", + "Resolusi", + "Udah ditambahin ke proyek sekarang", + "Proyek baru udah dibuat", + "Akses ke kamera ditolak" + ], + [ + "Orientasi", + "Bengkokan", + "Distorsi Horizontal", + "Distorsi Vertikal", + [ + "Horizontal", + "Vertikal", + "secara horizontal", + "secara vertikal" + ], + [ + "Gak ada", + "Bentuk Kurva", + "Bentuk kurva bawah", + "Bentuk kurva atas", + "Melengkung", + "Menonjol", + "Bentuk Kerang Bawah", + "Bentuk Kerang Atas", + "Bentuk Bendera", + "Bergelombang", + "Bentuk Ikan", + "Timbul", + "Bentuk Mata Ikan", + "Tonjolkan", + "Remaskan", + "Pelintirkan", + "Bebas" + ], + [ + "Huruf", + "gak tersedia", + "Bakal dirender pake", + "Ada file yang belum tersimpan di", + "Apa kamu yakin akan menutupnya?" + ], + [ + "Tukar warna", + "Default: Putih dan Hitam" + ] + ], + [ + "udah dimuat", + "udah ditambahin", + "Geser Patokan", + "Buang Patokan", + "Tambah Patokan", + "Memuat", + "Muat VAR0" + ], + [ + "Galeri Filter", + [ + [ + "Cairkan", + [ + "Nodai", + "Buat Ulang", + "Haluskan", + "Putarkan", + "Ciutkan", + "Gembungkan", + "Tekan ke kiri", + "Bekukan", + "Batalkan beku" + ] + ], + [ + "Koreksi lensa" + ] + ], + "Buram", + [ + "Rata-rata", + "Buram", + "Buram Banget", + "Buram bentuk Kotak", + "Buram Gaussian", + "Buram Lensa", + "Buram Gerakan", + "Buram bentuk bundar", + "Buram berbentuk sesuatu", + "Buram Pintar", + "Buram permukaan" + ], + "Distorsi", + [ + "Perpindahan", + "Cubit", + "Koordinat Polar", + "Beriak", + "Pangkas", + "Bentuk menjadi Bundar/Bola", + "Gelombang" + ], + "Pecah Gambar", + [ + "Pecahkan Gambar", + "Hapus debu dan goresan", + "Tambahkan debu dan goresan", + "Median" + ], + "Ubah jadi Pecahan Piksel", + [ + "Ubah jadi Halftone", + "Ubah jadi kristal", + "Segi", + "Potongan", + "Mezzotint", + "Mosaik", + "Titik-Titik" + ], + "Render", + [ + "Berawan", + "Awan-awan aneh", + null + ], + "Pertajam", + [ + "Pertajam", + "Pertajam tepi", + "Tajam Banget", + "Pertajaman Pintar", + "Batalin Mask Pertajaman" + ], + "Ubah-ubah", + [ + "Baurkan", + "Timbulkan", + "Tarik-Keluarkan", + "Cari Sudut", + null + ], + "Lainnya", + [ + "Terserah", + null, + "Maksimum", + "Minimum", + null, + "Ulang" + ], + [ + null, + "Atur jadi Transparan", + null, + null, + "Filter sebelumnya", + "Pratinjau" + ] + ], + [ + "Templat", + [ + "Malaysia", + "Kata kunci", + "Acak" + ], + [ + "Dengan simbol", + "Dengan foto" + ], + [ + "Thumbnails", + "Daftar" + ] + ] + ], + [ + [ + "文件", + "编辑", + "图像", + "图层", + "文件夹", + "选择", + "滤镜", + "视图", + "窗口", + "语言", + "登录的 的", + "注销", + "创建翻译", + [ + "账户", + "服务条款", + "返回", + "关于", + "反馈错误", + "学习" + ], + "更多", + "主题", + "使用 WebGL", + [ + "Photopea: 高级图片编辑器", + "免费的在线图像编辑器,支持PSD、XCF、Sketch、XD、CDR等格式", + "创建新图像或打开已有文件。保存你的作品为 PSD 格式(文件 - 另存为 PSD)或 JPG / PNG / SVG 格式(文件 - 导出为)。", + "在我们的 上提出功能需求。我们的目标是打造 <最强大而易用的图片编辑器>", + "赞助商链接在新窗口中打开。", + "此功能不可使用。", + "安装 Photopea" + ] + ], + [ + "打开", + "在线发布", + "保存", + "另存为 PSD", + "打印", + "从 URL 打开", + "从电脑打开", + "连接 Google Drive", + "导出为", + "导出图层", + "脚本", + "打开并放置", + "关闭", + "本地存储", + "Hustle Fresh" + ], + [ + "重做", + "撤销", + "清除", + "填充", + "变形", + "旋转", + "VAR0翻转", + "VAR0缩放", + "撤销/重做", + "透视", + [ + "自动混合", + "自动对齐" + ], + "渐隐", + "应用图像" + ], + "调整", + [ + "亮度 / 对比度", + "色阶", + "曲线", + "曝光度", + "自然饱和度", + "色调/饱和度", + "色彩平衡", + "黑白", + "图片滤镜", + "通道混合器", + "颜色查找", + "反向", + "色调分离", + "阈值", + "渐变映射", + "可选颜色", + [ + "刘德华", + "自动对比度", + "自动颜色" + ], + "微软雅黑" + ], + [ + "剪切", + "复制", + "粘贴", + "新建", + "删除", + "启用", + "禁用", + "复制合并", + "应用", + "再次", + "更新" + ], + [ + "复制图层", + "新调整图层", + "光栅遮罩", + "矢量蒙版", + "添加(显示全部)", + [ + "添加(隐藏全部)", + "显示选区", + "隐藏选区", + "从透明区域" + ], + [ + "剪切蒙版", + "快速遮罩模式" + ], + "转化为智能对象", + "栅格化", + "图层组", + "向下合并", + "向上合并", + [ + "合并图层", + "拼合图像" + ], + "新建图层", + "开启光栅遮罩", + "禁用光栅遮罩", + "开启矢量蒙版", + "禁用矢量蒙版", + "开启剪切蒙版", + "禁用剪切蒙版", + "新建文件夹", + "添加光栅蒙版", + "删除光栅蒙版", + "添加矢量蒙版", + "删除矢量蒙版", + "链接光栅蒙版", + "取消光栅遮罩链接", + "连接矢量蒙版", + "取消矢量蒙版链接", + "启用图层效果", + "禁用图层效果", + "删除图层", + "图层透明度更改", + "混合更改", + "栅格化图层样式", + "图层排序", + [ + "创建智能对象", + "更新智能对象", + "放置智能对象", + "来源(智能对象)", + "堆叠模式" + ], + "重命名", + "更改颜色", + "编辑调整图层", + "转换为形状", + "开启滤镜遮罩", + "禁用滤镜遮罩", + "开启智能滤镜", + "禁用智能滤镜", + "添加滤镜遮罩", + "删除滤镜遮罩", + "清除智能滤镜", + [ + [ + "填充", + "渐变填充", + "图案填充", + "内容感知" + ], + "新建图层", + "修改填充层" + ], + "图层(通过复制)", + "滤镜蒙版", + "删除图层样式", + "移动智能滤镜", + "删除智能滤镜", + [ + "连接图层", + "取消图层连接" + ], + "排列", + [ + "置于顶层", + "前移一层", + "后移一层", + "置于底层" + ], + [ + "图层已锁定", + "锁定修改", + "锁定" + ], + "动画" + ], + [ + "全部", + "取消选择", + "反选", + "修改", + "扩展", + "收缩", + "羽化", + "移动选区", + "色彩范围", + "边框", + "转换所选项", + "调整边缘", + "恢复选区", + "魔术切" + ], + [ + "放大", + "缩小", + "参考线", + "标尺", + "网格", + "快照", + "对齐到", + "页面边界", + "像素网格", + "路径", + "像素对齐", + [ + "切片", + "切片选项" + ], + "显示" + ], + [ + "历史记录", + "图层", + "属性", + "笔刷", + "字符", + "段落", + "信息", + "图层组合", + "取样", + "动作", + "立方图", + "导航器", + "工具预设", + "字形" + ], + [ + "笔刷工具", + "克隆工具", + "剪切工具", + "橡皮工具", + "椭圆选区", + "吸管", + "渐变工具", + "手型工具", + "文字工具", + "套索", + "磁性套索", + "移动", + "魔棒", + "填充", + "多边形套索", + "矩形", + "自由变换", + "放大镜工具", + "模糊", + "锐化工具", + "涂抹工具", + "减淡工具", + "加深工具", + "海绵工具", + "污点修复笔刷工具", + "修复画笔工具", + "修补工具", + "路径选择", + "直接选择", + "钢笔", + "自由钢笔", + "自定形状工具", + "矩形", + "椭圆形", + "形状图形", + "线", + "尺子", + "快速选中", + "铅笔工具", + "透视裁剪工具", + "切片", + "切片选择", + "颜色更换", + "红眼工具", + "选取目标", + "背景擦", + "布偶弯曲", + "旋转视图", + "内容识别比例", + "内容识别移动" + ], + [ + "拍照", + "拾色器", + "等高线编辑器", + "画布大小", + "复制到...", + "渐变编辑器", + "图层样式", + "新建项目", + "另存为网页", + "弯曲", + "图像大小", + "向量位图", + [ + "裁切", + "裁剪", + "显示全部" + ], + "键盘快捷键", + "添加参考线", + [ + "清除参考线", + "图层引导" + ] + ], + [ + "透明度", + "效果", + "亮度", + [ + "对比度", + "使用旧版" + ], + "通道", + "曝光度", + "补偿", + "伽玛校正", + "色调", + "饱和度", + "明度", + "着色", + "范围", + "抖动", + [ + "大小", + "插值", + "邻近", + "两次线性" + ], + "角度", + "圆度", + "硬度", + "间距", + [ + "混合模式", + "混合颜色带" + ], + "样本大小", + "轮廓", + "样式", + [ + "反向", + "相对", + "定位" + ], + "容差", + "连续", + "填充", + "全局视图", + "距离", + "扩展", + "杂色", + "移除阴影", + "技巧", + "方向", + "深度", + "软化", + "样式", + "渐变", + "缩放", + "图层对齐", + "位置", + "宽", + "高度", + "目标", + "类型", + "前景色", + "背景色", + "自定义", + "名字", + "创建", + "格式", + "保持长宽比", + [ + "质量", + "网页" + ], + "复制", + "更多", + "智能滤镜", + "圆角", + "数量", + "分布", + [ + "统一", + "高斯" + ], + "单色", + "栅格大小", + "样式", + "流", + "强度", + "保护细节", + "填色类型", + "贴图", + "抖动", + "边缘", + "源", + "目标", + "通道", + "蒙版", + "密度", + "对齐", + [ + "路径", + "形状", + "像素", + "英寸", + "厘米", + "毫米", + "百分比" + ], + "图形", + "边", + "首选项", + [ + "长度", + "比例", + "任何", + "网格类型", + "等距", + "网格间距", + "标尺单位" + ], + "降低噪点", + "色彩", + "距离", + "比例", + "自动选择", + "查找", + "定义新的", + [ + "照片", + "屏幕", + "移动", + "广告", + "打印" + ], + [ + "释放", + "固定比例", + "固定大小" + ], + "帮助", + [ + "实时形状", + "编辑实时形状", + "相同半径" + ], + "模糊", + [ + "多边形", + "星状", + "螺旋", + "正方形" + ], + [ + "角半径", + "内半径" + ] + ], + [ + "颜色", + [ + "无", + "红", + "橙色", + "黄色", + "绿色", + "蓝色", + "紫色", + "灰色", + "白色", + "透明", + "黑", + "青色", + "品红", + "中性色" + ], + "总量", + "绝对", + "保持亮度" + ], + [ + "阴影", + "内阴影", + "外发光", + "内发光", + "斜面和浮雕", + "颜色叠加", + "渐变叠加", + "图案叠加", + "光泽", + "描边", + "混合模式", + "像素选择" + ], + [ + "笔尖形状", + "提示动态", + "散射", + "动态颜色", + [ + "大小调整", + "最小直径", + "角度调整", + "圆形调整", + "最小圆度" + ], + [ + "位置调整", + "数量", + "分布调整" + ], + [ + "前景/背景调整", + "色调调整", + "饱和度", + "亮度调整" + ], + [ + "通过按住Alt(或K)选择克隆源,并单击图像。", + "用白色标记前景,用黑色标记背景,用灰色标记未知区域。", + "无法编辑图层。", + "必须对文本图层进行栅格化", + "必须对智能对象进行栅格化", + "选择多个图层", + "拉直图层", + "首先打开文档。", + "首先关闭当前窗口。", + "仅限当前工具" + ], + [ + "记录", + "新动作集", + "新动作" + ], + [ + "绘图板压力控制不透明度", + "绘图板压力控制大小" + ], + [ + "正常", + "溶解", + "变暗", + "正片叠底", + "颜色加深", + "线性加深", + "浅色", + "变亮", + "滤色", + "颜色减淡", + "线性减淡", + "深色", + "叠加", + "柔光", + "强光", + "亮光", + "线性光", + "点光", + "实色混合", + "差值", + "排除", + "减去", + "划分", + "色相", + "饱和度", + "颜色", + "明度", + "穿透" + ] + ], + [ + "行距", + "字距", + "基线偏移", + [ + "转换为点文本", + "转换为段落文本" + ] + ], + [ + "所有图层", + "当前图层", + "选择", + "当前和下方图层" + ], + [ + "替换", + "合并", + "分离", + "交叉", + "排除", + "合并" + ], + [ + [ + "线性", + "径向", + "角", + "倒影", + "菱形", + "形状脱离" + ], + [ + "柔和", + "精确" + ], + [ + "外斜角", + "内斜角", + "浮雕", + "枕状浮雕", + "边缘浮雕", + "描边宽" + ], + [ + "平滑", + "雕刻清晰", + "雕刻柔和", + "平滑度" + ], + [ + "上", + "下" + ], + [ + "外部", + "中心", + "内部", + "从中心" + ], + [ + "阴影", + "中间调", + "高光" + ], + [ + "去色", + "饱和" + ], + [ + "小", + "中", + "大" + ], + [ + "端点", + "角", + "短划线" + ] + ], + [ + "自动选择", + "变换工具", + "像素到像素", + "按屏幕大小缩放", + [ + "左对齐", + "水平居中", + "右对齐", + "顶部对齐", + "垂直居中", + "底部对齐", + "等间距" + ] + ], + [ + "应用图像", + "当前项目", + "新建项目", + "分辨率", + "添加到当前项目中。", + "新项目已创建", + "摄像机的访问被拒绝。" + ], + [ + "定位", + "弯曲变形", + "水平变形", + "垂直变形", + [ + "水平", + "垂直", + "水平", + "垂直" + ], + [ + "无", + "弧", + "下弧形", + "向上弧度", + "弓形", + "凸起", + "下张", + "上张", + "标记", + "波形", + "搜寻", + "上升", + "鱼眼", + "膨胀", + "挤压", + "扭曲", + "自定义" + ], + [ + "字体", + "不可用", + "将被渲染使用", + "有未保存的工作", + "你真的想关闭吗?" + ], + [ + "替换颜色", + "默认值:白色和黑色" + ] + ], + [ + "已加载", + "添加", + "移动参考线", + "删除参考线", + "添加参考线", + "加载", + "加载 VAR0" + ], + [ + "滤镜组", + [ + [ + "液化", + [ + "涂抹", + "重建", + "平滑", + "旋转", + "压缩", + "放大", + "向左推", + "锁定", + "解锁" + ] + ], + [ + "镜头校正" + ] + ], + "模糊", + [ + "平均", + "模糊", + "高斯模糊", + "方形模糊", + "高斯模糊", + "镜头模糊", + "动态模糊", + "圆形模糊", + "形状模糊", + "智能模糊", + "表面模糊" + ], + "变形", + [ + "替换", + "挤压", + "极坐标", + "波纹", + "斜变", + "球面化", + "波浪" + ], + "噪点", + [ + "添加杂色", + "祛斑", + "蒙尘与刮痕", + "中值" + ], + "像素化", + [ + "彩色半调", + "晶格化", + "彩块化", + "碎片", + "铜板雕刻", + "马赛克", + "点状化" + ], + "渲染", + [ + "云彩", + "差值分层云彩", + "镜头光晕" + ], + "锐化", + [ + "锐化", + "锐化边缘", + "进一步锐化", + "智能锐化", + "USM 锐化" + ], + "风格化", + [ + "扩散", + "浮雕", + "挤压", + "查找边缘", + "油画" + ], + "其它", + [ + "自定义", + "高反差保留", + "最大值", + "最小值", + "抵消", + "重复" + ], + [ + "未定义区域", + "设为透明", + "重复像素边缘", + "环绕", + "上次滤镜", + "预览" + ] + ], + [ + "模板", + [ + "字体过滤", + "关键词", + "随机" + ], + [ + "带符号", + "带图片" + ], + [ + "缩览图", + "列表" + ] + ] + ], + [ + [ + "檔案", + "編輯", + "影像", + "圖層", + "資料夾", + "選取", + "濾鏡", + "檢視", + "視窗", + "語言", + "登入", + "登出", + "建立翻譯", + [ + "帳戶", + "服務條款", + "返回", + "關於", + "回報問題", + "學習" + ], + "更多", + "主題", + "使用 WebGL", + [ + "Photopea: 進階影像編輯器", + "支援 PSD, XCF, Sketch, XD 和 CDR 格式的免費在線編輯器。", + "創建新圖像或打開已有文件。保存工作為 PSD 格式(文件 - 另存為 PSD)或 JPG / PNG / SVG 格式(文件 - 轉存為)。", + "在我們的 上提供新功能建議 。我們的目標是打造 <最強大而易用的圖片編輯器>。", + "贊助商鏈接將在新窗口打開。", + "此功能不可使用。", + "安裝 Photopea" + ] + ], + [ + "開啟", + "線上發佈", + "存檔", + "存檔為 PSD", + "列印", + "從網址打開", + "從電腦開啟", + "連接Google Drive", + "轉存為", + "輸出圖層", + "腳本", + "置入", + "關閉", + "內部存儲", + "檔案信息" + ], + [ + "下一步", + "上一步", + "清空", + "填滿", + "變形", + "旋轉", + "VAR0翻轉", + "VAR0比例尺", + "返回 / 向前", + "透視", + [ + "自動合成", + "自動對齊" + ], + "淡化", + "套用影像" + ], + "調整", + [ + "亮度 / 對比", + "色階", + "曲線", + "曝光", + "鮮艷", + "色相 / 飽和度", + "色彩平衡", + "黑白", + "圖片濾鏡", + "通道混合器", + "色彩查詢", + "倒置", + "色調分離", + "閾值", + "漸層地圖", + "色彩選擇", + [ + "自動色調", + "自動對比", + "自動色彩" + ], + "取代顏色" + ], + [ + "剪下", + "複製", + "貼上", + "新增", + "刪除", + "開啟", + "關閉", + "複製合併", + "應用", + "再一次", + "更新" + ], + [ + "複製圖層", + "新調整圖層", + "光柵遮罩", + "向量遮罩", + "新增(顯示全部)", + [ + "新增(隱藏全部)", + "顯現選取範圍", + "隱藏選取範圍", + "來自透明選取範圍" + ], + [ + "剪裁遮罩", + "快速遮色片模式" + ], + "轉換成智慧物件", + "柵格化", + "圖層群組", + "向下合併", + "向上合併", + [ + "合併圖層", + "影像平面化" + ], + "新圖層", + "開啟光柵遮罩", + "關閉光柵遮罩", + "開啟向量遮罩", + "關閉光柵遮罩", + "開啟剪裁遮罩", + "關閉剪裁遮罩", + "新資料夾", + "新增光柵遮罩", + "移除光柵遮罩", + "新增向量遮罩", + "移除向量遮罩", + "連結光柵遮罩", + "移除光柵遮罩連結", + "聯結向量圖遮色片", + "取消鏈接向量圖遮色片", + "啟用圖層效果", + "關閉圖層效果", + "刪除圖層", + "更改圖層不透明度", + "混合變更", + "點陣化圖層樣式", + "圖層順序", + [ + "建立智慧型物件", + "更新智慧型物件", + "建立智慧型物件", + "來源 (智能物件)", + "堆疊模式" + ], + "更改命名", + "更改顏色", + "編輯調整圖層", + "轉換成圖形", + "啟用過濾遮罩", + "關閉過濾遮罩", + "啟用智慧過濾", + "關閉智慧過濾", + "新增過濾遮罩", + "刪除過濾遮罩", + "清除智慧過濾", + [ + [ + "實色填滿", + "漸層填滿", + "網格填滿", + "內容意識" + ], + "新建填充圖層", + "變更填充圖層" + ], + "圖層(通過複製)", + "濾鏡遮罩", + "刪除圖層樣式", + "移動智慧遮罩", + "刪除智慧遮罩", + [ + "超鏈接圖層", + "取消超鏈接圖層" + ], + "排列", + [ + "移上一層", + "移下一層", + "下移一層", + "移到下層" + ], + [ + "圖層已被鎖定", + "鎖定變更", + "鎖定" + ], + "動畫" + ], + [ + "全部", + "取消選擇", + "反選", + "修改", + "擴展", + "對比", + "羽化", + "移動選擇項目", + "顏色範圍", + "邊框", + "變形選區", + "調整邊緣", + "恢復選擇", + null + ], + [ + "放大", + "縮小", + "參考線", + "尺規", + "格線", + "對齊", + "對齊到", + "頁面邊界", + "像素格點", + "路徑", + "對齊像素", + [ + "切片", + "切片選項" + ], + "顯示" + ], + [ + "歷史紀錄", + "圖層", + "屬性", + "刷子", + "符號", + "段落", + "資訊", + "圖層構圖", + "顏色板", + "動作", + "直方圖", + "導覽器", + "工具預設集", + "字符" + ], + [ + "筆刷工具", + "複製工具", + "裁剪工具", + "橡皮擦工具", + "橢圓選取", + "滴管", + "漸層", + "手繪工具", + "文字工具", + "套索選取", + "磁性套索選取", + "移動工具", + "魔術棒", + "油漆桶工具", + "多邊形套索選取", + "矩形選取", + "自由變換", + "縮放工具", + "模糊工具", + "銳利化工具", + "指尖工具", + "加亮工具", + "加深工具", + "海綿工具", + "污點修復筆刷工具", + "修復筆刷工具", + "修補工具", + "路徑選擇", + "直接選擇", + "鋼筆", + "自由鋼筆", + "自訂形狀工具", + "矩形", + "橢圓形", + "形狀圖形", + "線", + "尺標", + "快速選擇", + "鉛筆工具", + "透視修剪", + "切片", + "切片選取", + "顏色取代工具", + "紅眼", + "物件選擇", + "背景像皮擦", + "布偶彎曲", + "旋轉檢視", + "內容感知比率", + "內容感知移動" + ], + [ + "快照", + "色彩選擇", + "輪廓編輯器", + "畫布尺寸", + "複製到...", + "漸變編輯器", + "圖層樣式", + "新增專案", + "另存網頁", + "曲線", + "圖片大小", + "向量像素化", + [ + "修剪", + "裁剪", + "顯示全部" + ], + "熱鍵", + "添加參考線", + [ + "清除參考線", + "從圖層新增參考線" + ] + ], + [ + "透明度", + "效果", + "亮度", + [ + "對比", + "使用舊版" + ], + "色版", + "曝光度", + "偏移", + "伽馬校正", + "色相", + "飽和度", + "亮度", + "著色", + "範圍", + "抖動", + [ + "大小", + "內插", + "最接近像素", + "縱橫增值法" + ], + "角度", + "圓度", + "硬度", + "間距", + [ + "混合模式", + "混合範圍" + ], + "樣本大小", + "輪廓", + "風格", + [ + "顛倒", + "相對", + "錨點" + ], + "容差", + "連續", + "填滿", + "使用全局視角", + "距離", + "擴散", + "雜訊", + "移除陰影", + "技巧", + "方向", + "深度", + "柔化", + "模式", + "漸層", + "比例尺", + "圖層對齊", + "位置", + "寬", + "高", + "目的地", + "類型", + "前景色", + "背景", + "自定義", + "名稱", + "建立", + "格式", + "保持長寬比例", + [ + "質量", + "網頁" + ], + "複製", + "移動", + "智能濾鏡", + "半徑", + "數量", + "分佈", + [ + "統一", + "高斯" + ], + "單色", + "格大小", + "圖樣", + "流", + "強度", + "保護細節", + "填色類型", + "紋理", + "抖動", + "邊緣", + "來源", + "目標", + "通道", + "遮罩", + "密度", + "對齊", + [ + "路徑", + "形狀", + "像素", + "英寸", + "公分", + "毫米", + "百分比" + ], + "圖形", + "邊", + "選項", + [ + "長", + "比例", + "任意", + "格框類型", + "等角", + "格框間隙", + "尺單位" + ], + "移除雜訊", + "色彩", + "距離", + "比例", + "自動選擇", + "搜尋", + "定義新的", + [ + "照片", + "螢幕", + "手機", + "廣告", + "版畫" + ], + [ + "自由", + "鎖定比例", + "鎖定大小" + ], + "幫助", + [ + "即時形狀", + "編輯即時形狀", + "相同半徑" + ], + "模糊度", + [ + "多邊形", + "星", + "螺旋", + "方形" + ], + [ + "角半徑", + "內半徑" + ] + ], + [ + "顏色", + [ + "無", + "紅", + "橘", + "黃", + "綠", + "藍", + "紫", + "灰", + "白", + "透明", + "黑", + "青色", + "品紅", + "中色" + ], + "總計", + "絕對", + "保持亮度" + ], + [ + "陰影", + "內陰影", + "外發光", + "內發光", + "斜面與浮雕", + "顏色疊加", + "漸變疊加", + "紋理疊加", + "光澤", + "筆畫", + "混合模式", + "選擇畫素" + ], + [ + "筆尖形狀", + "提示動態", + "散射", + "動態顏色", + [ + "大小調整", + "最小直徑", + "角度調整", + "圓度調整", + "最小圓度" + ], + [ + "位置調整", + "數量", + "數量調整" + ], + [ + "前景/後景調整", + "色相調整", + "飽和度調整", + "亮度調整" + ], + [ + "按住Alt鍵(或K鍵)並點擊在影像上以選取複製來源", + "使用白色標註前景,黑色為背景,灰色為未知區域", + "圖層無法編輯。", + "必須先對文字圖層進行光柵化", + "必須先對智能對象進行光柵化", + "選中多個圖層", + "拉直層", + "首先打開文檔。", + "首先關閉當前窗口。", + "僅限目前工具" + ], + [ + "記錄", + "新動作集", + "新動作" + ], + [ + "數位板壓力控制不透明度", + "數位板壓力控制大小" + ], + [ + "正常", + "溶解", + "變暗", + "色彩增值", + "加深顏色", + "線性加深", + "顏色變暗", + "變亮", + "濾色", + "加亮顏色", + "線性加亮", + "顏色變亮", + "覆蓋", + "柔光", + "實光", + "強烈光源", + "線性光源", + "小光源", + "實色疊印混合", + "差異化", + "排除", + "減去", + "分割", + "色相", + "飽和度", + "顏色", + "明度", + "穿過" + ] + ], + [ + "行距", + "字距", + "基線偏移", + [ + "轉換為錨點文字", + "轉換為段落文字" + ] + ], + [ + "全部圖層", + "目前圖層", + "選擇", + "目前及底下的圖層" + ], + [ + "取代", + "合併", + "分離", + "相交", + "排除", + "合併" + ], + [ + [ + "線性", + "徑向", + "角度", + "反映", + "鑽石", + "形狀爆裂" + ], + [ + "柔和", + "精確" + ], + [ + "外斜角", + "內斜角", + "浮雕", + "枕狀浮雕", + "邊緣浮雕", + "線條寬度" + ], + [ + "平滑", + "雕刻清晰", + "雕刻柔和", + "平滑度" + ], + [ + "上", + "下" + ], + [ + "外部", + "中央", + "內部", + "從中央" + ], + [ + "陰影", + "中間調", + "亮部" + ], + [ + "去飽和度", + "飽和度" + ], + [ + "小", + "中", + "大" + ], + [ + "端點", + "轉折角", + "短橫線" + ] + ], + [ + "選擇游標下的物件", + "變形調控", + "像素到像素", + "按屏幕大小縮放", + [ + "左邊緣對齊", + "水平置中", + "右邊緣對齊", + "頂端對齊", + "垂直置中", + "底端對齊", + "間隔相等" + ] + ], + [ + "應用圖像", + "目前專案", + "新方案", + "分辨度", + "加入本方案", + "已經建立一個新的專案", + "對攝像頭的操作被拒絕" + ], + [ + "定位", + "彎曲變形", + "水平變形", + "垂直變形", + [ + "水平", + "垂直", + "水平", + "垂直" + ], + [ + "無", + "弧", + "下弧形", + "上弧形", + "弓形", + "凸起", + "下張", + "上張", + "旗標", + "波浪", + "魚", + "上升", + "魚眼", + "膨脹", + "擠壓", + "扭曲", + "自定義" + ], + [ + "字體", + "不可用", + "渲染(將使用)", + "有未保存工作在", + "確定要關閉?" + ], + [ + "交換顏色", + "預設: 白與黑" + ] + ], + [ + "加載", + "加入", + "移動參考線", + "刪除參考線", + "加入參考線", + "載入中", + "載入 VAR0" + ], + [ + "濾鏡庫", + [ + [ + "液化", + [ + "塗抹", + "重建工具", + "平滑", + "旋轉扭曲", + "縮攏工具", + "膨脹工具", + "向左移動", + "凍結", + "取消凍結" + ] + ], + [ + "鏡頭矯正" + ] + ], + "模糊", + [ + "平均", + "模糊", + "更多模糊", + "方形模糊", + "高斯模糊", + "鏡頭模糊", + "行動模糊", + "圓形模糊", + "形狀模糊", + "智能模糊", + "表面模糊" + ], + "變形", + [ + "更換", + "掐", + "極座標", + "漣漪效果", + "修剪", + "球體化", + "波狀" + ], + "雜訊", + [ + "加入雜訊", + "斑點", + "蒙塵與刮痕", + "中值" + ], + "像素化", + [ + "彩色半調", + "水晶化", + "彩塊化", + "碎片", + "銅板雕刻", + "馬賽克", + "點狀化" + ], + "渲染", + [ + "雲彩", + "差值分層雲彩", + "反光效果" + ], + "銳利化", + [ + "銳利化", + "邊緣銳化", + "更多銳化", + "智慧銳利化", + "USM 蒙板" + ], + "風格化", + [ + "擴散", + "浮雕", + "擠壓", + "查找邊緣", + "油畫" + ], + "其他", + [ + "自定義", + "高反差保留", + "最大值", + "最小值", + "偏移", + "重覆" + ], + [ + "未定義區域", + "設為透明", + "重複像素邊緣", + "環繞", + "最後一個濾鏡", + "預覽" + ] + ], + [ + "模板", + [ + "字體過濾", + "關鍵字", + "隨機" + ], + [ + "帶符號", + "帶圖片" + ], + [ + "型縮圖", + "清單" + ] + ] + ], + [ + [ + "ไฟล์", + "แก้ไข", + "รูปภาพ", + "เลเยอร์", + "โฟลเดอร์", + "เลือก", + "ตัวกรอง", + "มุมมอง", + "หน้าต่าง", + "ภาษา", + "เข้าสู่ระบบ", + "ออกจากระบบ", + "สร้างการแปล", + [ + "บัญชี", + "เงื่อนไขการใช้งาน", + "ย้อนกลับ", + "เกี่ยวกับ", + "รายงานความผิดพลาด", + "เรียนรู้" + ], + "เพิ่มเติม", + "ธีม", + "ใช้ WebGL", + [ + "Photopea: โปรแกรมแก้ไขภาพขั้นสูง", + "โปรแกรมแก้ไขออนไลน์ฟรีที่รองรับรูปแบบ PSD, XCF, Sketch, XD และ CDR", + "สร้างภาพใหม่หรือเปิดไฟล์ที่มีอยู่จากคอมพิวเตอร์ของคุณ บันทึกงานของคุณเป็น PSD (ไฟล์ - บันทึกเป็น PSD) หรือเป็น JPG / PNG / SVG (ไฟล์ - ส่งออกเป็น)", + "แนะนำคุณสมบัติใหม่ที่ หรือ ของเรา เป้าหมายของเราคือการสร้าง <โปรแกรมแก้ไขภาพที่ทันสมัยที่สุดและราคาไม่แพง>", + "ลิงก์จากผู้สนับสนุนเปิดในหน้าต่างใหม่", + "ฟีเจอร์นี้ไม่พร้อมใช้งาน", + null + ] + ], + [ + "เปิด", + "เผยแพร่ทางออนไลน์", + "บันทึก", + "บันทึกเป็น PSD", + "พิมพ์", + "เปิดจาก URL", + "เปิดจากคอมพิวเตอร์", + "เชื่อมต่อกับ Google Drive", + "ส่งออกเป็น", + "ส่งออกเลเยอร์", + "สคริปท์", + "เปิดและวาง", + "ปิด", + "ไฟล์ข้อมูล ท้องถิ่น", + null + ], + [ + "ขั้นตอนต่อไป", + "ขั้นตอนก่อนหน้า", + "ล้าง", + "ใส่", + "แปลง", + "หมุน", + "พลิกVAR0", + "สเกลVAR0", + "ยกเลิก / ทำซ้ำ", + "มุมมอง", + [ + null, + "การจัดตำแหน่งอัตโนมัติ" + ], + null, + null + ], + "การปรับ", + [ + "ความสว่าง/ความเปรียบต่าง", + "ระดับ", + "เส้นโค้ง", + "การเปิดรับ", + "ความสั่นไหว", + "สีสัน/ความอิ่มตัว", + "ความสมดุลของสี", + "ขาวดำ", + "ตัวกรองภาพถ่าย", + "เครื่องผสมสัญญาณ", + "การค้นหาสี", + "กลับหัวกลับหาง", + "โปสเตอร์", + "ธรณีประตู", + "แผนที่แบบไล่ระดับสี", + "สีที่เลือก", + [ + "ปรับโทนอัตโนมัติ", + "ปรับความเปรียบต่างอัตโนมัติ", + "ปรับสีอัตโนมัติ" + ], + "แทนที่สี" + ], + [ + "ตัด", + "คัดลอก", + "แปะ", + "ใหม่", + "ลบ", + "เปิดใช้งาน", + "ปิดใช้งาน", + "สำเนาควบรวม", + "อะไร", + "อีกที", + "อัปเดต" + ], + [ + "เลเยอร์ซ้ำ", + "เลเยอร์การปรับใหม่", + "หน้ากากแรสเตอร์", + "หน้ากากเวกเตอร์", + "เพิ่ม (แสดงทั้งหมด)", + [ + "เพิ่ม (ซ่อนทั้งหมด)", + "แสดงการเลือก", + "ซ่อนการเลือก", + null + ], + [ + "หน้ากากตัด", + null + ], + "แปลงเป็นวัตถุอัจฉริยะ", + null, + "เลเยอร์กลุ่ม", + "ผสานลง", + "ผสานขึ้น", + [ + "รวมเลเยอร์", + null + ], + "เลเยอร์ใหม่", + "เปิดใช้งานหน้ากากแรสเตอร์", + "ปิดใช้งานหน้ากากแรสเตอร์", + "เปิดใช้งานหน้ากากเวกเตอร์", + "ปิดใช้งานหน้ากากเวกเตอร์", + "เปิดใช้งานหน้ากากตัด", + "ปิดใช้งานหน้ากากตัด", + "โฟลเดอร์ใหม่", + "เพิ่มหน้ากากแรสเตอร์", + "ลบหน้ากากแรสเตอร์", + "เพิ่มหน้ากากเวกเตอร์", + "ลบหน้ากากเวกเตอร์", + "การลิงก์หน้ากากแรสเตอร์", + "ยกเลิกการเชื่อมโยงหน้ากากแรสเตอร์", + "การลิงก์หน้ากากเวกเตอร์", + "ยกเลิกการเชื่อมโยงหน้ากากเวกเตอร์", + "เปิดใช้งานผลลัพท์เลเยอร์", + "ปิดใช้งานเลเยอร์เอฟเฟ็กต์", + "ลบเลเยอร์", + "เปลี่ยนความทึบของเลเยอร์", + "การผสมผสานการเปลี่ยนแปลง", + null, + "ลำดับชั้น", + [ + "การสร้างวัตถุอัจฉริยะ", + "กำลังอัปเดตวัตถุอัจฉริยะ", + "การวางวัตถุอัจฉริยะ", + "แหล่ง (วัตถุอัจฉริยะ)", + null + ], + "เปลี่ยนชื่อ", + "เปลี่ยนสี", + "แก้ไขเลเยอร์การปรับแต่ง", + "แปลงเป็นรูปทรง", + "เปิดใช้งานตัวกรองหน้ากาก", + "ปิดใช้งานหน้ากากกรอง", + "เปิดใช้งานตัวกรองอัจฉริยะ", + "ปิดใช้งานตัวกรองอัจฉริยะ", + "เพิ่มหน้ากากกรอง", + "ลบหน้ากากกรอง", + "ล้างตัวกรองอัจฉริยะ", + [ + [ + "สีทึบเติม", + "ไล่ระดับเติม", + "ลวดลายเติม", + null + ], + "เลเยอร์การเติมใหม่", + "แก้ไขเลเยอร์การเติม" + ], + "เลเยอร์ผ่านทางสำเนา", + "กรองมาสก์", + "ลบรูปแบบเลเยอร์", + "ย้ายตัวกรองอัจฉริยะ", + "ลบตัวกรองอัจฉริยะ", + [ + "การลิงก์เลเยอร์", + "ยกเลิกการเชื่อมโยงเลเยอร์" + ], + "จัดเรียง", + [ + "ข้างหน้า", + "นำไปไว้ข้างหน้า", + "ส่งกลับไปข้างหลัง", + "ส่งไปหลังสุด" + ], + [ + "เลเยอร์ถูกล็อค", + "แก้ล็อค", + null + ], + null + ], + [ + "ทั้งหมด", + "ยกเลิกการเลือก", + "ผกผัน", + "แก้ไข", + "ขยายตัว", + "สัญญา", + "ขน", + "ย้ายการเลือก", + "ช่วงสี", + "ชายแดน", + "เปลี่ยนการเลือก", + "ปรับขอบ", + null, + null + ], + [ + "ขยายเข้า", + "ซูมออก", + "เส้นบอกแนว", + "ผู้ปกครอง", + "ตาราง", + "ตะครุบ", + "จับไปที่", + "ขอบเขตเอกสาร", + "ตารางพิกเซล", + "พาธ", + null, + [ + null, + null + ], + null + ], + [ + "ประวัติ", + "เลเยอร์", + "คุณสมบัติ", + "แปรง", + "รูปลักษณ์", + "ย่อหน้า", + "ข้อมูล", + "รวมเลเยอร์", + "ตัวอย่าง", + "แมโคร", + "ฮิสโทแกรม", + "ภาพรวม", + null, + null + ], + [ + "เครื่องแปรง", + "เครื่องสำเนา", + "เครื่องครอบตัด", + "เครื่องมือยางลบ", + "เลือกแบบวงรี", + "ที่หยอดตา", + "เครื่องไล่เฉด", + "เครื่องใช้มือ", + "เครื่องพิมพ์อักษร", + "เลือกแบบบ่วง", + "เลือกแบบบ่วงยึด", + "เครื่องย้าย", + "คฑาวิเศษ", + "เครื่องเทสี", + "เลือกแบบบ่วงเหลี่ยม", + "เลือกแบบสี่เหลี่ยม", + "แปลงร่างอิสระ", + "เครื่องขยาย", + "เครื่องทำภาพมัว", + "เครื่องทำภาพชัด", + "เครื่องเกลี่ยสี", + "เครื่องกลบสี", + "เครื่องเผา", + "เครื่องทำฟอง", + "เครื่องมือแปรงซ่อมเป็นจุด", + "เครื่องมือแปรงซ่อม", + "เครื่องมือซ่อม", + "เลือกพาธ", + "เลือกตรงๆ", + "ปากกา", + "ปากกาอิสระ", + "รูปร่างตามใจ", + "สีเหลี่ยม", + "วงรี", + "รูปร่างสมมาตร", + "เส้น", + "ไม้บรรทัด", + "เลือกอย่างเร็ว", + "เครื่องมือดินสอ", + null, + null, + null, + null, + null, + "เลือกวัตถุ", + null, + null, + null, + null, + null + ], + [ + "ถ่ายรูป", + "เลือกสี", + "ตัวแก้เส้นขอบ", + "ขนาดผ้าวาด", + "สำเนาไปที่ ...", + "ตัวแก้การไล่สี", + "ลักษณะเลเยอร์", + "โครงการใหม่", + "จัดเก็บสำหรับใช้กับเว็บ", + "วาร์ป", + "ขนาดภาพ", + null, + [ + "ตัดขอบ", + null, + "เปิดเผยทั้งหมด" + ], + "แป้นลัด", + "เพิ่มเส้นบอกแนว", + [ + null, + null + ] + ], + [ + "ความทึบแสง", + "ลูกเล่น", + "ความสว่าง", + [ + "ความเปรียบต่าง", + "ใช้อัลกอริทึมเก่า" + ], + "ช่อง", + "ช่องรับแสง", + "ระยะ", + "การแก้แกมม่า", + "สีสัน", + "ความอิ่มตัว", + "ความสว่าง", + "เล่นสี", + "ช่วง", + "ความสด", + [ + "ขนาด", + null, + null, + null + ], + "ุมุม", + "ความมน", + "ความแข็ง", + "ระยะว่าง", + [ + "รูปแบบการกลืน", + null + ], + "ขนาดพื้นฐาน", + "เส้นแสดงรูปร่าง", + "สไตล์", + [ + "ย้อนกลับ", + null, + null + ], + "บริษัท", + "ติดกัน", + "เติม", + "ใช้มุมทั่วโลก", + "ระยะ", + "ขยาย", + "ตัวกรองเสียงรบกวน", + "นำเงาออก", + "เทคนิค", + "ทิศทาง", + "ความลึก", + "อ่อนลง", + "โหมด", + "ไล่ระดับ", + "สเกล", + "จัดเรียงตามเลเยอร์", + "ตำแหน่ง", + "กว้าง", + "สูง", + "เป้าหมาย", + "ประเภท", + "เบื้องหน้า", + "พื้นหลัง", + "กำหนดเอง", + "ชื่อ", + "สร้าง", + "รูปแบบ", + "รักษาอัตราส่วน", + [ + "คุณภาพ", + "หน้า" + ], + "ทำซ้ำ", + "ย้าย", + "ตัวกรองอัจฉริยะ", + "รัศมี", + "จำนวน", + "การกระจาย", + [ + "รูปแบบ", + "เกาส์เชียน" + ], + "สีเดียว", + "ขนาดโมเสค", + "ลวดลาย", + null, + "เรี่ยวแรง", + "ป้องกันรายละเอียด", + "ประเภทเติม", + "พื้นผิว", + "จีมิน", + "มุม", + "แหล่ง", + "เป้าหมาย", + null, + "หน้ากาก", + null, + "จัดเรียง", + [ + "เส้นทาง", + "รูปร่าง", + "พิกเซล", + "นิ้ว", + "เซนติเมตร", + "มิลลิเมตร", + "เปอร์เซ็นต์" + ], + "รูปร่าง", + null, + "การตั้งค่า", + [ + "ความยาว", + "อัตราส่วน", + "อื่นๆ", + "ประเภทตาราง", + null, + null, + "หน่วยไม้บรรทัด" + ], + "ลดเสียงรบกวน", + "สี", + "ระยะทาง", + null, + "เลือกอัตโนมัติ", + "ค้นหา", + "จำกัดความใหม่", + [ + "รูปภาพ", + "จอแสดงผล", + "มือถือ", + "โฆษณา", + "พิมพ์" + ], + [ + "ฟรี", + null, + "กำหนดขนาดคงที่" + ], + "ช่วยเหลือ", + [ + null, + null, + null + ], + null, + [ + "รูปหลายเหลี่ยม", + "ดาว", + "เกลียว", + null + ], + [ + "รัศมีมุม", + "รัศมีภายใน" + ] + ], + [ + "สี", + [ + "ไม่มีสี", + "สีแดง", + "สีส้ม", + "สีเหลือง", + "สีเขียว", + "สีน้ำเงิน", + "สีม่วง", + "สีเทา", + "สีขาว", + "ความโปร่งใส", + "สีดำ", + "สีไซอัน", + "สีม่วงแดง", + null + ], + null, + "สัมบูรณ์", + null + ], + [ + "วางเงา", + "เงาภายใน", + "ส่องแสงด้านนอก", + "ส่องแสงด้านใน", + null, + null, + null, + null, + null, + "ขอบ", + null, + null + ], + [ + "รูปร่างปลาย", + "รูปร่างไดนามิก", + null, + "สีไดนามิค", + [ + null, + null, + null, + null, + null + ], + [ + null, + "รวม", + null + ], + [ + null, + null, + null, + null + ], + [ + "เลือกแหล่งโคลนโดยการกด Alt (หรือ K) และคลิกที่ภาพ", + null, + "ไม่สามารถแก้ไขเลเยอร์ได้", + null, + null, + "เลือกหลายเลเยอร์", + null, + "เปิดเอกสารก่อน", + "ปิดหน้าต่างปัจจุบันก่อน", + null + ], + [ + "เรกคอร์ด", + "ใหม่ชุดแมโคร", + "ใหม่แมโคร" + ], + [ + null, + null + ], + [ + "Normal", + "Dissolve", + "Darken", + "Multiply", + "Color Burn", + "Linear Burn", + "Darker Color", + "Lighten", + "Screen", + "Color Dodge", + "Linear Dodge", + "Lighter Color", + "Overlay", + "Soft Light", + "Hard Light", + "Vivid Light", + "Linear Light", + "Pin Light", + "Hard Mix", + "Difference", + "Exclusion", + "Subtract", + "Divide", + "Hue", + "Saturation", + "Color", + "Luminosity", + "Pass Through" + ] + ], + [ + null, + null, + null, + [ + null, + null + ] + ], + [ + "เลเยอร์ทั้งหมด", + "เลเยอร์ปัจจุบัน", + "การเลือก", + null + ], + [ + "แทนที่", + null, + null, + null, + null, + null + ], + [ + [ + "เส้นตรง", + "รัศมี", + "มุม", + null, + null, + null + ], + [ + null, + null + ], + [ + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null + ], + [ + null, + null + ], + [ + "ด้านนอก", + "ตรงกลาง", + "ด้านใน", + null + ], + [ + null, + null, + null + ], + [ + null, + null + ], + [ + "เล็ก", + "กลาง", + "ใหญ่" + ], + [ + null, + null, + null + ] + ], + [ + null, + null, + "พิกเซลเป็นพิกเซล", + "พอดีกับพื้นที่", + [ + "จัดแนวขอบด้านซ้าย", + "กึ่งกลางแนวนอน", + "จัดแนวขอบด้านขวา", + "จัดแนวขอบด้านบน", + "กึ่งกลางแนวตั้ง", + "จัดแนวขอบด้านล่าง", + null + ] + ], + [ + null, + "โปรเจคปัจจุบัน", + "โปรเจคใหม่", + "ความละเอียด", + "เพิ่มในโปรเจคปัจจุบันแล้ว", + "สร้างโปรเจคใหม่ เรียบร้อยแล้ว", + "การเข้าถึงกล้องถ่ายรูป ถูกปฏิเสธ" + ], + [ + null, + "บิดงอ", + "ความผิดเพี้ยนแนวนอน", + "ความผิดเพี้ยนแนวตั้ง", + [ + "แนวนอน", + "แนวตั้ง", + "แนวนอน", + "แนวตั้ง" + ], + [ + "ไม่มี", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "กำหนดเอง" + ], + [ + "แบบอักษร", + "ไม่สามารถใช้งานได้", + "จะแสดงผลโดยใช้", + "มีงานที่ไม่ได้บันทึกใน", + "จริงๆคุณต้องการที่จะปิดมันได้หรือไม่" + ], + [ + "สลับสี", + "ค่าเริ่มต้น: สีขาว และ สีดำ" + ] + ], + [ + "โหลดแล้ว", + "เพิ่มแล้ว", + "ย้ายเส้นบอกแนว", + "ลบเส้นบอกแนว", + "เพิ่มคเส้นบอกแนว", + "กำลังโหลด", + "โหลด VAR0" + ], + [ + "แกลลอรี่กรอง", + [ + [ + null, + [ + null, + null, + null, + null, + null, + null, + null, + "แข็ง", + "เลิกแข็ง" + ] + ], + [ + "การแก้ไขเลนส์" + ] + ], + "ตัวกรองเบลอ", + [ + "ค่าเฉลี่ย", + "เบลอ", + "เบลอเพิ่มเติม", + "เบลอสนาม", + "เกาส์เบลอ", + "เลนส์เบลอ", + "โมชั่นเบลอ", + null, + null, + null, + null + ], + "ตัวกรองบิดเบือน", + [ + null, + null, + "พิกัดเชิงขั้ว", + null, + "ตัด", + null, + "คลื่น" + ], + "ตัวกรองเสียงรบกวน", + [ + "เพิ่มเสียงรบกวน", + "ลบเสียงรบกวน", + "ฝุ่นและรอยขีดข่วน", + "มัธยฐาน" + ], + "ตัวกรอง Pixelate", + [ + null, + null, + null, + "ส่วน", + "การแกะแม่พิมพ์วิธีเมดโสะทินท", + null, + null + ], + "ตัวกรอง Render", + [ + "เมฆ", + null, + null + ], + "ตัวกรอง Sharpen", + [ + null, + null, + null, + null, + null + ], + "ตัวกรอง Stylize", + [ + "กระจาย", + null, + null, + null, + null + ], + "อื่นๆ", + [ + "กำหนดเอง", + null, + "สูงสุด", + "ขั้นต่ำ", + "ออฟเซ็ต", + "ทำซ้ำ" + ], + [ + null, + "ตั้งเป็นโปร่งใส", + null, + null, + "ตัวกรองสุดท้าย", + "ดูตัวอย่าง" + ] + ], + [ + "แม่แบบ", + [ + "ตัวกรองแบบอักษร", + "คำสำคัญ", + "สุ่ม" + ], + [ + "พร้อมสัญลักษณ์", + "พร้อมรูปถ่าย" + ], + [ + "รูปขนาดย่อ", + "รายการ" + ] + ] + ], + [ + [ + "ファイル", + "編集", + "イメージ", + "レイヤー", + "フォルダー", + "選択", + "フィルター", + "表示", + "ウインドウ", + "言語", + "ログイン", + "ログアウト", + "翻訳する", + [ + "アカウント", + "利用規約", + "戻る", + "アプリについて", + "バグを報告", + "ラーニング" + ], + "その他", + "テーマ", + "WebGLを使う", + [ + "Photopea:高度な画像エディタ", + "PSD、XCF、Sketch、XD、CDR フォーマットをサポートする無料のオンラインエディタ。", + "新しい画像を作成するか、コンピュータから既存のファイルを開きます。作業内容を PSD(ファイル/PSDとして保存)または JPG、PNG、SVG(ファイル/としてエクスポート)として保存します。", + "またはで新しい機能を提案してください。私たちの目標は、<最も先進的で手頃な価格のフォトエディタ>を作成することです。", + "広告リンクは新しいウィンドウで開きます。", + "この機能は利用できません。", + null + ] + ], + [ + "開く", + "公開する", + "保存", + "PSDとして保存", + "印刷", + "URLから開く", + "コンピュータから開く", + "Google Driveに接続", + "別名で保存", + "レイヤーをエクスポート", + "スクリプト", + "オープン&プレース", + "閉じる", + "ローカルストレージ", + null + ], + [ + "やり直す", + "元に戻す", + "消去", + "塗りつぶし", + "変形", + "回転", + "VAR0に反転", + "VAR0拡大・縮小", + "元に戻す / やり直し", + "展望", + [ + "オートブレンド", + "自動整列" + ], + "フェード", + "画像操作" + ], + "調整", + [ + "明るさ / コントラスト", + "レベル", + "曲線", + "露出", + "自然な彩度", + "色相/彩度", + "カラーバランス", + "黒と白", + "フォトフィルター", + "チャンネルミキサー", + "色検索", + "反転", + "ポスタライズ", + "しきい値", + "グラデーションマップ", + "選択色", + [ + "オートトーン", + "オートコントラスト", + "オートカラー" + ], + "色を交換" + ], + [ + "切り取り", + "コピー", + "ペースト", + "新規", + "削除", + "有効化", + "無効化", + "コピー結合", + "適用", + "もう一度", + "更新" + ], + [ + "レイヤーを複製", + "新しい調整レイヤー", + "ラスター マスク", + "ベクター マスク", + "追加(全てを表示)", + [ + "追加(全てを隠す)", + "選択範囲外をマスク", + "選択範囲をマスク", + "透明部分をマスク" + ], + [ + "クリッピングマスク", + "クイックマスクモー" + ], + "スマートオブジェクトへの変換", + "ラスタライズ", + "レイヤーのグループ化", + "下のレイヤーと統合", + "上のレイヤーと統合", + [ + "レイヤーを結合", + "画像を統合" + ], + "新規レイヤー", + "ラスターマスクを有効化する", + "ラスターマスクを無効化", + "ベクターマスクを有効化", + "ベクターマスクを無効化", + "クリッピングマスクを有効化", + "クリッピングマスクを無効化", + "新規フォルダ", + "ラスターマスクを追加", + "ラスターマスクを削除", + "ベクターマスクを追加", + "ベクターマスクを削除", + "ラスターマスクをリンク", + "ラスターマスクのリンクを解除", + "ベクターマスクをリンク", + "ベクターマスクのリンクを解除", + "レイヤー効果を有効にする", + "レイヤー効果を無効にする", + "レイヤーを削除", + "レイヤー透明度の変更", + "ブレンドの変更", + "レイヤースタイルのラスタライズ", + "レイヤーの順序", + [ + "スマートオブジェクトの作成", + "スマートオブジェクトを更新", + "スマートオブジェクトを配置", + "ソース (スマートオブジェクト)", + "スタックモード" + ], + "名前の変更", + "カラーの変更", + "調整レイヤーの編集", + "シェープに変換", + "フィルターマスクの有効化", + "フィルターマスクの無効化", + "スマートフィルターを有効化", + "スマートフィルターを無効化", + "フィルターマスクを追加", + "フィルターマスクを削除", + "フィルターマスクをクリア", + [ + [ + "単色塗りつぶし", + "グラデーション塗りつぶし", + "パターン塗りつぶし", + "コンテンツに応じる" + ], + "新規塗りつぶしレイヤー", + "塗りつぶしレイヤーの編集" + ], + "コピーからレイヤーを作成", + "フィルターマスク", + "レイヤースタイルを削除", + "スマートフィルターを動かす", + "スマートフィルターを削除", + [ + "リンクレイヤーズ", + "アンリンクレイヤーズ" + ], + "重ね順", + [ + "最前面へ", + "前面へ", + "最背面へ", + "背面へ" + ], + [ + "レイヤーはロックされています", + "ロックの変更", + null + ], + null + ], + [ + "全て", + "選択解除", + "選択範囲を反転", + "編集", + "拡げる", + "コントラクト", + "フェザー", + "セレクション移動", + "カラーレンジ", + "ボーダー", + "セレクション変形", + "エッジを絞り込む", + "ヒールセレクション", + null + ], + [ + "拡大", + "縮小", + "ガイド", + "定規", + "グリッド", + "スナップ", + "...へスナップ", + "ドキュメントの境界", + "ピクセルグリッド", + "パス", + "ピクセルへスナップ", + [ + "スライス", + "スライスオプショ" + ], + "表示" + ], + [ + "履歴", + "レイヤー", + "プロパティ", + "ブラシ", + "文字", + "パラグラフ", + "情報", + "レイヤーコンプ", + "見本", + "アクション", + "ヒストグラム", + "ナビゲーター", + "ツールプリセット", + "字形" + ], + [ + "ブラシツール", + "コピーツール", + "切り抜きツール", + "消しゴム", + "楕円形 選択", + "スポイト", + "グラデーションツール", + "手のひらツール", + "テキストツール", + "投げ縄 選択", + "マグネット 投げ縄 選択", + "移動ツール", + "自動選択", + "バケツ", + "多角形選択", + "矩形選択", + "自由変形", + "ズームツール", + "ぼかしツール", + "シャープツール", + "指先ツール", + "覆い焼きツール", + "焼きこみツール", + "スポンジツール", + "スポット修復ブラシツール", + "修復ブラシツール", + "パッチツール", + "パスコンポーネント選択", + "パス選択", + "ペン", + "フリーフォームペン", + "カスタムシェイプ", + "矩形", + "楕円", + "パラメトリック図形", + "ライン", + "ルーラ", + "クイック選択", + "ペンシルツール", + "パースペクティブクロップ", + "スライスツール", + "スライス選択ツール", + "色の置き換え", + "赤目修正ツール", + "オブジェクト選択", + "背景消しゴムツール", + "パペットワープ", + "回転ビューツール", + "コンテンツに応じて拡大", + "コンテンツに応じた移動" + ], + [ + "写真撮影", + "カラーピッカー", + "輪郭エディタ", + "キャンバスサイズ", + "複製する…", + "グラデーションエディタ", + "レイヤースタイル", + "新規プロジェクト", + "Web用に保存", + "ワープ", + "画像サイズ", + "ビットマップをベクトル化", + [ + "トリミング", + "切り抜き", + "すべてを明らかにする" + ], + "キーボードショートカット", + "ガイドの追加", + [ + "ガイドを消去", + "レイヤーからのガイド" + ] + ], + [ + "不透明度", + "効果", + "明るさ", + [ + "コントラスト", + "従来方式を使用" + ], + "チャンネル", + "露光", + "オフセット", + "ガンマ値", + "色相", + "彩度", + "明るさ", + "着色", + "距離", + "自然な彩度", + [ + "サイズ", + "補間", + "ニアレストネイバー法", + "バイリニア法" + ], + "角度", + "丸み", + "硬度", + "間隔", + [ + "ブレンドモード", + "ブレンド条件" + ], + "サンプルサイズ", + "輪郭検出", + "スタイル", + [ + "選択範囲を反転", + "相対", + "基準位置" + ], + "許容値", + "隣接", + "フィル", + "包括角度の使用", + "距離", + "拡散", + "ノイズ", + "ドロップシャドウをノックアウト", + "技術", + "方向", + "深度", + "美肌", + "モード", + "グラデーション", + "スケール", + "レイヤーの整列", + "位置", + "幅", + "高さ", + "距離", + "タイプ", + "最前面", + "最背面", + "カスタム", + "名前", + "作成", + "フォーマット", + "縦横比を保持", + [ + "品質", + "ページ" + ], + "複製", + "移動", + "スマートフィルター", + "半径", + "断片数", + "分布", + [ + "均一", + "ガウス" + ], + "モノクロ", + "セルサイズ", + "パターン", + "フロー", + "力", + "詳細の保護", + "塗りつぶしタイプ", + "テクスチャ", + "ジッター", + "エッジ", + "ソース", + "ターゲット", + "チャンネル", + "マスク", + "濃度", + "整列", + [ + "パス(経路)", + "形状", + "ピクセル", + "インチ", + "センチメートル", + "ミリメートル", + "%" + ], + "形", + "サイド", + "設定", + [ + "長さ", + "比率", + "どれか", + "グリッドタイプ", + "アイソメ", + "グリッドの間隔", + "定規の単位" + ], + "ノイズを減らす", + "カラー", + "距離", + "レート", + "オートセレクト", + "探す", + "新しい定義", + [ + "フォト", + "スクリーン", + "モバイル", + "広告", + "プリント" + ], + [ + "無料", + "固定比率", + "固定サイズ" + ], + "ヘルプ", + [ + "ライブシェイプ", + "ライブシェイプの編集", + "同じ半径" + ], + "あいまいさ", + [ + "ポリゴン", + "星", + "スパイラル", + "正方形" + ], + [ + "コーナーラディウス", + "インナーラディウス" + ] + ], + [ + "カラー(色)", + [ + "なし", + "赤", + "オレンジ", + "イエロー", + "緑", + "青", + "紫", + "グレイ(灰色)", + "白", + "透明", + "黒", + "シアン", + "マゼンタ", + "中間" + ], + "合計", + "絶対値", + "輝度を保持" + ], + [ + "ドロップシャドウ", + "インナーシャドウ", + "アウターグロウ", + "インナーグロウ", + "斜角と浮き彫り", + "カラーオーバーレイ", + "グラデーションオーバーレイ", + "パターンオーバーレイ", + "サテン", + "ストローク", + "ブレンドオプション", + "ピクセルを選択" + ], + [ + "チップ形状", + "チップダイナミクス", + "散布", + "カラーダイナミクス", + [ + "サイズジッター", + "最小直径", + "アングルジッター", + "丸みジッター", + "最小限の真円度" + ], + [ + "ポジションジッター", + "カウント", + "カウントジッター" + ], + [ + "前景/背景 ジッター", + "色相ジッター", + "緩和ジッター", + "輝度ジッター" + ], + [ + "Alt(またはK)を押しながらイメージをクリックして、クローンソースを選択", + "前景に白、背景に黒、未知の領域にグレーをマークします。", + "レイヤーは編集できません", + "テキストレイヤを最初にラスタライズする必要があります", + "スマートオブジェクトを最初にラスタライズする必要があります", + "マルチプルレイヤーを選択", + "レイヤー角度補正", + "最初にドキュメントを開きます。", + "最初に現在のウィンドウを閉じます。", + "現在のツールのみ" + ], + [ + "記録", + "新 アクションセット", + "新 アクション" + ], + [ + "筆圧で不透明度を調節ボタン", + "筆圧でサイズを調節ボタン" + ], + [ + "通常", + "ディザ合成", + "比較(暗)", + "乗算", + "焼き込みカラー", + "焼き込み(リニア)", + "カラー比較(暗)", + "比較(明)", + "スクリーン", + "覆い焼きカラー", + "覆い焼き(リニア)", + "カラー比較(明)", + "オーバーレイ", + "ソフトライト", + "ハードライト", + "ビビッドライト", + "リニアライト", + "ピンライト", + "ハードミックス", + "差の絶対値", + "除外", + "減算", + "除算", + "色相", + "彩度", + "カラー", + "輝度", + "通過" + ] + ], + [ + "行送り", + "追跡", + "ベースラインシフト", + [ + "ポイントテキストに変換", + "段落テキストに変換" + ] + ], + [ + "すべてのレイヤー", + "現在のレイヤー", + "選択", + "現在のレイヤー以下" + ], + [ + "置き換え", + "合体", + "減数", + "交差", + "除外", + "マージ" + ], + [ + [ + "直線", + "放射状", + "アングル", + "反射", + "ダイヤモンド", + "シェープバースト" + ], + [ + "柔らかい", + "正確" + ], + [ + "アウター斜角", + "インナー斜角", + "エンボス", + "枕の浮き彫り", + "ストロークエンボス", + "幅" + ], + [ + "スムース", + "チゼルハード", + "チゼルソフト", + "滑らかさ" + ], + [ + "アップ", + "ダウン" + ], + [ + "外側", + "中央", + "内側", + "中心から" + ], + [ + "シャドウ", + "ミドルトーン", + "ハイライト" + ], + [ + "不飽和化", + "飽和" + ], + [ + "スモール", + "ミディアム", + "ラージ" + ], + [ + "線端", + "角", + "線分" + ] + ], + [ + "カーソルの下のオブジェクトを選択する", + "変換コントロール", + "ピクセルからピクセル", + "エリアに合わせる", + [ + "左端を揃える", + "水平にセンター", + "右端を揃える", + "上端を揃える", + "垂直に中央", + "ボトムエッジの整列", + "等間隔" + ] + ], + [ + "写真を撮る", + "現在のプロジェクト", + "新しいプロジェクト", + "解像度", + "現在のプロジェクトに追加されました", + "新しいプロジェクトが作成されました", + "カメラへのアクセスが拒否されました" + ], + [ + "オリエンテーション", + "ベンド", + "水平方向の歪み", + "垂直方向の歪み", + [ + "水平", + "垂直", + "水平方向", + "垂直方向" + ], + [ + "なし", + "弧", + "アークローワー", + "アークアッパー", + "アーチ", + "膨らみ", + "シェルローワー", + "シェルアッパー", + "旗", + "波", + "魚", + "上昇", + "魚眼", + "膨らませる", + "圧搾", + "ねじれ", + "カスタム" + ], + [ + "フォント", + "利用できません", + "使用してレンダリングされます", + "このプロジェクトには未保存の作業が含まれています:", + "本当に閉じますか?" + ], + [ + "スワップカラー", + "デフォルト:黒と白" + ] + ], + [ + "ロードされた", + "追加された", + "移動ガイド", + "ガイドの削除", + "ガイドの追加", + "読み込み中", + "VAR0 を読み込み" + ], + [ + "フィルタギャラリー", + [ + [ + "液化液", + [ + "汚れ", + "再構築", + "スムーズ", + "トール", + "シュリンク", + "ブロー", + "左を押す", + "フリーズ", + "アンフリーズ" + ] + ], + [ + "レンズ補正" + ] + ], + "ぼかし", + [ + "平均", + "ぼかし", + "ぼかしを多く", + "ボックスのぼかし", + "ガウスぼかし", + "レンズぼかし", + "モーションぼかし", + "放射状のぼかし", + "形状ブラー", + "スマートなぼかし", + "表面のぼかし" + ], + "歪み", + [ + "置き場所", + "ピンチ", + "極座標", + "リップル", + "剪断", + "Spherize", + "波" + ], + "ノイズ", + [ + "ノイズを追加", + "間引き", + "ホコリと傷", + "中央値" + ], + "ピクセル化", + [ + "カラーハーフトーン", + "結晶化", + "ファセット", + "断片", + "メゾチント", + "モザイク", + "点字化" + ], + "レンダリング", + [ + "雲", + "雲の違い", + "逆光" + ], + "シャープ", + [ + "シャープ", + "エッジをシャープにする", + "もっと磨く", + "スマートシャープ", + "アンシャープマスク" + ], + "書式設定", + [ + "拡散", + "エンボス", + "押出", + "エッジを見つける", + "油絵具" + ], + "その他", + [ + "カスタム", + "ハイパス", + "最大", + "最小", + "オフセット", + "リピート" + ], + [ + "未定義領域", + "透明に設定", + "リピートエッジピクセル", + "包み込む", + "最後のフィルタ", + "プレヴュー" + ] + ], + [ + "テンプレート", + [ + "フォントフィルター", + "キーワード", + "ランダム" + ], + [ + "シンボル付き", + "写真付き" + ], + [ + "サムネールと", + "リスト" + ] + ] + ], + [ + [ + "파일", + "편집", + "이미지", + "레이어", + "폴더", + "선택", + "필터", + "보기", + "창", + "언어", + "로그인", + "로그아웃", + "번역하기", + [ + "계정", + "서비스 약관", + "뒤로가기", + "앱에 대해", + "버그보고", + "학습" + ], + "더 보기", + "테마", + "WebGL 사용", + [ + "Photopea: 고급 이미지 편집기", + "PSD, XCF, Sketch, XD 및 CDR 형식을 지원하는 무료 온라인 편집기.", + "새 이미지를 만들거나 컴퓨터에서 기존 파일을 엽니다. PSD (파일 - PSD로 저장) 또는 JPG / PNG / SVG (파일 - 내보내기 형식)로 작업을 저장합니다.", + " 또는 에서 새로운 기능을 제안하십시오. 우리의 목표는 <가장 진보되고 저렴한 사진 편집기> 를 만드는 것입니다.", + "광고 링크가 새 창에서 열립니다.", + "이 기능은 사용할 수 없습니다.", + null + ] + ], + [ + "열기", + "온라인 게시", + "저장", + "PSD 로 저장", + "인쇄", + "URL에서 열기", + "컴퓨터에서 파일 열기", + "구글 드라이브와 연결", + "내보내기 형식", + "레이어 추출", + "스크립트", + "열기 및 장소", + "닫기", + "로컬 저장소", + null + ], + [ + "앞으로 가기", + "뒤로 가기", + "없애기", + "채우기", + "변형", + "회전", + "VAR0 뒤집기", + "VAR0 스케일", + "실행취소 / 다시실행", + "원근법", + [ + "자동 혼합", + "자동 정렬" + ], + "희미하게 하기", + "이미지 적용" + ], + "조정", + [ + "밝기 / 대비", + "레벨", + "곡선", + "노출", + "채도", + "색조 / 채도", + "색깔 조정", + "흑백", + "사진 필터", + "채널 믹서", + "색깔 찾아보기", + "뒤집기", + "포스터화", + "한계점", + "그라디언트 맵", + "선택적 색상", + [ + "자동 톤", + "자동 대비", + "자동 색상" + ], + "색상 대체" + ], + [ + "잘라내기", + "복사", + "붙여넣기", + "새로 만들기", + "제거", + "활성화", + "비활성화", + "병합 복사", + "적용", + "반복", + "업데이트" + ], + [ + "레이어 복제", + "새 조정 레이어", + "래스터 마스크", + "벡터 마스크", + "추가 (모두 표시)", + [ + "추가 (모두 숨기기)", + "선택 영역 나타내기", + "선택 영역 숨기기", + "시작 투명도" + ], + [ + "클리핑 마스크", + "빠른 마스크 모드" + ], + "고급 개체로 변환", + "래스터화", + "그룹 레이어", + "아래로 병합", + "위로 병합", + [ + "레이어 병합", + "이미지 병합" + ], + "새 레이어", + "래스터 마스크 활성화", + "래스터 마스크 비활성화", + "벡터 마스크 활성화", + "벡터 마스크 비활성화", + "클리핑 마스크 활성화", + "클리핑 마스크 비활성화", + "새 폴더", + "래스터 마스크 추가", + "래스터 마스크 제거", + "벡터 마스크 추가", + "벡터 마스크 제거", + "래스터 마스크 연결", + "래스터 마스크 연결 해제", + "벡터 마스크 연결", + "벡터 마스크 연결 해제", + "레이어 효과 활성화", + "레이어 효과 비활성화", + "레이어 제거", + "레이어 불투명도 변경", + "혼합 변경", + "래스터화 레이어 스타일", + "레이어 순서", + [ + "고급 개체 만들기", + "고급 개체 업데이트", + "고급 개체 배치", + "원본 (고급 개체)", + "스택 모드" + ], + "이름 변경", + "색 변경", + "조정 레이어 편집", + "모양으로 변환", + "필터 마스크 활성화", + "필터 마스크 비활성화", + "스마트 필터 활성화", + "스마트 필터 비활성화", + "필터 마스크 추가", + "필터 마스크 제거", + "스마트 필터 없애기", + [ + [ + "단색 채우기", + "그라디언트 채우기", + "패턴 채우기", + "내용 인식" + ], + "새 칠 레이어", + "채우기 레이어 수정" + ], + "복사를 통한 레이어", + "필터 마스크", + "레이어 스타일 삭제", + "스마트 필터 이동", + "스마트 필터 삭제", + [ + "레이어 연결", + "레이어 연결 해제" + ], + "정렬", + [ + "맨 앞으로 가져오기", + "앞으로 가져오기", + "뒤로 보내기", + "제일 뒤로 보내기" + ], + [ + "레이어가 잠겼습니다.", + "잠금 변경", + null + ], + null + ], + [ + "모두 선택", + "선택 취소", + "반전", + "수정", + "확장", + "축소", + "페더", + "선택 이동", + "색상 범위", + "경계", + "변형 선택", + "가장자리 미세 조정", + "선택 부분 되살리기", + null + ], + [ + "확대", + "축소", + "안내선", + "자", + "격자", + "스냅", + "스냅 대상", + "문서 경계", + "픽셀 격자", + "경로", + "스냅 대상 픽셀", + [ + "분할 영역을", + "분할 영역 옵션" + ], + "표시" + ], + [ + "히스토리", + "레이어", + "속성", + "붓", + "글자", + "절", + "정보", + "레이어 컴프레서", + "스와치", + "액션", + "막대 그래프", + "내비게이터", + "도구 사전 설정", + "글리프" + ], + [ + "붓 도구", + "복제 도구", + "자르기 도구", + "지우개 도구", + "타원형 선택", + "스포이드", + "그라디언트 도구", + "손 도구", + "문자 도구", + "올가미 선택", + "자석 올가미 선택", + "이동 도구", + "마법 지팡이", + "페인트 통 도구", + "다각형 올가미 선택", + "직사각형 선택", + "자유 변형", + "확대 / 축소 도구", + "흐림 도구", + "선명 도구", + "얼룩 도구", + "닷지 도구", + "번 도구", + "스폰지 도구", + "얼룩 치유 브러시 도구", + "치유 브러쉬 도구", + "패치 도구", + "경로 선택", + "직접 선택", + "펜", + "자유형 펜", + "사용자 정의 모양", + "사각형", + "타원", + "파라메트릭 모양", + "선", + "자", + "빠른 선택", + "필기 도구", + "원근 자르기", + "분할 영역 도구", + "분할 영역 선택 도구", + "색깔 교체", + "적목 현상 도구", + "개체 선택", + "배경 지우개 도구", + "퍼펫 뒤틀기", + "회전 보기", + "내용 인식 비율", + "내용 인식 이동" + ], + [ + "사진 찍기", + "색상 선택기", + "윤곽 편집기", + "캔버스 크기", + "복제", + "그라디언트 편집기", + "레이어 스타일", + "새 프로젝트", + "웹용으로 저장", + "뒤틀기", + "이미지 크기", + "비트맵 벡터화", + [ + "재단", + "잘라내기", + "모두 표시" + ], + "키보드 단축키", + "안내선 추가", + [ + "안내선 잠그기", + "레이어 가이드" + ] + ], + [ + "불투명도", + "효과", + "명도", + [ + "대비", + "레거시 사용" + ], + "채널", + "노출", + "오프셋", + "감마 교정", + "색조", + "포화도", + "밝기", + "색상화", + "범위", + "활기", + [ + "크기", + "보간", + "최단입점", + "쌍선형" + ], + "각도", + "진원도", + "경도", + "간격", + [ + "혼합 모드", + "혼합 조건" + ], + "표본 크기", + "윤곽", + "스타일", + [ + "반전", + "상대치", + "기준" + ], + "여유도", + "인접", + "채우기", + "종합 각도 사용", + "거리", + "확산", + "노이즈", + "녹아웃 그림자", + "기법", + "방향", + "깊이", + "부드럽게", + "모드", + "그라디언트", + "범위", + "레이어에 정렬", + "위치", + "너비", + "높이", + "목적", + "유형", + "전경", + "배경", + "사용자 설정", + "이름", + "생성", + "형식", + "종횡비 유지", + [ + "품질", + "페이지" + ], + "복제", + "이동", + "스마트 필터", + "반지름", + "양", + "분포", + [ + "유니폼", + "가우스" + ], + "단색", + "셀 크기", + "패턴", + "흐름", + "강도", + "세부 보호", + "채우기 유형", + "텍스처", + "흐트러짐", + "가장자리", + "원본", + "목표", + "채널", + "마스크", + "밀도", + "정렬됨", + [ + "패스", + "모양", + "픽셀", + "인치", + "센티미터", + "밀리미터", + "퍼센트" + ], + "모양들", + "사이드", + "설정", + [ + "길이", + "비율", + "임의", + "격자 유형", + "등축", + "격자 간격", + "눈금자 단위" + ], + "노이즈 줄이기", + "색", + "차이", + "율", + "자동 선택", + "발견", + "새로운 정의", + [ + "사진", + "화면", + "변하기 쉬운", + "광고", + "인쇄 된" + ], + [ + "자유", + "고정 비율", + "고정 크기" + ], + "도움", + [ + "실시간 모양", + "실시간 모양 편집", + "같은 반경" + ], + "허용량", + [ + "다각형", + "별모양", + "나선", + "정사각형" + ], + [ + "모퉁이 반경", + "내부 반경" + ] + ], + [ + "색깔", + [ + "없슴", + "빨간색", + "주황색", + "노랑", + "초록색", + "파란색", + "보라색", + "회색", + "흰색", + "투명한", + "검정", + "사이안", + "마젠타", + "중간" + ], + "전체", + "절대치", + "광도 유지" + ], + [ + "그림자", + "내부 그림자", + "외부 광선", + "내부 광선", + "경사와 엠보스", + "색 오버레이", + "그라디언트 오버레이", + "패턴 오버레이", + "새틴", + "획", + "혼합 옵션", + "픽셀 선택" + ], + [ + "끝 부분 모양", + "끝 부분 강약 조절", + "산포화", + "색 강약 조절", + [ + "크기 흐트러짐", + "최소 직경", + "각도 흐트러짐", + "형태 흐트러짐", + "최소 형태" + ], + [ + "위치 흐트러짐", + "순서", + "순서 흐트러짐" + ], + [ + "전경/배경 흐트러짐", + "색 흐트러짐", + "포화 흐트러짐", + "밝기 흐트러짐" + ], + [ + "Alt (또는 K) 키를 누른 상태에서 이미지를 클릭해 원본 복제를 선택합니다.", + "전경을 흰색으로, 배경을 검정색으로, 알 수없는 부분을 회색으로 표시하십시오.", + "레이어를 편집 할 수 없습니다.", + "텍스트 레이어를 먼저 래스터화해야 합니다.", + "고급 개체 먼저 래스터화해야 합니다.", + "여러 레이어 선택", + "레이어 똑바르게", + "먼저 문서를 엽니다.", + "현재 창을 먼저 닫습니다.", + "현재 도구만" + ], + [ + "기록", + "새 액션 세트", + "새 액션" + ], + [ + "태블릿 압력 컨트롤 불투명도", + "태블릿 압력 컨트롤 크기" + ], + [ + "표준", + "디졸브", + "어둡게 하기", + "곱하기", + "색상 번", + "색상 번", + "어두운 색상", + "밝게 하기", + "스크린", + "색상 닷지", + "선형 닷지", + "밝은 색상", + "오버레이", + "소프트 라이트", + "하드 라이트", + "선명한 라이트", + "선형 라이트", + "핀 라이트", + "하드 혼", + "차이", + "제외", + "빼기", + "나누기", + "색조", + "채도", + "색상", + "광도", + "통과" + ] + ], + [ + "행간", + "자간", + "기준선 이동", + [ + "포인트 텍스트 변환", + "단락 텍스트로 변환" + ] + ], + [ + "모든 레이어", + "현재 레이어", + "선택", + "현재 및 아래" + ], + [ + "바꾸기", + "통합", + "빼기", + "교차", + "제외", + "병합" + ], + [ + [ + "선형", + "방사", + "각도", + "반사됨", + "다이아몬드", + "모양 파열" + ], + [ + "부드럽게", + "명확함" + ], + [ + "외부 경도", + "내부 경도", + "엠보스", + "베개 엠보스", + "외곽선 엠보스", + "윤곽 너비" + ], + [ + "매끄럽게", + "강한 끌", + "부드러운 끌", + "매끄러움" + ], + [ + "위", + "밑" + ], + [ + "밖", + "가운데", + "내부", + "중앙부터" + ], + [ + "어두운 영역", + "중간톤", + "밝은 영역" + ], + [ + "포화도", + "포화" + ], + [ + "작음", + "중간", + "큼" + ], + [ + "단면", + "모퉁이", + "대시를" + ] + ], + [ + "커서 아래에서 개체를 선택해 주십시오", + "변형 제어", + "픽셀에서 픽셀로", + "영역에 맞추기", + [ + "왼쪽 모서리 정렬", + "수평 중심", + "오른쪽 모서리 정렬", + "윗쪽 모서리 정렬", + "수직 중심", + "아랫쪽 모서리 정렬", + "균등 간격" + ] + ], + [ + "사진 찍기", + "현재 프로젝트", + "새 프로젝트", + "해상도", + "현재 프로젝트에 추가되었습니다.", + "새 프로젝트가 생성되었습니다.", + "카메라에 대한 접근이 거부되었습니다." + ], + [ + "성향", + "굽히기", + "수평 왜곡", + "수직 왜곡", + [ + "가로", + "세로", + "가로로", + "세로로" + ], + [ + "없음", + "포물선", + "포물선 낮게", + "포물선 높게", + "아치형", + "꽉차게", + "셸 낮게", + "셸 높게", + "깃발", + "파도", + "물고기", + "증가", + "물고기 눈", + "부풀리기", + "짜내기", + "휘틀리기", + "사용자 설정" + ], + [ + "글꼴", + "을(를) 사용할 수 없습니다", + "을(를) 사용하여 렌더링됩니다.", + "이 프로젝트에는 저장되지 않은 작업이 있습니다:", + "정말로 닫으시겠습니까?" + ], + [ + "색상 바꾸기", + "기본값: 흰색과 검은색" + ] + ], + [ + "불러옴", + "추가됨", + "안내선 이동", + "안내선 제거", + "안내선 추가", + "불러오는 중", + "VAR0 불러" + ], + [ + "필터 갤러리", + [ + [ + "액체화하다", + [ + "더러움", + "재건축", + "부드럽게", + "회전", + "수축", + "타격", + "왼쪽 밀기", + "동결", + "해동" + ] + ], + [ + "렌즈 교정" + ] + ], + "흐리게", + [ + "평균", + "흐리게", + "더 흐리게", + "사각형으로 흐리게", + "가우스 흐림 효과", + "렌즈 흐림 효과", + "모션 흐림 효과", + "방사형 흐림 효과", + "모양 흐림 효과", + "스마트 흐림 효과", + "표면 흐림 효과" + ], + "왜곡", + [ + "변위", + "핀치", + "극좌표", + "잔물결", + "기울임", + "구형화", + "돌리기" + ], + "노이즈", + [ + "노이즈 추가", + "얼룩 제거", + "먼지 및 스크래치", + "중앙값" + ], + "픽셀화", + [ + "색 망판", + "구체화", + "측면", + "조각", + "메조틴트", + "모자이크", + "점묘화" + ], + "렌더", + [ + "구름 효과 1", + "구름 효과 2", + "렌즈 플레어" + ], + "날카롭게", + [ + "날카롭게", + "가장자리 날카롭게", + "더 날카롭게", + "스마트 날카로움 효과", + "언샵 마스크" + ], + "양식화", + [ + "확산", + "엠보스", + "밀어내기", + "가장자리 찾기", + "오일 페인트" + ], + "그 외", + [ + "사용자 설정", + "고역 통과", + "최대화", + "최소화", + "오프셋", + "반복" + ], + [ + "알 수 없는 구역", + "투명 설정", + "가장자리 픽셀 반복", + "줄 바꿈", + "마지막 필터", + "미리 보기" + ] + ], + [ + "템플릿", + [ + "글꼴 필터", + "키워드", + "무작위로" + ], + [ + "기호 포함", + "사진 포함" + ], + [ + "축소판", + "목록" + ] + ] + ], + [ + [ + "Arquivo", + "Editar", + "Imagem", + "Camada", + "Pasta", + "Selecionar", + "Filtro", + "Visualizar", + "Janela", + "Idioma", + "Entrar", + "Sair", + "Criar Tradução", + [ + "Conta", + "Termos de Uso", + "Voltar", + "Acerca", + "Reportar um erro", + "Aprender" + ], + "Mais", + "Tema", + "Usar WebGL", + [ + "Photopea: Editor de Imagem Avançado", + "Editor online gratuito que suporta os formatos PSD, XCF, Sketch, XD e CDR.", + "Crie uma nova imagem ou abra arquivos existentes no seu computador. Salve seu trabalho como PSD (Arquivo - Gravar como PSD) ou como JPG / PNG / SVG (Arquivo - Exportar como).", + "Sugira novas funções no nosso ou . Nosso objetivo é fazer .", + "Os links do patrocinador são abertos em uma nova janela.", + "Este recurso não está disponível.", + "Instale Photopea" + ] + ], + [ + "Abrir", + "Publicar Online", + "Salvar", + "Salvar como PSD", + "Imprimir", + "Abrir de URL", + "Abrir do Computador", + "Conectar Com o Google Drive", + "Exportar como", + "Exportar Camadas", + "Script", + "Abra e Coloque", + "Fechar", + "Armazenamento Local", + "Informações do arquivo" + ], + [ + "Passo a Frente", + "Passo atrás", + "Limpar", + "Preencher", + "Transformar", + "Rotacionar", + "Espelhar VAR0", + "Escalar VAR0", + "Desfazer / Refazer", + "Perspectiva", + [ + "Mesclar automaticamente", + "Alinhar automaticamente" + ], + "Atenuar", + "Aplicar Imagem" + ], + "Ajustes", + [ + "Brilho/Contraste", + "Níveis", + "Curvas", + "Exposição", + "Vibração", + "Matriz/Saturação", + "Equilíbrio de Cores", + "Preto e Branco", + "Filtro de Fotos", + "Misturador de Canais", + "Pesquisa de cores", + "Inverter", + "Posterizar", + "Limite", + "Mapa de Gradiente", + "Cor Seletiva", + [ + "Tom automático", + "Contraste automático", + "Cor automática" + ], + "Substituir cor" + ], + [ + "Cortar", + "Copiar", + "Colar", + "Novo", + "Deletar", + "Ativar", + "Desativar", + "Copiar Mesclado", + "Aplicar", + "Novamente", + "Atualizar" + ], + [ + "Duplicar Camada", + "Nova Camada de Ajuste", + "Máscara de Rasterização", + "Máscara de Vetor", + "Adicionar (Mostrar tudo)", + [ + "Adicionar (Ocultar Tudo)", + "Revelar Seleção", + "Ocultar Seleção", + "Da transparência" + ], + [ + "Máscara de Corte", + "Modo de máscara rápido" + ], + "Converter em Objeto Inteligente", + "Rasterizar", + "Agrupar Camadas", + "Mesclar Abaixo", + "Mesclar Acima", + [ + "Mesclar Camadas", + "Achatar imagem" + ], + "Nova Camada", + "Ativar Máscara de Rasterização", + "Desativar Máscara de Rasterização", + "Ativar Máscara de Vetor", + "Desativar Máscara de Vetor", + "Ativar Máscara de Recorte", + "Desativar Máscara de Recorte", + "Nova Pasta", + "Adicionar Máscara de Rasterização", + "Remover Máscara de Rasterização", + "Adicionar Máscara de Vetor", + "Remover Máscara de Vetor", + "Associar Máscara de Rasterização", + "Desassociar Máscara de Rasterização", + "Associar Máscara de Vetor", + "Desassociar Máscara de Vetor", + "Ativar Efeitos de Camada", + "Desativar Efeitos de Camada", + "Apagar Camada", + "Alterar Opacidade da Camada", + "Alterar Mistura", + "Rasterizar Estilo da Camada", + "Ordem de Camada", + [ + "Criando Objeto Inteligente", + "Atualizando Objeto Inteligente", + "Colocando Objeto Inteligente", + "Fonte (Objeto Inteligente)", + "Modo de pilha" + ], + "Alterar Nome", + "Alterar Cor", + "Editar Camada de Ajuste", + "Converter para Forma", + "Ativar Máscara de Filtro", + "Desativar Máscara de Filtro", + "Ativar Filtros Inteligentes", + "Desativar Filtros Inteligentes", + "Adicionar Máscara de Filtro", + "Apagar Máscara de Filtro", + "Limpar Filtros Inteligentes", + [ + [ + "Preencher com Cor Sólida", + "Preencher com Gradiente", + "Preencher com Padrão", + "Sensível a conteúdo" + ], + "Nova Camada de Preenchimento", + "Modificar Camada de Preenchimento" + ], + "Camada via Cópia", + "Máscara de Filtro", + "Excluir Estilo de Camada", + "Mover Filtro Inteligente", + "Excluir Filtro Inteligente", + [ + "Vincular Camadas", + "Desvincular Camadas" + ], + "Organizar", + [ + "Trazer para a frente", + "Avançar", + "Recuar", + "Enviar para trás" + ], + [ + "Esta Camada está Bloqueada.", + "Travar mudanças", + "Bloquear" + ], + "Animação" + ], + [ + "Tudo", + "Desselecionar", + "Inverso", + "Modificar", + "Expandir", + "Contrair", + "Difusão", + "Mover Seleção", + "Intervalo de Cores", + "Borda", + "Transformar Seleção", + "Refinar Arestas", + "Curar Seleção", + "Varinha Mágica" + ], + [ + "Mais Zoom", + "Menos Zoom", + "Guias", + "Réguas", + "Grade", + "Encaixar", + "Encaixar Em", + "Documento Limite", + "Grade de Pixel", + "Demarcadores", + "Converter para Pixels", + [ + "Fatias", + "Opções de fatiar" + ], + "Mostrar" + ], + [ + "História", + "Camadas", + "Propriedades", + "Pincel", + "Caractere", + "Parágrafo", + "Informações", + "Composições de Camada", + "Amostras", + "Ações", + "Histograma", + "Navegação", + "Predefinições de Ferramenta", + "Glifos" + ], + [ + "Ferramenta Pincel", + "Ferramenta de Clone", + "Ferramenta de Corte", + "Borracha", + "Selecionar em Elipse", + "Conta-Gotas", + "Gradiente", + "Mão", + "Ferramenta de Texto", + "Seleção em Laço", + "Ferramenta Laço Magnético", + "Mover", + "Varinha Mágica", + "Lata de Tinta", + "Laço Poligonal", + "Seleção Retangular", + "Transformação Livre", + "Lupa", + "Desfoque", + "Nitidez", + "Ferramenta Borrar", + "Ferramenta de Exposição", + "Ferramenta de Queimar", + "Esponja", + "Pincel de Cicatrização Localizada", + "Pincel de Cicatrização", + "Ferramenta de Correção", + "Seleção de demarcador", + "Seleção Direta", + "Caneta", + "Caneta Livre", + "Forma Personalizada", + "Retângulo", + "Elipse", + "Forma Paramétrica", + "Linha", + "Régua", + "Seleção Rápida", + "Ferramenta Lápis", + "Corte de perspectiva", + "Ferramenta de fatia", + "Seleção de fatia", + "Substituição de cor", + "Olhos vermelhos", + "Seleção de objeto", + "Borracha de plano de fundo", + "Distorção de marionete", + "Girar Visualização", + "Escala sensível a conteúdo", + "Movimento Sensível ao Conteúdo" + ], + [ + "Tire uma Foto", + "Colhedor de Cores", + "Editor de Contorno", + "Tamanho da Tela de Pintura", + "Duplicar em...", + "Editor de Gradientes", + "Estilo de Camada", + "Novo Projeto", + "Salvar para Web", + "Deformar", + "Tamanho da Imagem", + "Vetorizar Bitmap", + [ + "Aparar", + "Cortar", + "Mostrar tudo" + ], + "Atalhos de Teclado", + "Adicionar Guias", + [ + "Apagar Guias", + "Guias da Camada" + ] + ], + [ + "Opacidade", + "Efeitos", + "Brilho", + [ + "Contraste", + "Usar Legado" + ], + "Canal", + "Exposição", + "Equilibrar", + "Correção de Gama", + "Matriz", + "Saturação", + "Luminosidade", + "Colorir", + "Alcance", + "Vibração", + [ + "Tamanho", + "Interpolação", + "Vizinho mais próximo", + "Bilinear" + ], + "Ângulo", + "Arredondamento", + "Dureza", + "Espaçamento", + [ + "Modo de Mistura", + "Mesclar Se" + ], + "Tamanho da Amostra", + "Contorno", + "Estilo", + [ + "Oposto", + "Relativa", + "Âncora" + ], + "Tolerância", + "Contíguo", + "Preenchimento", + "Use o Ângulo Global", + "Distância", + "Espalhar", + "Ruído", + "Derrubar a Sombra", + "Técnica", + "Direção", + "Profundidade", + "Suavizar", + "Modo", + "Gradiente", + "Escalar", + "Alinhar À Camada", + "Posição", + "Largura", + "Altura", + "Destino", + "Tipo", + "Primeiro Plano", + "Plano de Fundo", + "Personalizado", + "Nome", + "Criar", + "Formato", + "Manter a Proporção", + [ + "Qualidade", + "Páginas" + ], + "Duplicar", + "Mover", + "Filtros Inteligentes", + "Raio", + "Quantia", + "Distribuição", + [ + "Uniforme", + "Gaussiano" + ], + "Monocromático", + "Tamanho da Célula", + "Padrão", + "Fluxo", + "Força", + "Proteger Detalhe", + "Tipo de Preenchimento", + "Textura", + "Tensão", + "Canto", + "Fonte", + "Alvo", + "Canais", + "Máscara", + "Densidade", + "Alinhado", + [ + "Demarcador", + "Forma", + "Pixels", + "Polegadas", + "Centímetros", + "Milímetros", + "Porcentagem" + ], + "Formas", + "Lados", + "Preferências", + [ + "Comprimento", + "Ratio", + "Qualquer", + "Tipo de grade", + "Isométrico", + "Espaçamento da grade", + "Unidades da Régua" + ], + "Reduzir Ruído", + "Cores", + "Distâncias", + "Ritmo", + "Seleção Automática", + "Procurar", + "Definir novo", + [ + "Foto", + "Tela", + "Celular", + "Anúncios", + "Cópia impressa" + ], + [ + "Livre", + "Taxa Fixa", + "Tamanho Fixo" + ], + "Ajuda", + [ + "Forma Viva", + "Editar Forma Viva", + "O mesmo Raio" + ], + "Grau de seleção", + [ + "Polígono", + "Estrela", + "Espiral", + "Quadrado" + ], + [ + "Raio do Canto", + "Raio interno" + ] + ], + [ + "Cor", + [ + "Nenhum", + "Vermelho", + "Laranja", + "Amarelo", + "Verde", + "Azul", + "Roxo", + "Cinza", + "Branco", + "Transparente", + "Preto", + "Ciano", + "Magenta", + "Neutral" + ], + "Total", + "Absoluto", + "Preservar Luminosidade" + ], + [ + "Sombra Externa", + "Sombra Interna", + "Brilho Externo", + "Brilho Interno", + "Bisel e Relevo", + "Sobreposição de Cor", + "Sobreposição em Gradiente", + "Sobreposição em Padrão", + "Cetim", + "Traçado", + "Opções de Mistura", + "Selecionar Pixels" + ], + [ + "Forma de Ponta", + "Dinâmica de Ponta", + "Dispersão", + "Dinâmica de Cor", + [ + "Variação da Tensão", + "Diâmetro Mínimo", + "Tensão Angular", + "Tensão Arredondada", + "Redondeza Mínima" + ], + [ + "Posicionamento Tensional", + "Contagem", + "Quantidade de Tensão" + ], + [ + "Tremulação do Plano de Fundo/Primeiro Plano", + "Matriz Tensional", + "Saturação Tensional", + "Brilho Tensional" + ], + [ + "Selecione a fonte de clonagem segurando Alt (ou K) e clicando na imagem.", + "Marque Primeiro Plano com Branco, Fundo com Preto e a área desconhecida com Cinza.", + "Camada não editável.", + "Camada de Texto deve ser rasterizada primeiro", + "Objeto Inteligente Deve Ser Rasterizado Primeiro", + "Selecione Várias Camadas", + "Endireitar Camada", + "Abra um documento primeiro.", + "Feche a janela atual primeiro.", + "Somente Ferramenta Atual" + ], + [ + "Gravar", + "Novo Conjunto de Ações", + "Nova Ação" + ], + [ + "Pressão de Caneta controla a Opacidade", + "Pressão de Caneta controla o Tamanho" + ], + [ + "Normal", + "Dissolver", + "Escurecer", + "Multiplicação", + "Superexposição de Cor", + "Superexposição Linear", + "Cor Mais Escura", + "Clarear", + "Tela", + "Subexposição de Cor", + "Subexposição Linear", + "Cor Mais Clara", + "Sobrepor", + "Luz Indireta", + "Luz Direta", + "Luz Brilhante", + "Luz Linear", + "Luz do Pino", + "Mistura Sólida", + "Diferença", + "Exclusão", + "Subtrair", + "Dividir", + "Matiz", + "Saturação", + "Cor", + "Luminosidade", + "Passagem" + ] + ], + [ + "Entrelinhas", + "Rastreamento", + "Deslocamento de linha de base", + [ + "Converter para Texto de Ponto", + "Converter para Texto de Parágrafo" + ] + ], + [ + "Todas as Camadas", + "Camada Atual", + "Seleção", + "Atual e Abaixo" + ], + [ + "Substituir", + "Unir", + "Subtrair", + "Intersecção", + "Excluir", + "Mesclar" + ], + [ + [ + "Linear", + "Radial", + "Ângulo", + "Refletido", + "Diamante", + "Estouro de Forma" + ], + [ + "Mais Macio", + "Preciso" + ], + [ + "Bisel Externo", + "Bisel Interno", + "Entalhe", + "Relevo Travesseiro", + "Relevo do Contorno", + "Largura do traçado" + ], + [ + "Suavizar", + "Cinzel Duro", + "Cinzel Macio", + "Suavidade" + ], + [ + "Cima", + "Baixo" + ], + [ + "Fora", + "Centro", + "Dentro", + "A Partir do Centro" + ], + [ + "Sombras", + "Tons Médios", + "Realces" + ], + [ + "Dessaturar", + "Saturar" + ], + [ + "Pequeno", + "Médio", + "Ampla" + ], + [ + "Arremates", + "Cantos", + "Traços" + ] + ], + [ + "Escolha o objeto abaixo do cursor", + "Controles de Transformação", + "Pixel a Pixel", + "Encaixe a Área", + [ + "Alinhar Cantos Esquerdos", + "Centralizar Horizontalmente", + "Alinhar Cantos Direitos", + "Alinhar Cantos de Cima", + "Centralizar Verticalmente", + "Alinhar Cantos de Baixo", + "Lacunas Iguais" + ] + ], + [ + "Colocar em", + "Projeto Atual", + "Novo Projeto", + "Resolução", + "Adicionado ao projeto atual.", + "Um novo projeto foi criado.", + "O acesso à câmera foi recusado." + ], + [ + "Orientação", + "Curvatura", + "Distorção Horizontal", + "Distorção Vertical", + [ + "Horizontal", + "Vertical", + "Horizontalmente", + "Verticalmente" + ], + [ + "Nenhum", + "Arco", + "Arco Inferior", + "Arco Superior", + "Arquear", + "Protuberância", + "Concha Inferior", + "Concha Superior", + "Bandeira", + "Onda", + "Peixe", + "Elevar", + "Olho de Peixe", + "Inflar", + "Espremer", + "Torcer", + "Personalizado" + ], + [ + "Fonte", + "não está disponível", + "Será renderizado usando", + "Existe trabalho não salvo em", + "Deseja realmente fechar?" + ], + [ + "Trocar Cores", + "Padrão: Branco e Preto" + ] + ], + [ + "carregado", + "adicionado", + "Mover Guia", + "Excluir Guia", + "Adicionar Guia", + "Carregando", + "Carregar VAR0" + ], + [ + "Galeria de Filtros", + [ + [ + "Dissolver", + [ + "Borrar", + "Reconstruir", + "Suavizar", + "Redemoinho", + "Encolher", + "Inflar", + "Empurre à Esquerda", + "Congelar", + "Descongelar" + ] + ], + [ + "Correção de lente" + ] + ], + "Borrão", + [ + "Médio", + "Desfocar", + "Desfoque Maior", + "Desfoque de Caixa", + "Desfoque Gaussiano", + "Desfoque de Lente", + "Desfoque de Movimento", + "Desfoque Radial", + "Desfoque de Forma", + "Desfoque Inteligente", + "Desfoque de Superfície" + ], + "Distorcer", + [ + "Mesclar", + "Sucção", + "Coordenadas Polares", + "Ondulação", + "Cisalhamento", + "Esferização", + "Ondas" + ], + "Ruído", + [ + "Adicionar Ruído", + "Remover Manchas", + "Poeira e Rabiscos", + "Mediana" + ], + "Pixelizar", + [ + "Meio-Tom de Cor", + "Cristalizar", + "Faceta", + "Fragmento", + "Mezzo-tinto", + "Mosaico", + "Pontilhar" + ], + "Renderizar", + [ + "Nuvens", + "Nuvens Diferenciais", + "Reflexo de Flash" + ], + "Aguçar", + [ + "Tornar Nítido", + "Tornar Arestas Nítidas", + "Nitidez Maior", + "Aplicação Inteligente de Nitidez", + "Máscara de Nitidez" + ], + "Estilizar", + [ + "Difusão", + "Realçar", + "Extrusão", + "Indicação de Arestas", + "Pintura a óleo" + ], + "Outros Filtros", + [ + "Personalizado", + "Alta frequência", + "Máximo", + "Mínimo", + "Deslocamento", + "Repetir" + ], + [ + "Área Indefinida", + "Definir como Transparente", + "Repetir Pixels da Aresta", + "Preencher com Lado Oposto", + "Último Filtro", + "Visualizar" + ] + ], + [ + "Modelos", + [ + "Filtro de Fontes", + "Palavras-chave", + "Aleatória" + ], + [ + "Com símbolos", + "Com foto" + ], + [ + "Miniaturas", + "Lista" + ] + ] + ], + [ + [ + "Fájl", + "Szerkesztés", + "Kép", + "Réteg", + "Mappa", + "Kijelölés", + "Szűrő", + "Nézet", + "Ablak", + "Nyelv", + "Bejelentkezés", + "Kijelentkezés", + "Fordítás készítése", + [ + "Fiók", + "Jogi nyilatkozat", + "Vissza", + "Névjegy", + "Hiba jelentése", + "Tanulás" + ], + "Továbbiak", + "Téma", + "WebGL használata", + [ + "Photopea: fejlett képszerkesztő", + "Egy ingyenes online szerkesztő, amely támogatja a PSD, az XCF, a Sketch, az XD és a CDR formátumokat.", + "Hozzon létre egy új képet, vagy nyisson meg már létező fájlokat a számítógépről. Mentse el munkáját PSD (Fájl - Mentés mint PSD) vagy JPG / PNG / SVG (Fájl - Exportálás mint) formátumban.", + "Javasoljon új funkciókat on vagy on. Célunk, hogy megteremtsük .", + "A szponzor linkek új ablakban nyílnak meg.", + "Ez a funkció nem érhető el.", + "Photopea telepítése" + ] + ], + [ + "Megnyitás", + "Közzététel online", + "Mentés", + "Mentés mint PSD", + "Nyomtatás", + "Megnyitás URL-ből", + "Megnyitás saját gépről", + "Kapcsolódás Google Drive-hoz", + "Exportálás mint", + "Rétegek exportálása", + "Szkript", + "Megnyitás és elhelyezés", + "Bezárás", + "Helyi meghajtó", + "Fájl információk" + ], + [ + "Előrelépés", + "Visszalépés", + "Törlés", + "Kitöltés", + "Transzformálás", + "Forgatás", + "VAR0 tükrözés", + "VAR0 méretezés", + "Visszavonás / Ismétlés", + "Perspektivikus", + [ + "Automatikus keverés", + "Automatikus igazítás" + ], + "Halványítás", + "Kép alkalmazása" + ], + "Színkorrekciók", + [ + "Fényerő/kontraszt", + "Szintbeállítás", + "Görbék", + "Exponálás", + "Vibrálás", + "Színezettség/Telítettség", + "Színegyensúly", + "Fekete-fehér", + "Fotószűrő", + "Csatornakeverő", + "Színkeresés", + "Invertálás", + "Keményítés", + "Határérték", + "Színátmenettérkép", + "Szín kiválasztás", + [ + "Automatikus színárnyalat", + "Automatikus kontraszt", + "Automatikus szín" + ], + "Színcsere" + ], + [ + "Vágás", + "Másolás", + "Beillesztés", + "Új", + "Törlés", + "Engedélyezés", + "Tiltás", + "Másolás egyesítve", + "Alkalmaz", + "Újra", + "Frissítés" + ], + [ + "Réteg duplikálása", + "Új szabályozható réteg", + "Rasztermaszk", + "Vektormaszk", + "Hozzáadás (Összes megjelenítése)", + [ + "Hozzáadás (Összes elrejtése)", + "Kijelölés megjelenítése", + "Kijelölés elrejtése", + "Átlátszóságból" + ], + [ + "Vágómaszk", + "Gyorsmaszk módban" + ], + "Okos objektummá alakítás", + "Raszterizálás", + "Rétegek csoportosítása", + "Egyesítés lefele", + "Egyesítés felfelé", + [ + "Rétegek egyesítése", + "Rétegek összeolvasztása" + ], + "Új réteg", + "Rasztermaszk engedélyezése", + "Rasztermaszk letiltása", + "Vektormaszk engedélyezése", + "Vektormaszk letiltása", + "Vágómaszk engedélyezése", + "Vágómaszk letiltása", + "Új mappa", + "Rasztermaszk hozzáadása", + "Rasztermaszk törlése", + "Vektormaszk hozzáadása", + "Vektormaszk törlése", + "Rasztermaszk összekötése", + "Rasztermaszk szétkapcsolása", + "Vektormaszkok összekapcsolása", + "Vektormaszkok szétkapcsolása", + "Rétegeffektek engedélyezése", + "Rétegeffektek letiltása", + "Réteg törlése", + "Réteg átlátszóságának változtatása", + "Keverési beállítások", + "Rétegstílus raszterizálása", + "Rétegrend", + [ + "Okos objektum hozzáadása", + "Okos objektum frissítése", + "Okos objektum elhelyezése", + "Forrás (Okos objektum)", + "Halommódot" + ], + "Névváltoztatás", + "Színváltoztatás", + "Állítható réteg szerkesztése", + "Alakzattá alakítás", + "Szűrőmaszk engedélyezése", + "Szűrőmaszk letiltása", + "Okos szűrők engedélyezése", + "Okos szűrők letiltása", + "Szűrőmaszk hozzáadása", + "Szűrőmaszk törlése", + "Okos szűrők törlése", + [ + [ + "Egyszínű kitöltés", + "Színátmenetes Kitöltés", + "Minta kitöltés", + "Tartalomérzékeny" + ], + "Új kitöltő réteg", + "Kitöltési réteg módosítás" + ], + "Jelenlegi réteg másolása", + "Szűrőmaszk", + "Réteg stílus törlése", + "Okos szűrő mozgatása", + "Okos szűrő törlése", + [ + "Rétegek csatolása", + "Rétegek leválasztása" + ], + "Rendezés", + [ + "Előrehozás", + "Előtérbe hozás", + "Hátrébb küldés", + "Hátraküldés" + ], + [ + "Ez a réteg zárolva van.", + "Zárolás Változtatás", + "Zárolása" + ], + null + ], + [ + "Összes", + "Kijelölés megszüntetése", + "Inverzálás", + "Módosítás", + "Kiterjesztés", + "Összehúzás", + "Madártoll", + "Kijelölés mozgatása", + "Színtartomány", + "Szegély", + "Kijelölés átalakítása", + "Szegély finomítása", + "Kijelölés javítása", + null + ], + [ + "Nagyítás", + "Kicsinyítés", + "Segédvonalak", + "Szabályzók", + "Rács", + "Igazítás", + "Igazítás a köv. p.", + "Dokumentumszegélyek", + "Képpontrács", + "Görbék", + "Igazítás képpontokkal", + [ + "Szeletek", + "Szelet beállításai" + ], + "Megjelenítés" + ], + [ + "Előzmény", + "Rétegek", + "Beállítások", + "Ecset", + "Karakter", + "Paragrafus", + "Információ", + "Rétegszedők", + "Színtár", + "Műveletek", + "Hisztogram", + "Navigátor", + "Eszközkészletek", + "Karaktertábla" + ], + [ + "Festő eszköz", + "Másoló eszköz", + "Vágó eszköz", + "Törlő eszköz", + "Ellipszis kijelölö", + "Pipetta", + "Színátmenet eszközre", + "Mozgató eszköz", + "Szövegbevitel", + "Lasszó", + "Mágneses lasszó", + "Mozgató eszköz", + "Varázspálca", + "Festékesvödör", + "Sokszög lasszó", + "Téglalap kijelölö", + "Szabad átalakítás", + "Közelítő eszköz", + "Életlenítési eszköz", + "Élességi eszköz", + "Maszatoló eszköz", + "Világosító eszköz", + "Sötétítő eszköz", + "Szivacs eszköz", + "Helyi javító ecset eszköz", + "Javító ecset eszköz", + "Folt", + "Görbeválasztó", + "Közvetlen kijelölés", + "Toll", + "Szabadkézi toll", + "Egyéni alakzat", + "Téglalap", + "Ellipszis", + "Parametrikus alakzat", + "Vonal", + "Vonalzó", + "Gyors kijelölés", + "Ceruza eszköz", + "Perspektivikus vágás", + "Szelet", + "Szeletkijelölő", + "Színcsere eszköz", + "Vörösszem-eltávolító eszköz", + "Objektumkijelölés", + "Háttér radír", + "Bábu hajlítása", + "Nézet elforgatása", + "Tartalomérzékeny méretezés", + "Tartalomérzékeny mozgatás" + ], + [ + "Készíts egy képet", + "Színválasztó", + "Kontúr szerkesztő", + "Vászon méret", + "Duplázás ide...", + "Színátmenet szerkesztő", + "Rétegstílus", + "Új projekt", + "Mentés webre", + "Csavarás", + "Képméret", + "Bittérképet vektorizálja", + [ + "Körülvágás", + null, + "Összes megjelenítése" + ], + "Billentyűparancsok", + "Segédvonalak hozzáadása", + [ + "Segédvonalak törlése", + null + ] + ], + [ + "Opacitás", + "Effektek", + "Fényerő", + [ + "Kontraszt", + "Örökölt használata" + ], + "Csatorna", + "Exponálás", + "Eltolás", + "Gamma korrekció", + "Színezet", + "Telítettség", + "Könnyűség", + "Színezése", + "Hatótávolság", + "Élénkség", + [ + "Méret", + "Interpoláción", + "Legközelebbi szomszéd", + "Bilineáris" + ], + "Szög", + "Kerekség", + "Keménység", + "Térköz", + [ + "Kevert mód", + "Keverés, ha" + ], + "Minta méret", + "Kontúr", + "Stílus", + [ + "Fordított", + "Relatív", + "Szerkesztőpont" + ], + "Tűréshatár", + "Határos", + "Kitöltés", + "Globális szög használat", + "Távolság", + "Kiterjedés", + "Zaj", + "Árnyék kihagyás", + "Technika", + "Irány", + "Mélység", + "Lágy", + "Mód", + "Színátmenet", + "Méretezés", + "Réteghez igazítás", + "Pozíció", + "Szélesség", + "Magasság", + "Rendeltetési hely", + "Típus", + "Előtér", + "Háttér", + "Egyedi", + "Név", + "Létrehoz", + "Formázás", + "Képarány megtartása", + [ + "Minőség", + "Oldalak" + ], + "Másolat", + "Mozgató", + "Szelektív szűrők", + "Sugár", + "Összeg", + "Terjesztés", + [ + "Egyen", + "Gauss" + ], + "Egyszínű", + "Cella méret", + "Minta", + "Folyatás", + "Erő", + "Védett részlet", + "Kitöltés típusa", + "Textúra", + "Élénkség", + "Él", + "Forrás", + "Cél", + "Csatorna", + "Maszk", + "Sűrűség", + "Igazított", + [ + "Görbe", + "Alakzat", + "Pixel", + "Hüvelyk", + "Centiméter", + "Milliméter", + "Százalék" + ], + "Alakzatok", + "Oldalak", + "Előnyben részesített", + [ + "Hossz", + "Arány", + "Bármilyen", + "Rács Típus", + "Izometrikus", + "Rácstérköz", + "Vonalzó mértékegysége" + ], + "Zajcsökkentés", + "Színek", + "Távolságok", + "Sebesség", + "Automatikus kijelölés", + "Keresés", + "Megadása", + [ + "Fénykép", + "Képernyő", + "Mobil", + "Hirdetések", + "Nyomat" + ], + [ + "Normál", + "Rögzített arány", + "Rögzített méret" + ], + "Súgó", + [ + "Élő alakzatot", + "Élő alakzatot szerkesztése", + "Azonos sugarú" + ], + "Tűrés", + [ + "Sokszög", + "Csillag", + "Spirál", + "Négyzetes" + ], + [ + "Sarok sugara", + "Belső sugár" + ] + ], + [ + "Szín", + [ + "Egyik sem", + "Piros", + "Narancs", + "Sárga", + "Zöld", + "Kék", + "Lila", + "Szürke", + "Fehér", + "Átláltszó", + "Fekete", + "Cián", + "Bíbor", + "Semleges" + ], + "Teljes", + "Abszolút", + "Fényintenzitás megőrzése" + ], + [ + "Árnyék", + "Belső árnyék", + "Külső ragyogás", + "Belső ragyogás", + "Bevésés és Domborítás", + "Színátfedés", + "Színátmenet-átfedés", + "Mintaátfedés", + "Szatén", + "Körvonal", + "Összhatás beállítások", + null + ], + [ + "Csúcs Alak", + "Csúcs Dinamika", + "Szórás", + "Szín dinamika", + [ + "Bemozdulás méret", + "Minimális átmérő", + "Bemozdulás szög", + "Bemozdulás kerekség", + "Minimális Kerekség" + ], + [ + "Bemozdulási pozíció", + "Számol", + "Bemozdulási szám" + ], + [ + "Bemozdulás Előtér / Háttér", + "Bemozdulás Színárnyalat", + "Remegés Telítettség", + "Remegés Fényereje" + ], + [ + "Válassza ki a klón forrását a nyomva tartott Alt billenytűvel (vagy K), és kattintson a képre.", + "Jelölje meg az előtéret fehérvel, az háttéret feketével, és az ismeretlen terület szürkével.", + "Réteg nem szerkeszthető.", + "Szövegréteg először raszterizálni kell", + "Okos objektum először raszterizálni kell", + "Több réteg kiválasztása", + "Dőlésmentesítés", + "Először nyisson meg egy dokumentumot.", + "Először zárja be az aktuális ablakot.", + "Csak az aktuális eszköz" + ], + [ + "Rögzítése", + "Új műveletkészlet", + "Új művelet" + ], + [ + "Tábla nyomásszabályzó vezérlőelemeinek Áttetszőség", + "Tábla nyomásszabályzó vezérlőelemeinek Méret" + ], + [ + "Normál", + "Szórt", + "Sötétítés", + "Szendvicspozitív", + "Színégetés", + "Lineáris égetés", + "Sötétebb szín", + "Világosítás", + "Szendvicsnegatív", + "Színfakítás", + "Lineáris fakítás", + "Világosabb szín", + "Átfedés", + "Lágy fény", + "Kemény fény", + "Élénk fény", + "Lineáris világosítás", + "Tűfény", + "Kemény keverés", + "Különbség", + "Kizárás", + "Elvétel", + "Felosztás", + "Színezet", + "Telítettség", + "Szín", + "Fényintenzitás", + "Áthúzás" + ] + ], + [ + "Sortávolság", + "Betűköz", + "Kiindulási műszak", + [ + "Átalakítás pontszöveggé vagy", + "Átalakítás bekezdésszöveggé parancsra" + ] + ], + [ + "Összes réteg", + "Aktuális réteg", + "Kijelölési", + "Aktuális és alatta" + ], + [ + "Csere", + "Egyesítés", + "Különbség", + "Metszőpont", + "XOR", + "Egyesítés" + ], + [ + [ + "Egyenes irányú", + "Sugárirányú", + "Szög", + "Tükröződés", + "Gyémánt", + "Shape Burst" + ], + [ + "Lágyabb", + "Pontos" + ], + [ + "Külső Tompaszög", + "Belső Tompaszög", + "Dombor", + "Párna Dombor", + "Ecsetvonás Dombor", + "Vonalvastagság" + ], + [ + "Simítás", + "Véső Kemény", + "Véső Lágy", + "Finomság" + ], + [ + "Fel", + "Le" + ], + [ + "Kívül", + "Közép", + "Belül", + "Középről" + ], + [ + "Árnyék", + "Középtónusok", + "Csúcsfény" + ], + [ + "Telítettség csökkentése", + "Telítés" + ], + [ + "Kicsi", + "Közepes", + "Nagy" + ], + [ + "Vonalvégek", + "Sarkok", + "Szaggatott" + ] + ], + [ + "Válassza ki a tárgyat a kurzor alatt", + "Átalakítási vezérlőelemek", + "Pixeltől Pixelig", + "Területhez Illesztés", + [ + "Igazítás bal szegélyek", + "Vízszintes középre igazítás", + "Igazítás jobb szegélyek", + "Igazítás felső szegélyek", + "Függőleges középre igazítás", + "Igazítás alsó szegélyek", + "Egyenletes eloszlás" + ] + ], + [ + "Helyezzen be", + "Aktuális projekt", + "Új projekt", + "Felbontás", + "Hozzáadni az aktuális projekthez.", + "Egy új projekt jött létre.", + "Kamera hozzáférés megtagadva." + ], + [ + "Helyzet", + "Hajlás", + "Vízszintes csavarás", + "Függőleges csavarás", + [ + "Vízszintes", + "Függőleges", + "Vízszintes", + "Függőleges" + ], + [ + "Nincs", + "Ívelés", + "Ívelés lejjebb", + "Ívelés feljebb", + "Ív", + "Kidomborítás", + "Kagyló (alsó)", + "Kagyló (felsö)", + "Jelzö", + "Hullám", + "Hal", + "Emelés", + "Halszem", + "Felfújás", + "Összepréselés", + "Csavarás", + "Egyedi" + ], + [ + "Betűtípus", + "nem elérhető", + "Lesz renderelt segítségével", + "A projektben nem mentett munka van:", + "Biztosan bezárja?" + ], + [ + "Színének felcserélése", + "Alapértelmezés: fehér és fekete" + ] + ], + [ + "betöltve", + "hozzáadva", + "Segédvonal mozgatása", + "Segédvonal törlése", + "Segédvonal hozzáadása", + "Betöltés", + "VAR0 betöltése" + ], + [ + "Szűrőgaléria", + [ + [ + "Cseppfolyósítás", + [ + "Maszatoló", + "Visszaépítés", + "Simítás", + "Örvény", + "Összezsugorodik", + "Felfúj", + "Balra tolás", + "Fagyasztása", + "Olvasztása" + ] + ], + [ + "Lencsekorrekció" + ] + ], + "Életlenítési", + [ + "Átlag", + "Életlenítés", + "Több életlenítés", + "Doboz életlenítése", + "Gauss-életlenítés", + "Lencsefolt", + "Bemozdulás", + "Sugaras életlenítés", + "Alakzatos életlenítés", + "Intelligens életlenítés", + "Felület életlenítése" + ], + "Torzítási", + [ + "Fénytörés", + "Tölcsér", + "Ellentétes koordináták", + "Fodrozás", + "Nyírás", + "Gömb", + "Hullám" + ], + "Zajkezelési", + [ + "Zaj hozzáadása", + "Rácstalanítás", + "Por és karcok", + "Medián" + ], + "Képpontosítási", + [ + "Színes raszterrács", + "Kristályosítás", + "Szellemkép", + "Töredék", + "Borzolás", + "Mozaik", + "Pointillista" + ], + "Renderelési", + [ + "Felhők", + "Negatív felhők", + "Lencsefényfolt" + ], + "Élesítési", + [ + "Élesítés", + "Szegélyek élesítése", + "Több élesítés", + "Intelligens élesítés", + "Életlen maszk" + ], + "Stilizálási", + [ + "Szétszórás", + "Domborítás", + "Kiemelés", + "Szegélyek megkeresése", + null + ], + "Egyéb", + [ + "Egyéni", + "Élkiemelés", + "Maximális", + "Minimális", + "Eltolás", + "Ismétlés" + ], + [ + "Nem definiált terület", + "Beállítás áttetszőként", + "Szegélyképpontok megismétlése", + "Körétördelés", + "Utolsó szűrő", + "Előnézet" + ] + ], + [ + "Sablonok", + [ + "Betűtípusszűrő", + "Kulcsszavak", + "Véletlenszerű" + ], + [ + "Szimbólumok", + "Képekkel" + ], + [ + "Bélyegkép", + "Lista" + ] + ] + ], + [ + [ + "Súbor", + "Upraviť", + "Obraz", + "Vrstva", + "Priečinok", + "Vybrať", + "Filter", + "Zobrazenie", + "Okno", + "Jazyk", + "Prihlásiť sa", + "Odhlásiť sa", + "Vytvoriť preklad", + [ + "Účet", + "Podmienky služby", + "Späť", + "O programe", + "Nahlás chybu", + "Nauč sa" + ], + "Viac", + "Téma", + "Použiť WebGL", + [ + "Photopea: Pokročilý grafický editor", + "Bezplatný online editor podporujúci formáty PSD, XCF, Sketch, XD a CDR.", + "Vytvorte nový obrázok alebo otvorte existujúce súbory z počítača. Uložte svoju prácu ako PSD (Súbor - Uložiť ako PSD) alebo ako JPG / PNG / SVG (Súbor - Exportovať ako).", + "Navrhnite nové funkcie v našom alebo . Naším cieľom je vytvoriť .", + "Sponzorské odkazy sa otvárajú v novom okne.", + "Táto funkcia nie je dostupná.", + null + ] + ], + [ + "Otvoriť", + "Zverejniť online", + "Uložiť", + "Uložiť ako PSD", + "Tlačiť", + "Otvoriť z URL", + "Otvoriť z počítača", + "Spojiť s Google Drive", + "Exportovať ako", + "Exportuj vrstvy", + "Skript", + "Otvoriť a Umiestniť", + "Zatvoriť", + "Miestne Úložisko", + null + ], + [ + "Krok dopredu", + "Krok dozadu", + "Vyčistiť", + "Vyplniť", + "Transformácia", + "Otočiť", + "Preklopiť VAR0", + "Roztiahnuť VAR0", + "Dopredu / Dozadu", + "Perspektíva", + [ + "Automatické prelínanie", + "Automaticky zarovnať" + ], + "Zoslabiť", + null + ], + "Úpravy", + [ + "Jas/Kontrast", + "Úrovne", + "Krivky", + "Expozícia", + "Živosť", + "Odtieň/Sýtosť", + "Vyváženie farieb", + "Čierna & Biela", + "Fotografický filter", + "Miešanie kanálov", + "Vyhľadávanie farieb", + "Invertovať", + "Posterizovať", + "Prah", + "Gradientový prechod", + "Selektívna farba", + [ + "Auto Tón", + "Auto Kontrast", + "Auto Farby" + ], + "Nahradiť farbu" + ], + [ + "Vystrihnúť", + "Kopírovať", + "Vložiť", + "Nový", + "Vymazať", + "Zapnúť", + "Vypnúť", + "Kopírovať z celku", + "Použiť", + "Znovu", + "Aktualizovať" + ], + [ + "Duplikovať vrstvu", + "Nová vrstva úprav", + "Rastrová maska", + "Vektorová maska", + "Pridať (Odhaliť všetko)", + [ + "Pridať (skryť všetko)", + "Odhaliť výber", + "Skryť výber", + "Podľa priehľadnosti" + ], + [ + "Orezová maska", + "Režim Rýchla maska" + ], + "Previesť na Smart Object", + "Rastrovať", + "Pridať do zložky", + "Zlúčiť nadol", + "Zlúčiť nahor", + [ + "Spojiť vrstvy", + "Do jednej vrstvy" + ], + "Nová vrstva", + "Zapnúť rastrovú masku", + "Vypnúť rastrovú masku", + "Zapnúť vektorovú masku", + "Vypnúť vektorovú masku", + "Zapnúť orezovú masku", + "Vypnúť orezovú masku", + "Nový priečinok", + "Pridať rastrovú masku", + "Zmazať rastrovú masku", + "Pridať vektorovú masku", + "Zmazať vektorovú masku", + "Spojiť rastrovú masku", + "Rozdeliť rastrovú masku", + "Spojiť vektorovú masku", + "Rozdeliť vektorovú masku", + "Zapnúť štýly vrstvy", + "Vypnúť štýly vrstvy", + "Zmazať vrstvu", + "Zmena priehľadnosti vrstvy", + "Zmena režimu prelínania", + "Rastrovať štýl vrstvy", + "Poradie vrstiev", + [ + "Vytvoriť Smart Object", + "Aktualizovať Smart Object", + "Umiestniť Smart Object", + "Zdroj (Smart Object)", + "Režim balíčku" + ], + "Zmena názvu", + "Zmena farby", + "Zmena vrstvy úprav", + "Previesť na tvar", + "Zapnúť masku filtrov", + "Vypnúť masku filtrov", + "Zapnúť chytré filtre", + "Vypnúť chytré filtre", + "Pridať masku filtrov", + "Zmazať masku filtrov", + "Zmazať chytré filtre", + [ + [ + "Prekrytie farbou", + "Prekrytie prechodom", + "Prekrytie vzorkom", + "Podľa obsahu" + ], + "Nová vrstva krytia", + "Úprava vrstvy krytia" + ], + "Vrstva kopírovaním", + "Maska filtra", + "Zmazať štýl vrstvy", + "Presunúť chytré filter", + "Zmazať chytré filter", + [ + "Prepojiť vrstvy", + "Zrušiť prepojenie vrstiev" + ], + "Usporiadať", + [ + "Presunúť na začiatok", + "Presunúť dopredu", + "Presunúť dozadu", + "Presunúť na koniec" + ], + [ + "Vrstva je zamknutá.", + "Zmena Zámku", + null + ], + null + ], + [ + "Všetko", + "Odznačiť", + "Invertovať", + "Upraviť", + "Rozšíriť", + "Zúžiť", + "Zmäkčiť okraj", + "Posun výberu", + "Rozsah farieb", + "Okraj", + "Transformovať výber", + "Spresniť okraje", + "Opraviť výber", + null + ], + [ + "Priblížiť", + "Oddialiť", + "Vodítka", + "Pravítka", + "Mriežka", + "Prichytávanie", + "Prichytiť k", + "Okraj dokumentu", + "Pixelová mriežka", + "Cesty", + "Prichytiť k pixelom", + [ + "Rezy", + "Parametre rezu" + ], + "Zobraziť" + ], + [ + "História", + "Vrstvy", + "Vlastnosti", + "Štetec", + "Znak", + "Odstavec", + "Info", + "Kompozícia", + "Vzorkovník", + "Akcia", + "Histogram", + "Navigátor", + "Konfigurácia nástrojov", + null + ], + [ + "Štetec", + "Klonovacie razítko", + "Orez", + "Guma", + "Eliptický výber", + "Kvapkadlo", + "Prechod", + "Ruka", + "Vodorovný text", + "Laso", + "Magnetické laso", + "Presun", + "Kúzelná palička", + "Kýblik farby", + "Mnohouholníkové laso", + "Obdĺžnikový výber", + "Voľná transformácia", + "Lupa", + "Rozostrenie", + "Zostrenie", + "Rozmazanie", + "Zosvetlenie", + "Stmavenie", + "Hubka", + "Bodový retušovací štetec", + "Retušovací štetec", + "Záplata", + "Výber cesty", + "Priamy výber", + "Pero", + "Pero od ruky", + "Iný tvar", + "Obdĺžnik", + "Elipsa", + "Tvar s parametrami", + "Čiara", + "Pravítko", + "Rýchly výber", + "Ceruzka", + "Perspektívne Orez", + "Nástroj rez", + "Nástroj výber rezu", + "Nahradiť farbu", + "Červené oči", + "Výber objektov", + "Mazanie pozadie", + null, + "Otočiť Obraz", + null, + null + ], + [ + "Vyfotiť", + "Výber farby", + "Editor kontúr", + "Veľkosť plátna", + "Duplikovať do ...", + "Editor prechodu", + "Štýl vrstvy", + "Nový projekt", + "Uložiť pre web", + "Pokrivenie", + "Veľkosť obrazu", + "Vektorizovať bitmapu", + [ + "Zastrihnúť", + "Orezať", + "Odhaliť všetko" + ], + "Klávesové skratky", + "Pridať vodítka", + [ + "Odstrániť vodítka", + "Vodítka podľa vrstvy" + ] + ], + [ + "Krytie", + "Efekty", + "Jas", + [ + "Kontrast", + "Použiť kompatibilitu" + ], + "Kanál", + "Expozícia", + "Posun", + "Gamma korekcia", + "Odtieň", + "Sýtosť", + "Svetlosť", + "Kolorizovať", + "Rozsah", + "Živosť", + [ + "Veľkosť", + "Interpolácia", + "Najbližší sused", + "Bilineárna" + ], + "Uhol", + "Zaoblenie", + "Tvrdosť", + "Medzery", + [ + "Režim prelínania", + "Prelínať keď" + ], + "Veľkosť vzorku", + "Kontúra", + "Štýl", + [ + "Otočiť", + "Relatívna", + "Ukotviť" + ], + "Tolerancia", + "Súvislé", + "Výplň", + "Použiť globálny uhol", + "Vzdialenosť", + "Rozšírenie", + "Šum", + "Vyseknúť vrhnutý tieň", + "Metóda", + "Smer", + "Hĺbka", + "Zmäkčiť", + "Režim", + "Prechod", + "Veľkosť", + "Zarovnať s vrstvou", + "Poloha", + "Šírka", + "Výška", + "Cieľ", + "Typ", + "Popredie", + "Pozadie", + "Vlastné", + "Názov", + "Vytvoriť", + "Formát", + "Zachovať pomer strán", + [ + "Kvalita", + "Stránky" + ], + "Duplikovať", + "Presun", + "Chytré filtre", + "Polomer", + "Miera", + "Distribúcia", + [ + "Rovnomerná", + "Gaussovská" + ], + "Monochromatický", + "Veľkosť bunky", + "Vzorka", + "Hustota", + "Sila", + "Zachovať detaily", + "Typ výplne", + "Textúra", + "Chvenie", + "Hrana", + "Zdroj", + "Cieľ", + "Kanály", + "Maska", + "Hustota", + "Zarovnaný", + [ + "Cesta", + "Tvar", + "Pixely", + "Palce", + "Centimeter", + "Milimeter", + "Percento" + ], + "Tvary", + "Strany", + "Predvoľby", + [ + "Dĺžka", + "Pomer", + "Ľubovoľný", + "Typ mriežky", + "Izometrický", + "Veľkosť mriežky", + "Jednotky pravítka" + ], + "Redukovať šum", + "Farby", + "Vzdialenosti", + "Miera", + "Automatický výber", + "Nájsť", + "Definovať nový", + [ + "Foto", + "Obrazovka", + "Mobil", + "Reklama", + "Tlač" + ], + [ + "Voľný", + "Pevný pomer", + "Pevná veľkosť" + ], + "Pomoc", + [ + "Živé tvary", + "Úprava živých tvarov", + "Rovnaké polomery" + ], + "Rozmazanosť", + [ + "Mnohouholník", + "Hviezda", + "Špirála", + "Štvorec" + ], + [ + "Polomer rohov", + "Vnútorný polomer" + ] + ], + [ + "Farba", + [ + "Žiadna", + "Červená", + "Oranžová", + "Žltá", + "Zelená", + "Modrá", + "Fialová", + "Šedá", + "Biela", + "Priesvitná", + "Čierna", + "Azúrová", + "Purpurová", + "Neutrálny" + ], + "Celkom", + "Absolútna", + "Zachovať svetlosť" + ], + [ + "Vrhnutý tieň", + "Vnútorný tieň", + "Vonkajšia žiara", + "Vnútorná žiara", + "Úkos a reliéf", + "Prekrytie farbou", + "Prekrytie prechodom", + "Prekrytie vzorkom", + "Satén", + "Vytiahnutie", + "Možnosti prelínania", + "Vybrať pixely" + ], + [ + "Tvar špičky", + "Dynamika špičky", + "Rozptyl", + "Dynamika farby", + [ + "Kolísanie veľkosti", + "Minimálny priemer", + "Kolísanie uhla", + "Kolísanie zaoblenia", + "Minimálne zaoblenie" + ], + [ + "Rozptyl polohy", + "Počet", + "Kolísanie počtu" + ], + [ + "Kolísanie popredia/pozadia", + "Kolísanie odtieňa", + "Kolísanie sýtosti", + "Kolísanie jasu" + ], + [ + "Zvoľte zdroj klonovania pridržaním Alt a kliknutím do obrazu.", + "Označte popredie Bielou, pozadie Čiernou a neznámu oblasť Šedou.", + "Vrstvu nemožno upravovať.", + "Textová vrstva sa musí najsôr rastrovať", + "Smart Object sa musí najsôr rastrovať", + "Vyberte niekoľko vrstiev", + "Vyrovnať vrstvu", + "Najprv otvorte dokument.", + "Najprv zatvorte aktuálne okno.", + "Len aktuálny nástroj" + ], + [ + "Nahrať", + "Nová skupina akciu", + "Nová akcia" + ], + [ + "Prítlak pera mení priehľadnosť", + "Prítlak pera mení veľkosť" + ], + [ + "Normálne", + "Rozpustiť", + "Stmaviť", + "Násobenie", + "Stmaviť farby", + "Lineárne stmaviť", + "Tmavšia farba", + "Zosvetliť", + "Závoj", + "Zosvetliť farby", + "Lineárne zosvetliť", + "Svetlejšia farba", + "Prekryť", + "Mäkké svetlo", + "Tvrdé svetlo", + "Jasné svetlo", + "Lineárne svetlo", + "Bodové svetlo", + "Tvrdé miešanie", + "Rozdiel", + "Vylúčiť", + "Odpočítať", + "Rozdeliť", + "Odtieň", + "Sýtosť", + "Farba", + "Svetlosť", + "Prejst skrz" + ] + ], + [ + "Preklad", + "Prestrkanie", + "Posun účiaria", + [ + "Previesť na bodový text", + "Previesť na odstavcový text" + ] + ], + [ + "Všetok obsah", + "Aktuálna vrstva", + "Výber", + "Vrstva a vrstvy pod ňou" + ], + [ + "Nahradiť", + "Spojiť", + "Odobrať", + "Prienik", + "Vylúčiť", + "Spojiť" + ], + [ + [ + "Lineárny", + "Kruhový", + "Uhlový", + "Zrkadlený", + "Diamant", + "Podľa tvaru" + ], + [ + "Mäkší", + "Presná" + ], + [ + "Vonkajší úkos", + "Vnútorný úkos", + "Reliéf", + "Poduškový reliéf", + "Reliéfny ťah", + "Hrúbka vytiahnutie" + ], + [ + "Vyhladiť", + "Tvrdá", + "Mäkká", + "Hladkosť" + ], + [ + "Hore", + "Dole" + ], + [ + "Vonku", + "Na stred", + "Vnútri", + "Zo stredu" + ], + [ + "Tiene", + "Stredné tóny", + "Odlesky" + ], + [ + "Znížiť sýtosť", + "Zvýšiť sýtosť" + ], + [ + "Malý", + "Stredný", + "Veľký" + ], + [ + "Zakončenie", + "Rohy", + "Čiarky" + ] + ], + [ + "Vybrať objekt pod kurzorom", + "Ovládacie prvky transformácie", + "Skutočné pixely", + "Prispôsobiť obrazovke", + [ + "Zarovnať ľavé hrany", + "Vodorovne na stred", + "Zarovnať pravé hrany", + "Zarovnať horné hrany", + "Zvisle na stred", + "Zarovnať spodné hrany", + "Rovnaké medzery" + ] + ], + [ + "Vložiť do", + "Súčasný projekt", + "Nový projekt", + "Rozlíšenie", + "Pridané do súčasného projektu.", + "Nový projekt vytvorený.", + "Nebol povolený prístup ku kamere." + ], + [ + "Orientácia", + "Ohyb", + "Vodorovná deformácia", + "Zvislá deformácia", + [ + "Vodorovne", + "Zvisle", + "vodorovne", + "zvisle" + ], + [ + "Žiadne", + "Oblúk", + "Spodný oblúk", + "Vrchný oblúk", + "Klenba", + "Vydutie", + "Mušľa dole", + "Mušľa hore", + "Vlajka", + "Vlna", + "Ryba", + "Vyvýšenie", + "Rybie oko", + "Nafúknutie", + "Stlačenie", + "Skrútenie", + "Vlastné" + ], + [ + "Font", + "nie je dostupný", + "Pre vykreslenie sa použije", + "Máte neuloženú prácu v", + "Naozaj ho chcete zatvoriť?" + ], + [ + "Prehodiť farby", + "Základné: čierna a biela" + ] + ], + [ + "Načítaný", + "pridané", + "Posun vodítka", + "Zmazanie vodítka", + "Pridanie vodítka", + "Načítanie", + "Načítať VAR0" + ], + [ + "Galéria filtrov", + [ + [ + "Skvapalniť", + [ + "Rozmazať", + "Obnoviť", + "Vyhladiť", + "Zatočiť", + "Zmrštiť", + "Nafúknuť", + "Posun doľava", + "Zmraziť", + "Rozmraziť" + ] + ], + [ + "Korekcia šošovky objektívu" + ] + ], + "Rozostrenie", + [ + "Priemer", + "Rozostriť", + "Rozostriť viac", + "Pravouhlé rozostrenie", + "Gaussovské rozostrenie", + "Rozostrenie šošovkou", + "Rozostrenie pohybom", + "Kruhové rozostrenie", + "Rozostrenie tvarom", + "Chytré rozostrenie", + "Rozostrenie povrchu" + ], + "Skresliť", + [ + "Pokriviť", + "Uštipnúť", + "Polárne súradnice", + "Zvlniť", + "Strihať", + "Zagulatiť", + "Vlna" + ], + "Šum", + [ + "Pridať šum", + "Vyhladiť", + "Prach a škrabance", + "Medián" + ], + "Pixelizácia", + [ + "Farebné poltónovanie", + "Kryštalizácia", + "Fazeta", + "Fragment", + "Mezzotinta", + "Mozaika", + "Vybodkovať" + ], + "Vykresliť", + [ + "Mraky", + "Mraky: Rozdiel", + "Odlesk objektívu" + ], + "Zaostriť", + [ + "Zaostriť", + "Zaostriť hrany", + "Zaostriť viac", + "Chytré zaostrenie", + "Maska zaostrenia" + ], + "Štylizácia", + [ + "Difúzia", + "Reliéf", + "Extrudácia", + "Nájsť hrany", + "Olejová Maľba" + ], + "Ostatné", + [ + "Vlastné", + "Výšky", + "Maximum", + "Minimum", + "Posun", + "Opakovať" + ], + [ + "Oblasť okolo", + "Nastaviť priehľadnú", + "Zopakovať pixely na hrane", + "Zopakovať obrázok", + "Posledný Filter", + "Náhľad" + ] + ], + [ + "Šablóny", + [ + "Filter písma", + "Kľúčové slová", + "Zamiešať" + ], + [ + "So symbolmi", + "S fotkou" + ], + [ + "Miniatúry", + "Zoznam" + ] + ] + ], + [ + [ + "Tệp", + "Chỉnh sửa", + "Hình ảnh", + "Lớp", + "Thư mục", + "Lựa chọn", + "Bộ lọc", + "Xem", + "Cửa sổ", + "Ngôn ngữ", + "Đăng nhập", + "Đăng xuất", + "Tạo bản dịch", + [ + "Tài khoản", + "Điều khoản dịch vụ", + "Trở lại", + "Giới thiệu", + "Báo lỗi", + "Hướng dẫn" + ], + "Thêm", + "Giao diện", + "Sử dụng WebGL", + [ + "Photopea: trình chỉnh sửa hình ảnh nâng cao", + "Trình chỉnh sửa trực tuyến miễn phí hỗ trợ các định dạng PSD, XCF, Sketch, XD và CDR.", + "Tạo một hình ảnh mới hoặc mở các tập tin hiện có từ máy tính của bạn. Lưu công việc của bạn dưới dạng PSD (Tệp - Lưu dưới dạng PSD) hoặc dưới dạng JPG / PNG / SVG (Tệp - Xuất dưới dạng).", + "Đề xuất các tính năng mới tại hoặc của chúng tôi. Mục tiêu của chúng tôi là tạo ra ", + "Liên kết tài trợ mở trong một cửa sổ mới.", + null, + null + ] + ], + [ + "Mở", + "Xuất bản trực tuyến", + "Lưu", + "Lưu dưới dạng PSD", + "In", + "Mở từ URL", + "Mở File từ máy tính", + "Kết nối với Google Drive", + "Xuất dưới dạng", + "Xuất các lớp", + "Bản thảo", + "Chèn ảnh", + "Đóng", + "Lưu trữ cục bộ", + null + ], + [ + "Bước Tiến", + "Bước giật lùi", + "Xóa", + "Tô màu", + "Biến đổi", + "Quay", + "Lật theo chiều VAR0", + "Quy mô VAR0", + "Hoàn tác / Làm lại", + "Phối cảnh", + [ + "Trộn lớp", + null + ], + "Mờ", + null + ], + "Điều chỉnh", + [ + "Độ sáng/tương phản", + "Trình độ", + "Đường cong", + "Phơi bày", + "Rung động", + "Vùng màu/Độ bão hòa màu", + "Cân bằng màu sắc", + "Đen trắng", + "Bộ lọc ảnh", + "Bộ chỉnh âm", + "Màu tra cứu", + "Đảo ngược", + "Áp dụng", + "Ngưỡng", + "Bản đồ Gradient", + "Màu sắc chọn lọc", + [ + "Tự chỉnh tone", + "Tự cân bằng sáng", + "Tự chỉnh màu" + ], + "Thay thế màu" + ], + [ + "Cắt", + "Sao chép", + "Dán", + "Mới", + "Xóa bỏ", + "Bật", + "Vô hiệu hóa", + "Bản sao hợp nhất", + "Áp dụng", + "Làm lại", + "Cập nhật" + ], + [ + "Nhân bản lớp", + "Lớp điều chỉnh mới", + "Mặt nạ Raster", + "Mặt nạ vector", + "Thêm (Hiển thị Tất cả)", + [ + "Thêm (Ẩn tất cả)", + "Tiết lộ vùng chọn", + "Ẩn vùng chọn", + "Từ sự minh bạch" + ], + [ + "Mặt lạ Clipping", + null + ], + "Đổi thành lớp ảnh đối tượng", + "Đổi thành lớp ảnh Raster", + "Nhóm các lớp", + "Hợp nhất với lớp dưới", + "Hợp nhất", + [ + "Hợp nhất lớp", + null + ], + "Lớp mới", + "Bật Mặt nạ Raster", + "Vô hiệu hoá Mặt nạ Raster", + "Bật Mặt nạ Vector", + "Tắt Mặt nạ Vector", + "Bật Clipping Mask", + "Vô hiệu Clipping Mask", + "Thư mục mới", + "Thêm Mặt nạ Raster", + "Xoá Mặt nạ Raster", + "Thêm Mặt nạ Vector", + "Xóa Mặt nạ Vector", + "Nối Mặt nạ Raster", + "Bỏ nối Mặt nạ Raster", + "Nối Mặt nạ Vector", + "Bỏ nối Mặt nạ Vector", + "Bật Hiệu ứng cho lớp", + "Tắt Hiệu ứng cho lớp", + "Xóa lớp", + "Thay đổi độ mờ lớp", + "Thay đổi chế độ Hòa trộn", + "Chuyển Layer Style thành Raster", + "Sắp xếp lớp", + [ + "Tạo Smart Object", + "Cập nhật Smart Object", + "Đặt Smart Object", + "Nguồn (Đối tượng thông minh)", + null + ], + "Đổi tên", + "Đổi màu", + "Chỉnh sửa lớp Hiệu chỉnh", + "Chuyển thành Shape", + "Bật Mặt nạ lọc", + "Tắt mặt lạ lọc", + "Bật bộ lọc thông minh", + "Tắt bộ lọc thông minh", + "Thêm mặt nạ lọc", + "Xóa mặt lạ lọc", + "Xóa lọc thông minh", + [ + [ + "Đổ màu Solid", + "Đổ màu chuyển sắc", + "Đổ họa tiết", + "Nội dung nhận thức" + ], + "Lớp đổ màu mới", + "Hiệu chỉnh lớp đổ màu" + ], + "Tạo lớp bằng copy", + "Mặt lạ lọc", + "Xóa style của lớp", + "Di chuyển lọc thông minh", + "Xóa lọc thông Minh", + [ + "Liên kết lớp", + "Hủy liên kết lớp" + ], + "Sắp xếp", + [ + "Đưa lên trước", + "Đưa lên trên", + "Đưa về sau", + "Đưa về sau cùng" + ], + [ + "Lớp đã khóa", + "Đổi trạng thái khóa", + null + ], + null + ], + [ + "Tất cả", + "Bỏ chọn", + "Ngược lại", + "Hiệu chỉnh", + "Mở rộng", + "Thu hẹp", + "Độ mờ", + "Di chuyển vùng chọn", + "Chọn vùng màu", + "Khung", + "Chỉnh sửa vùng chọn", + "Làm láng cạnh", + "Sửa theo vùng chọn", + null + ], + [ + "Phóng to", + "Thu nhỏ", + "Hướng dẫn", + "Thước", + "Lưới", + "Gắn", + "Gắn vào", + "Giới hạn tệp tin", + "Lưới điểm ảnh", + "Path", + "Chụp ảnh theo pixel", + [ + "Chia cắt", + null + ], + null + ], + [ + "Lịch sử", + "Lớp", + "Các thuộc tính", + "Nét bút", + "Kí tự", + "Đoạn văn bản", + "Thông tin", + "So sánh lớp", + "Swatch màu", + "Hành động", + "Biểu đồ", + "Điều hướng", + "Công cụ cài đặt sẵn", + null + ], + [ + "Bút lông", + "Cọ sao chép", + "Cắt xén tỷ lệ", + "Tẩy xóa", + "Vòng chọn tròn", + "Lấy mẫu màu", + "Chuyển sắc", + "Di chuyển", + "Văn bản", + "Chọn vùng tự do", + "Chọn vùng nhanh", + "Di chuyển", + "Chọn vùng theo màu", + "Đổ màu", + "Chọn vùng theo nét", + "Vùng chọn vuông", + "Thay đổi hình dạng tự do", + "Phóng to", + "Làm mờ", + "Làm nét", + "Chà mờ", + "Làm sáng", + "Làm tối", + "Làm nhòe", + "Sửa nét bút", + "Sửa bút vẽ", + "Vá ảnh", + "Chọn Path", + "Chọn trực tiếp", + "Bút", + "Vẽ tự do", + "Khung tùy chọn", + "Hình vuông", + "Hình e-líp", + "Hình đa giác", + "Đường thẳng", + "Thước kẻ", + "Chọn vùng nhanh", + "Bút chì", + "Cắt xén tự do", + "Chia cắt", + "Chọn chia cắt", + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "Chụp ảnh", + "Chọn màu sắc", + "Chỉnh sửa viền", + "Kích cỡ Canvas", + "Nhân bản vào tệp tin...", + "Trình chỉnh sửa Gradient", + "Kiểu lớp ảnh", + "Dự án mới", + "Lưu cho web", + "Làm cong", + "Kích thước ảnh", + "Ảnh Vector", + [ + "Trim-Cắt", + null, + null + ], + "Các phím tắt bàn phím", + "Thêm hướng dẫn", + [ + null, + null + ] + ], + [ + "Độ trong đục", + "Hiệu ứng", + "Độ sáng", + [ + "Tương phản", + "Sử dụng sẵn có" + ], + "Kênh", + "Tiếp xúc", + "Bù đắp", + "Điều chỉnh gamma", + "Vùng màu", + "Độ bão hòa màu", + "Nhẹ nhàng", + "Tô màu", + "Phạm vi", + "Rung", + [ + "Kích thước", + "Nội suy", + "Trọng số gần nhất", + "Song tuyến" + ], + "Góc", + "Tròn", + "Độ mềm cứng", + "khoảng cách", + [ + "Chế độ Blend", + "Trộn" + ], + "Cỡ mẫu", + "Viền", + "Kiểu", + [ + "Đảo ngược", + "Tương đối", + "Điểm neo" + ], + "Lòng khoan dung", + "Tiếp giáp", + "Tô màu", + "Sử dụng toàn bộ góc", + "Khoảng cách", + "Lan tỏa", + "Nhiễu", + "Bóng đổ viền", + "Chuyên môn", + "Đường dẫn", + "Độ sâu màu", + "Làm mềm", + "Mode", + "Màu chuyển sắc", + "Tỉ lệ", + "Căn chỉnh với lớp", + "Vị trí", + "Chiều rộng", + "Chiều cao", + "Điểm đến", + "Kiểu", + "Màu tô", + "Màu nền", + "Tùy chỉnh", + "Tên", + "Tạo", + "Định dạng", + "Giữ tỷ lệ khung hình", + [ + "Chất lượng", + "Trang" + ], + "Nhân bản", + "Di chuyển", + "Bộ lọc thông minh", + "Bán kính", + "Giá trị", + "Phân phối", + [ + "Đồng phục", + "Gaussian" + ], + "Đơn sắc", + "Kích thước Ô", + "Họa tiết", + "Mờ tỏ", + "Mạnh", + "Bảo vệ chi tiết", + "Loại màu", + "Họa tiết", + "Jitter", + "Cạnh", + "Nguồn", + "Đích", + "Kênh", + "Mặt nạ", + "Tỉ trọng", + "Căn chỉnh", + [ + "Đường dẫn", + "Hình dạng", + "Pixels", + "Inches", + "Centimet", + "Millimet", + "Phần trăm" + ], + "Hình dạng", + "Số cạnh", + "Sở thích", + [ + "Chiều dài", + "Tỉ lệ", + "Bất kì", + "Loại lưới", + "Phương vị", + "Khoảng cách lưới", + "Đơn vị thước" + ], + "Giảm noise", + "Màu sắc", + "Khoảng cách", + "Khoảng cách", + "Tự động lựa chọn", + "Tìm kiếm", + "Xác định mới", + [ + "Ảnh", + "Màn hình", + "Điện thoại di động", + "Quảng cáo", + "In" + ], + [ + "Tự do", + "Tỷ lệ cố định", + "Kích thước tùy chỉnh" + ], + "Trợ giúp", + [ + "Hình sống động", + "Chỉnh sửa hình dạng trực tiếp", + "Cùng Radii" + ], + "Fuzziness", + [ + "Đa giác", + "Hình sao", + "Xoắn ốc", + "Hình vuông" + ], + [ + "Bán kính góc", + "Bán kính trong" + ] + ], + [ + "Màu", + [ + "Không", + "R. Đỏ cờ", + "Cam", + "Vàng", + "G. Xanh cây", + "B. Xanh tím", + "Tím", + "Xám", + "Trắng", + "Nền trong", + "Đen", + "Xanh lam", + "Đỏ sen", + "Trung tính" + ], + "Toàn bộ", + "Tuyệt đối", + "Giữ gìn độ sáng" + ], + [ + "Thả bóng", + "Bóng bên trong", + "Ánh sáng bên ngoài", + "Sáng bên trong", + "Vát cạnh và chạm nổi", + "Lớp phủ màu", + "Lớp phủ màu chuyển sắc", + "Lớp phủ họa tiết", + "Sa tanh", + "Bo viền", + "Tùy chỉnh kiểu lớp ảnh", + null + ], + [ + "Hình dạng nhọn", + "Tip Dynamics", + "Tiêu tan", + "Động lực màu", + [ + "Kích thước jitter", + "Đường kính tối thiểu", + "Góc jitter", + "Độ tròn jitter", + "Độ tròn tối thiểu" + ], + [ + "Vị trí jitter", + "Đếm", + "Đếm jitter" + ], + [ + "Jitter Màu / nền", + "Sắc tố Jitter", + "Bão hòa jitter", + "Độ sáng jitter" + ], + [ + "Chọn nguồn clone bằng cách giữ Alt (hoặc K) và nhấp vào hình ảnh.", + "Đánh dấu tiền cảnh với màu trắng, nền với màu đen và khu vực không xác định với màu xám.", + "Lớp không thể chỉnh sửa", + "Lớp văn bản phải được rasterized trước", + "Đối tượng thông minh phải được rasterized trước", + "Chọn nhiều lớp", + "Sắp đặt lớp", + "Mở tài liệu trước", + "Đóng cửa sổ hiện tại trước.", + "Chỉ công cụ hiện tại" + ], + [ + "Ghi lại", + "Thiết lập hành động mới", + "Hành động mới" + ], + [ + "Stylus điều khiển độ trong đục", + "Stylus Điều khiển Kích cỡ" + ], + [ + "Bình thường", + "Hòa tan", + "Làm tối", + "Multiply", + "Ghi màu", + "Tuyến tính nóng", + "Màu tối hơn", + "Làm sáng", + "Màn hình", + "Màu Dodge", + "Tuyến tính Dodge", + "Màu sáng hơn", + "Lớp phủ", + "Ánh sáng mềm mại", + "Đèn rất sáng", + "Ánh sáng sinh động", + "Ánh sáng tuyến tính", + "Pin nhẹ", + "Hỗn hợp cứng", + "Sự khác biệt", + "Loại trừ", + "Trừ khử", + "Phân chia", + "Vùng màu", + "Độ bão hòa màu", + "Màu", + "Độ sáng", + "Đi qua" + ] + ], + [ + "Dẫn đầu", + "Theo dõi", + "Đổi đường nét", + [ + "Chuyển đổi thành văn bản", + "Chuyển đổi sang đoạn văn bản" + ] + ], + [ + "Tất cả các lớp", + "Lớp hiện tại", + "Lựa chọn", + "Lớp hiện tại" + ], + [ + "Thay thế", + "Kết hợp", + "Loại trừ", + "Giao nhau", + "Loại trừ", + "Hợp nhất" + ], + [ + [ + "Tuyến tính", + "Xuyên tâm", + "Góc", + "Phản ánh", + "Kim cương", + "Hình nổ tung" + ], + [ + "Mềm hơn", + "Tóm lược" + ], + [ + "Góc ngoài", + "Góc xiên bên trong", + "Chạm nổi", + "Gối chạm khắc", + "Chạm nổi đường viền", + "Chiều rộng đường viền" + ], + [ + "Mịn", + "Chạm cứng", + "Chạm khắc mềm", + "Độ mịn" + ], + [ + "Lên", + "Xuống" + ], + [ + "Nét ngoài", + "Trung tâm", + "Phía trong", + "Từ giữa" + ], + [ + "Bóng đổ", + "Midton", + "Điểm nổi bật" + ], + [ + "Bão hòa", + "Bão hòa" + ], + [ + "Nhỏ", + "Trung bình", + "Lớn" + ], + [ + "Mũ", + "Góc", + "Dấu gạch ngang" + ] + ], + [ + "Chọn đối tượng dưới con trỏ", + "Tùy chọn biến đổi", + "Xem thực tế", + "Vừa với vùng làm việc", + [ + "Căn lề trái", + "Vào giữa theo chiều ngang", + "Căn lề phải", + "Căn chỉnh lên đầu", + "Vào giữa theo chiều dọc", + "Căn lề dưới", + "Khoảng cách bằng nhau" + ] + ], + [ + "Đặt vào", + "Dự án hiện tại", + "Tạo mới", + "Độ phân giải", + "Đã thêm vào dự án hiện tại.", + "Một dự án mới đã được tạo ra.", + "Truy cập vào máy ảnh đã bị từ chối" + ], + [ + "Sự định hướng", + "Bẻ cong", + "Biến dạng ngang", + "Thay đổi dọc", + [ + "Ngang", + "Dọc", + "ngang", + "dọc" + ], + [ + "Không", + "Vòng cung", + "Vòng cung thấp", + "Vòng cung trên", + "Cổng vòm", + "Phồng", + "Vỏ dưới", + "Vỏ trên", + "Cờ", + "Làn sóng", + "Cá", + "Tăng lên", + "Mắt cá", + "Thổi phồng", + "Bóp méo", + "Xoắn", + "Tùy chỉnh" + ], + [ + "Phông chữ", + "không có sẵn", + "Sẽ được hiển thị bằng", + "Có công việc chưa được lưu trong", + "Bạn có thực sự muốn đóng nó?" + ], + [ + "Đổi màu sắc", + "Mặc định: trắng và đen" + ] + ], + [ + "Tải", + "Thêm", + "Di chuyển hướng dẫn", + "Xóa hướng dẫn", + "Thêm hướng dẫn", + "Đang tải", + "Tải VAR0" + ], + [ + "Lọc thư viện ảnh", + [ + [ + "Hóa lỏng", + [ + "Dơ bẩn", + "Tái thiết", + "Làm mịn", + "Xoay tròn", + "Co lại", + "Thổi", + "Đẩy sang trái", + "Đông cứng", + "Làm lỏng ra" + ] + ], + [ + "Hiệu chỉnh ống kính" + ] + ], + "Làm mờ", + [ + "Trung bình cộng", + "Mờ", + "Làm mờ thêm", + "Hộp mờ", + "Mờ Gaussia", + "Làm mờ ống kính", + "Chuyển động mờ", + "Mờ xuyên tâm", + "Nhòe hình dạng", + "Làm mờ thông minh", + "Bề mặt mờ" + ], + "Làm méo", + [ + "Chỗ để", + "Giữ", + "Tọa độ cực", + "Gợn sóng", + "Cắt", + "Hình cầu", + "Làn sóng" + ], + "Độ ồn", + [ + "Thêm độ ồn", + "Tuyệt vọng", + "Bụi và vết trầy xước", + "Giữa đường" + ], + "Pixel", + [ + "Hạt màu", + "Kết tinh", + "Khía cạnh", + "Miếng", + "Gác lửng", + "Khảm", + "Pointillize" + ], + "Kết xuất", + [ + "Đám mây", + "Mây khác biệt", + null + ], + "Làm sắc nét", + [ + "Làm sắc nét", + "Làm sắc cạnh", + "Làm sắc nét hơn", + "Làm sắc nét thông minh", + "Mặt nạ unsharp" + ], + "Cách điệu", + [ + "Khuếch tán", + "Chạm nổi", + "Đùn lên", + "Tìm các cạnh", + null + ], + "Khác", + [ + "Tùy chỉnh", + "Vượt lên cao", + "Tối đa", + "Tối thiểu", + "Bù lại", + "Lặp lại" + ], + [ + "Khu vực không xác định", + "Đặt thành trong suốt", + "Lặp lại các pixel cạnh", + "Quấn quanh", + "Lọc cuối", + "Xem trước" + ] + ], + [ + "Mẫu", + [ + "Bộ lọc phông chữ", + "Từ khóa", + "Ngẫu" + ], + [ + "Với biểu tượng", + "Với ảnh" + ], + [ + "Hình thu nhỏ", + "Danh sách" + ] + ] + ], + [ + [ + "Файл", + "Редакция", + "Изображение", + "Слой", + "Папка", + "Изберете", + "Филтър", + "Изглед", + "Прозорец", + "Език", + "Вход", + "Изход", + "Създай превод", + [ + "Профил", + "Условия за ползване", + "Назад", + "За", + "Съобщаване за грешка", + "Научете" + ], + "Повече", + "Тема", + "Използвайте WebGL", + [ + "Photopea: Разширен редактор на изображения", + "Безплатен онлайн редактор, поддържащ PSD, XCF, Sketch, XD и CDR формати.", + "Създайте ново изображение или отворете съществуващи файлове от вашия компютър. Запазете работата си като PSD (Файл - Запис като PSD) или като JPG / PNG / SVG (Файл - Експортиране като).", + "Предложете нови функции в нашия или . Нашата цел е да създадем <най-напредналия и достъпен фоторедактор>.", + "Спонсорите връзки се отварят в нов прозорец.", + null, + null + ] + ], + [ + "Отвори", + "Публикувай online", + "Запис", + "Запис като PSD", + "Печат", + "Отвори от URL", + "Отвори от компютъра", + "Връзка с Google Drive", + "Експортиране като", + "Експортиране на слоеве", + "Скрипт", + "Отвори и постави", + "Затвори", + "Локално пространство", + null + ], + [ + "Стъпка напред", + "Стъпка назад", + "Изчисти", + "Запълни", + "Трансформация", + "Завъртане", + "Обърнете VAR0", + "Мащабиране VAR0", + "Отмяна / Повторение", + "Перспективно", + [ + "Авто-смес", + null + ], + "Отслаби", + null + ], + "Корекции", + [ + "Яркост / Контраст", + "Нива", + "Криви", + "Експонация", + "Вибрантност на цвета", + "Оттенък / Наситеност", + "Цветови баланс", + "Черно и Бяло", + "Фото Филтър", + "Смесител на канали", + "Търсене на цвят", + "Инвертиране", + "Плакат", + "Праг", + "Карта на градиента", + "Селективен Цвят", + [ + "Автоматичен Тон", + "Автоматичен Контраст", + "Автоматичен Цвят" + ], + "Сменете цвета" + ], + [ + "Изрязване", + "Копиране", + "Поставяне", + "Нов", + "Изтрий", + "Активиране", + "Деактивиране", + "Копиране на сливането", + "Приложи", + "Отново", + "Актуализиране" + ], + [ + "Дублиране на слоя", + "Нов слой за настройка", + "Растерна маска", + "Векторна маска", + "Добави (покажи всички)", + [ + "Добави (скрий всички)", + "Покажи селекцията", + "Скрий селекцията", + "От прозрачност" + ], + [ + "Маска за изрязване", + "Режим на бърза маска" + ], + "Превърни в интелигентен обект", + "Рестиризилане", + "Групирай слоеве", + "Сливане надолу", + "Сливане нагоре", + [ + "Сливане на слоеве", + "Изравнете изображението" + ], + "Нов слой", + "Активиране на растерна маска", + "Деактивиране на растерна маска", + "Активиране на векторна маска", + "Деактивиране на векторна маска", + "Активиране на маска за изрязване", + "Деактивиране на маска за изрязване", + "Нова папка", + "Добави растерна маска", + "Изтрий растерна маска", + "Добави векторна маска", + "Изтрий векторна маска", + "Свързване на растерна маска", + "Изключване на растерна маска", + "Свързване на векторна маска", + "Изключване на векторна маска", + "Активиране ефекти на слоя", + "Деактивиране ефекти на слоя", + "Изтриване на слой", + "Промяна прозрачност на слоя", + "Промяна на смесването", + "Растеризиране стилове на слоя", + "Ред на слоевете", + [ + "Създай Смарт обект", + "Актуализиране на Смарт обект", + "Поставяне на Смарт обект", + "Източници (Интелектен обект)", + null + ], + "Смяна на име", + "Смяна на цвят", + "Промяна на Регулиращ Слой", + "Конвертирай във Форма", + "Активиране Филтърна Маска", + "Деактивиране Филтърна Маска", + "Активиране Смарт Филтри", + "Деактивиране Смарт Филтри", + "Добави Филтър Маска", + "Изтрий Филтър Маска", + "Изчисти Смарт Филтри", + [ + [ + "Попълване с плътен цвят", + "Попълване с градиент", + "Попълване с текстура", + "Базирано на съдържание" + ], + "Нов слой за попълване", + "Промени слой за попълване" + ], + "Слой от копие", + "Филтър Маска", + "Изтрий стил на слой", + "Премести Смарт филтър", + "Изтрий Смарт филтър", + [ + "Свързване на слоеве", + "Откачане на слоеве" + ], + "Подреди", + [ + "Доведи отпред", + "Доведи напред", + "Заведи назад", + "Заведи отзад" + ], + [ + "Слоят е заключен.", + "Заключи/Отключи", + null + ], + null + ], + [ + "Всичко", + "Отмяна на избора", + "Обръщане", + "Промени", + "Разшири", + "Свий", + "Изтъняване", + "Премести селекцията", + "Цветови диапазон", + "Бордер", + "Трансформирай селекцията", + "Преработка на краищата", + "Heal селекция", + null + ], + [ + "Увеличи", + "Отдалечи", + "Водачи", + "Владетели", + "Мрежа", + "Свържи", + "Свържи със", + "Граници на документа", + "Пикселова мрежа", + "Пътища", + "Прилепване към пиксели", + [ + "Oтрез", + "Опции за отрез" + ], + "Покажи" + ], + [ + "История", + "Слоеве", + "Свойства", + "Четки", + "Символ", + "Параграф", + "Информация", + "Състав на слоевете", + "Мостри", + "Операция", + "Хистограма", + "Навигатор", + "Предварителни настройки на инструмента", + null + ], + [ + "Четка", + "Инструмент за клониране", + "Инструмент за изрязване", + "Инструмент за изтриване", + "Избор с елипса", + "Пипета", + "Инструмент за градиент", + "Инструмент ръка", + "Инструмент за писане", + "Избор с ласо", + "Избор с магнетично ласо", + "Инструмент за местене", + "Магическа пръчица", + "Кофа", + "Полигонично Ласо Селектиране", + "Квадратна селекция", + "Свободна Трансформация", + "Приближаване и отдалечаване", + "Замъгляване", + "Острота", + "Замазване", + "Изсветляване", + "Потъмняване", + "Гъба", + "Премахване на петна", + "Излекуване", + "Закърпване", + "Избиране на Пътека", + "Директно Избиране", + "Химикалка", + "Свободна Химикалка", + "Специални Форми", + "Правоъгълник", + "Елипса", + "Параметрични Форми", + "Линия", + "Владетел", + "Бърза селекция", + "Молив", + "Изрязване на перспектива", + "Инструмент за изрязване", + "Инструмент за избор на сектори", + "Смяна на цвета", + "Инструмент за червени очи", + "Избор на обект", + "Гума за фон", + null, + null, + null, + null + ], + [ + "Снимай", + "Цветоизбирач", + "Контурен Едитор", + "Големина на Платното", + "Дупликирай в", + "Градиент редактор", + "Стил на Слоя", + "Нов проект", + "Запази за Уеб-а", + "Деформиране", + "Големина на Изображението", + "Векторизиране на Растерното Изображение", + [ + "Подрязване", + "Изрязване", + "Разкрий всички" + ], + "Клавишни Преки Пътища", + "Добави Ръководства", + [ + "Изчистване на водачите", + "Ръководства от слой" + ] + ], + [ + "Прозрачност", + "Ефекти", + "Светлост", + [ + "Контраст", + "Използвайте съвместимост" + ], + "Канал", + "Експозиция", + "Изместване", + "Корекция на Гамата", + "Оттенък", + "Наситеност", + "Светлинност", + "Оцветяване", + "Диапазон", + "Цветова Живост", + [ + "Размер", + "Интерполация", + "Най-близкия съсед", + "Билинеарна" + ], + "Ъгъл", + "Закръгленост", + "Твърдост", + "Интервал между", + [ + "Начин на Смесване", + "Смес" + ], + "Размер на Извадката", + "Контур", + "Стил", + [ + "Наобратно", + "Относителен", + "Котва" + ], + "Толерантност", + "Съседен", + "Запълване", + "Използвай глобалния ъгъл", + "Дистанция", + "Разпространи", + "Шум", + "Нокайтурай Падащата Сянка", + "Техника", + "Посока", + "Дълбочина", + "Омекоти", + "Метод", + "Градиент", + "Мащаб", + "Подравнете със слой", + "Позиция", + "Широчина", + "Височина", + "Дестинация", + "Тип", + "Преден План", + "Заден План", + "Персонализиран", + "Име", + "Създай", + "Формат", + "Запази Съотношението", + [ + "Качество", + "Страници" + ], + "Дублирай", + "Премести", + "Интелигенти Филтъри", + "Радиус", + "Количество", + "Разпределение", + [ + "Еднороден", + "Гауски" + ], + "Едноцветен", + "Размер на Клетката", + "Шарка", + "Менструация", + "Сила", + "Запази Детайлите", + "Тип Запълване", + "Текстура", + "Треперене", + "Ръб", + "Източник", + "Мишена", + "Канали", + "Маска", + "Плътност", + "Подравнен", + [ + "Пътека", + "Форма", + "Пиксели", + "Инча", + "Сантиметри", + "Милиметри", + "Процент" + ], + "Форми", + "Страни", + "Преференции", + [ + "Дължина", + "Съотношение", + "Всеки", + "Тип мрежа", + "Изометрични", + "Размер на мрежа", + "Единици на линийката" + ], + "Намали Шума", + "Цветове", + "Разстояния", + "Рейтинг", + "Авто-Избиране", + "Намери", + "Дефинирай Нов", + [ + "Снимка", + "Экран", + "Мобилно", + "Реклами", + "Принтиране" + ], + [ + "Освободен режим", + "Фиксирано Съотношение", + "Фиксирана Големина" + ], + "Помощ", + [ + "Живи Форми", + "Промени Живата Форма", + "Същите Радиуси" + ], + "Мъгла", + [ + "Многоъгълник", + "Звезда", + "Спирала", + "Квадрат" + ], + [ + "Радиус на ъглите", + "Вътрешен радиус" + ] + ], + [ + "Цвят", + [ + "Нищо", + "Червено", + "Оранжево", + "Жълто", + "Зелено", + "Синьо", + "Лилаво", + "Сиво", + "Бяло", + "Прозрачно", + "Черно", + "Циан", + "Маджента", + "неутрален" + ], + "Общо", + "Абсолютно", + "Зберігати свічення" + ], + [ + "Падаща Сянка", + "Вътрешна Сянка", + "Външна Светлина", + "Вътрешна Светлина", + "Наклон И Релеф", + "Цветова Настилка", + "Градиентова Настилка", + "Шаркова Настилка", + "Сатина", + "Щрих", + "Опции за Смесване", + "Изберете пиксели" + ], + [ + "Форма на Върха", + "Връхови Динамики", + "Разпилей", + "Цветовни Динамики", + [ + "Големина на Трептенето", + "Минимален Диаметър", + "Ъгъл на Треперенето", + "Кръглост на Трептенето", + "Минимална Кръглост" + ], + [ + "Позиционно Трептене", + "Брой", + "Брой на Трептенията" + ], + [ + "Трептене на Предния/Задния-план", + "Оттенък на Трептенето", + "Насищане на Трептенето", + "Сетлинност на Трептенето" + ], + [ + "Задръжте АЛТ (или К) бутона и цъкнете върху изображението за да изберете източника на клониране", + "Отбележи Предния план с Бяло, Задния фон с Черно и незнайната територия със Сиво", + "Слоят неможе да бъде променян.", + "Текстовият Слой трябва да бъде растеризиран преди това", + "Интелигентият Обект трябва да бъде растеризиран преди това", + "Избери множество слоеве", + "Изправяне на слой", + "Първо отворете документ.", + "Първо затворете текущия прозорец.", + "Само текущ инструмент" + ], + [ + "Запис", + "Нов набор операции", + "Нова операция" + ], + [ + "Стилус налягане контролира непрозрачност", + "Контрол на налягането" + ], + [ + "Normal", + "Dissolve", + "Darken", + "Multiply", + "Color Burn", + "Linear Burn", + "Darker Color", + "Lighten", + "Screen", + "Color Dodge", + "Linear Dodge", + "Lighter Color", + "Overlay", + "Soft Light", + "Hard Light", + "Vivid Light", + "Linear Light", + "Pin Light", + "Hard Mix", + "Difference", + "Exclusion", + "Subtract", + "Divide", + "Оттенък", + "Наситеност", + "Цвят", + "Свічення", + "Pass Through" + ] + ], + [ + "Водещ", + "Проследяване", + "Базовата линия", + [ + "Преобразуване в текст на точка", + "Преобразуване в текст на абзаца" + ] + ], + [ + "Всички Слоеве", + "Текущ Слой", + "Избор", + "Текущ и Надоло" + ], + [ + "Замени", + "Обедини", + "Изваждане", + "Пресичане", + "Изключване", + "Сливане" + ], + [ + [ + "Линеен", + "Радиален", + "Ъгъл", + "Отразено", + "Диамант", + "Изблик на Формата" + ], + [ + "По-меко", + "Прецизно" + ], + [ + "Външен Наклон", + "Вътрешен Наклон", + "Релеф", + "Възглавнично Релефиране", + "Контурен Релеф", + "Ширина на контура" + ], + [ + "Гладко", + "Длето (твърдо)", + "Длето (меко)", + "Гладкост" + ], + [ + "Нагоре", + "Надолу" + ], + [ + "Отвън", + "Центрирано", + "Отвътре", + "От центъра" + ], + [ + "Сенки", + "Средни тонове", + "Осветени части" + ], + [ + "Десатурирай (черно-бяло)", + "Сатурирай (цвят)" + ], + [ + "Малко", + "Средно", + "Голямо" + ], + [ + "Краища", + "Ъгли", + "тирета" + ] + ], + [ + "Избери обекта под курсора", + "Контроли за транформация", + "Пиксел към пиксел", + "Прилягане на площта", + [ + "Подравнете левите ръбове", + "Центрирайте хоризонтално", + "Подравнете десните ръбове", + "Подравнете горните ръбове", + "Центрирайте вертикално", + "Подравнете долните ръбове", + "Равни пропуски" + ] + ], + [ + "Поставете в", + "Текущ проект", + "Нов Проект", + "Резолюция", + "Добавен в текущия проект", + "Създаден е нов проект", + "Достъпът до камерата беше отказан." + ], + [ + "Ориентация", + "ভাল আছি", + "Хоризонтално изкривяване", + "Вертикално изкривяване", + [ + "Хоризонтален", + "Вертикален", + "хоризонтално", + "вертикално" + ], + [ + "Няма", + "Дъга", + "Долна дъга", + "Горна дъга", + "Арка", + "Издутина", + "По-ниска обвивка", + "Горна част на обвивката", + "Флаг", + "Вълна", + "Риба", + "Покачване", + "Рибено око", + "Издуват", + "Стиснете", + "извъртане", + null + ], + [ + "Шрифтът", + "не е налице", + null, + null, + null + ], + [ + null, + null + ] + ], + [ + null, + "добавено", + null, + null, + null, + null, + null + ], + [ + "Филтър галерия", + [ + [ + null, + [ + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + ], + [ + null + ] + ], + null, + [ + null, + null, + null, + null, + null, + "Замъгляване на обектива", + null, + null, + null, + null, + null + ], + null, + [ + null, + null, + null, + null, + null, + null, + null + ], + null, + [ + null, + null, + null, + null + ], + null, + [ + null, + null, + null, + null, + null, + null, + null + ], + null, + [ + null, + null, + null + ], + null, + [ + null, + null, + null, + null, + null + ], + null, + [ + null, + null, + null, + null, + null + ], + "Друго", + [ + null, + null, + null, + "Минимум", + null, + null + ], + [ + null, + null, + "Повторение на пикселите на ръбовете", + "Обгърне", + "Предишен филтър", + "Преглед" + ] + ], + [ + "Шаблони", + [ + "Филтър за шрифтове", + "Ключови думи", + "По случайност" + ], + [ + "Със Символи", + "Със снимка" + ], + [ + "Миниатюри", + "Списък" + ] + ] + ], + [ + [ + "Датотека", + "Измени", + "Слика", + "Слој", + "Фолдер", + "Изабери", + "Филтар", + "Поглед", + "Прозор", + "Језик", + "Улогуј се", + "Излогуј се", + "Направи превод", + [ + "Налог", + "Услови коришћења", + "Назад", + "О програму", + "Пријави грешку", + "Научи" + ], + "Више", + "Тема", + "Користи WebGL", + [ + "Photopea: напредна обрада слика", + "Бесплатна онлајн обрада слика која подржава PSD, XCF, Sketch XD и CDR формате.", + "Направи нову слику или отвори постојећу датотеку са свог рачуанра. Сачувај рад као PSD (Датотека - Сачувај као PSD) или као JPG / PNG / SVG (Датотека - Извези као))", + "Предложи нове функционалности на нашим или страницама. Наш циљ је стварање <најнапреднијег и најприступачније платформе за обраду слика>.", + "Линкови спонзора се отварају у новом прозору.", + "Ова функција није доступна.", + null + ] + ], + [ + "Отвори", + "Објави онлајн", + "Сними", + "Сними као PSD", + "Штампај", + "Отвори са URL", + "Отвори са рачунара", + "Повежи са Google Drive", + "Извези као", + "Извези слојеве", + "Скрипта", + "Отвори & Стави", + "Затвори", + "Локално складиште", + null + ], + [ + "Корак напред", + "Корак назад", + "Бриши", + "Попуни", + "Трансформиши", + "Ротирај", + "Обрни VAR0", + "Скалирање VAR0", + "Корак назад / Корак напред", + "Перспектива", + [ + "Аутоматско уклапање слојева", + "Аутоматски поравнај" + ], + "Избледи", + null + ], + "Измене", + [ + "Осветљеност/Контраст", + "Нивои", + "Криве", + "Експозиција", + "Живост", + "Нијанса/Засићеност", + "Баланс боја", + "Црно & бело", + "Фото филтар", + "Канални миксер", + "Претраживач боје", + "Обрни", + "Постеризуј", + "Праг", + "Мапа градијента", + "Изабрана боја", + [ + "Аутоматско тонирање", + "Аутоматски контраст", + "Аутоматска боја" + ], + "Замени боју" + ], + [ + "Исеци", + "Копирај", + "Налепи", + "Ново", + "Избриши", + "Омогући", + "Онемогући", + "Копирај спојено", + "Примени", + "Понови", + "Ажурирај" + ], + [ + "Дуплирај слој", + "Нови корективни слој", + "Растерска маска", + "Векторска маска", + "Додај (Прикажи све)", + [ + "Додај (Сакриј све)", + "Прикажи обележено", + "Сакриј обележено", + "Од непровидности" + ], + [ + "Маска исечка", + "Брзо маскирање" + ], + "Промени у Паметни објекат", + "Растеризуј", + "Групиши слојеве", + "Слепи наниже", + "Слепи навише", + [ + "Слепи слојеве", + "Сравни слику" + ], + "Нови слој", + "Омогући Растерску маску", + "Онемогући Растерску маску", + "Омогући Векторску маску", + "Онемогући Векторску маску", + "Омогући Маску исечка", + "Онемогући Маску исечка", + "Нови директоријум", + "Додај Растерску маску", + "Избриши Растерску маску", + "Додај Векторску маску", + "Избриши Векторску маску", + "Повежи Растерску маску", + "Откачи Растерску маску", + "Повежи Векторску маску", + "Откачи Векторску маску", + "Омогући Ефекте слоја", + "Онемогући Ефекте слоја", + "Избриши Слој", + "Промена прозирности слоја", + "Промена мешања", + "Растеризуј стил слоја", + "Редослед слојева", + [ + "Креирање Паметног објекта", + "Ажурирање Паметног објекта", + "Постављање Паметног објекта", + "Извор (Паметни објекат)", + "Мод слојевања" + ], + "Промена имена", + "Промена боје", + "Измени Корективни слој", + "Претвори у Облик", + "Омогући Маску филтра", + "Онемогући Маску филтра", + "Омогући Паметне филтере", + "Онемогући Паметне филтере", + "Додај Маску филтера", + "Избриши Маску Филтера", + "Бриши Паметне Филтере", + [ + [ + "Испуна бојом", + "Испуна градијентом", + "Испуна узорком", + "Свестан Садржаја" + ], + "Нови слој испуне", + "Измени слој испуне" + ], + "Слој преко копије", + "Филтер маска", + "Избриши стил слоја", + "Помери паметни филтер", + "Избриши паметни филтер", + [ + "Повежи слојеве", + "Развежи слој" + ], + "Уреди", + [ + "Постави у први план", + "Приближи унапред", + "Удаљи уназад", + "Пошаљи назад" + ], + [ + "Овај слој је закључан.", + "Закључај промену", + null + ], + null + ], + [ + "Све", + "Уклони обележено", + "Обрнуто", + "Промени", + "Прошири", + "Смањење", + "Перо", + "Помери обележно", + "Распон боја", + "Ивица", + "Трансформиши одабрано", + "Дотерај ивицу", + "Поправи одабрано", + null + ], + [ + "Приближи", + "Удаљи", + "Вођице", + "Лењири", + "Мрежа", + "Лепљење", + "Залепи на", + "Ивице слике", + "Мрежа пиксела", + "Путање", + "Залепи за пикселе", + [ + "Исечци", + "Опције исечака" + ], + "Приказивање" + ], + [ + "Историја", + "Слојеви", + "Подешавања", + "Четка", + "Знак", + "Пасус", + "Информације", + "Композиције слојева", + "Палета боја", + "Акције", + "Хистограм", + "Навигатор", + "Подешавање алата", + null + ], + [ + "Алат Четка", + "Алат Клон", + "Алат Секач", + "Алат Гумица", + "Одабир елипсе", + "Алат Одабира боје", + "Алат Градијент", + "Алат Рука", + "Алат Куцање", + "Ласо одабир", + "Магнетни ласо одабир", + "Алат Померање", + "Чаробни штапић", + "Алат Канта боје", + "Полигонални ласо одабир", + "Правоугаони одабир", + "Слободна трансформација", + "Алат Zoom", + "Алат Замагљивања", + "Алат Изоштравања", + "Алат Размазивања", + "Алат Избељивања", + "Алат Затамњивања", + "Алат Сунђер", + "Алат Четка за лечење мрље", + "Алат Четка за лечење", + "Алат Закрпа", + "Одабир путања", + "Директни одабир", + "Оловка", + "Слободна оловка", + "Прилагођен облик", + "Правоугаоник", + "Елипса", + "Параметарски облик", + "Линија", + "Лењир", + "Брзи одабир", + "Алат Оловка", + "Сечење перспективе", + "Алат Исечак", + "Алат Одабира исечка", + "Замена боје", + "Алатка Црвене очи", + "Одабир објекта", + "Брисање позадине", + "ja sam", + "Ротирај преглед", + null, + null + ], + [ + "Снимање фотографије", + "Бирач боје", + "Уређивање контура", + "Величина платна", + "Дуплирај на...", + "Уређивање градијента", + "Стил слоја", + "Нови пројекат", + "Сачувати за веб", + "Искривити", + "Величина слике", + "Претворити у векторску графику", + [ + "Исецање", + "Сечење", + "Откриј све" + ], + "Скраћенице на тастатури", + "Додати вођице", + [ + "Избрисати вођице", + "Вођице са слоја" + ] + ], + [ + "Непрозирност", + "Ефекти", + "Осветљеност", + [ + "Контраст", + "Коришћење старе верзије" + ], + "Канал", + "Експозиција", + "Офсет", + "Гама корекција", + "Нијанса", + "Засићеност", + "Светлина", + "Обојити", + "Опсег", + "Живост боја", + [ + "Величина", + "Интерполација", + "Најближи сусед", + "Дволинијски" + ], + "Угао", + "Закривљеност", + "Тврдоћа", + "Проред", + [ + "Мешања", + "Мешај ако" + ], + "Величина узорка", + "Контура", + "Стил", + [ + "Обрнути", + "Релативно", + "Тежиште" + ], + "Толеранција", + "Непрекидно", + "Испуна", + "Користити глобални угао", + "Удаљеност", + "Ширење", + "Шум", + "Искључити сенку", + "Техника", + "Правац", + "Дубина", + "Омекшање", + "Начин", + "Градијент", + "Скалирање", + "Поравнати са слојем", + "Позиција", + "Ширина", + "Висина", + "Дестинација", + "Тип", + "Предњи план", + "Позадина", + "Изабрана", + "Назив", + "Направи", + "Формат", + "Задржати однос страна", + [ + "Квалитет", + "Стране" + ], + "Дуплирати", + "Померати", + "Паметни филтри", + "Полупречник", + "Количина", + "Дистрибуција", + [ + "Уједначити", + "Гаусов" + ], + "Монохроматски", + "Величина ћелије", + "Узорак", + "Ток", + "Јачина", + "Заштити детаљ", + "Врста испуне", + "Текстура", + "Џитер", + "Ивица", + "Порекло", + "Мета", + "Канали", + "Маска", + "Густина", + "Поравнато", + [ + "Путања", + "Облик", + "Пиксели", + "Инче", + "Центиметри", + "Милиметри", + "Проценат" + ], + "Облици", + "Стране", + "Подешавања", + [ + "Дужина", + "Однос", + "Било који", + "Тип мреже", + "Изометријски", + "Процеп мреже", + "Јединице лењира" + ], + "Умањи шум", + "Боје", + "Удаљености", + "Стопа", + "Ауто-одабир", + "Нађи", + "Дефиниши ново", + [ + "Фотографија", + "Екран", + "Мобилни", + "Рекламе", + "Штампа" + ], + [ + "Бесплатно", + "Фиксирани однос", + "Фиксирана величина" + ], + "Помоћ", + [ + "Живи облик", + "Уреди живи облик", + "Исти полупречници" + ], + "Мутност", + [ + "Полигон", + "Звезда", + "Спирала", + "Квадрат" + ], + [ + "Угао полупречника", + "Унтрашњи полупречник" + ] + ], + [ + "Боја", + [ + "Празно", + "Црвена", + "Наранџаста", + "Жута", + "Зелена", + "Плава", + "Љубичаста", + "Сива", + "Бела", + "Провидна", + "Црна", + "Цијан", + "Мађента", + "Неутрална" + ], + "Укупно", + "Апсолутни", + "Очувај осветљеност" + ], + [ + "Додај сенку", + "Унутрашња сенка", + "Спољашњи одсјај", + "Унутрашњи одсјај", + "Косина и Клесање", + "Прекривање бојом", + "Прекривање градијентом", + "Прекривање узорком", + "Сатен", + "Ивица", + "Опције мешања", + "Изабери пиксел" + ], + [ + "Предложи облик", + "Предложи динамике", + "Распршити", + "Динамике боје", + [ + "Насумична величина", + "Минимални пречник", + "Насумични угао", + "Насумична заобљеност", + "Минимална заобљеност" + ], + [ + "Насумична позиција", + "Број", + "Насумични број" + ], + [ + "Насумични предњи план/позадина", + "Насумична нијанса", + "Насумична засићеност", + "Насумична сјајност" + ], + [ + "Изаберите извор клонирања држањем Аlt (или K) и кликом на слику.", + "Обележите предњи план с белом, позадину са црном, а непознате делове са сивом бојом.", + "Слој није могуће изменити.", + "Слој текста најпре мора бити растеризован", + "Паметни објекат мора најпре бити растеризован", + "Обележи више слојева", + "Исправи слој", + "Најпре отвори документ.", + "Најпре затворите тренутни прозор.", + "Само за тренутни алат" + ], + [ + "Сними", + "Група нових акција", + "Нова акција" + ], + [ + "Притисак стајлуса контролише непровидност", + "Притисак стајлуса контролише величину" + ], + [ + "Нормални", + "Отопљени", + "Затамњени", + "Вишеструки", + "Тамњење боје", + "Линеарно затамњење", + "Затамни боју", + "Посветли", + "Екран", + "Посветљење боје", + "Линеарно посветљење", + "Посветли боју", + "Прекривање", + "Меко светло", + "Оштро светло", + "Живописно светло", + "Линеарно светло", + "Везивно светло", + "Јаки микс", + "Разлика", + "Изузеће", + "Одузимање", + "Дељење", + "Нијанса", + "Засићеност", + "Боја", + "Блиставост", + "Пролазак" + ] + ], + [ + "Размак редова", + "Размак између слова", + "Промена основне линије", + [ + "Промени у тачку текста", + "Промени у текст у пасусу" + ] + ], + [ + "Сви слојеви", + "Тренутни слој", + "Избор", + "Тренутни & Испод" + ], + [ + "Замени", + "Споји", + "Одузети", + "Пресећи", + "Искључити", + "Спојити" + ], + [ + [ + "Линеарно", + "Радијално", + "Угао", + "Рефлексија", + "Дијамант", + "Прасак облика" + ], + [ + "Смекшај", + "Прецизније" + ], + [ + "Спољна косина", + "Унутрашња косина", + "Клесање", + "Мекано клесање", + "Клесање линије", + "Дебљина ивице" + ], + [ + "Мекано", + "Јако длето", + "Меко длето", + "Мекоћа" + ], + [ + "Горе", + "Доле" + ], + [ + "Споља", + "Центар", + "Унутра", + "Из центра" + ], + [ + "Сенке", + "Средњи тонови", + "Светли тонови" + ], + [ + "Уклонити засићење", + "Засити" + ], + [ + "Мали", + "Средњи", + "Велики" + ], + [ + "Велика слова", + "Углови", + "Цртице" + ] + ], + [ + "Изаберите објекат испод курсора", + "Контроле трансформације", + "Пиксел за пиксел", + "Попуни област", + [ + "Поравнај леве ивице", + "Центрирај хоризонтално", + "Поравнај десне ивице", + "Поравнај горње ивице", + "Центрирај вертикално", + "Поравнај доње ивице", + "Једнаки прореди" + ] + ], + [ + "Постави на", + "Тренутни пројекат", + "Нови пројекат", + "Резолуција", + "Додато у тренутни пројекат.", + "Нови пројекат је креиран.", + "Приступ камери је забрањен." + ], + [ + "Оријентација", + "Савити", + "Хоризонтална дисторзија", + "Вертикална дисторзија", + [ + "Хоризонтала", + "Вертикала", + "Хоризонтално", + "Вертикално" + ], + [ + "Ништа", + "Лу̑к", + "Доњи лу̑к", + "Горњи лу̑к", + "Свод", + "Испупчење", + "Доњи омотач", + "Горњи омотач", + "Застава", + "Талас", + "Риба", + "Раст", + "Рибље око", + "Надувати", + "Стиснути", + "Увити", + "Изборни" + ], + [ + "Фонт", + "није доступан", + "Биће рендерован коришћењем", + "Постоји несачувани рад", + "Да ли заиста желиш да затвориш?" + ], + [ + "Замени боје", + "Предефинисано: бело и црно" + ] + ], + [ + "учитан", + "додат", + "Помери вођицу", + "Обриши вођицу", + "Додај вођицу", + "Учитавање", + "Учитај VAR0" + ], + [ + "Галерија филтра", + [ + [ + "Учини течним", + [ + "Замуљај", + "Реконструиши", + "Смекшај", + "Ковитлај", + "Смањи", + "Повећај", + "Гурни лево", + "Замрзни", + "Одмрзни" + ] + ], + [ + "Корекција сочива" + ] + ], + "Замагли", + [ + "Просек", + "Замаглити", + "Замагли више", + "Ограничено замагљење", + "Гаусово замагљење", + "Замагљење сочива", + "Замагљење покрета", + "Замагљење кружно", + "Замагљење облика", + "Паметно замагљење", + "Замагљење површине" + ], + "Дисторзија", + [ + "Помери", + "Уштини", + "Поларне координате", + "Заталасај", + "Смакни", + "Начини сферичним", + "Талас" + ], + "Шум", + [ + "Додај шум", + "Уклони тачкице", + "Прашина & Огреботине", + "Тежишна линија" + ], + "Пикселизуј", + [ + "Полутон боје", + "Кристализуј", + "Брушење", + "Фрагмент", + "Мецотинта", + "Мозаик", + "Истачкај" + ], + "Рендеруј", + [ + "Облаци", + "Облаци разлике", + "Одсјај сочива" + ], + "Изоштри", + [ + "Изоштри", + "Изоштри ивице", + "Изоштри више", + "Паметно изоштравање", + "Маска против оштрења" + ], + "Стилизуј", + [ + "Дифузуј", + "Клесање", + "Извуци", + "Нађи ивице", + "Уљана фарба" + ], + "Остало", + [ + "Изборни", + "Високи пролаз", + "Максимум", + "Минимум", + "Офсет", + "Понови" + ], + [ + "Непозната површина", + "Постави на провидно", + "Понови ивичне пикселе", + "Обмотај", + "Последњи филтар", + "Преглед" + ] + ], + [ + "Шаблони", + [ + "Филтер фонтова", + "Кључне речи", + "Насумично измешај" + ], + [ + "Са симболима", + "Са фотографијом" + ], + [ + "Минијатуре", + "Списак" + ] + ] + ], + [ + [ + null, + "Redakto", + "Foto", + "Shtresa", + "Dosja", + "Përzgjidh", + "Filtrues", + "Pamja", + "Dritarja", + "Gjuha", + "Kyçu", + "Dil", + "Krijo përkthim", + [ + "Llogaria", + "Kushtet e Shërbimit", + "Prapa", + null, + null, + null + ], + "Më shumë", + "Motivi", + "Perdor WebGL", + [ + null, + null, + null, + null, + null, + null, + null + ] + ], + [ + "Hape", + "Boto në internet", + "Ruaje", + "Ruaje si PSD", + "Shtype", + "Hape nga URL", + "Hape nga kompjuteri", + "Lidhu me Google Drive", + "Eksporto Si", + "Eksporto Shtresat", + "Skript", + "Hap & Vendos", + "Mbyll", + null, + null + ], + [ + "Ec para", + "Ec prapa", + "Pastro", + "Mbush", + "Transformo", + "Rrotullo", + null, + null, + "Ç'bëje / Ribëje", + "Perspektive", + [ + null, + null + ], + "Zhduket", + null + ], + "Përshtatjet", + [ + "Shkëlqimi/Kontrasti", + "Nivelet", + "Lakoret", + "Ekspozimi", + "Dinamika", + "Toni/Përzierja", + "Ekuilibri i Ngjyrave", + "Bardh & Zi", + "Foto Filtruesi", + "Përzierës Ngjyrash", + "Kërkues Ngjyrash", + "Anasjelltas", + "Posterizo", + "Pragu", + "Harta Gradient", + "Ngjyrë e Përzgjedhur", + [ + "Auto Tone", + "Auto Kontrast", + "Auto Ngjyre" + ], + "Zevendeso Ngjyren" + ], + [ + "Preje", + "Kopjo", + "Hidhe", + "E Re", + "Grise", + "Mundëso", + "Pamundëso", + "Kopjo së bashku", + "Vendos", + null, + null + ], + [ + "Dyfisho shtresën", + "Shtresë e Re e Përshtatjes", + "Maska Raster", + "Maska e Vektorit", + "Shto (Shfaq të gjitha)", + [ + "Shto (Fshih të gjitha)", + null, + null, + null + ], + [ + "Maska Prerëse", + null + ], + "E konverto në Objekt të Mençur", + "Rasterizo", + "Grupo Shtresat", + "Bashko Poshtë", + "Bashko Sipër", + [ + "Bashko Shtresat", + null + ], + "Shtresë e Re", + "Mundëso Maskën Raster", + "Pamundëso Maskën Raster", + "Mundëso Maskën Vektoriale", + "Pamundëso Maskën Vektoriale", + "Mundëso Maskën e Prerjes", + "Pamundëso Maskën e Prerjes", + "Dosje e Re", + "Shto Maskë Raster", + "Grise Maskën Raster", + "Shto Maskë Vektoriale", + "Grise Maskën Vektoriale", + "Lidhe Maskën Raster", + "Ç'lidhe Maskën Raster", + "Lidhe Maskën Vektoriale", + "Ç'lidhe Maskën Vektoriale", + "Mundëso Efektet e Shtresës", + "Pamundëso Efektet e Shtresës", + "Grise Shtresën", + "Ndrysho Tejdukshmërinë e Shtresës", + "Ndryshimi i Përzierjes", + "Stili i Shtresës së Rasterizimit", + "Radhitja e Shtresave", + [ + "Krijimi i Objektit të Mençur", + "Përditësimi i Objektit të Mençur", + "Vendosja e Objektit të Mençur", + null, + null + ], + "Ndryshimi i Emrit", + "Ndryshimi i Ngjyrës", + "Redakto Shtresën e Përshtatjes", + "E konverto në Formë", + "Mundëso Maskë Filtrimi", + "Pamundëso Maskë Filtrimi", + "Mundëso Filtruesit e Mençur", + "Pamundëso Filtruesit e Mençur", + "Shto Maskë Filtruese", + "Grise Maskën Filtruese", + "Pastro Filtruesit e Mençur", + [ + [ + "Mbushje me Ngjyrë të Pastër", + "Mbushje Gradient", + "Mbushje me Model", + null + ], + "Shtresë e Re Mbushjeje", + "Ndrysho Shtresën Mbushëse" + ], + "Shtresë përmes Kopjimit", + "Maska Filtruese", + "Grise Stilin e Shtresës", + "Zhvendose Filtruesin e Mençur", + "Grise Filtruesin e Mençur", + [ + "Lidh Shtresat", + "Clidh Shtresat" + ], + "Rendit", + [ + "Sill ne Fillim", + "Sill Perpara", + "Co Mbrapa", + "Co ne Fund" + ], + [ + "Shtresa eshte e Kycur.", + "Kyc Ndryshimin", + null + ], + null + ], + [ + "Të Gjitha", + "Ç'selekto", + "Anasjelltas", + "Ndrysho", + "Zgjero", + "Zvogëlim", + "Pendë", + "Zhvendos Përzgjedhjen", + "Gama e Ngjyrave", + "Kufiri", + "Transformo Selektimin", + "Rafino Qoshet", + "Seleksioni i Sherimit", + null + ], + [ + "Zmadho", + "Zvoglo", + "Udhëzuesi", + "Rregullat", + "Rrjeta", + "Kapje", + "Kapja Tek", + "Kufizimet e dokumenteve", + "Rrjeti i Pikselëve", + "Rrugët", + null, + [ + null, + null + ], + null + ], + [ + "Historia", + "Shtresat", + "Vetitë", + "Brusha", + "arabic", + "Paragrafi", + "Informacion", + "Kompozime Shtresash", + "Galeria e Ngjyrave", + "Veprime", + "Histogram", + null, + null, + null + ], + [ + "Brusha", + "Klonuesi", + "Prerësi", + "Grisësi", + "Përzgjidh Elipsin", + "Përzgjedhje ngjyrash", + "Mjeti Kursimit", + "Dora", + "Mjeti Shkrimit", + "Përzgjidh Litarin", + "Përzgjedhje me Laso Magnetike", + "Lëvizësi", + "Muri Magjik", + "Kova e Ngjyrave", + "Përzgjedhësi Poligonal", + "Përzgjedhësi Katrorë", + "Transformimi Lirë", + "Zmadhuesi", + "Paqartësuesi", + "Theksuesi", + "Ndotësi", + "Terruesi", + "Djegësi", + "Sfungjeri", + "Furçe riparuese në formë pike", + "Furçe Riparuese", + "Bandazhuesi", + "Përzgjidh Rrugën", + "Përzgjidhja e Drejtpërdrejtë", + "Lapsi", + "Laps i Lirë", + "Formë Personale", + "Drejtkëndësh", + "Elipsë", + "Formë Parametrale", + "Vijë", + "Vizorja", + "Përzgjedhje e Shpejtë", + "Stilolapsi", + "Kropo ne Perspektive", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "Bëj Foto", + "Përzgjedhës Ngjyrash", + "Redaktuesi Konturit", + "Madhësia kanavacë", + "Dyfishoje në ...", + "Redaktori Rrjedhës Ngjyrës", + "Stili i Shtresës", + "Projekti Ri", + "Ruaje për ueb", + "Deformo", + "Madhësia fotos", + "Bitmap vektorizimi", + [ + "Zvogëlim", + null, + null + ], + "Kombinimet e Tastieres", + null, + [ + null, + null + ] + ], + [ + "Mbushja", + "Efektet", + "Ndriçimi", + [ + "Kontrast", + null + ], + "Kanali", + "Zbulimi", + "Menjanimi", + "Gama Korrigjim", + "Nuanca", + "Ngopja", + "Ndriçimi", + "Ngjyrimi", + "Domeni", + "Gjallëria", + [ + "Madhësia", + null, + null, + null + ], + "Këndi", + "Rrumbullak", + "Fortësia", + "Hapësira", + [ + "Mënyra Përzierjes", + null + ], + "Madhësia Mostrës", + "Numëruesi", + "Stili", + [ + "E Kundërta", + null, + null + ], + "Toleranca", + "Vazhdues", + "Mbush", + "Shfrytëzo kënd të përgjithshëm", + "Largësia", + "Përhap", + "Zhurmimi", + "Maskimi i hijes", + "Teknika", + "Drejtimi", + "Thellësia", + "Zbute", + "Mënyra", + "Rrjedha Ngjyrës", + "Shkalla", + "E nivelo me fletën", + "Pozita", + "Gjerësia", + "Lartësia", + "Destinacioni", + "Lloji", + "Paravija", + "Prapavija", + "Përzgjedhur", + "Emri", + "Krijo", + "Formati", + "Ruaje raportin e anëve", + [ + "Kualiteti", + null + ], + "Dyfisho", + "Lëvize", + "Filtruesit e Mençur", + "Radius", + "Sasia", + "Shpërndarja", + [ + "Njësimi", + "Gausian" + ], + "Monokromatik", + "Madhësia Qelisë", + "Mostra", + "Rrjedha", + "Forca", + "Mbrojtje e Detajuar", + "Lloji Mbushjes", + "Teksturë", + "Luhatje", + "Qoshja", + "Burimi", + "Objektivi", + "Kanalet", + "Maska", + "Dendësia", + "Rradhitur", + [ + "Rruga", + "Forma", + "Piksel", + "Inçi", + "Centimetri", + "Milimetri", + "Përqind" + ], + "Format", + "Anët", + "Parapëlqimet", + [ + "Gjatësia", + "Raporti", + "Cdo", + null, + null, + null, + null + ], + "Zvogëlo Zhurmën", + "Ngjyrat", + "Largësitë", + "Sasia", + "Selekto Automatikisht", + "Gjej", + "Krijo te re", + [ + "Foto", + "Ekrani", + "Celular", + "Reklama", + null + ], + [ + "Liro", + "Raport Fiks", + "Permase Fikse" + ], + "Ndihme", + [ + "Figura Live", + "Edito Figuren Live", + "Rrezet e Njejta" + ], + null, + [ + null, + null, + null, + "Katror" + ], + [ + null, + null + ] + ], + [ + "Ngjyra", + [ + "Asnjë", + "E Kuqe", + "Portokalli", + "E Verdhë", + "E Gjelbër", + "E Kaltër", + "Vjollcë", + "Gri", + "E Bardhë", + "E Tejdukshme", + "E Zeze", + null, + null, + null + ], + null, + null, + null + ], + [ + "Shto Hije", + "Hije e Brendshme", + "Shkëlqimi Jashtëm", + "Shkëlqimi Brendshëm", + "Hapësirë dhe qoshe të rrafshëta", + "Mbulimi Ngjyrës", + "Mbulesa e Gradientit", + "Mbulesa Mostrës", + "Saten", + "Ramja", + "Mundësitë e Përzierjes", + null + ], + [ + "Forma Këndit", + "Dinamika Qosheve", + "Copëzimi", + "Dinamika Ngjyrës", + [ + "Luhatja Rastit", + "Diametri Minimal", + "Luhatja Këndit", + "Luhatja Rrethit", + "Rrumbullakësia Minimale" + ], + [ + "Luhatja Pozitës", + "Numrimi", + "Numri Luhatjeve" + ], + [ + "Luhatja në Paravijë/Prapavijë", + "Luhatja Tonit të Ngjyrës", + "Luhatja Ngopjes", + "Luhatja e ndriçimit" + ], + [ + "Përzgjidh burimin e klonimit duke shtypur Alt (ose K) dhe duke klikuar nbi foto.", + "Vendos Foregroundin me te Bardhe, Backgroundin me te Zeze, dhe Zonen tjeter me Gri.", + "Shtresa eshte e pa Editueshme", + "Shtresa me Tekst duhet Restarizuar ne fillim", + "Objekti Smart duhet te Restarizohet ne fillim", + "Selekto Disa Shtresa", + null, + null, + null, + null + ], + [ + null, + null, + null + ], + [ + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + ], + [ + "Udhëheqja", + "Ndjekja", + "Ndryshimi Bazës", + [ + null, + null + ] + ], + [ + "Përmbajtja Gjithësej", + "Fleta Momentale", + "Përzgjedhja", + "Kete & Me Poshte" + ], + [ + "Zëvendëso", + "Bashko", + "Dallimi", + "Prerja", + "Përjashto", + "Bashko" + ], + [ + [ + "Linear", + "Rrezor", + "Qoshe", + "Reflektuar", + "Diamant", + "Shpërthimi Formës" + ], + [ + "Më e butë", + "Preciz" + ], + [ + "Koni Jashtëm", + "Koni Brendshëm", + "Reliefi", + "Jastëk Stampim", + "Stampim Goditje", + null + ], + [ + "Zbut", + "Gdhendje e Fortë", + "Gdhendje e Butë", + null + ], + [ + "Sipër", + "Poshtë" + ], + [ + "Jashtë", + "Në Mes", + "Brenda", + null + ], + [ + "Hijet", + "Mesi", + "Pikat kryesore" + ], + [ + "Zbrazje", + "Mbushje" + ], + [ + "E Vogel", + "E Mesme", + "E Madhe" + ], + [ + null, + null, + null + ] + ], + [ + "Përzgjidh objektin nën kursorin", + "Ngjyrat e transformimit", + "Piksel për Piksel", + "Mbush Hapësirën", + [ + "Ofro Këndet Majtas", + "Centro Horizontalisht", + "Ofro Këndet Djathtas", + "Ofro Këndet Sipër", + "Centro Vertikalisht", + "Ofro Këndet Poshtë", + "Hapsira te Barabarta" + ] + ], + [ + "E vendos në", + "Projekti Momental", + "Projekti Ri", + "Zgjidhja", + "E shto në projektin momental.", + "U krijua projekt i ri.", + "Qasja tek kamera u refuzua." + ], + [ + "Orientimi", + "Lako", + "Shfytyrim Horizontal", + "Shfytyrim Vertikal", + [ + "Horizontal", + "Vertikal", + null, + null + ], + [ + "Asnjë", + "Hark", + "Hark Tatëpjetë", + "Hark Përpjetë", + "Hark", + "Ç'gungim", + "Guaca Poshtë", + "Guaca Sipër", + "Flamur", + "Valë", + "Peshk", + "Rrit", + "Sy Peshku", + "Fryj", + "Shtrydh", + "Përdridh", + "Përzgjedhur" + ], + [ + "Shkronjat", + "nuk është në dispozicion", + "Do të kryhet përmes", + null, + null + ], + [ + "Ndërro Ngjyrat", + "Përzgjedhur: Bardh e Zi" + ] + ], + [ + "hapur", + "shtuar", + "Lëviz Ndihmuesin", + "Grise Ndihmuesin", + "Shto Ndihmues", + "Duke u hapur", + null + ], + [ + "Galeria Filtruese", + [ + [ + "Likuifiko", + [ + "Perziej", + "Rikonsktrukto", + "Lemoje", + "Rrotulloje ne Spirale", + "Zvogeloje", + "Zmadhoje", + "Shtyje Majtas", + "Ngri", + "Shkri" + ] + ], + [ + "Korrigjo Lenten" + ] + ], + "Turbull", + [ + "Mesatare", + "Turbullo", + "Turbullo më shumë", + "Turbullo kuti", + "Mjegullim Gausian", + "Mjegullim Objektivi", + "Mjegullim Lëvizës", + "Mjegullim Rrezor", + "Turbullo në formë", + "Mjegullim i Mençur", + "Mjegullimi Sipërfaqes" + ], + "Shtrembërim", + [ + "Displanco", + "Zmadho", + "Koordinata Polare", + "Valezo", + "Prit", + "Sferizo", + "Vale" + ], + "Zhurmimi", + [ + "Shto Zhurmë", + "Largimi Pengimit", + "Pluhur & Gërvishtje", + "Mesatarja" + ], + "Pikselim", + [ + "Ngjyra Gjysmëton", + "Kristalizim", + "Aspekt", + "Fragmento", + "Mezotint", + "Mozaik", + "Pikëzim" + ], + "Suvatim", + [ + "Retë", + "Diferenco Rete", + null + ], + "Theksimi", + [ + "Thekso", + "Thekso Qoshet", + "Thekso më shumë", + "Theksimi i Mençur", + "Maska e patheksuar" + ], + "Stilizo", + [ + "Shpërndaj", + "Stampim", + "Shtrydh", + "Gjej Qoshet", + null + ], + "Tjera", + [ + "Përshtatur", + "Lartësia", + "Maksimumi", + "Minimumi", + "Efekti Zhvendosjes", + "Perserit" + ], + [ + "Hapësira e padefinuar", + "Bëje të Tejdukshme", + "Përsërit Pikselët e Këndit", + "Pështjell", + "Filtri i Fundit", + "Shiko" + ] + ], + [ + "Te Gatshme", + [ + "Fikter Fonti", + "Fjalet Kyc", + "Zgjidh Rastesisht" + ], + [ + "Me simbole", + "Me foto" + ], + [ + "Thumbnails", + "Listë" + ] + ] + ], + [ + [ + "கோப்பு", + "தொகு", + "படம்", + "அடுக்கு", + "கோப்பகம்", + "தெரிவு செய்", + "வடிகட்டு", + "காட்சி", + "சாளரம்", + "மொழி", + "உள் நுழை", + "வெளியேறு", + "மொழிமாற்று", + [ + "கணக்கு", + "சேவை விதிமுறைகள்", + "பின்னே", + "இதைப்பற்றி", + "பிழையை புகாரளி", + "கற்றுக்கொள்ள" + ], + "மேலும்", + "தோற்றம்", + "WebGL ஐ உபயோகி", + [ + "Hindi", + "PSD, XCF, Sketch, XD மற்றும் CDR வகை கோப்புகளை ஆதரிக்கும் இலவச நிகழ்நிலை தொகுப்பி", + "புதிய படத்தை உருவாக்கு அல்லது கணினியில் ஏற்கனவே உள்ளதை திற. உங்கள் கோப்பை PSD (கோப்பு - PSD ஆக சேமி) அல்லது JPG / PNG / PSD (கோப்பு - கணினியில் ஏற்றுமதியிடு)", + "புதிய வசதிகளை எங்கள்<முகநூல் > இல் பரிந்துரையுங்கள். எங்கள் நோக்கம் <மிகவும் மேம்பட்ட விலையில்லா புகைப்பட தொகுப்பி> ஐ உருவாக்குவதே", + "ஆதரவாளர் இணைப்புகள் புதிய சாளரத்தில் திறக்கப்படும்.", + "இந்த வசதி இல்லை.", + "போட்டோபீயை நிறுவு" + ] + ], + [ + "திற", + "நிகழ்நிலையில் பதிப்பி", + "சேமி", + "PSD ஆக சேமி", + "அச்சு", + "URL இல் இருந்து திற", + "கணினியிலிருந்து திற", + "Google Drive உடன் இணை", + "இவ்வாறு சேமி", + "அடுக்குகளை ஏற்று", + "அச்சுப்படிவும்", + "திற & இடப்படுத்து", + "மூடு", + "அகச் சேமிப்பகம்", + "கோப்பு தகவல்" + ], + [ + "முன்னர் இருந்த நிலைக்கு செல்", + "பின்னிருந்த நிலைக்கு செல்", + "தெளிநீக்கு", + "நிரப்பு", + "உருமாற்று", + "உருட்டு", + "கவிழ் VAR0", + "அளவி VAR0", + "அவிழ் / மீள்செய்", + "உளப்பார்வை", + [ + "தானியங்கு ஒருக்கலத்தல்", + "தானியங்கு ஒழுங்குமை" + ], + "மங்க செய்", + "படத்தை ஓட்டிடு" + ], + "சீரமைப்புகள்", + [ + "ஒளிர்வு/உறழ்பொருவு", + "மட்டங்கள்", + "வளைவுகள்", + "ஒளிபலுக்கல்", + "வண்ண அதிர்வு", + "சாயல்/செறிவு", + "நிறம் நிறைகோல்", + "கருப்பு வெள்ளை", + "பட வடிகட்டி", + "ஒளிவழித்தட கலப்பி", + "வண்ண அட்டவணை", + "கவிழ்", + "பொதிப்பொட்டியாக்கு", + "தொடக்க வரம்பு", + "சாய்வுப்படம்", + "தேர்விட்ட நிறம்", + [ + "தானியங்கு தொனி", + "தானியங்கு உறழ்பொருவு", + "தானியங்கு நிறம்" + ], + "நிறத்தை இடமாற்று" + ], + [ + "வெட்டு", + "நகலெடு", + "ஒட்டு", + "புதிது", + "நீக்கு", + "இயலு", + "முடக்கு", + "ஒன்றுபட்டதை நகலெடு", + "ஓட்டிடு", + "மீண்டும்", + "புதுப்பி" + ], + [ + "படிவை மறுநகலெடு", + "புதிய சரிசெய்தல் அடுக்கு", + "பரவு ஒளிமறை", + "திசையன் ஒளிமறை", + "கூட்டுசேர் (அனைத்தையும் வெளிக்காண்பி)", + [ + "கூட்டுசேர் (அனைத்தையும் மறைத்து)", + "தேர்வை காண்பி", + "தேர்வை மறை", + "ஒளியூடுவிலிருந்து" + ], + [ + "குத்தி ஒளிமறை", + "விரைவு ஒளிமறை பயன்முறை" + ], + "சூட்டிகை பொருளாக மாற்று", + "பரவாக்கு", + "குழு அடுக்குகள்", + "கீழோடு இணை", + "மேலோடு ஒன்றினை", + [ + "அடுக்குகளை ஒன்றினை", + "படத்தை சமநிலையாக்கு" + ], + "புதிய அடுக்கு", + "பரவு ஒளிமறையயை இயல்வி", + "பரவு ஒளிமறையயை முடக்கு", + "திசையன் ஒளிமறையை இயல்வி", + "திசையன் ஒளிமறையை முடக்கு", + "குத்திய ஒளிமறையை இயல்வி", + "குத்திய ஒளிமறையை முடக்கு", + "புதிய கோப்பகம்", + "பரவு ஒளிமறை சேர்", + "பரவு ஒளிமறை நீக்கு", + "திசையன் ஒளிமறை சேர்", + "திசையன் ஒளிமறை நீக்கு", + "பரவு ஒளிமறையை இணை", + "பரவு ஒளிமறையை இணையவிழ்", + "திசையன் ஒளிமறை இணை", + "திசையன் ஒளிமறை இணையவிழ்", + "அடுக்கு விளைவுகளை இயல்வி", + "அடுக்கு விளைவுகளை முடக்கு", + "அடுக்கை நீக்கு", + "அடுக்கு ஒளிபுகாமை மாற்று", + "ஒருக்கலத்தலை மாற்று", + "அடுக்கு பாங்கை பரவாக்கு", + "அடுக்கு வரிசை", + [ + "சூட்டிகை பொருள் உருவாக்கம்", + "சூட்டிகை பொருள் புதுப்பித்தம்", + "சூட்டிகை பொருள் வைத்தம்", + "மூலம் (சூட்டிகை பொருள்)", + "குவிப்பு முறை" + ], + "பெயர் மாற்றம்", + "நிற மாற்றம்", + "சீரமைவு அடுக்கை தொகு", + "வடிவமாக உருமாற்று", + "வடிகட்டு ஒளிமறையை இயல்வி", + "வடிகட்டு ஒளிமறையை முடக்கு", + "சூட்டிகை வடிகட்டல்களை இயல்வி", + "சூட்டிகை வடிகட்டல்களை முடக்கு", + "வடிகட்டல் ஒளிமறையை கூட்டுசேர்", + "வடிகட்டல் ஒளிமறையை நீக்கு", + "சூட்டிகை ஒளிமறைகளை தெளிநீக்கு", + [ + [ + "நிறம் நிரப்பு", + "சாய்வுப்படம் நிரப்பு", + "கோலம் நிரப்பு", + "உள்ளடக்க விழிப்பு" + ], + "புதிய நிரப்பு அடுக்கு", + "நிரப்பு அடுக்கு மாற்றியமை" + ], + "நகலின் வழியே அடுக்கு", + "வடிகட்டல் ஒளிமறை", + "அடுக்கு பாங்கு நீக்கு", + "சூட்டிகை வடிகட்டல் நகர்த்து", + "சூட்டிகை வடிகட்டல் நீக்கு", + [ + "அடுக்குகளை இணை", + "அடுக்குகளை அவிழ்" + ], + "வரிசை முறை", + [ + "முன் கொணறு", + "முன்னே கொணறு", + "பின்னே அனுப்பு", + "பின்னுக்கு அனுப்பு" + ], + [ + "gngni", + "மாற்றத்தை பூட்டு", + "பூட்டு" + ], + "இயங்குபடம்" + ], + [ + "அனைத்தையும்", + "தேர்வுநீக்கு", + "கவிழ்", + "முறை மாற்று", + "vkfuyfyrr65er7t673465e67rte5", + "சுருக்கு", + "மென்மையாக்கு", + "தேர்வை நகர்த்து", + "நிற எல்லைகள்", + "ஓரம்", + "தேர்வை உருமாற்று", + "விளிம்பு மாசகற்றி", + "தேர்வை குணப்படுத்து", + "மாய வெட்டு" + ], + [ + "பெரிதாக்கு", + "சிறிதாக்கு", + "வழிகாட்டு கோடுகள்", + "வரைகோல்", + "கோட்டு சட்டம்", + "ஈர்த்தொட்டு", + "ஈர்த்தொட்டு இதனோடு", + "ஆவண எல்லைகள்", + "படத்துணுக்கு சட்டம்", + "பாதை", + "படத்துணுக்களோடு ஈரத்தொட்டு", + [ + "துண்டுகள்", + "துண்டு விருப்பங்கள்" + ], + "காண்பி" + ], + [ + "வரலாறு", + "அடுக்குகள்", + "பண்புகள்", + "தூரிகை", + "எழுத்து", + "பத்தி", + "தகவல்", + "அடுக்கு கலவைகள்", + "நிற துணி", + "செயல்கள்", + "வரலாற்று வரிபட்டை", + "மீகான்", + "கருவி முன்னமைவுகள்", + "செதுக்குகள்" + ], + [ + "தூரிகை கருவி", + "நகலி கருவி", + "சிறிதாக்கி கருவி", + "அழிப்பான் கருவி", + "நீள்வட்ட தேர்வு", + "நிறத்தேர்வு கருவி", + "சாய்வு கருவி", + "கை கருவி", + "தட்டச்சு கருவி", + "சுருக்கு தேர்வு", + "ஈர்ப்பு சுருக்கு தேர்வு", + "நகர்ப்பான் கருவி", + "மாயக்கழி", + "நிற வாளி கருவி", + "பலகோண சுருக்கு தேர்வு", + "செவ்வக தேர்வு", + "விடுவித்த உருமாற்று", + "பெரிதாக்கி கருவி", + "மங்கு கருவி", + "கூராக்கு கருவி", + "கறையாக்கு கருவி", + "ஒளிர்வாக்கு கருவி", + "இருளாக்கு கருவி", + "நிறவற்றி கருவி", + "புள்ளி குணமாக்கி தூரிகை கருவி", + "குணமாக்கி தூரிகை கருவி", + "நகலொட்டி கருவி", + "வழி தேர்வு", + "நேரடி தேர்வு", + "எழுதுகோல்", + "விடுவித்த எழுதுகோல்", + "தனி வடிவம்", + "செவ்வகம்", + "நீள்வட்டம்", + "அளவுரு வடிவம்", + "கோடு", + "வரைகோல்", + "விரைவு தேர்வு", + "கரிக்கோல் கருவி", + "உளக்காட்சி சுருக்கி", + "துண்டாக்கி கருவி", + "துண்டு தேர்வு கருவி", + "நிறம் பதிலிடங்கொள்ளுகை", + "செந்நிற கண் கருவி", + "பொருள் தேர்வு", + "பின்னணி அழிப்பான்", + "பாவை உருமாற்றி", + "காட்சியை சுழற்று", + "உள்ளடக்க விழிப்பு அளவி", + "உள்ளடக்க விழிப்பு நகர்த்தி கருவி" + ], + [ + "ஒரு படம் எடு", + "வண்ண தெரிவி", + "விளிம்பு தொகுப்பி", + "இரட்டு அளவு", + "இதனுள் நகலெடு...", + "நிறச்சாய்வு தொகுப்பி", + "அடுக்கு பாங்கு", + "புதிய திட்டம்", + "வலைக்காக சேமி", + "உருமாற்றி", + "பட அளவு", + "இணுப்படத்தை திசையனாக்கு", + [ + "நேர்த்தியாக்கு", + "சுருக்கு", + "அனைத்தையும் காட்டு" + ], + "விசைப்பலகை குறுக்குவழிகள்", + "வழிகாட்டிகளைச் கூட்டுசேர்", + [ + "வழிகாட்டிகளை வழுநீக்கு", + "அடுக்கிலிருந்து வழிகாட்டிகள்" + ] + ], + [ + "ஒளிபுகாமை", + "விளைவுகள்", + "ஒளிர்மை", + [ + "உறழ்பொருவு", + "பழையமரபு ஐ பயன்படுத்து" + ], + "அலைத்தடம்", + "ஒளியிடரின்மை", + "ஈடு", + "காமா திருத்தம்", + "சாயல்", + "நிற செறிவு", + "ஒளிமை", + "வண்ணமயமாக்கு", + "எல்லை", + "நிறவதிர்வு", + [ + "அளவு", + "இடைக்கணிப்பு", + "அருகிலுள்ள அண்டை", + "ஈரோர்படு" + ], + "கோணம்", + "வட்டத்தன்மை", + "தின்மை", + "இடைவெளி", + [ + "ஒருக்கலப்பு முறை", + "கலப்பு தொனி எல்லை" + ], + "மாதிரி அளவு", + "விளிம்பு", + "பாங்கு", + [ + "மறிநிலை", + "உறவெண்", + "நங்கூரமிடு" + ], + "பொறுத்தல்", + "தொடர்ச்சியானது", + "நிரப்பு", + "உலகளாவிய கோணத்தை பயன்படுத்த்து", + "தொலைவு", + "விரி", + "இரைச்சல்", + "விழுநிழலை வெளியே தள்ளு", + "நுட்பம்", + "திசை", + "ஆழம்", + "மென்மையாக்கு", + "பயன்முறை", + "நிற சாய்வு", + "அளவி", + "அடுக்குடன் சீராக்கு", + "விளைவின் இடம்", + "அகலம்", + "உயரம்", + "இலக்கு", + "வகை", + "முன்புறம்", + "பின்புலம்", + "தனிவழக்கம்", + "பெயர்", + "படை", + "படவடிவம்", + "காட்சி விகிதத்தை காத்திடு", + [ + "தரம்", + "பக்கங்கள்" + ], + "மறுநகல்", + "நகர்த்து", + "சூட்டிகை வடிகட்டல்கள்", + "ஆரம்", + "தொகை", + "வழங்கல்", + [ + "சீர்", + "ஃகாசியன்" + ], + "ஓர்வண்ணம்", + "அணுக்கல அளவு", + "கோலம்", + "ஓட்டம்", + "வலிமை", + "படவிவரங்களை காத்திடு", + "நிரப்பு வகை", + "இழைநயம்", + "நடுக்க துகள்", + "விளிம்புமுனை", + "மூலம்", + "குறியிலக்கு", + "அலைத்தடங்கள்", + "ஒளிமறை", + "நெருக்கம்", + "சீரமைந்தது", + [ + "வழி", + "வடிவம்", + "படத்துணுக்குகள்", + "அங்குலங்கள்", + "சதமமீற்றர்", + "மில்லிமீட்டர்", + "சதவீதம்" + ], + "வடிவங்கள்", + "பக்கங்கள்", + "விருப்பத்தேர்வுகள்", + [ + "நீளம்", + "விகிதம்", + "ஏதாகிலும்", + "கட்ட வகை", + "சமநீள", + "கட்ட இடைவெளி", + "வரக்கோல் அலகுகள்" + ], + "இரைச்சலை குறை", + "நிறங்கள்", + "தொலைவுகள்", + "வீதம்", + "தானே தேர்வி", + "கண்டுபிடி", + "புதியதை வரையறு", + [ + "நிழற்படம்", + "கணினித்திரை", + "திறன்பேசி", + "விளம்பரங்கள்", + "அச்சு" + ], + [ + "விடுவித்த", + "நிலைத்த விகிதம்", + "நிலைத்த அளவு" + ], + "உதவி", + [ + "நேரடி வடிவம்", + "நேரடி வடிவத்தைத் திருத்து", + "ஒரே ஆரம்" + ], + "தெளிவின்மை", + [ + "பலகோணம்", + "விண்மீன்", + "திருகுச்சுருள்", + "சதுரம்" + ], + [ + "வளைவு ஆரம்", + "உள் ஆரம்" + ] + ], + [ + "நிறம்", + [ + "ஏதுமில்லை", + "சிவப்பு", + "செம்மஞ்சள்", + "மஞ்சள்", + "பச்சை", + "நீலம்", + "ஊதா", + "சாம்பல்", + "வெள்ளை", + "ஒளிபுகுமை", + "கருப்பு", + "நீலப்பச்சை", + "சென்னீலம்", + "சார்பற்ற" + ], + "மொத்தம்", + "அறுதி", + "ஒளிர்மையை காத்திடு" + ], + [ + "விழுநிழல்", + "உள்நிழல்", + "வெளி ஒளிர்வு", + "உள் ஒளிர்வு", + "முனைமழுக்கு மற்றும் புடைப்பு", + "நிற மேலடுக்கு", + "நிறச்சாய்வு மேலடுக்கு", + "கோல மேலடுக்கு", + "பளபளப்பு", + "கீரல்", + "ஒருக்கலப்பு விருப்பங்கள்", + "படத்துணுக்குகளை தேர்வெடு" + ], + [ + "கூர்முனை வடிவம்", + "கூர்முனை இயங்குவியல்", + "சிதறல்", + "நிற இயங்குவியல்", + [ + "நடுங்கு அளவு", + "குறைந்தபட்ச குறுக்களவு", + "கோண நடுக்கம்", + "வட்டமை நடுக்கம்", + "குறைந்தபட்ச வட்டமை" + ], + [ + "நிலையிட நடுக்கம்", + "எண்ணிக்கை", + "எண்ணு நடுக்கம்" + ], + [ + "முன்புற/ பின்புற நடுக்கம்", + "சாயல் நடுக்கம்", + "செறிவு நடுக்கம்", + "ஒளிர்வு நடுக்கம்" + ], + [ + "Alt (அல்லது K) ஐ பிடித்து படத்தைக் சொடுக்கி நகலி மூலத்தைத் தேர்வேடு.", + "முன்புறத்தை வெள்ளையாலும், பின்புறத்தை கருப்பாலும், மற்றும் அறியப்படாத பகுதியை சாம்பலாலும் குறி.", + "அடுக்கு திருத்த இயலாது.", + "உரை அடுக்கு முதலில் பரவாக்கப்பட வேண்டும்", + "சூட்டிகை பொருள் முதலில் பரவாக்கப்பட வேண்டும்", + "பல அடுக்குகளைத் தேர்வெடு", + "அடுக்கை நேராக்கு", + "முதலில் ஒரு ஆவணத்தைத் திற.", + "நடப்பு சாளரத்தை முதலில் மூடு.", + "நடப்பு கருவி மட்டும்" + ], + [ + "பதிவு செய்", + "புதிய செயல் தொகுப்பு", + "புதிய செயல்" + ], + [ + "மின்னெழுத்தாணி அழுத்தம் ஒளிபுகாநிலையை கட்டுப்படுத்துகிறது", + "மின்னெழுத்தாணி அழுத்தம் அளவைக் கட்டுப்படுத்துகிறது" + ], + [ + "இயல்பானது", + "கரைப்பு", + "இருளாக்கு", + "பெருக்கு", + "நிற எரிப்பு", + "நேரியல் எரிப்பு", + "இருண்ட நிறம்", + "ஒளிரச்செய்", + "புகுத்திக்காட்டு", + "நிற ஒளிர்வு", + "நேரியல் ஒளிர்வு", + "இலகுவான நிறம்", + "மேலே கவி", + "மென்மையான ஒளி", + "கடின ஒளி", + "தெளிவான ஒளி", + "நேரியல் ஒளி", + "குத்திய ஒளி", + "கடின கலவை", + "வேறுபாடு", + "விலக்கம்", + "கழித்தம்", + "வகுத்தம்", + "சாயல்", + "செறிவு", + "நிறம்", + "ஒளிர்வு", + "ஒளி ஊடு" + ] + ], + [ + "முன்னணி", + "பின்தொடர்", + "அடிக்கோடு மாற்றம்", + [ + "புள்ளி உரைக்கு மாற்ற்று", + "பத்தி உரைக்கு மாற்று" + ] + ], + [ + "எல்லா அடுக்குகளும்", + "நடப்பு அடுக்கு", + "தேர்வு", + "நடப்பு & கீழே" + ], + [ + "பதிலிடங்கொள்", + "ஒருசேர்", + "கழி", + "ஊடறு", + "தவிர்", + "ஒன்றிணை" + ], + [ + [ + "நேரியல்", + "ஆரியல்", + "கோணம்", + "எதிரொளித்தது", + "வைரம்", + "வடிவ வெடிப்பு" + ], + [ + "மென்மையான", + "துல்லியமான" + ], + [ + "வெளி நுனி", + "உள் நுனி", + "புடைப்பு", + "தலையணை புடைப்பு", + "கீறல் புடைப்பு", + "கீறல் அகலம்" + ], + [ + "மென்மையாக்கு", + "கடின உளி", + "மெல்லிய உளி", + "மென்மை" + ], + [ + "மேல்", + "கீழ்" + ], + [ + "வெளிப்புறம்", + "நடுவே", + "உட்புறம்", + "நடுவிலிருந்து" + ], + [ + "நிழல்கள்", + "நடு தொனிகள்", + "ஒளிர்வுகள்" + ], + [ + "செறிவு குறை", + "செறிவு கூட்டு" + ], + [ + "சிறிது", + "நடுத்தரம்", + "பெரிது" + ], + [ + "தலையெழுத்து", + "மூலைகள்", + "தொடர் கோடுகள்" + ] + ], + [ + "சுட்டியின் கீழுள்ள பொருளைத் தேர்வி", + "உருமாற்றி கட்டுகள்", + "படத்தொனிகளுக்குள்", + "பகுதிக்குள் பொருத்து", + [ + "இடது விளிம்புகளை சீரமை", + "கிடைமட்டமாக நடுநிறுத்து", + "வலது விளிம்புகளை சீரமை", + "மேல் விளிம்புகளை சீரமை", + "செங்குத்தாக நடுநிறுத்து", + "கீழ் விளிம்புகளை சீரமை", + "சம இடைவெளிகள்" + ] + ], + [ + "இதனுள் இடு", + "நடப்பு திட்டம்", + "புதிய திட்டம்", + "நுணுக்கம்", + "நடப்பு திட்டத்தில் சேர்க்கப்பட்டது", + "ஒரு புதிய திட்டம் உருவாக்கப்பட்டது", + "படமி அணுகல் மறுக்கப்பட்டது" + ], + [ + "நோக்குநிலை", + "வளை", + "கிடைமட்ட திரிபு", + "செங்குத்து திரிபு", + [ + "கிடைமட்டம்", + "செங்குத்து", + "கிடைமட்டமாக", + "செங்குத்தாக" + ], + [ + "எதுவுமில்லை", + "வில்", + "தாழ்ந்த வில்", + "உயர்ந்த வில்", + "வில்வளைவு", + "வீக்கம்", + "தாழ்ந்த சிப்பி", + "உயர்ந்த சிப்பி", + "கொடி", + "அலை", + "மீன்", + "ஏழு", + "மீன் கண்", + "காற்றேற்று", + "பிழி", + "திருகு", + "தனிவழக்கம்" + ], + [ + "எழுத்துரு", + "கிடைக்கவில்லை", + "பயன்படுத்தி ஒப்படைக்கப்படும்", + "சேமிக்கப்படாத பணி இதிலுள்ளது", + "உண்மையில் அதை மூட விருப்பமா?" + ], + [ + "நிறங்களை மாற்று", + "இயல்புநிலை: வெள்ளை மற்றும் கருப்பு" + ] + ], + [ + "ஏற்றப்பட்டது", + "சேர்க்கப்பட்டது", + "வழிக்கோடை நகர்த்து", + "வழிக்கோடு நீக்கு", + "வழிக்கோடு சேர்", + "ஏற்றுகிறது", + "VAR0 ஏற்று" + ], + [ + "வடிகட்டி தொகுப்பு", + [ + [ + "வழிமமாக்கு", + [ + "அழுக்காக்கு", + "புனரமை", + "மென்மையாக்கு", + "சுழற்று", + "சுருக்கு", + "ஊது", + "இடற்புறம் தள்ளு", + "உறை", + "கட்டவிழ்" + ] + ], + [ + "வில்லை திருத்தம்" + ] + ], + "மங்கல்", + [ + "நிரலளவு", + "மங்கலாக்கு", + "மேலும் மங்கலாக்கு", + "பெட்டி மங்கல்", + "காசியன் மங்கல்", + "வில்லை மங்கல்", + "அசைவு மங்கல்", + "ஆரச்சீர் மங்கல்", + "வடிவ மங்கல்", + "சூட்டிகை மங்கல்", + "மேற்பரப்பு மங்கல்" + ], + "திரி", + [ + "பெயரு", + "கிள்ளு", + "முனைவு ஒருங்கிணைப்புகள்", + "சிற்றலை", + "தரி", + "கோளமாக்கு", + "அலை" + ], + "இரைச்சல்", + [ + "இரைச்சல் சேர்", + "பொட்டுபெருக்கு", + "தூசி & கீறல்கள்", + "இடைக்கோடு" + ], + "படத்துணுக்காக்கு", + [ + "நிற தொனிப்பாதி", + "படிகமாக்கு", + "முகப்பரப்பு", + "துண்டு", + "உலர்ப்புள்ளி முறை", + "பல்லடுக்கு", + "புள்ளிப்படமாக்கு" + ], + "ஒப்படை", + [ + "மேகங்கள்", + "வேற்றுமை மேகங்கள்", + "வில்லை பட்டொளி" + ], + "கூர்தீட்டு", + [ + "கூர்தீட்டு", + "முனைகளை கூர்தீட்டு", + "மேலும் கூர்தீட்டு", + "சூட்டிகை கூர்தீட்டு", + "கூரில்லா ஒளிமறை" + ], + "மிடுக்காகு", + [ + "விரவு", + "புடை", + "விலக்கு", + "விளிம்புகளை தேடு", + "எண்ணெய் வரையல்" + ], + "மற்றவை", + [ + "தனிவழக்கு", + "உயர் நுழை", + "பெருமம்", + "சிறுமம்", + "ஈடு", + "ஒப்பி" + ], + [ + "வரையறா பகுதி", + "ஒளிபுகுமையாக்கு", + "விளிம்பு படத்துணுக்குகளை ஒப்பி", + "சுற்றி மடக்கு", + "கடைசி வடிகட்டி", + "முற்காட்சி" + ] + ], + [ + "வார்ப்புருக்கள்", + [ + "எழுத்துரு வடிகட்டி", + "சிறப்புச் சொற்கள்", + "சீர்கெடு" + ], + [ + "சின்னங்களுடன்", + "படங்களுடன்" + ], + [ + "சிறுபடங்கள்", + "பட்டியல்" + ] + ] + ], + [ + [ + "བཀྲིས་བདེ་ལེགས།", + "བཟོ་སྒྲིག", + "དཔར།", + "ངོས།", + "ཡིག་ཁུག", + "འདེམས།", + "ཚགས།", + "ལྟ་སྣང་།", + "སྒེའུ་ཁུང་།", + "སྐད་ཡིག", + "ནང་དུ་འཛུལ།", + "སྒོ་གཏན།", + "ཡིག་སྒྱུར་བྱེད།", + [ + "དེབ་སྐྱེལ།", + "ཞབས་ཞུའི་འགན་རྒྱ།", + "ཕྱིར་ལོག", + "ངོ་སྤྲོད།", + "སྙན་ཞུ།", + "སྦྱོང་།" + ], + "དེ་ལས་མང་བ།", + "དཔེ་དཔང་།", + "WebGL སྤྱད།", + [ + "Photopea-དཔར་བཟོའི་མཉེན་ཆས།", + "PSD, XCF, Sketch, XD, CDR སོགས་དཔར་རིགས་ལ་རྒྱབ་སྐྱོར་ཐོབ་པའི་རིན་མེད་དཔར་བཟོའི་མཉེན་ཆས།", + "ཡིག་ཆ་གསར་པ་བཟོ་བའམ་ཡང་ན་གློག་ཀླད་ནང་ཡོད་པའི་དཔར་ཞིག་ཁ་འབྱེད། བཟོ་སྒྲིག་ཚར་བ་དང་ PSD (ཡིག་ཆ། - PSD རྣམ་པར་ཉར།) དང་ JPG / PNG / SVG (ཡིག་ཆ། - ཕབས་སྟངས་གཞན།) སོགས་རྣམ་པ་ཅི་རིགས་ཐོག་ཕབ་ལེན་ཉར་ཚགས་བྱེད་ཆོག", + "ཁྱད་ཆོས་གསར་པའི་རིགས་བསམ་འཆར་ཡོད་ན་ དང་ ཐོག་སྤེལ་རོགས། < ང་ཚོའི་དམིགས་ཡུལ་ནི་རིན་མེད་ཀྱི་དཔར་བཟོའི་མཉེན་ཆས་སྤུས་དག་ཞིག་མཁོ་འདོན་བྱེད་རྒྱུ་ཡིན།>.", + "སྦྱིན་བདག་ཚོའི་སྒེའུ་ཁུང་།", + "མཐུན་རྐྱེན་དེ་མིན་འདུག", + null + ] + ], + [ + "ཁ་འབྱེད།", + "དྲ་གནས་སུ་སྤེལ།", + "ཉར་ཚགས།", + "PSD རྣམ་པར་ཉར།", + "དཔར་སློག", + "དྲ་ཐག་ནས་ཁ་འབྱེད།", + "གློག་ཀླད་ནས་ཁ་འབྱེད།", + "Google Drive དང་མཐུད།", + "ཕབས་སྟངས་གཞན།", + "ངོས་ཕྱིར་ཕབས།", + "བརྡ་ཡིག", + "འདིར་ཁ་ཕྱེ།", + "ཁ་རྒྱབས།", + "ས་གནས་སུ་ཉར་གསོག", + null + ], + [ + "མདུན་གཤིག", + "རྒྱབ་གཤིག", + "སུབ།", + "འགེང།", + "གཟུགས་འགྱུར།", + "བསྐོར།", + "སྐོར་ཚད། 0", + "ཆེ་ཆུང་། ཚད། 0", + "ཕྱོར་ལོག / སྔོན་ལོག", + "སྣང་ཚོད།", + [ + "རང་འགུལ་དུ་བསྲེ།", + "རང་འགུལ་རུ་སྒྲིག" + ], + "ཡལ།", + null + ], + "སྙོམ་སྒྲིག", + [ + "བཀྲག་མདངས། / ལྡོག་ཆོས།", + "ཆ་སྙོམ།", + "གུག་ཐིག", + "འཚེར་ཤུགས།", + "ཚོན་ཤུགས།", + "ཚོན། / ཧར་ལོད།", + "ཚོན་དོ་སྙོམ།", + "དཀར་པོ་དང་ནག་པོ།", + "དཔར་ཚགས།", + "ཁ་དོག་སྲེ་སྦྱོར།", + "ཁ་དོག་དཔྱད་བསྡུར།", + "ཕྱི་ནང་སློག་པ།", + "པར་གཞི་བཟོ་བ།", + "ཡས་ཆོད།", + "སྟེགས་རིས་ས་ཁྲ།", + "གདམ་ག་ཅན་གྱི་ཁ་དོག", + [ + "ཚོན་མདངས་རང་སྒྲིག", + "ལྡོག་ཆོས་རང་སྒྲིག", + "ཁ་དོག་རང་སྒྲིག" + ], + "ཚོས་བརྗེ།" + ], + [ + "གཏུབ།", + "བཤུ།", + "སྦྱར།", + "གསར་པ།", + "དོར།", + "ནུས་ཡོད་བཟོ།", + "ནུས་མེད་བཟོ།", + "ཟླ་སྒྲིལ་བྱས་པ་དེ་བཤུས།", + "སྤྱད།", + "ཡང་བསྐྱར་བྱེད།", + "རིམ་སྤར།" + ], + [ + "ངོས་འདྲ་བཤུས།", + "སྒྲིག་ངོས་གསར་པ།", + "ལྷུ་འབག", + "སྲ་འབག", + "གནོན། (ཆ་ཚང་)", + [ + "སྣོན། (ཆ་ཚང་བསྐུང་)", + "འདེམ་གཞི་མངོན་པ་བཟོ།", + "འདེམ་གཞི་མི་མངོན་པ་བཟོ།", + "དྭངས་མ་ནས།" + ], + [ + "འབག་བཅད་ཤོག", + "འབག་གི་རྣམ་པ།" + ], + "བསྡུ་རིས་ལ་བཟོ།", + "ལྷུ་བཤིག", + "ངོས་སྡེ་ཚན་དུ་བཟོ།", + "འོག་ཏུ་ཟླ་སྒྲིལ།", + "ཡར་ཟླ་སྒྲིལ།", + [ + "ངོས་རྣམས་ཟླ་སྒྲིལ་གཏོང་།", + "ངོས་གཅིག་ལ་བསྒྲིལ།" + ], + "ངོས་གསར་པ།", + "ལྷུ་འབག་ནུས་ཡོད་བཟོ།", + "ལྷུ་འབག་ནུས་མེད་བཟོ།", + "སྲ་འབག་ནུས་ཡོད་བཟོ།", + "སྲ་འབག་ནུས་མེད་བཟོ།", + "འབག་བཅད་ཤོག་ནུས་ཡོད་བཟོ།", + "འབག་བཅད་ཤོག་ནུས་མེད་བཟོ།", + "ཡིག་ཁུག་གསར་པ།", + "ལྷུ་འབག་སྣོན།", + "ལྷུ་འབག་དོར།", + "སྲ་འབག་སྣོན།", + "སྲ་འབག་དོར།", + "ལྷུ་འབག་མཐུད།", + "ལྷུ་འབག་བཅད།", + "སྲ་འབག་མཐུད།", + "སྲ་འབག་བཅད།", + "ངོས་ཀྱི་ཁྱད་ཆོས་ནུས་ཡོད་བཟོ།", + "ངོས་ཀྱི་ཁྱད་ཆོས་ནུས་མེད་བཟོ།", + "ངོས་དོར།", + "ངོས་གསལ་ཆ་སྒྲིག", + "སྡེབ་སྦྱོར་སྒྲིག", + "ངོས་ཀྱི་བཀོད་སྒྲིག་ལྷུ་བཤིག", + "ངོས་ཀྱི་གོ་རིམ།", + [ + "བསྡུ་རིས་བཟོ།", + "བསྡུ་རིས་ཁ་གསབ།", + "བསྡུ་རིས་འཇོག", + "ཁུངས། (བསྡུ་རིས།)", + "བརྩེགས་རིམ།" + ], + "མིང་བརྗེ།", + "ཚོན་མདོག་བརྗེ།", + "སྒྲིག་ངོས་སྒྲིག་སྦྱོར།", + "དབྱིབས་ལ་འགྱུར།", + "འབག་ཚགས་ནུས་ལྡན་བཟོ།", + "འབག་ཚགས་ནུས་མེད་བཟོ།", + "བསྡུ་ཚགས་ནུས་ཡོད་བཟོ།", + "བསྡུ་ཚགས་ནུས་མེད་བཟོ།", + "འབག་ཚགས་སྣོན།", + "འབག་ཚགས་དོར།", + "བསྡུ་ཚགས་སུབ།", + [ + [ + "ཚོན་རྡོག་གཏོང་།", + "ཚོན་སྟེགས་གཏོང་།", + "བཀོད་དཔེ་གཏོང་།", + "མངོན་ཤེས།" + ], + "འགེང་ངོས་གསར་པ།", + "འགེང་ངོས་འགྱུར་བཅོས།" + ], + "ཤུལ་ནས་ངོས་སུ།", + "འབག་ཚགས།", + "ངོས་ཀྱི་བཀོད་སྒྲིག་དོར།", + "བསྡུ་ཚགས་སྤོ།", + "བསྡུ་ཚགས་དོར།", + [ + "ངོས་དང་མཐུད།", + "ངོས་དང་མཐུད་བཅད།" + ], + "གོ་རིམ་སྒྲིག", + [ + "མདུན་མདུན་དུ་འཇོག", + "མདུན་ལ་གཏོང་།", + "རྒྱབ་ལ་གཏོང་།", + "རྒྱབ་་རྒྱབ་ལ་འཇོག" + ], + [ + "ངོས་བཀག", + "འགྱུར་བཅོས་བཀག", + null + ], + null + ], + [ + "ཆ་ཚང་།", + "སློད།", + "ཕྱི་ནང་སློག་པ།", + "བཟོ་བཅོས་གཏོང་།", + "རྒྱ་སྐྱེད།", + "འདུས་པ།", + "བྱ་སྒྲོ།", + "འདེམས་འགུལ།", + "ཚོན་མདོག་རིགས།", + "མཚམས་ཐིག", + "འདེམ་བྱ་གཟུགས་འགྱུར།", + "མཐའ་སྣེ་སྤུས་དག་ཏུ་གཏོང་།", + "འདེམ་བྱ་གསོ་ཐབས།", + null + ], + [ + "ཆེ་རུ་མངོན།", + "ཆུང་དུ་མངོན།", + "སྣོན་ཐིག", + "ཐིག་ཤིང་།", + "སྒྲོམ་ཐིག", + "གནན་པ།", + "དེར་གནན་པ།", + "ཤོག་མཚམས།", + "པིག་ཟེལ་སྒྲོམ་ཐིག", + "ལམ།", + "པེག་ཟེལ་སྒང་ལ་བསྡད།", + [ + "གཏུབ།", + "གཏུབ་ཆེད་གདམ་ག" + ], + "སྟོན།" + ], + [ + "བྱུང་རིམ།", + "ངོས།", + "ཁྱད་ཆོས།", + "པིར།", + "ཡིག་འབྲུ།", + "དུམ་མཚམས།", + "གནས་ཚུལ།", + "ངོས་ཀྱི་གྲུབ་ཆ།", + "ཚོན་སྟར།", + "ལས་འགུལ།", + "སྐྱེད་རིས།", + "ཟུར་ལྟ།", + "ཡོ་ཆས་སྔོན་སྒྲིག", + null + ], + [ + "པིར།", + "འདྲ་བཟོའི་ལག་ཆ།", + "གཏུབ་ཆས།", + "སུབ་ཆས།", + "སྒོར་སྒོར་འདེམས།", + "ཚོན་བཤེར།", + "སྟེགས་ཚོན་ལག་ཆ།", + "ལག་པ།", + "ཡིག་བཏགས།", + "ཐག་པ།", + "ངར་ལྕགས།", + "འདེམས་བྱེད།", + "དབྱུག་པ།", + "ལྕགས་ཀྲིན།", + "ཐག་པ་ཟུར་ཅན།", + "གྲུ་བཞི་ཅན།", + "རང་མོས་གཟུགས་འགྱུར།", + "མཐོང་ཆ།", + "རབ་རིབ་བཟོ་ཆས།", + "དྭངས་གསལ་གཏོང་ཆས།", + "ནག་ནོག་བཟོ་ཆས།", + "སླ་ཆས།", + "སྲེག་ཆས།", + "འགྱིག་སོབ།", + "ནག་ཐིག་གསོ་བའི་པིར།", + "གསོ་བྱེད་པིར།", + "ལྷན་པ་བརྒྱབ་ཆས།", + "ཐིག་འདེམས།", + "ཐད་ཀར་འདེམས།", + "སྨྱུ་གུ།", + "རང་མོས་སྨྱུ་གུ།", + "རང་མོས་དབྱིབས།", + "གྲུ་བཞི་ནར་མོ།", + "སྒོར་དབྱིབས།", + "དབྱིབས་རྒྱས་པ།", + "ཐིག", + "ཐིག་ཤིང་།", + "མྱུར་འདེམས།", + "མྱུ་གུའི་ལག་ཆ།", + "ཟུར་བྲེག", + "གཏུབ་ཆས།", + "གཏུབ་ཆ་འདེམས་ཆས།", + "ཚོན་བརྗེ་འགྱུར།", + "མིག་དམར་པོའོ་ལག་ཆ།", + "སྡུས་རིས་གདམ།", + "རྒྱབ་ལྗོངས་སུབ་བྱེད།", + "ཉེད་ཉེད།", + "སྐོར་ལྟ།", + "དངོས་རྟོགས་ཆེ་ཆུང་།", + null + ], + [ + "པར་ལེན་པ།", + "ཚོན་འདེམ་བྱེད།", + "འབུར་ཀོང་སྒྲིག་ཆས།", + "རས་གཞི།", + "འདྲ་བཤུས་སུ་་་", + "སྟེབས་རིས་སྒྲིག", + "ངོས་ཀྱི་བཀོད་སྒྲིག", + "ཡིག་ཆ་གསར་པ།", + "དྲ་རྒྱའི་ཆེད་དུ་ཉར་ཚགས།", + "གཅུ་སྒྲིམ།", + "དཔར་ཆེ་ཆུང་།", + "ཝེག་ཊར་ལ་འགྱུར།", + [ + "གཏུབས།", + "བྲེག", + "ཆ་ཚང་མངོན།" + ], + "མྱུར་མཐེབ།", + "ཐིག་མཚམས་སྣོན།", + [ + "ཐིག་མཚམས་གསུབ།", + "ངོས་བརྟེན་ཐིག་མཚམས།" + ] + ], + [ + "སྒྲིབ་ཚད།", + "ཤུགས་རྐྱེན།", + "བཀྲག་མདངས།", + [ + "ལྡོག་ཆོས།", + "འགྲོ་ལུགས་རྙིང་པ་སྤྱད།" + ], + "ཁ་དོག", + "འཚེར་ཤུགས།", + "ཟུར་འཇོག", + "ག་མ་བཅོས་སྒྲིག", + "ཚོན།", + "ཧར་ལོད།", + "མདངས།", + "ཚོན་བརྒྱབ།", + "ཁྱབ་ཚད།", + "ཚོན་མདངས།", + [ + "ཆེ་ཆུང།", + "ཁ་གསབ།", + "གྲོང་པ་ཉེ་ཤོས།", + "གཉིས་ཐིག" + ], + "གྲུ་ཟུར།", + "ཟླུམ་ལོད།", + "མཁྲེགས་ལོད།", + "སྟོང་ཆ།", + [ + "བསྲེ་སྦྱོར་རྣམ་པ།", + "བསྲེ་སྦྱོར། གལ་ཏེ།" + ], + "ཆེ་ཆུང་ཚད་གཞི་འགའ།", + "འབུར་ཀོང་།", + "བཀོད་སྒྲིག", + [ + "ཕྱིན་ཅི་ལོག", + "ལྟོས་ས་ལྟོས་འཇོག", + "འཛིན་ས།" + ], + "བཟོད་སྲན།", + "ཉེ་འདབས།", + "འགེང་།", + "ཟུར་ཁུག་གཅིག་འགྱུར་སྤྱོད།", + "རྒྱང་ཚད།", + "བརྐྱངས།", + "ལྷད།", + "ལྷད་འཇོམས་པ།", + "ཐབས་ཇུས།", + "ཁ་ཕྱོགས།", + "གཏིང་།", + "སོབ་སོབ།", + "རྣམ་པ།", + "སྟེགས་ཚོན།", + "ཆེ་རུ་གཏོང་།", + "ངོས་དང་འཁོད་སྙོམ།", + "གནས།", + "ཞེང་ཁ།", + "མཐོ་ཚད།", + "ཕྱོགས་ཡུལ།", + "བཏགས།", + "ཁ་ངོས།", + "རྒྱབ་ངོས།", + "རང་མོས་ལྟར་སྒྲིག", + "མིང་།", + "བཟོ།", + "རྣམ་གཞག", + "བསྡུར་ཚད་བརྟན་སྡོད་ཐོག", + [ + "སྤུད་ཚད།", + "ཤོག་ངོས།" + ], + "འདྲ་བཤུས།", + "འགུལ།", + "བསྡུ་ཚགས།", + "ཚངས་ཐིག", + "གྲངས་འབོར།", + "འགྲེམས་སྤེལ།", + [ + "གཅིག་གྱུར།", + "ག་ཤན།" + ], + "ཚོས་གཅིག་མ།", + "སེལ་ཆེ་ཆུང་།", + "བཀོད་རིས།", + "འགྲོས།", + "ནུས་ཤུགས།", + "ཞིབ་ཕྲ་སྲུང་སྐྱོབ།", + "ཡིག་ཆའི་རྣམ་པ།", + "ཐགས་རན།", + "སག་སག", + "མཐའ།", + "ཁུངས།", + "ཁ་གཏད།", + "རྒྱུ་ལམ།", + "འབག", + "གར་ལོད།", + "རུ་སྒྲིག", + [ + "ཐིག", + "དབྱིབས།", + "པིག་ཟེལ།", + "ཨིན་ཅི།", + "སེན་ཊི་མི་ཊར།", + "མི་ལི་མི་ཊར།", + "བརྒྱ་ཆ།" + ], + "དབྱིབས།", + "ཟུར།", + "འདམ་ང་།", + [ + "རིང་ཚད།", + "བསྡུར་ཚད།", + "གང་རུང་།", + "སྒྲོམ་ཀྱི་རིགས།", + "རྫས་མཚུངས།", + "སྒྲོམ་གྱི་བར་ཐག", + "ཐིག་ཤིང་ཚད་གཞི།" + ], + "ལྷད་སེལ།", + "ཚོན་མདོག", + "བར་ཐག", + "ཚད།", + "རང་འགུལ་ངང་འདེམ།", + "འཚོལ།", + "ཚད་གཞི་གསར་བཀོད།", + [ + "འདྲ་པར།", + "འཆར་ངོས།", + "ཁ་པར།", + "ཁྱབ་བསྒྲགས།", + "པར་སློག་རྒྱག" + ], + [ + "རིན་མེད།", + "བསྡུར་ཚད་གཅིག", + "བསྡུར་ཚད་གཅིག་འཇོག" + ], + "རོགས་རམ།", + [ + "དབྱིབས་དངོས་མཐོང་།", + "དབྱིབས་དངོས་མཐོང་བཟོ་བཅོས།", + "ཕྱེད་ཚངས་ཐིག་གཅིག་པ།" + ], + "ཟིབ་ཟིབ།", + [ + "ཟུར་མང་ཅན།", + "སྐར་མ།", + "གཅུས་སྒྲིམ་ཅན།", + "གྲུ་བཞི།" + ], + [ + "ཟུར་གདོང་ཚངས་ཐིག", + "ཚངས་ཐིག་ནང་མ།" + ] + ], + [ + "ཚོན་མདོག", + [ + "གང་ཡང་མེད།", + "དམར་པོ།", + "ལི་ཝང་།", + "སེར་པོ།", + "ལྗང་ཁུ།", + "སྔོན་པོ།", + "མུ་མེན།", + "ཐལ་དོག", + "དཀར་པོ།", + "ཕྱི་གསལ་ནང་གསལ།", + "ནག་པོ།", + "སྔོ་ལྗང་།", + "དམར་སྨུག", + "བར་གནས།" + ], + "ཆ་ཚང་།", + "ཚད་རྩོད་མེད།", + "འོད་ཤུགས་ཉར་སྲུང་།" + ], + [ + "གྲིབ་གཟུགས།", + "གྲིབ་གཟུགས་ནང་མ།", + "འོད་གཟུགས་ཕྱི་མ།", + "འོད་གཟུགས་ནང་མ།", + "འཕྲེད་གསེག་དང་འབུར་རྐོས།", + "སྒང་ལ་ཚོན་འདེབས།", + "སྒང་ལ་སྟེགས་ཚོན་འདེབས།", + "སྒང་ལ་བཀོད་རིས་འདེབས།", + "འཇམ་འོད།", + "ཐིག་རིས།", + "སྡེབ་སྦྱོར་བཀོད་སྒྲིག", + "པིག་ཟེལ་འདེམ།" + ], + [ + "དབྱིབས་རྩེ།", + "ཤུགས་ལྡན་སྣེ།", + "ཁ་འཐོར།", + "ཚོན་ཤུགས་ཅན།", + [ + "ཆེ་ཆུང་ཚད་སག་སག", + "དཀྱིལ་ཐིགཉུང་ཤོས།", + "གྲུ་ཟུར་སག་སག", + "ཟླུམ་ཟུར་སག་སག", + "ཟླུམ་ཟུར་ཉུང་ཤོས།" + ], + [ + "གནས་སག་སག", + "གྲངས་བརྩིས།", + "གྲངས་སག་སག" + ], + [ + "ཁ་ངོས་དང་རྒྱབ་ངོས་སག་སག", + "ཚོན་སག་སག", + "ཧར་ལོད་སག་སག", + "བཀྲག་མདངས་སག་སག" + ], + [ + "Alt གནོན་ཞོར་འདྲ་ཤུལ་གྱི་ཁུངས་འདེམས།", + "ཁ་ངོས་དཀར་པོ་དང་། རྒྱབ་ངོས་ནག་པོ། དེ་ནས་ཧ་མ་གོ་རྣམས་ཐལ་མདོག་གྱིས་རྟགས་བརྒྱབ།", + "ངོས་འདི་བཟོ་བཅོས་མི་ཐུབ།", + "ཡིག་ངོས་འདི་སྔོན་ལ་ཁ་གཏོར་དགོས།", + "སྔོན་ལ་བསྡུ་རིས་ལྷུ་བཤིག", + "ངོས་མང་པོ་འདེམས།", + "ངོས་ཁར་ཐུག་བཟོ།", + "ཡིག་ཆ་ཞིག་སྔོན་ལ་ཁ་ཕྱེ།", + "ད་ལྟའི་སྒེའུ་ཁུང་དེ་ཁ་རྒྱོབས།", + "ད་ལྟའི་ལག་ཆ་ཁོ་ན།" + ], + [ + "བྱ་རིམ་ཐོ་ལེན།", + "བྱ་རིམ་སྡེ་གསར་པ།", + "བྱ་རིམ་གསར་པ།" + ], + [ + "གློག་སྨྱུག་གནོན་ཤུགས་ཀྱིས་གསལ་ཆ་ཚོད་འཛིན།", + "གློག་སྨྱུག་གནོན་ཤུགས་ཀྱིས་ཁ་ཆེ་ཆུང་ཚོད་འཛིན།" + ], + [ + "སྤྱིར་བཏང་།", + "ཐིམ་པ།", + "ནག་ཏུ་གཏོང་།", + "འཕེལ་སྐྱེད་གཏོང་།", + "མཚོན་སྲེག", + "ཐད་སྲེག", + "མཚོན་ནག་ཏུ་གཏོང་།", + "དཀར་རུ་གཏོང་།", + "གསང་ཡོལ།", + "མཚོན་གཡོལ།", + "ཐད་གཡོལ།", + "དཀར་ཆ་ཆེ་བའི་མཚོན།", + "ཡོངས་སུ་འགྲེམ་པ།", + "འོད་འཇམ་པ།", + "འོད་ཤུགས་ཆེ་བ།", + "འོད་གསལ།", + "འོག་ཕྱོགས་གཅིག", + "འོད་སྣེ་མོ་གཅིག", + "སྲེ་ཆེ་བ།", + "བར་ཁྱད་ཅན།", + "ཟུར་འདོན་ཅན།", + "འབྲེད་པ་ཅན།", + "ཆ་བགོས་ཅན།", + "ཚོན།", + "ཟབ་ཚོན།", + "ཚོན་ཁྲ།", + "འོད་ཀྱི་ཁྱབ་ཤུགས།", + "གསེབ་ལམ།" + ] + ], + [ + "ཕྱོགས་སྟོན།", + "རྗེས་འདེད།", + "མ་ཐིག་སྤར།", + [ + "ནག་ཐིག་ཅན་གྱི་ཡི་གེར་སྒྱུར།", + "ཡི་གེའི་དུམ་མཚམས་ལ་སྒྱུར།" + ] + ], + [ + "ངོས་ཆ་ཚང་།", + "ད་ལྟའི་ངོས།", + "འདེམས་བྱ།", + "ད་ལྟ་དང་འདིའི་འོག་མ།" + ], + [ + "བརྗེ་ལེན།", + "ཟླ་སྒྲིལ།", + "འཐེན་པ།", + "འབྲེལ་ཐུག", + "ཟུར་འདོན།", + "ཟླ་སྒྲིལ།" + ], + [ + [ + "ནར་མོ།", + "འཁོར་མོ།", + "གྲུ་ཟུར།", + "ལྡོག་འཕྲོས།", + "ས་ཕག", + "གཟུགས་འཐོར།" + ], + [ + "སོབ་སོབ།", + "ཏག་ཏག" + ], + [ + "ཕྱི་གསེག", + "ནང་གསེག", + "འབུར་བཟོ།", + "འབོལ་འབུར།", + "ཞུ་འབུར།", + "ཐིག་གི་སྦོམ་ཚད།" + ], + [ + "འཇམ་ཤ", + "གཟོང་རྩུབ་པ།", + "གཟོང་འཇམ་པ།", + "འཇམ་ལོས།" + ], + [ + "ཡར།", + "མར།" + ], + [ + "ཕྱི་ལ།", + "དཀྱིལ་ལ།", + "ནང་ལ།", + "དཀྱིལ་ནས།" + ], + [ + "གྲིབ་གཟུགས།", + "གྲིབ་མདངས་དབུས།", + "དཀར་ཆ།" + ], + [ + "ཚོན་སླ་པོ།", + "ཧར་པོ།" + ], + [ + "ཆུང་།", + "འབྲིང་།", + "ཆེ།" + ], + [ + "རྩེ།", + "ཟུར།", + "དུམ་ཐིག" + ] + ], + [ + "བརྡ་མོའི་འོག་དེ་འདེམས།", + "གཟུགས་འགྱུར་སྟངས་འཛིན།", + "པིག་ཟེལ་ནས་པིག་ཟེལ།", + "ངོས་འདིར་བཀངས།", + [ + "གཡོན་ཟུར་སྟར་སྒྲིག", + "འཕྲེད་ཀྱི་དཀྱིལ།", + "གཡས་ཟུར་སྟར་སྒྲིག", + "སྟེང་ཟུར་སྟར་སྒྲིག", + "གྱེན་གྱི་དཀྱིལ།", + "འོག་ཟུར་སྟར་སྒྲིག", + "བར་སྟོང་གཅིག་པ།" + ] + ], + [ + "སྟེང་དུ་འཇོག", + "ད་ལྟའི་ལས་འཆར།", + "ལས་འཆར་གསར་པ།", + "སྤུས་ཚད།", + "ད་ལྟའི་ལས་འཆར་ཐོག་སྣོན།", + "ལས་འཆར་གསར་པ་ཕྱེ་ཟིན།", + "པར་ཆས་སྤྱོད་རྒྱུར་བཀག་འགོག་བྱུང་སོང་།" + ], + [ + "ཁ་ཕྱོགས།", + "གུག་གུག", + "འཕྲེད་ལ་སྣར།", + "གྱེན་ལ་སྣར།", + [ + "འཕྲེད་ལ།", + "གྱེན་ལ།", + "འཕྲེད་ལ།", + "གྱེན་ལ།" + ], + [ + "གང་ཡང་མིན།", + "གཞུ་དབྱིབས།", + "གཞུ་དབྱིབས་འོག་མ།", + "གཞུ་དབྱིབས་སྒང་མ།", + "གུག་ཆ།", + "འབུར་འབུར།", + "ཉ་སྐོགས་འོག་མ།", + "ཉ་སྐོགས་སྒང་མ།", + "དར་ཆ།", + "རླབས།", + "ཉ།", + "ཐོན་པ།", + "ཉ་མིག", + "རྒྱངས་པ།", + "བཙིར་བ།", + "གཅུ་སྒྲིམ།", + "རང་མོས་ལྟར།" + ], + [ + "ཡིག་གཟུགས།", + "དེ་ད་ལྟ་མིན་འདུག", + "སྤྱད་དེ་སྒྲིག་ངེས།", + "ལས་འཕྲོས་ཤིག་འདིར་འདུག", + "འདི་ཁ་རྒྱབ་མཁན་ཡིན་ནམ།" + ], + [ + "ཚོན་བརྗེ་རེས།", + "དང་ཐོག དཀར་ནག" + ] + ], + [ + "འདྲེན་ཟིན།", + "སྣོན་ཟིན།", + "སྣོན་ཐིག་འགུལ།", + "སྣོན་ཐིག་སུབ།", + "སྣོན་ཐིག་གསར་པ།", + "འདྲེན་བཞིན་པ།", + "ཕབས། ཚད། 0" + ], + [ + "ཚགས་སྡེ།", + [ + [ + "གཤེར་ཁུ།", + [ + "ནག་ནོག", + "བསྐྱར་གསོ།", + "འཇམ་ཤ", + "སྦྲུལ་འཁྱིལ།", + "འཁུམ་པ།", + "རྒྱང་པ།", + "གཡོན་ལ་སྐུལ།", + "ཧྲེང་།", + "མ་ཧྲེང་།" + ] + ], + [ + "དྭངས་ཤེལ་སྒྲིག" + ] + ], + "རབ་རིབ།", + [ + "ཆ་སྙོམ།", + "རབ་རིབ།", + "རབ་རིབ་མང་ཙམ།", + "ས་ཕག་རབ་རིབ།", + "ག་ཤན་རབ་རིབ།", + "དྭངས་ཤེལ་རབ་རིབ།", + "གཡོ་འགུལ་རབ་རིབ།", + "འཁོར་མོ་རབ་རིབ།", + "གཟུགས་རབ་རིབ།", + "བསྡུ་རབ་རིབ།", + "ཕྱི་ངོས་རབ་རིག" + ], + "སྣར།", + [ + "གནས་སྤོ།", + "ཕྲན་ཙམ།", + "གཞུང་ཐིག་འབྲེལ་གནས།", + "རླབས་ཕྲན།", + "གཏུབ་པ།", + "ཟླུམ་གཟུགས།", + "རླབས།" + ], + "ལྷད།", + [ + "ལྷད་སྣོན།", + "ཟེགས་རྡུལ་འཇོམས།", + "ཐལ་བ་དང་བྲད་ཤུལ།", + "གུང་ཐིག" + ], + "པིག་ཟེལ་བཟོ་བ།", + [ + "ཚོན་མདངས་ཕྱེད།", + "དྭངས་ཤེལ་ཅན།", + "ཟུར་ངོས།", + "དུམ་བུ།", + "མེ་ཛོ་ཊིན།", + "རྡོ་ཧྲུག", + "ཚོན་འབྲུ།" + ], + "སྒྲིག་སྦྱང་།", + [ + "སྤྲིན།", + "བར་ཁྱད་ཅན་གྱི་སྤྲིན་པ།", + "དྭངས་ཤེལ་འོད་འཚེར།" + ], + "གསལ་ཆ།", + [ + "དྭངས་གསལ།", + "མཐའ་ཟུར་དྭངས་གསལ།", + "དྭང་གསལ་མང་ཙམ།", + "བསྡུ་དྭང་གསལ།", + "འབག་དྭངས་གསལ་མེད་པ།" + ], + "བཀོད་སྒྲིག་བྱས།", + [ + "གྲམ་པ།", + "འབུར་འབུར།", + "བཙིར་འདོན།", + "མཐའ་ཟུར་བཙལ།", + "སྣུམ་ཚོན་རི་མོ།" + ], + "གཞན།", + [ + "རང་མོས་ལྟར།", + "ལ་མཐོ་བ།", + "མཐོ་ཤོས།", + "ཉུང་ཤོས།", + "ཟུར་འཇོག", + "བསྐྱར་ལྡབ།" + ], + [ + "ཚད་ཐིག་མེད་པའི་ས་ཆ།", + "ཕྱི་གསལ་ནང་གསལ་འདེམས།", + "མཐའ་ཟུར་པིག་ཟེར་བསྐྱར་ལྡབ།", + "ཕྱོགས་མཚམས་ནས་བསྐོར།", + "ཚགས་མཐའ་མ།", + "སྔོན་ལྟ།" + ] + ], + [ + "དཔེ་དཔང་།", + [ + "ཡིག་གཟུགས་ཚགས།", + "གནད་ཚིག", + "གང་བྱུང་བྱུང་ཞིག" + ], + [ + "དཔེ་མཚོན་མཉམ་དུ།", + "དཔར་དང་མཉམ་དུ།" + ], + [ + "དཔེ་རིས།", + "ཐོ།" + ] + ] + ], + [ + [ + "Fitxer", + "Editar", + "Imatge", + "Capa", + "Carpeta", + "Selecciona", + "Filtre", + "Veure", + "Finestra", + "Llengua", + "Inici de sessió", + "Surt", + "Crear traducció", + [ + "Compte", + "Condicions d'ús", + "Endarrere", + "Sobre", + "Informa d'un error", + "Aprendre" + ], + "Més", + "Tema", + "Utilitza WebGL", + [ + "Photopea: editor d'imatges avançat", + "Editor en línia gratuït que admet formats PSD, XCF, Sketch, XD i CDR.", + "Creeu una imatge nova o obriu els fitxers existents des de l’ordinador. Deseu el vostre treball com a PSD (Fitxer - Desar com a PSD) o com a JPG / PNG / SVG (Fitxer - Exportar com).", + "Suggeriu noves funcions al nostre o . El nostre objectiu és crear .", + "Els enllaços dels patrocinadors s'obren en una finestra nova.", + null, + "Instal·la Photopea" + ] + ], + [ + "Obrir", + "Publicar en línia", + "Desar", + "Desar com a PSD", + "Imprimir", + "Obrir des d'enllaç", + "Obrir des de l'ordinador", + "Connecta amb Google Drive", + "Exportar com a", + "Exportar les capes", + "Script", + "Obrir i situar", + "Tancar", + "Emmagatzematge local", + null + ], + [ + "Pas endavant", + "Pas enrere", + "Neteja", + "Omple", + "Transformar", + "Gira", + "Gireu VAR0", + "Escala VAR0", + "Desfer / Refer", + "Perspectiva", + [ + "Fusionar automàticament", + null + ], + "Esvaeix", + null + ], + "Ajustaments", + [ + "Brillantor/Contrast", + "Nivells", + "Corbes", + "Exposició", + "Vivor", + "To/Saturació", + "Balanç de color", + "Blanc i negre", + "Filtre fotogràfic", + "Mesclador de canals", + "Cerca de colors", + "Invertir", + "Redueix el nombre de colors", + "Llindar", + "Mapa de degradat", + "Color selectiu", + [ + "To automàtic", + "Contrast automàtic", + "Color automàtic" + ], + "Reemplaça color" + ], + [ + "Tallar", + "Copiar", + "Enganxar", + "Nou", + "Eliminar", + "Habilitar", + "Inhabilitar", + "Còpiar fusionada", + "Aplica", + "De nou", + "Actualització" + ], + [ + "Duplica la capa", + "Nova capa d'ajustament", + "Màscara ràster", + "Màscara vectorial", + "Afegir (mostra-ho tot)", + [ + "Afegir (amaga-ho tot)", + "Revelar la selecció", + "Amaga la selecció", + "A partir de transparència" + ], + [ + "Màscara de retall", + "Mode de màscara ràpida" + ], + "Convertir en objecte intel·ligent", + "Aplana", + "Agrupa les capes", + "Fusiona cap avall", + "Fusiona cap amunt", + [ + "Fusiona les capes", + "Aplana la imatge" + ], + "Nova capa", + "Habilita màscara ràster", + "Inhabilita màscara ràster", + "Habilita màscara vectorial", + "Inhabilita màscara vectorial", + "Habilita màscara de retall", + "Inhabilita máscara de retall", + "Nova Carpeta", + "Afegir màscara ràster", + "Eliminar màscara ràster", + "Afegir màscara vectorial", + "Eliminar màscara vectorial", + "Enllaça màscara ràster", + "Desenllaça màscara ràster", + "Enllaça màscara vectorial", + "Desenllaça màscara vectorial", + "Habilita els efectes de capa", + "Inhabilita els efectes de capa", + "Eliminar capa", + "Canvia l'opacitat de la capa", + "Canvia de fusió", + "Aplana l'estil de la capa", + "Ordre de les capes", + [ + "Creant objecte intel·ligent", + "Actualitzant objecte intel·ligent", + "Situant objecte intel·ligent", + "Font (objecte intel·ligent)", + null + ], + "Canvia el nom", + "Canvia color", + "Edita la capa d'ajustament", + "Convertir en forma", + "Habilita màscara de filtre", + "Inhabilita màscara de filtre", + "Habilita els filtres intel·ligents", + "Inhabilita filtres intel·ligents", + "Afegir màscara de filtre", + "Eliminar màscara de filtre", + "Neteja filtres intel·ligents", + [ + [ + "Emplena amb color sòlid", + "Emplena amb degradat", + "Emplena amb un patró", + "Segons el contingut" + ], + "Nova capa d'emplenament", + "Modifica la capa d'emplenament" + ], + "Capa a través d'una còpia", + "Màscara de filtre", + "Eliminar l'estil de la capa", + "Mou filtre intel·ligent", + "Eliminar filtre intel·ligent", + [ + "Enllaça capes", + "Desenllaça capes" + ], + "Organitza", + [ + "Porta al davant", + "Porta endavant", + "Mou cap al fons", + "Envia cap endarrere" + ], + [ + "La capa està blocada", + "Bloqueja canvis", + null + ], + null + ], + [ + "Tot", + "Deseleccionar", + "Inverteix", + "Modifica", + "Expandeix", + "Redueix", + "Pluma", + "Mou la selecció", + "Rang de color", + "Vora", + "Transformar la selecció", + "Refina la vora", + "Sanar la selecció", + null + ], + [ + "Ampliar", + "Reduir", + "Guies", + "Regles", + "Quadrícula", + "Ajusta", + "Ajusta a", + "Límits del document", + "Quadrícula de píxels", + "Camí", + "Ajusta a píxels", + [ + "Sectors", + "Opcions delliçans" + ], + "Mostrar" + ], + [ + "Historial", + "Capes", + "Propietats", + "Pinzell", + "Caràcters", + "Paràgraf", + "Informació", + "Composició de capa", + "Mostres", + "Accions", + "Histograma", + "Navegador", + "Predefinits de l'eina", + null + ], + [ + "Eina pinzell", + "Eina de clonació", + "Eina escapça", + "Eina borrador", + "Selecció el·líptica", + "Comptagotes", + "Degradat", + "Eina mà", + "Eina de text", + "Selecció lliure", + "Selecció llaç magnètic", + "Eina mou", + "Vareta màgica", + "Eina cubell de pintura", + "Selecció amb llaç poligonal", + "Selecció rectangular", + "Transformació lliure", + "Lupa", + "Eina desenfoca", + "Perfila", + "Eina difumina", + "Eina esvaeix", + "Eina crema", + "Esponja", + "Eina pinzell corrector puntual", + "Eina pinzell corrector", + "Eina pedaç", + "Selecció de camí", + "Selecció directa", + "Llapis", + "Llapis lliure", + "Forma personalitzada", + "Rectangle", + "El·lipse", + "Forma paramètrica", + "Línia", + "Regle", + "Selecció ràpida", + "Eina pinzell", + "Escapça amb perspectiva", + "Eina de Sectors", + "Eina de Selecció de Sectors", + "Substitució de color", + "Eina Ull Vermell", + "Selecció d'objecte", + "Esborra fons", + null, + null, + null, + null + ], + [ + "Prendre una foto", + "Tria un color", + "Editor de contorn", + "Mida del llenç", + "Duplica a ...", + "Editor de degradat", + "Estil de la capa", + "Projecte nou", + "Desar per web", + "Deforma", + "Mida de la imatge", + "Vectoritza el mapa de bits", + [ + "Retalla", + "Buida", + null + ], + "Dreceres del teclat", + "Afegir guies", + [ + "Neteja guies", + "Guies de la capa" + ] + ], + [ + "Opacitat", + "Efectes", + "Brillantor", + [ + "Contrast", + "Utilitzeu l’algorisme anterior" + ], + "Canal", + "Exposició", + "Desplaçament", + "Correcció gamma", + "To", + "Saturació", + "Brillantor", + "Acoloreix", + "Tram", + "Vivesa", + [ + "Mida", + "Interpolació", + "Veí més proper", + "Bilinear" + ], + "Angle", + "Arrodoniment", + "Duresa", + "Espaiat", + [ + "Mode de fusió", + "Fusionar si és" + ], + "Mida de la mostra", + "Contorn", + "Estil", + [ + "Inverteix", + "Relatiu", + "Àncora" + ], + "Tolerància", + "Contigu", + "Emplena", + "Utilitza angle global", + "Distància", + "Escampa", + "Soroll", + "Amaga l'ombra paral·lela", + "Tècnica", + "Direcció", + "Profunditat", + "Suavitza", + "Mode", + "Degradat", + "Escala", + "Alinea amb la capa", + "Posició", + "Amplada", + "Alçada", + "Destinació", + "Tipus", + "Primer pla", + "Fons", + "Personalitzat", + "Nom", + "Crea", + "Format", + "Mantén la relació d'aspecte", + [ + "Qualitat", + "Pàgines" + ], + "Duplica", + "Mou", + "Filtres intel·ligents", + "Radi", + "Quantitat", + "Distribució", + [ + "Uniforme", + "Gausià" + ], + "Monocromàtic", + "Mida de la cel·la", + "Patró", + "Flux", + "Intensitat", + "Protegir detall", + "Tipus d'emplenament", + "Textura", + "Fluctuació", + "Vora", + "Font", + "Objectiu", + "Canals", + "Màscara", + "Densitat", + "Alineat", + [ + "Camí", + "Forma", + "Píxels", + "Polzades", + "Centímetres", + "Mil·límetres", + "Percentatge" + ], + "Formes", + "Costats", + "Preferències", + [ + "Longitud", + "Ràtio", + "Qualsevol", + "Tipus de quadrícula", + "Isomètrica", + "Espaiat de quadrícula", + "Unitat de regla" + ], + "Reducció del soroll", + "Colors", + "Distàncies", + "Taxa", + "Autoselecciona", + "Cerca", + "Definir nou", + [ + "Foto", + "Pantalla", + "Mòbil", + "Anuncis", + "Impressió" + ], + [ + "Lliure", + "Fixa relació", + "Mida fixa" + ], + "Ajuda", + [ + "Formes en directe", + "Edita formes en directe", + "Igualar radis" + ], + "Tolerància", + [ + "Polígon", + "Estrella", + "Espiral", + "Quadrat" + ], + [ + "Radi de cantonada", + "Radi interior" + ] + ], + [ + "Color", + [ + "Cap", + "Vermell", + "Taronja", + "Groc", + "Verd", + "Blau", + "Lila", + "Gris", + "Blanc", + "Transparent", + "Negre", + "Cian", + "Magenta", + "Neutre" + ], + "Total", + "Absolut", + "Conservar lluminositat" + ], + [ + "Ombra paral·lela", + "Ombra interior", + "Resplendor exterior", + "Resplendor intern", + "Bissell i relleu", + "Superposició de color", + "Superposició de degradat", + "Superposició de patró", + "Setinat", + "Traç", + "Opcions de fusió", + "Selecciona píxels" + ], + [ + "Forma suggerida", + "Dinàmica de punta", + "Dispersió", + "Dinàmica de color", + [ + "Variació de mida", + "Diàmetre mínim", + "Variació d'angle", + "Variació d'arrodoniment", + "Arrodoniment mínim" + ], + [ + "Variació de position", + "Conta", + "Variació del conta" + ], + [ + "Variació de primer pla/fons", + "Variació de to", + "Variació de saturació", + "Variació de brillantor" + ], + [ + "Selecciona la font de clonat mantenint Alt (o K) i fes clic sobre la imatge", + "Marca el primer pla amb blanc, el fons amb negre, i l'àrea desconeguda amb gris.", + "La capa no es pot editar.", + "La capa de text s'ha d'aplanar primer", + "L'objecte intel·ligent s'ha d'aplanar primer (rasterize)", + "Selecciona diverses capes", + "Redreçar la capa", + "Obriu un document primer.", + "Tanqueu la finestra actual primer.", + "Només eina actual" + ], + [ + "Gravar", + "Nou conjunt d'accions", + "Nova acció" + ], + [ + "La pressió de stylus controla l'opacitat", + "La pressió de stylus controla la mida" + ], + [ + "Normal", + "Dissol", + "Enfosqueix", + "Multiplica", + "Crema de color", + "Crema lineal", + "Color més fosc", + "Aclareix", + "Pantalla", + "Aclareix de color", + "Aclareix lineal", + "Color més clar", + "Superposa", + "Llum suau", + "Llum forta", + "Llum intensa", + "Llum lineal", + "Llum focal", + "Mescla màxima", + "Diferència", + "Exclusió", + "Sostreu", + "Divideix", + "To", + "Saturació", + "Color", + "Lluminositat", + "Transferència" + ] + ], + [ + "Iniciar", + "Seguiment", + "Canvi de la línea base", + [ + "Convertir en text de punt", + "Convertir en text de paràgraf" + ] + ], + [ + "Totes les capes", + "Capa actual", + "Selecció", + "Actual i de sota" + ], + [ + "Reemplaça", + "Uneix", + "Resta", + "Intersecciona", + "Exclou", + "Fusiona" + ], + [ + [ + "Lineal", + "Radial", + "Angle", + "Reflexa", + "Diamant", + "Explosió de forma" + ], + [ + "Suavitzar", + "Precisió" + ], + [ + "Bisell extern", + "Bisell intern", + "Relleu", + "Relleu tipus coixí", + "Traç de relleu", + "Amplada de traç" + ], + [ + "Suau", + "Tall fort", + "Tall suau", + "Suavització" + ], + [ + "Amunt", + "Avall" + ], + [ + "Fora", + "Centre", + "Dins", + "Des del centre" + ], + [ + "Ombres", + "Tons mitjans", + "Ressaltats" + ], + [ + "Dessatura", + "Satura" + ], + [ + "Petit", + "Mitjà", + "Gran" + ], + [ + "Tapes", + "Cantonades", + "Guions" + ] + ], + [ + "Tria l'objecte a sota del cursor", + "Controls de transformació", + "Píxel a píxel", + "Adapta a l'àrea", + [ + "Alinea les vores a l'esquerra", + "Centra horitzontalment", + "Alinea les vores a la dreta", + "Alinea les vores a dalt", + "Centra verticalment", + "Alinea les vores a sota", + "Iguala els buits" + ] + ], + [ + "Situar a", + "Projecte actual", + "Projecte nou", + "Resolució", + "Afegit a el projecte actual.", + "S'ha creat un nou projecte.", + "S'ha denegat l'accés a la càmara." + ], + [ + "Orientació", + "Torça", + "Distorció horitzontal", + "Distorció vertical", + [ + "Horitzontal", + "Vertical", + "horitzontalment", + "verticalment" + ], + [ + "Cap", + "Arc", + "Arc inferior", + "Arc superior", + "Arc", + "Infla", + "Closca Inferior", + "Capa Superior", + "Senyal", + "Ona", + "Peix", + "Augmentar", + "Ull de peix", + "Infla", + "Comprimeix", + "Gira", + "Personalitzat" + ], + [ + "Font", + "no està disponible", + "Es renderitzarà utilitzant", + "Hi ha treball no guardat en", + "Realment vols tancar-lo?" + ], + [ + "Intercanvia colors", + "Per defecte: Blanc i negre" + ] + ], + [ + "carregat", + "afegit", + "Mou guia", + "Eliminar guia", + "Afegeix guia", + "Carregant", + "Carregar VAR0" + ], + [ + "Galeria de filtres", + [ + [ + "Liqua", + [ + "Escampa", + "Reconstrueix", + "Suavitza", + "Regira", + "Encongeix", + "Bufa", + "Empeny a l'esquerra", + "Congela", + "Descongela" + ] + ], + [ + "Correcció de les lents" + ] + ], + "Desenfoca", + [ + "Promig", + "Difumina", + "Difumina més", + "Control de difuminat", + "Difuminat gaussià", + "Difuminat de lent", + "Difumina mode moviment", + "Difuminat radial", + "Difuminat de forma", + "Difuminat intel·ligent", + "Difuminat de superfície" + ], + "Distorciona", + [ + "Desplaça", + "Pessiga", + "Coordenades polars", + "Onades del mar", + "Inclina", + "Esfèric", + "Onada" + ], + "Soroll", + [ + "Afegeix soroll", + "Elimina els pics", + "Pols i ratllades", + "Mitjana" + ], + "Pixela", + [ + "Mig to de color", + "Cristal·litza", + "Faceta", + "Fragment", + "Manera negra", + "Mosaic", + "Puntillisme" + ], + "Renderitza", + [ + "Núvols", + "Diferencia de núvols", + "Llum enlluernador" + ], + "Realça la vora", + [ + "Realça la vora", + "Ressalta les vores", + "Ressalta més", + "Realçat intel·ligent", + "Emmascara les parts borroses" + ], + "Estilitza", + [ + "Difusió", + "Esculpeix", + "Extrusió", + "Detecta els contorns", + null + ], + "Altres", + [ + "Personalitza", + "Filtre passaalt", + "Màxim", + "Mínim", + "Desplaçament", + "Repetir" + ], + [ + "Àrea indefinida", + "Fes transparent", + "Repeteix els píxels de la vora", + "Ajusta al voltant", + "Últim filtre", + "Previsualització" + ] + ], + [ + "Plantilles", + [ + "Filtre de tipus de lletra", + "Paraules clau", + "Aleatori" + ], + [ + "Amb símbols", + "Amb fotografia" + ], + [ + "Miniatura", + "Llista" + ] + ] + ], + [ + [ + "Fil", + "Rediger", + "Bilde", + "Lag", + "Mappe", + "Velg", + "Filter", + "Visning", + "Vindu", + "Språk", + "Logg inn", + "Logg ut", + "Opprett oversettelse", + [ + "Konto", + "Brukervilkår", + "Tilbake", + "Om appen", + "Rapporter en feil", + "Læring" + ], + "Mer", + "Tema", + "Bruk WebGL", + [ + "Photopea: avansert bilderedigerer", + "Gratis online editor som støtter PSD, XCF, Sketch, XD og CDR formater.", + "Opprett et nytt bilde eller åpne eksisterende filer fra datamaskinen. Lagre arbeidet ditt som PSD (Fil - Lagre som PSD) eller som JPG / PNG / SVG (Fil - Eksporter som).", + "Foreslå nye funksjoner på vår eller . Målet vårt er å lage .", + "Sponsorlenker åpnes i nytt vindu.", + "Denne funksjonen er ikke tilgjengelig.", + "Installer Photopea" + ] + ], + [ + "Åpne", + "Publiser online", + "Lagre", + "Lagre som PSD", + "Skriv ut", + "Åpne fra URL", + "Åpne fra datamaskin", + "Koble til Google Drive", + "Eksporter som", + "Eksporter lag", + "Skript", + "Åpne og plassér", + "Lukk", + "Lokallagring", + null + ], + [ + "Gå frem", + "Gå tilbake", + "Tøm", + "Fyll", + "Transformer", + "Roter", + "Vend VAR0", + "Skalér VAR0", + "Angre/gjenta", + "Perspektiv", + [ + "Automatisk blanding", + "Juster automatisk" + ], + "Uttoning", + "Bruk bilde" + ], + "Justeringer", + [ + "Lysstyrke/kontrast", + "Nivåer", + "Kurver", + "Eksponering", + "Dynamikk", + "Kulør/metning", + "Fargebalanse", + "Svart-hvitt", + "Fotofilter", + "Kanaler", + "Fargeoppslag", + "Invertér", + "Fargereduksjon", + "Terskel", + "Graderingskart", + "Selektiv farge", + [ + "Automatisk tone", + "Automatisk kontrast", + "Automatisk farge" + ], + "Erstatt farge" + ], + [ + "Klipp ut", + "Kopier", + "Lim inn", + "Ny", + "Slett", + "Aktiver", + "Deaktiver", + "Kopier sammenflettet", + "Bruk", + "På nytt", + "Oppdater" + ], + [ + "Duplisér lag", + "Nytt justeringslag", + "Rastermaskering", + "Vektormaskering", + "Legg til (vis alle)", + [ + "Legg til (skjul alle)", + "Vis markering", + "Skjul markering", + "Fra gjennomsiktighet" + ], + [ + "Utklippsmaskering", + "Hurtigmaskemodus" + ], + "Gjør om til Smartobjekt", + "Rastrer", + "Gruppér lag", + "Slå sammen nedover", + "Slå sammen oppover", + [ + "Slå sammen lag", + "Slå sammen alle lag" + ], + "Nytt lag", + "Aktiver rastermaskering", + "Deaktiver rastermaskering", + "Aktiver vektormaskering", + "Deaktiver vektormaskering", + "Aktiver utklippsmaskering", + "Deaktiver utklippsmaskering", + "Ny mappe", + "Legg til rastermaskering", + "Slett rastermaskering", + "Legg til vektormaskering", + "Slett vektormaskering", + "Koble sammen rastermaskering", + "Koble fra rastermaskering", + "Koble til vektormaskering", + "Koble fra vektormaskering", + "Aktiver lageffekter", + "Deaktiver lageffekter", + "Slett lag", + "Laggjennomsiktighetsendring", + "Blandingsmodus endring", + "Rastrer lagstil", + "Lagrekkefølge", + [ + "Oppretter Smartobjekt", + "Oppdaterer Smartobjekt", + "Plasserer Smartobjekt", + "Kilde (Smartobjekt)", + "Stakkmodus" + ], + "Navneeendring", + "Fargeendring", + "Rediger justeringslag", + "Konverter til form", + "Aktiver filtermaskering", + "Deaktiver filtermaskering", + "Aktiver Smart-filtre", + "Deaktiver Smart-filtre", + "Legg til filtermaskering", + "Slett filtermaskering", + "Slett Smart-filtre", + [ + [ + "Ensfarget fyll", + "Graderingsfyll", + "Mønsterfyll", + "Innholdstilpasset" + ], + "Nytt fyllag", + "Modifiser fyllag" + ], + "Nytt lag via kopier", + "Filtermaskering", + "Slett lagstil", + "Flytt Smart-filter", + "Slett Smart-filter", + [ + "Koble til lag", + "Koble fra lag" + ], + "Ordne", + [ + "Plasser lengst frem", + "Flytt fremover", + "Flytt bakover", + "Plasser lengst bak" + ], + [ + "Laget er låst.", + "Låsendring", + "Lås" + ], + null + ], + [ + "Alt", + "Fravelg", + "Inverter", + "Endre", + "Utvid", + "Trekk sammen", + "Uttoning", + "Flytt markering", + "Fargespekter", + "Ramme", + "Transformer markering", + "Finjuster kant", + "Forbedre markering", + null + ], + [ + "Zoom inn", + "Zoom ut", + "Hjelpelinjer", + "Linjaler", + "Rutenett", + "Fest", + "Fest til", + "Dokumentgrenser", + "Rutenett for bildepunkter", + "Baner", + "Fest til piksler", + [ + "Stykker", + "Alternativer for stykke" + ], + "Vis" + ], + [ + "Historie", + "Lag", + "Egenskaper", + "Pensel", + "Tegn", + "Avsnitt", + "Info", + "Lagsammensetninger", + "Fargekart", + "Prosedyrer", + "Histogram", + "Navigatør", + "Forhåndsinnstillinger for verktøy", + "Tegnvarianter" + ], + [ + "Pensel", + "Kloneverktøy", + "Beskjæring", + "Viskelær", + "Ellipsemarkering", + "Pipette", + "Graderingsverktøyet", + "Hånd", + "Tekstverktøy", + "Lassomarkering", + "Magnetisk lassomarkering", + "Flytt", + "Tryllestavverktøy", + "Malingsspann", + "Mangekantet lassomarkering", + "Rektangelmarkering", + "Fri transformer", + "Zoom", + "Gjør uskarpt", + "Gjør skarpere", + "Finger", + "Lysne", + "Mørkne", + "Svamp", + "Flekkreparering", + "Repareringspensel", + "Lappeverktøy", + "Banemerkingsverktøyet", + "Hurtigvalgverktøy", + "Penn", + "Fri penn", + "Egendefinert form", + "Rektangel", + "Ellipse", + "Parametrisk form", + "Linje", + "Linjal", + "Hurtigmarkering", + "Blyant", + "Perspektivbeskjæring", + "Stykkeverktøyet", + "Stykkemarkeringsverktøyet", + "Fargeerstatningsverktøyet", + "Røde øyne-verktøyet", + "Objektvalg", + "Bakgrunnsviskelæret", + "Marionettfordreining", + "Visningsrotering", + "Innholdstilpasset skala", + "Innholdstilpasset flytteverktøy" + ], + [ + "Ta et bilde", + "Fargevelger", + "Konturredigering", + "Arbeidsområde", + "Kopier inn i...", + "Graderingsredigering", + "Lagstil", + "Nytt prosjekt", + "Lagre for web", + "Fordrei", + "Bildestørrelse", + "Vektoriser punktgrafikk", + [ + "Skjær til", + "Beskjære", + "Vis alt" + ], + "Tastatursnarveier", + "Legg til hjelpelinjer", + [ + "Fjern hjelpelinjer", + "Hjelpelinjer fra lag" + ] + ], + [ + "Gjennomsiktighet", + "Effekter", + "Lysstyrke", + [ + "Kontrast", + "Bruk utdatert" + ], + "Kanal", + "Eksponering", + "Forskyvning", + "Gammakorreksjon", + "Kulør", + "Metning", + "Lyshet", + "Fargelegg", + "Område", + "Tilpasset metning", + [ + "Størrelse", + "Interpolering", + "Nærmeste nabo", + "Bilineær" + ], + "Vinkel", + "Rundhet", + "Hardhet", + "Mellomrom", + [ + "Blandingsmodus", + "Bruk overgang hvis" + ], + "Størrelse på eksempel", + "Kontur", + "Stil", + [ + "Reverser", + "Relativ", + "Anker" + ], + "Toleranse", + "Sammenhengende", + "Fyll", + "Bruk global vinkel", + "Avstand", + "Spre", + "Støy", + "Fjern bakgrunnsskygge", + "Teknikk", + "Retning", + "Dybde", + "Mykgjør", + "Modus", + "Gradering", + "Skala", + "Juster etter lag", + "Posisjon", + "Bredde", + "Høyde", + "Mål", + "Type", + "Forgrunn", + "Bakgrunn", + "Tilpasset", + "Navn", + "Opprett", + "Format", + "Behold størrelsesforhold", + [ + "Kvalitet", + "Sider" + ], + "Dupliser", + "Flytt", + "Smarte filtre", + "Radius", + "Mengde", + "Distribusjon", + [ + "Ensartet", + "Gaussisk" + ], + "Ensfarget", + "Cellestørrelse", + "Mønster", + "Flyt", + "Styrke", + "Beskytt detaljer", + "Fylltype", + "Tekstur", + "Variasjon", + "Kant", + "Kilde", + "Mål", + "Kanaler", + "Maskering", + "Tetthet", + "Justert", + [ + "Bane", + "Form", + "Piksler", + "Tommer", + "Centimeter", + "Millimeter", + "Prosent" + ], + "Former", + "Sider", + "Innstillinger", + [ + "Lengde", + "Forhold", + "Vilkårlig", + "Rutenetttype", + "Isometrisk", + "Linjeavstand i rutenett", + "Linjalenheter" + ], + "Reduser støy", + "Farger", + "Avstander", + "Hastighet", + "Velg automatisk", + "Finn", + "Definer ny", + [ + "Foto", + "Skjerm", + "Mobiltelefon", + "Annonser", + "Utskrift" + ], + [ + "Fri", + "Fast forhold", + "Fast størrelse" + ], + "Hjelp", + [ + "Live form", + "Rediger live form", + "Lik hjørneavrunding" + ], + "Toleranse", + [ + "Mangekant", + "Stjerne", + "Spiral", + "Kvadratisk" + ], + [ + "Hjørneradius", + "Indre radius" + ] + ], + [ + "Farge", + [ + "Ingen", + "Rød", + "Oransje", + "Gul", + "Grønn", + "Blå", + "Lilla", + "Grå", + "Hvit", + "Gjennomsiktig", + "Svart", + "Cyan", + "Magenta", + "Nøytral" + ], + "Total", + "Absolutt", + "Bevar lysstyrke" + ], + [ + "Skygger", + "Indre skygge", + "Ytre glød", + "Indre glød", + "Skråkant og preg", + "Fargeoverlapping", + "Graderingsoverlapping", + "Mønsteroverlapping", + "Sateng", + "Strøk", + "Blandingsvalg", + "Velg piksler" + ], + [ + "Spissform", + "Spissdynamikk", + "Spredning", + "Fargedynamikk", + [ + "Størrelsesvariasjon", + "Minste diameter", + "Vinkelvariasjon", + "Rundhetsvariasjon", + "Minimal rundhet" + ], + [ + "Posisjonsvariasjon", + "Antall", + "Antallvariasjon" + ], + [ + "Forgrunns/bakgrunns-variasjon", + "Kulørvariasjon", + "Metningvariasjon", + "Lysstyrkevariasjon" + ], + [ + "Velg kilde for kloning ved å trykke Alt (eller K) og klikke på bildet.", + "Angi forgrunn med hvitt, bakgrunn med sort og ukjent område med grått.", + "Laget kan ikke endres.", + "Tekstlaget må gjøres om til punktgrafikk først", + "Smartobjekt må gjøres om til punktgrafikk først", + "Velg flere lag", + "Rett lag", + "Åpne et dokument først.", + "Lukk gjeldende vindu først.", + "Bare gjeldende verktøy" + ], + [ + "Start opptak", + "Ny prosedyrersett", + "Ny prosedyre" + ], + [ + "Stylus-trykk styrer gjennomsiktighet", + "Stylus-trykk styrer størrelsen" + ], + [ + "Normal", + "Dryss", + "Gjør mørkere", + "Flere", + "Mørkne farge", + "Lineær mørkning", + "Mørkere farge", + "Gjør lysere", + "Skjerm", + "Lysne farge", + "Lineær lysning", + "Lysere farge", + "Legg over", + "Mykt lys", + "Hardt lys", + "Sterkt lys", + "Lineært lys", + "Punktlys", + "Hard fargeblanding", + "Differens", + "Utelatelse", + "Trekk fra", + "Del", + "Kulør", + "Metning", + "Farge", + "Lysstyrke", + "Gjennomgang" + ] + ], + [ + "Linjeavstand", + "Bokstavmellomrom", + "Grunnlinjeforskyvning", + [ + "Konverter til punkttekst", + "Konverter til avsnittstekst" + ] + ], + [ + "Alle lag", + "Gjeldende lag", + "Markering", + "Gjeldende og under" + ], + [ + "Erstatt", + "Slå sammen", + "Trekk fra", + "Overlapp", + "Utelat", + "Slå sammen" + ], + [ + [ + "Lineær", + "Sirkulær", + "Vinkel", + "Speilet", + "Rombe", + "Shape Burst" + ], + [ + "Mykere", + "Nøyaktig" + ], + [ + "Ytre skråkant", + "Indre skråkant", + "Relieff", + "Putepreg", + "Strekrelieff", + "Strøkbredden" + ], + [ + "Jevn ut", + "Hard meisel", + "Myk meisel", + "Utjevning" + ], + [ + "Opp", + "Ned" + ], + [ + "Utsiden", + "Sentrum", + "Innsiden", + "Fra midten" + ], + [ + "Skygger", + "Mellomtoner", + "Høylys" + ], + [ + "Mindre metning", + "Metning" + ], + [ + "Liten", + "Medium", + "Stor" + ], + [ + "Endepunkter", + "Hjørner", + "Streger" + ] + ], + [ + "Velg objektet under markøren", + "Transformeringskontroller", + "Piksel til piksel", + "Tilpass området", + [ + "Juster venstrekanter", + "Sentrer horisontalt", + "Juster høyrekanter", + "Juster øvre kanter", + "Sentrer vertikalt", + "Juster nedre kanter", + "Selv avstander" + ] + ], + [ + "Plasser inn", + "Gjeldende prosjekt", + "Nytt prosjekt", + "Oppløsning", + "Lagt til i gjeldende prosjekt.", + "Et nytt prosjekt ble opprettet.", + "Ingen tilgang til kameraet." + ], + [ + "Retning", + "Bøy", + "Horisontal forvrengning", + "Vertikal forvrengning", + [ + "Horisontal", + "Vertikal", + "horisontalt", + "vertikalt" + ], + [ + "Ingen", + "Bue", + "Bue nedover", + "Bue oppover", + "Hvelv", + "Utbulning", + "Skjellform nedover", + "Skjellform oppover", + "Flagg", + "Bølge", + "Fisk", + "Stige", + "Fisheye", + "Pump opp", + "Trykk sammen", + "Vri", + "Egendefinert" + ], + [ + "Font", + "er ikke tilgjengelig", + "Vil bli rendert med", + "Det er ulagrede endringer i", + "Er du sikker på at du vil lukke det?" + ], + [ + "Bytt farger", + "Standard: Hvit og sort" + ] + ], + [ + "lastet", + "lagt til", + "Flytt hjelpelinje", + "Slett hjelpelinje", + "Legg til hjelpelinje", + "Laster", + "Laster inn VAR0" + ], + [ + "Filtergalleri", + [ + [ + "Gjør flytende", + [ + "Gni ut", + "Rekonstruer", + "Jevn ut", + "Snurr", + "Krymp", + "Øk størrelse", + "Skyv til venstre", + "Frys", + "Tin" + ] + ], + [ + "Objektivkorrigering" + ] + ], + "Uskarpt-filtre", + [ + "Gjennomsnittlig", + "Uskarphet", + "Mer uskarphet", + "Boksuskarphet", + "Gaussisk uskarphet", + "Linseuskarphet", + "Bevegelsesuskarphet", + "Radial uskarphet", + "Formuskarphet", + "Smart uskarphet", + "Overflateuskarphet" + ], + "Forvreng", + [ + "Forflytning", + "Knip", + "Polare koordinater", + "Krusninger", + "Klipp", + "Kuleformet", + "Bølger" + ], + "Støy-filtre", + [ + "Legg til støy", + "Flekkfjerning", + "Støv og skrammer", + "Median" + ], + "Bryt opp-filtre", + [ + "Rastermønster", + "Krystalliser", + "Fasetter", + "Fragmenter", + "Mezzotint", + "Mosaikk", + "Pointilist" + ], + "Gjengi-filtre", + [ + "Skyer", + "Dobbelteksponerte skyer", + "Motlysslør" + ], + "Gjør skarpere-filtre", + [ + "Gjør skarpere", + "Skarpere kanter", + "Gjør enda skarpere", + "Smart skarphet", + "Uskarp maske" + ], + "Spesialeffekter", + [ + "Diffus", + "Preg", + "Ekstruder", + "Finn kanter", + "Oljemaleri" + ], + "Andre-filtre", + [ + "Egendefinert", + "Høypass", + "Maksimum", + "Minimum", + "Forskyvning", + "Gjenta" + ], + [ + "Udefinert område", + "Sett til gjennomsiktig", + "Gjenta kantpiksler", + "Flyt rundt", + "Forrige filter", + "Forhåndsvis" + ] + ], + [ + "Maler", + [ + "Fontfilter", + "Nøkkelord", + "Bland" + ], + [ + "Med symboler", + "Med foto" + ], + [ + "Miniatyrer", + "Liste" + ] + ] + ], + [ + [ + "Fail", + "Muuda", + "Pilt", + "Kiht", + "Kaust", + "Märgista", + "Filter", + "Vaade", + "Aken", + "Keel", + "Logi sisse", + "Logi välja", + "Loo tõlge", + [ + "Konto", + "Kasutustingimused", + "Tagasi", + "Rakenduse kohta", + "Probleemist teatamine", + "Koolitus" + ], + "Veel", + "Teema", + "Kasuta WebGL", + [ + "Photopea: Täiustatud pildiredaktor", + "Tasuta online toimetaja, mis toetab PSD, XCF, Sketch, XD ja CDR formaate.", + "Looge uus pilt või avage arvutis olemasolevad failid. Salvestage oma töö PSD (Fail - Salvesta nagu PSD) või JPG / PNG / SVG (Fail - Ekspordi nagu).", + "Soovita uusi funktsioone meie või . Meie eesmärk on luua .", + "Sponsori lingid avatakse uues aknas.", + null, + null + ] + ], + [ + "Ava", + "Avalda veebis", + "Salvesta", + "Salvesta nagu PSD", + "Prindi", + "Ava veebiaadressilt", + "Ava arvutist", + "Ühendu Google Drive abil", + "Ekspordi nagu", + "Ekspordi kihid", + "Skript", + "Ava & Aseta", + "Sulge", + "Kohalik salvestus", + null + ], + [ + "Samm edasi", + "Samm tagasi", + "Tühjenda", + "Täida", + "Transformeeri", + "Pööra", + "VAR0 ümberpööre", + "VAR0 skaleerimine", + "Tagasi / Edasi", + "Perspektiiv", + [ + "Automaatne segamine", + null + ], + "Tuhmuma", + null + ], + "Kohandused", + [ + "Heledus/Kontrast", + "Heledustasemed", + "Kurvid", + "Säri", + "Paindlik värviküllastus", + "Toon/Küllastus", + "Värvi tasakaal", + "Must & Valge", + "Foto filter", + "Kanalite mikser", + "Värvi leidja", + "Pööra ringi", + "Posteriseeri", + "Barjäär", + "Gradiendi kaart", + "Valikuline Värv", + [ + "Auto Toon", + "Auto Kontrast", + "Auto Värv" + ], + "Asenda Värv" + ], + [ + "Lõika", + "Kopeeri", + "Kleebi", + "Uus", + "Kustuta", + "Võimalda", + "Keela", + "Kopeeri Kõik", + "Rakenda", + "Uuesti", + "Värskenda" + ], + [ + "Koopia Kihist", + "Uus Kohanduskiht", + "Rastermask", + "Vektormask", + "Lisa (Näita kõik)", + [ + "Lisa (Peida kõik)", + "Näita Märgistust", + "Peida Märgistust", + "Läbipaistvusest" + ], + [ + "Lõikemask", + null + ], + "Teisenda Targaks Objektiks", + "Rasteriseeri", + "Grupeeri Kihid", + "Liida alumisega", + "Liida Ülemisega", + [ + "Liida Kihid", + null + ], + "Uus Kiht", + "Võimalda Rastermask", + "Keela Rastermask", + "Võimalda Vektormask", + "Keela Vektormask", + "Võimalda Lõikemask", + "Keela Lõikemask", + "Uus Kaust", + "Lisa Rastermask", + "Kustuta Rastermask", + "Lisa Vektormask", + "Kustuta Vektormask", + "Ühenda Rastermask", + "Ühenda Lahti Rastermask", + "Ühenda Vektormask", + "Ühenda Lahti Vektormask", + "Võimalda Kihiefektid", + "Keela Kihiefektid", + "Kustuta Kiht", + "Kihi Nähtavuse Muutus", + "Segamisreziimi Muutus", + "Rasteriseeri Kihi Stiil", + "Kihtide Järjekord", + [ + "Loon Targa Objekti", + "Uuendan Targa Objekti", + "Paigutan Targa Objekti", + "Allikas (Tark objekt)", + null + ], + "Nime Muutus", + "Värvi Muutus", + "Muuda kohanduskihti", + "Teisenda Kujuks", + "Võimalda Filtrite Mask", + "Keela Filtrite Mask", + "Võimalda Targad Filtrid", + "Keela Targad Filtrid", + "Lisa Filtri Mask", + "Kustuta Filtri Mask", + "Tühjenda Targad Filtrid", + [ + [ + "Ühevärviline täide", + "Gradiendi täide", + "Mustri täide", + "Sisutundliku" + ], + "Uus Täitekiht", + "Muuda Täitekihti" + ], + "Kiht Kopeerides", + "Filtri Mask", + "Kustuta Kihi Stiil", + "Liiguta Tark Filter", + "Kustuta Tark Filter", + [ + "Ühenda Kihid", + "Ühenda Kihid Lahti" + ], + "Järjesta", + [ + "Too Esimeseks", + "Too ettepoole", + "Saada Tahapoole", + "Saada Tagumiseks" + ], + [ + "Kiht on Lukus", + "Luku Muutus", + null + ], + "Animatsioon" + ], + [ + "Kõik", + "Eemalda Märgistus", + "Pööra Ringi", + "Muuda", + "Laienda", + "Tõmba koomale", + "Pehme Serv", + "Liiguta Märgistust", + "Värvi Piirkond", + "Serv", + "Transformeeri Märgistust", + "Täpsusta Serva", + "Tervenda Märgistust", + null + ], + [ + "Suurenda Sisse", + "Suurenda Välja", + "Abijooned", + "Joonlauad", + "Võrk", + "Napsa", + "Tõmme", + "Dokumendi Piirid", + "Pikslite Võrk", + "Vektorjooned", + "Tõmme pikslitesse", + [ + null, + null + ], + null + ], + [ + "Kulgemine", + "Kihid", + "Seaded", + "Pintsel", + "Kiri", + "Lõik", + "Info", + "Kihikomplektid", + "Värvikaardid", + "Makros", + "Histogramm", + null, + "Tööriista eelseadistused", + null + ], + [ + "Pintsel", + "Kloonimistööriist", + "Kärpimistööriist", + "Kustutaja", + "Ovaalne märgistus", + "Pipett", + "Gradiendi tööriist", + "Liigutamistööriist", + "Trükkimistööriist", + "Lasso Märgistus", + "Magnet Lasso Märgistus", + "Liigutamistööriist", + "Võlukepp", + "Värvitäite Tööriist", + "Nurklasso Tööriist", + "Nelinurk Märkimine", + "Vaba Transformatsioon", + "Suurendamise Tööriist", + "Udutamise Tööriist", + "Teravustamise Tööriist", + "Hägustamise Tööriist", + "Helestamise Tööriist", + "Põletamise Tööriist", + "Värvilahusti Tööriist", + "Punkti Tervendamise Tööriist", + "Ravipintsel", + "Plaaster", + "Vektorjoone Märkimine", + "Komponendi Märkimise Tööriist", + "Sulepea", + "Vabakäe Pliiats", + "Eriilmeline Kujund", + "Ristkülik", + "Ovaal", + "Parameetriline Kujund", + "Joon", + "Joonlaud", + "Kiirmärgistus", + "Pliiats", + "Perspektiivse kärpimistööriist", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "Tee pilt", + "Värvi Korjaja", + "Kontuuri muutja", + "Lõuendi Suurus", + "Tee koopia ...", + "Gradiendi muutja", + "Kihi Stiil", + "Uus Projekt", + "Salvesta Veebi jaoks", + "Venita", + "Pildi Suurus", + "Vektoriseeri raster", + [ + "Trimmi", + null, + null + ], + "Klaviatuuri kiirkäsud", + "Lisa abijooned", + [ + null, + null + ] + ], + [ + "Nähtavus", + "Efektid", + "Heledus", + [ + "Kontrast", + null + ], + "Kanal", + "Säri", + "Nihe", + "Gamma korrektsioon", + "Toon", + "Küllastus", + "Heledus", + "Värvi", + "Piirkond", + "Dünaamiline küllastus", + [ + "Suurus", + "Interpoleerimine", + "Lähim naaber", + "Bilineaarne" + ], + "Nurk", + "Ümarus", + "Nurgelisus", + "Vaheruum", + [ + "Segamisrežiim", + null + ], + "Näidise Suurus", + "Kontuur", + "Stiil", + [ + "Pööra Ümber", + "Relatiivne", + "Ankur" + ], + "Tolerants", + "Jätkuv", + "Täida", + "Kasuta globaalnurka", + "Vahemaa", + "Valguvus", + "Müra", + "Peida varju langemine", + "Tehnika", + "Suund", + "Sügavus", + "Pehmenda", + "Reziim", + "Gradient", + "Skaala", + "Joonda Kihiga", + "Positsioon", + "Laius", + "Kõrgus", + "Sihtpunkt", + "Tüüp", + "Eesplaani värv", + "Tagaplaani värv", + "Juhuslik", + "Nimi", + "Loo", + "Formaat", + "Hoia Külgede Suhet", + [ + "Kvaliteet", + "Leheküljed" + ], + "Tee koopia", + "Liiguta", + "Targad Filtrid", + "Raadius", + "Mõju", + "Jagamine", + [ + "Ühtlane", + "Gaussi" + ], + "Monokromaatiline", + "Killu Suurus", + "Muster", + "Voolavus", + "Tugevus", + "Säilita Detaile", + "Täitmise tüüp", + "Tekstuur", + "Värelus", + "Serv", + "Allikas", + "Sihtmärk", + "Kanalid", + "Mask", + "Tugevus", + "Joondatud", + [ + "Joon", + "Kujund", + "Pikslid", + "Toll", + "Sentimeeter", + "Millimeeter", + "Protsent" + ], + "Kujundid", + "Küljed", + "Seaded", + [ + "Pikkus", + "Suhe", + "Vaba", + "Võrgu tüüp", + "Isomeetrilise", + "Võrgu lõhe", + "Joonlaua ühikud" + ], + "Vähenda müra", + "Värvid", + "Vahemaad", + "Suhe", + "Auto-märgistus", + "Leia", + "Defineeri uus", + [ + "Foto", + "Ekraan", + "Mobiil", + "Reklaamid", + "Trükised" + ], + [ + "Vaba", + "Fikseeritud Suhe", + "Fikseeritud Suurus" + ], + "Abi", + [ + "Muudetavad Kujundid", + "Muuda kujundit", + "Sama raadius" + ], + "Lubatud kõrvalekalle", + [ + "Hulknurk", + "Täht", + "Spiraal", + "Ruut" + ], + [ + "Nurga raadius", + "Sisemine raadius" + ] + ], + [ + "Värv", + [ + "Ei ole", + "Punane", + "Oranz", + "Kollane", + "Roheline", + "Sinine", + "Lilla", + "Hall", + "Valge", + "Läbipaistev", + "Must", + "Tsüaan", + "Magenta", + "Neutraalne" + ], + null, + "Absoluutne", + "Hoidke värvi heledus" + ], + [ + "Vari", + "Sisemine vari", + "Helendav serv", + "Sisemine helendus", + "Tõstetud serv", + "Värvi ülekate", + "Gradiendiga ülekate", + "Mustriga ülekate", + "Satiin", + "Servajoon", + "Segamise seaded", + null + ], + [ + "Tipu kuju", + "Tipu dünaamika", + "Jaotus", + "Värvi dünaamika", + [ + "Suuruse jaotus", + "Minimaalne diameeter", + "Nurga jaotus", + "Ümaruse jaotus", + "Minimaalne ümarus" + ], + [ + "Positsiooni jaotus", + "Arv", + "Arvu jaotus" + ], + [ + "Esi/Tagaplaani jaotus", + "Tooni jaotus", + "Küllastuse jaotus", + "Heleduse jaotus" + ], + [ + "Märgi kloonimise allikas hoides Alt (või K) ja kliki pildil.", + "Märgi esiplaan valgega, tagaplaan mustaga ja tundmatu ala halliga", + "Kiht ei ole muudetav.", + "Tekstikiht tuleb kõigepealt rasteriseerida", + "Tark objekt tuleb kõigepealt rasteriseerida", + "Vali mitu kihti", + null, + "Esmalt avage dokument.", + "Sulgege esmalt praegune aken.", + "Ainult praegune tööriist" + ], + [ + "Salvesta", + "Uus makrokomplekt", + "Uus makro" + ], + [ + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + "Ekraan", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "Toon", + "Küllastus", + "Värv", + "Värvi heledus", + null + ] + ], + [ + "Rea kõrgus", + "Tähe vahe", + "Baasjoone nihe", + [ + null, + null + ] + ], + [ + "Kõik kihid", + "Praegune kiht", + "Märgistus", + "Praegune & Allpool olev" + ], + [ + "Asenda", + "Ühenda", + "Lahuta", + "Ristuv", + "Jäta välja", + "Liida" + ], + [ + [ + "Lineaarne", + "Radiaalne", + "Nurk", + "Peegeldatud", + "Teemant", + "Kujundi kiirgus" + ], + [ + "Pehmendus", + "Täpne" + ], + [ + "Väljapoole tõstuserv", + "Sissepoole tõstuserv", + "Emboss", + "Sisse vajutatud", + "Servaga vajutatud", + null + ], + [ + "Pehme", + "Meisel tugev", + "Meisel pehme", + null + ], + [ + "Üles", + "Alla" + ], + [ + "Väljaspool", + "Keskel", + "Seespool", + "Keskusest" + ], + [ + "Varjud", + "Kesktoonid", + "Heledad" + ], + [ + "Desatureeri", + "Satureeri" + ], + [ + "Väike", + "Keskmine", + "Suur" + ], + [ + null, + null, + null + ] + ], + [ + "Vali kursori all olev objekt", + "Transformatsiooni kontrollid", + "Piksel pikslile", + "Mahuta piirkonda", + [ + "Joonda vasakud servad", + "Joonda horisontaalsed keskmised", + "Joonda paremad servad", + "Joonda ülemised servad", + "Joonda vertikaalselt keskele", + "Joonda alumised servad", + "Võrdsed vahed" + ] + ], + [ + "Paiguta sisse", + "Praegune projekt", + "Uus projekt", + "Resolutsioon", + "Lisatud praegusesse projekti", + "Uus projekt loodi", + "Ligipääs kaamerale on keelatud" + ], + [ + "Orientatsioon", + "Painuta", + "Horisontaalne painutus", + "Vertikaalne painutus", + [ + "Horisontaalne", + "Vertikaalne", + "Horisontaalne", + "Vertikaalne" + ], + [ + "Tühista", + "Kaar", + "Alumine kaar", + "Ülemine kaar", + "Kaared", + "Mõhk", + "Alumine karp", + "Ülemine karp", + "Lipp", + "Laine", + "Kala", + "Tõus", + "Kalasilm", + "Täidetud", + "Kokku pressitud", + "Väänatud", + "Vabakäeline" + ], + [ + "Kirjastiil", + "ei ole saadaval", + "Renderdatakse kasutades", + "Selles projektis on salvestamata tööd:", + "Kas sa tõesti tahad selle sulgeda?" + ], + [ + "Vaheta värvid", + "Vaikimisi: Valge ja Must" + ] + ], + [ + "laaditud", + "lisatud", + "Liiguta abijoont", + "Kustuta abijoon", + "Lisa abijoon", + "Laadib", + "Laadi VAR0" + ], + [ + "Filtrite galerii", + [ + [ + "Vedelda", + [ + "Sega", + "Konstrueeri tagasi", + "Pehmenda", + "Keeruta", + "Vähenda", + "Täida õhuga", + "Suru vasakule", + "Külmuta", + "Sulata" + ] + ], + [ + "Läätsekorrektsioon" + ] + ], + "Udu", + [ + "Keskmine", + "Udu", + "Uduta rohkem", + "Kandiline Udu", + "Gaussiani Udu", + "Läätse udu", + "Liikuv udu", + "Radiaalne udu", + "Kujundi Udu", + "Tark Udu", + "Pinna udu" + ], + "Vääna", + [ + "Paiguta ümber", + "Venita kokku", + "Polaarkordinaadid", + "Lainetus", + "Rebi", + "Sfääri", + "Laine" + ], + "Müra", + [ + "Lisa Müra", + "Despeckle", + "Mustus & Kriimud", + "Mediaan" + ], + "Pikseliseeri", + [ + "Värvide pooltoonid", + "Kristalliseeri", + "Facet", + "Fragment", + "Mezzotint", + "Mosaiik", + "Punktita" + ], + "Renderda", + [ + "Pilved", + "Eriilmelised pilved", + null + ], + "Teravusta", + [ + "Teravusta", + "Teravusta servi", + "Teravusta rohkem", + "Tark teravustamine", + "Teravusmask" + ], + "Stiliseeri", + [ + "Hajutus", + "Süvatrükk", + "Välja kasvatama", + "Leia servad", + null + ], + "Teine", + [ + "Eripärane", + "Kõrge läbilase", + "Maksimum", + "Miinimum", + "Nihe", + "Korda" + ], + [ + "Defineerimata ala", + "Sea läbipaistvaks", + "Korda servapiksleid", + "Mähi ümber", + "Viimati kasutatud filter", + "Eelvaade" + ] + ], + [ + "Mallid", + [ + "Kirjastiili filter", + "Märksõnad", + "Juhuslik" + ], + [ + "Sümbolitega", + "Fototega" + ], + [ + "Pisipildid", + "Nimekiri" + ] + ] + ], + [ + [ + "Failas", + "Redaguoti", + "Vaizdas", + "Sluoksniai", + "Aplankas", + "Žymėjimas", + "Filtrai", + "Rodymas", + "Langai", + "Kalba", + "Prisijungti", + "Atsijungti", + "Išversti", + [ + "Paskyra", + "Paslaugos teikimo sąlygos", + "Atgal", + "Apie programą", + "Praneškite apie riktą", + "Mokymai" + ], + "Kita", + "Apipavidalinimas", + "Naudoti biblioteką „WebGl“", + [ + "Photopea: Išsamesnė vaizdo rengyklė", + "Nemokamas internetinis redaktorius, palaikantis PSD, XCF, Sketch, XD ir CDR formatus.", + "Sukurti naują vaizdą arba atverti kompiuteryje esantį failą. Išsaugoti darbą PSD forrmatu (Failas - Įrašyti kaip PSD) arba kaip JPG / PNG / SVG (Failas - Eksportuoti kaip).", + "Pasiūlykite naujų funkcijų mūsų arba . Siekiame sukurti .", + "Rėmėjų nuorodas atverti naujame lange", + "Ši funkcija negalima", + "Įdiegti Photopea" + ] + ], + [ + "Atverti", + "Publikuoti internete", + "Įrašyti", + "Irašyti kaip PSD", + "Spausdinti", + "Atverti URL nuorodą", + "Atverti įrašytą kompiuteryje", + "Prisijungti prie Google disko", + "Eksportuoti kaip", + "Eksportuoti sluoksnius", + "Skriptas", + "Atverti ir padėti", + "Užverti", + "Vietinės saugyklos", + "Failo informacija" + ], + [ + "Žingsnis pirmyn", + "Žingsnis atgal", + "Išvalyti", + "Užpildyti", + "Transformuoti", + "Pasukti", + "Veidrodinis atspindys", + "Mastelio keitimas", + "Atšaukti / Grąžinti", + "Perspektyva", + [ + "Automatiškai sukloti", + "Automatinis lygiavimas" + ], + "Išnykimas", + "Pritaikyti paveikslą" + ], + "Pakeitimai", + [ + "Šviesumas/Kontrastas", + "Šviesumo lygiai", + "Kreivės", + "Ekspozicija", + "Spalvingumas", + "Atspalvis/Grynis", + "Spalvinis balansas", + "Nespalvota", + "Foto filtras", + "Kanalų maišiklis", + "Spalvinė ieška", + "Inversija", + "Posterizavimas", + "Slenkstis", + "Gradiento planas", + "Spalvų atranka", + [ + "Atspalvio korekcija", + "Automatinis kontrasto koregavimas", + "Automatinis spalvų koregavimas" + ], + "Pakeisti spalvą" + ], + [ + "Iškirpti", + "Kopijuoti", + "Įdėti", + "Naujas", + "Pašalinti", + "Įjungti", + "Išjungti", + "Kopijuoti apjungiant visus sluoksnius", + "Taikyti", + "Kartoti", + "Atnaujinti" + ], + [ + "Dubliuoti sluoksnį", + "Naujas koregavimo sluoksnis", + "Rastro kaukė", + "Vektorinė kaukė", + "Pridėti (Rodyti viską)", + [ + "Pridėti (Slėpti viską)", + "Atskleisti žymėjimą", + "Paslėpti žymėjimą", + "Nuo skaidrumo" + ], + [ + "Daugiasluoksnė kaukė", + "Sparčiojo maskavimo veiksena" + ], + "Konvertuoti į „Smart Object“", + "Rasterizuoti", + "Grupuoti sluoksnius", + "Apjungti su žemesniu", + "Apjungti su aukštesniu", + [ + "Apjungti sluoksnius", + "Suploti sluoksnius" + ], + "Naujas sluoksnis", + "Įjungti rastro kaukę", + "Išjungti rastro kaukę", + "Įjungti vektorinę kaukę", + "Išjungti vektorinę kaukę", + "Įjungti daugiasluoksnę kaukę", + "Išjungti daugiasluoksnę kaukę", + "Naujas aplankas", + "Pridėti rastro kaukę", + "Pašalinti rastro kaukę", + "Pridėti vektorinę kaukę", + "Pašalinti vektorinę kaukę", + "Susieti rastro kaukę", + "Atsieti rastro kaukę", + "Susieti vektorinę kaukę", + "Atsieti vektorinę kaukę", + "Įjungti sluoksnių efektus", + "Išjungti sluoksnių efektus", + "Pašalinti sluoksnį", + "Sluoksnio neskaidrumo pakeitimas", + "Suklojimo būdo pakeitimas", + "Sluoksnio stilius", + "Sluoksnių eilės tvarka", + [ + "„Smart Object“ sukūrimas", + "„Smart Object“ atnaujinimas", + "„Smart Object“ įkėlimas", + "Šaltinis (Smart Object)", + "Dėklas" + ], + "Pervardyti", + "Keisti spalvą", + "Keisti koregavimo sluoksnį", + "Konvertuoti į figūrą", + "Įjungti filtro kaukę", + "Išjungti filtro kaukę", + "Įjungti išmaniuosius filtrus", + "Išjungti išmaniųjus filtrus", + "Pridėti filtro kaukę", + "Pašalinti filtro kaukę", + "Išvalyti išmaniuosius filtrus", + [ + [ + "Užlieti ištisa spalva", + "Užlieti gradientiškai", + "Užlieti raštais", + "Kontekstinis užpildas" + ], + "Naujas užliejimo sluoksnis", + "Užliejimo sluoksnio koregavimas" + ], + "Kopijuoti sluoksnį", + "Filtro kaukė", + "Pašalinti sluoksnio stilių", + "Perkelti išmanųjį filtrą", + "Pašalinti išmanųjį filtrą", + [ + "Susieti sluoksnius", + "Atsieti sluoksnius" + ], + "Rikiuoti", + [ + "Iškelti į priekį", + "Nukelti pirmyn", + "Nukelti žemyn", + "Nukelti į dugną" + ], + [ + "Sluoksnis užrakintas", + "Užrakinti pakeitimus", + "Užrakinti" + ], + "Animacija" + ], + [ + "Pažymėti viską", + "Naikinti žymėjimą", + "Inversija", + "Keisti", + "Išplėsti", + "Sutraukti", + "Neryškūs žymėjimo kraštai", + "Perkelti žymėjimą", + "Žymėti spalva", + "Rėmeliu", + "Transformuoti žymėjimą", + "Kraštų tobulinimas", + "Tobulinti žymėjimą", + "Magiškas iškirpimas" + ], + [ + "Artinti", + "Tolinti", + "Gairės", + "Liniuotės", + "Tinklelis", + "Pritraukti", + "Pritraukti prie", + "Dokumento ribos", + "Pikselių tinklelis", + "Kontūrai", + "Pritraukti prie pikselių", + [ + "Pjūviai", + "Pjūviai" + ], + "Rodyti" + ], + [ + "Istorija", + "Sluoksniai", + "Savybės", + "Teptukas", + "Tekstas", + "Pastraipa", + "Informacija", + "Sluoksnių kompozicija", + "Paletė", + "Operacijos", + "Histograma", + "Navigatorius", + "Įrankių nustatymai", + "Glifas" + ], + [ + "Teptukas", + "Klonavimo įrankis", + "Apkirpimo įrankis", + "Trintukas", + "Žymėti elipse", + "Pipetė spalvai parinkti", + "Gradientas", + "Ranka", + "Rašymas", + "Lasas", + "Magnetinis lasas", + "Nešimo įrankis", + "Stebuklų lazdelė", + "Dažų kibirėlis", + "Daugiakampis lasas", + "Stačiakampis žymėjimas", + "Transformuoti laisvai", + "Lęšis", + "Liejimo įrankis", + "Aštrinimo įrankis", + "Glodinimo įrankis", + "Šviesinimas", + "Tamsinimas", + "Kempinė", + "Pleistras spuogams", + "Pleistras", + "Lopymo įrankis", + "Žymėti kontūru", + "Tiesioginis žymėjimas", + "Pieštukas", + "Piešti iš rankos", + "Savita figūra", + "Stačiakampis", + "Elipsė", + "Parametrinė figūra", + "Linija", + "Liniuotė", + "Žymėti aptiktus kraštus", + "Pieštukas", + "Perspektyvos apkarpymas", + "Pjūvių Įrankis", + "Žymėjimo skiltimis įrankis", + "Spalvos pakeitimas", + "Raudonų akių taisymas", + "Objekto pažymėjimas", + "Fono trintukas", + "Lėlės lankstymas", + "Pasukti vaizdą", + "Išmanusis mastelio keitimas", + "Nuotraukos turinio perkėlimo įrankis" + ], + [ + "Fotografuoti", + "Spalvos parinkimas", + "Kontūro keitimas", + "Paveikslo drobės dydis", + "Dubliuoti į ...", + "Gradiento koregavimas", + "Sluoksnio stilius", + "Naujas kūrinys", + "Išsaugoti interneto tinklui", + "Lankstyti", + "Paveikslo dydis", + "Rastro vektorinimas", + [ + "Apkirpti", + "Apkirpti", + "Išskleisti (viską)" + ], + "Spartieji klavišai", + "Pridėti gairių", + [ + "Panaikinti gaires", + "Gairės pagal sluoksnį" + ] + ], + [ + "Nepermatomumas", + "Efektai", + "Šviesumas", + [ + "Kontrastas", + "Naudoti senuoju būdu" + ], + "Kanalas", + "Ekspozicija", + "Poslinkis", + "Gama korekcija", + "Atspalvis", + "Grynis", + "Šviesumas", + "Spalvinimas", + "Rėžis", + "Spalvingumas", + [ + "Dydis", + "Interpoliacija", + "Artimiausių kaimynų", + "Bilinear" + ], + "Kampas", + "Apvalumas", + "Kietumas", + "Intervalai", + [ + "Sluoksnių suliejimo būdas", + "Sąlyginis suliejimas" + ], + "Pavyzdžio dydis", + "Kontūras", + "Stilius", + [ + "Apgręžti", + "Reliatyvus", + "Prieraišas" + ], + "Tolerancija", + "Ištisai", + "Lieti", + "Kampas globaliai", + "Nuotolis", + "Paplitimas", + "Triukšmas", + "Pašalinti šešėlį", + "Metodas", + "Kryptis", + "Gylis", + "Švelninti", + "Būdas", + "Gradientas", + "Mastelis", + "Lygiavimas į sluoksnį", + "Vietą", + "Plotis", + "Aukštis", + "Paskirties vieta", + "Tipas", + "Priekinis planas", + "Fono sluoksnis", + "Nustatytoji spalva", + "Pavadinimas", + "Sukurti", + "Formatas", + "Išlaikyti proporcijas", + [ + "Kokybė", + "Psl." + ], + "Dubliuoti", + "Perkelti", + "Išmanieji filtrai", + "Spindulys", + "Poveikio stiprumas", + "Paskirstymas", + [ + "Paskirstyti vienodai", + "Gauso" + ], + "Vienspalviai", + "Mozaikos elemento dydis", + "Raštas", + "Liejimas", + "Stiprumas", + "Išsaugoti detalumą", + "Užliejimo būdas", + "Tekstūra", + "Triukšmas aureolės kraštuose", + "Kraštas", + "Šaltinis", + "Tikslas", + "Kanalai", + "Kaukė", + "Tankumas", + "Lygiuota", + [ + "Kontūras", + "Figūra", + "Pikselių", + "Colis", + "Centimetras", + "Milimetras", + "Procentas" + ], + "Figūros", + "Pusės", + "Savybės", + [ + "Ilgis", + "Santykis", + "Laisvai", + "Tinklelio tipas", + "Izometriškai", + "Tinklelio tarpai", + "Liniuotės vienetai" + ], + "Triukšmų šalinimas", + "Spalvos", + "Atstumai", + "Pakeitimų laipsnis", + "Automatinis žymėjimas", + "Rasti", + "Iš naujo", + [ + "Nuotrauka", + "Ekranas", + "Mobilus įrenginys", + "Reklama", + "Spaudiniai" + ], + [ + "Laisvai", + "Fiksuotas santykis", + "Fiksuotas dydis" + ], + "Žinynas", + [ + "Gyvosios figūros", + "Keisti gyvąsias figūras", + "Vienodi kreivumo spinduliai" + ], + "Leistinas nuokrypis", + [ + "Daugiakampis", + "Žvaigždė", + "Spiralė", + "Kvadratas" + ], + [ + "Kampo spindulys", + "Vidinis spindulys" + ] + ], + [ + "Spalva", + [ + "Spalva neparinkta", + "Raudona", + "Oranžinė", + "Geltona", + "Žalia", + "Mėlyna", + "Violetinė", + "Pilka", + "Balta", + "Skaidri", + "Juoda", + "Ciano", + "Purpurinė", + "Neutralios" + ], + "Iš viso", + "Absoliutus", + "Išlaikyti spalvos šviesumą" + ], + [ + "Šešėlis", + "Vidinis šešėlis", + "Išorinis švytėjimas", + "Vidinis švytėjimas", + "Kanto profilis ir reljefiškumas", + "Spalvos užklojimas", + "Gradiento užklojimas", + "Rašto užklojimas", + "Satininis", + "Apvadas", + "Užklojimo parinktys", + "Parinkti taškus" + ], + [ + "Antgalio forma", + "Antgalio dinamika", + "Išsklaidymas", + "Spalvų dinamika", + [ + "Išbarstymo zona", + "Minimalus diametras", + "Barstymo kampas", + "Barstymo apvalumas", + "Minimalus apvalumas" + ], + [ + "Barstymo pozicija", + "Antgalių skaičius", + "Barstymų skaičius" + ], + [ + "Barstymas priekinio plano/fono", + "Barstymo atspalvis", + "Barstymo grynis", + "Barstymo šviesumas" + ], + [ + "Pažymėkite spusteldami pelės klavišu klonuojamą vietą kartu laikydami Alt (arba K) klavišą.", + "Žymėkite pirmą planą baltai, foną juodai, o nežinomas zonas pilkai.", + "Nekeistinas sluoksnis", + "Teksto sluoksnis pirmiausiai turėtų būti rasterizuotas", + "„Smart Object“ turi būti pirmiausia rastruotas", + "Pažymėkite keletą sluoksnių", + "Tiesinti", + "Pirmiausia atidarykite dokumentą.", + "Pirmiausia uždarykite dabartinį langą.", + "Tik dabartinis įrankis" + ], + [ + "Įrašyti", + "Naujas operacijų rinkinys", + "Nauja operacija" + ], + [ + "Pieštuko prispaudimas valdys permatomumą", + "Pieštuko prispaudimas valdys storį" + ], + [ + "Normalus", + "Ištirpinti", + "Tamsinti", + "Dauginti", + "Spalvos ryškinimas", + "Tiesinis ryškinimas", + "Tamsinti spalvas", + "Šviesinti", + "Šviesinti atrenkant", + "Spalvos šviesinimas", + "Linijinis spalvos pašviesinimas", + "Spalvos šviesinimas", + "Perdengti", + "Išsklaidyta šviesa", + "Kontrastinga šviesa", + "Ryški šviesa", + "Linijinė šviesa", + "Šviesa iš taško", + "Maišymas (Hard Mix)", + "Skirtumų ryškinimas", + "Išimtys (Exclusion)", + "Atimti", + "Dalyba (Divide)", + "Atspalvis", + "Grynis", + "Spalva", + "Spalvos ryškumas", + "Perkloti (Pass Through)" + ] + ], + [ + "Priekinis tarpas", + "Tarpai tarp raidžių", + "Bazinės linijos poslinkis", + [ + "Konvertuoti į tekstą taškučiais", + "Konvertavimas į tekstą pastraipoje" + ] + ], + [ + "Visi sluoksniai", + "Darbinis sluoksnis", + "Žymėjimas", + "Darbinis ir žemyn" + ], + [ + "Pakeisti", + "Prijungimas", + "Atimti", + "Persiklojimas", + "Nepersiklojimai", + "Apjungti" + ], + [ + [ + "Linijinis", + "Radialinis", + "Kampas", + "Atspindėtas", + "Deimantas", + "Sprogimo forma" + ], + [ + "Minkštesnis", + "Tikslumas" + ], + [ + "Kantas į išorę", + "Kantas į vidų", + "Išgaubimas", + "Išgaubimas pagalvėle", + "Išgaubimas su apvadu", + "Kontūro plotis" + ], + [ + "Švelniai", + "Iškalti kietai", + "Iškalti minkštai", + "Glotnumas" + ], + [ + "Aukštyn", + "Žemyn" + ], + [ + "Išorėn", + "Centras", + "Vidus", + "Iš centro" + ], + [ + "Šešėliai", + "Vidutiniai tonai", + "Šviesumos" + ], + [ + "Išblukinimas", + "Gryninti" + ], + [ + "Mažas", + "Vidutinis", + "Didelis" + ], + [ + "Didžiosios raidės", + "Kampai", + "Brūkšniai" + ] + ], + [ + "Žymekliu pasirinkite objektą", + "Transformavimo valdikliai", + "Normalus mastelis (100%)", + "Sutalpinti", + [ + "Lygiuoti kairėn", + "Centruoti horizontaliai", + "Lygiuoti dešinėn", + "Lygiuoti į viršų", + "Centruoti vertikaliai", + "Lygiuoti į apačią", + "Išdėlioti lygiais tarpais" + ] + ], + [ + "Idėti", + "Darbinis projektas", + "Naujas projektas", + "Raiška", + "Pridėta į darbinį projektą.", + "Naujas projektas sėkmingai sukurtas.", + "Prieiga prie kameros uždrausta." + ], + [ + "Orientacija", + "Lankstyti", + "Horizontalūs iškraipymai", + "Vertikalūs iškraipymai", + [ + "Horizontaliai", + "Vertikaliai", + "Horizontalus", + "Vertikalus" + ], + [ + "Be poveikio", + "Lankas", + "Lankas žemyn", + "Lankas aukštyn", + "Arka", + "Išpūstumas", + "Žemutinis apvalkalas", + "Viršutinis apvalkalas", + "Vėliava", + "Banga", + "Žuvis", + "Pakilimas", + "Žuvies akis", + "Išpūsti", + "Suspausti", + "Suvyti", + "Nustatytai" + ], + [ + "Šriftas", + "nepasiekiama", + "Bus atvaizduota naudojant", + "Šiame projekte yra neišsaugotų darbų:", + "Ar tikrai norite jį uždaryti?" + ], + [ + "Spalvų sukeitimas", + "Numatytosios: balta ir juoda" + ] + ], + [ + "įkeltas", + "pridėtas", + "Perkelti gairę", + "Šalinti gairę", + "Pridėti gairę", + "Įkeliama", + "Įkelti VAR0" + ], + [ + "Filtrų galerija", + [ + [ + "Suskystinimas", + [ + "Glodinimas", + "Rekonstruoti", + "Švelninti", + "Sukti", + "Sutraukti", + "Išpūsti", + "Stumti kairėn", + "Užšaldyti", + "Atšildyti" + ] + ], + [ + "Objektyvo iškraipymų korekcija" + ] + ], + "Liejimas", + [ + "Vidurkinimas", + "Liejimas", + "Dar lieti", + "Lieti dėžute", + "Gauso liejimas", + "Optinis liejimas", + "Judesio liejimas", + "Radialinis liejimas", + "Liejimas forma", + "Selektyvusis liejimas", + "Paviršinis liejimas" + ], + "Iškraipymai", + [ + "Sudėti pagal kitą", + "Gnybti", + "Poliarinės koordinatės", + "Raibuliavimas", + "Žirklės", + "Sfera", + "Banga" + ], + "Triukšmas", + [ + "Pridėti triukšmo", + "Dėmių valymas", + "Dulkės ir įbrėžimai", + "Mediana" + ], + "Pikseliuoti", + [ + "Pustonis", + "Kristalai", + "Facetas", + "Fragmentas", + "Pusiau tapyta (mezzo-tinto)", + "Mozaika", + "Puantilizmas" + ], + "Vaizduoti", + [ + "Debesys", + "Debesų įvairovė", + "Objektyvo atspindžiai" + ], + "Aštrinti", + [ + "Aštrinti", + "Aštrinti kraštus", + "Aštrinti stipriau", + "Aštrinti selektyviai", + "Neryškumų maskavimas" + ], + "Stilizuoti", + [ + "Difuzija", + "Išgaubimas", + "Ištraukimas", + "Kraštų aptikimas", + "Tapyba aliejumi" + ], + "Kita", + [ + "Nustatytai", + "Aukštieji dažniai", + "Maksimumas", + "Minimumas", + "Poslinkis", + "Kartoti" + ], + [ + "Neapibrėžta sritis", + "Tebūnie skaidru", + "Kartoti pikselius kraštuose", + "Aplankstyti", + "Paskiausias filtras", + "Peržiūra" + ] + ], + [ + "Šablonai", + [ + "Šriftų filtras", + "Raktiniai žodžiai", + "Išmaišyti" + ], + [ + "Su simboliais", + "Su nuotrauka" + ], + [ + "Miniatiūros", + "Sąrašas" + ] + ] + ] + ] +} \ No newline at end of file diff --git a/www.photopea.com/code/external/ext.js b/www.photopea.com/code/external/ext.js index 3502f82..4d59c82 100644 --- a/www.photopea.com/code/external/ext.js +++ b/www.photopea.com/code/external/ext.js @@ -1,794 +1,794 @@ -var UDOC={};UDOC.B=function(){var U=new Uint8Array(4),v=U.buffer,W=new Int16Array(v),H=new Uint16Array(v),p=new Int32Array(v),M=new Uint32Array(v),S=new Float32Array(v); -return{readShort:function(Z,a){U[0]=Z[a];U[1]=Z[a+1];return W[0]},readUshort:function(Z,a){U[0]=Z[a]; -U[1]=Z[a+1];return H[0]},readInt:function(Z,a){U[0]=Z[a];U[1]=Z[a+1];U[2]=Z[a+2];U[3]=Z[a+3];return p[0]},readUint:function(Z,a){U[0]=Z[a]; -U[1]=Z[a+1];U[2]=Z[a+2];U[3]=Z[a+3];return M[0]},readUintBE:function(Z,a){U[3]=Z[a];U[2]=Z[a+1];U[1]=Z[a+2]; -U[0]=Z[a+3];return M[0]},readFloat:function(Z,a){U[0]=Z[a];U[1]=Z[a+1];U[2]=Z[a+2];U[3]=Z[a+3];return S[0]},readASCII:function(Z,a,Y){var I=""; -for(var w=0;wH)H=S;if(Zp)p=Z}return[v,W,H,p]},rectToPath:function(U){return{cmds:["M","L","L","L","Z"],crds:[U[0],U[1],U[2],U[1],U[2],U[3],U[0],U[3]]}},insideBox:function(U,v){return v[0]<=U[0]&&v[1]<=U[1]&&U[2]<=v[2]&&U[3]<=v[3]},isBox:function(U,v){var W=function(g,_){for(var C=0; -C<8;C+=2){var O=!0;for(var $=0;$<8;$++)if(Math.abs(_[$]-g[$+C&7])>=2){O=!1;break}if(O)return!0}return!1},M=!1; -if(U.cmds.length>10)return!1;var H=U.cmds.join(""),p=U.crds;if(H=="MLLLZ"&&p.length==8||(H=="MLLLLZ"||H=="MLLLL")&&p.length==10){if(p.length==10)p=p.slice(0,8); -if(v==null){v=[p[0],p[1],p[0],p[1]];for(var S=0;Sp)M-=2*Math.PI; -else while(M(H[1]-W[1])*(w[0]-W[0])},Z=function(){var w=[W[0]-H[0],W[1]-H[1]],q=[p[0]-M[0],p[1]-M[1]],g=W[0]*H[1]-W[1]*H[0],n=p[0]*M[1]-p[1]*M[0],_=1/(w[0]*q[1]-w[1]*q[0]); -return[(g*q[0]-n*w[0])*_,(g*q[1]-n*w[1])*_]},a=U,Y,I;W=v[v.length-1];for(I in v){var H=v[I],R=a;a=[]; -p=R[R.length-1];for(Y in R){var M=R[Y];if(S(M)){if(!S(p)){a.push(Z())}a.push(M)}else if(S(p)){a.push(Z())}p=M}W=H}return a}}; -UDOC.M={getScale:function(U){return Math.sqrt(Math.abs(U[0]*U[3]-U[1]*U[2]))},translate:function(U,v,W){UDOC.M.concat(U,[1,0,0,1,v,W])},rotate:function(U,v){UDOC.M.concat(U,[Math.cos(v),-Math.sin(v),Math.sin(v),Math.cos(v),0,0])},scale:function(U,v,W){UDOC.M.concat(U,[v,0,0,W,0,0])},concat:function(U,v){var W=U[0],H=U[1],p=U[2],M=U[3],S=U[4],Z=U[5]; -U[0]=W*v[0]+H*v[2];U[1]=W*v[1]+H*v[3];U[2]=p*v[0]+M*v[2];U[3]=p*v[1]+M*v[3];U[4]=S*v[0]+Z*v[2]+v[4]; -U[5]=S*v[1]+Z*v[3]+v[5]},invert:function(U){var v=U[0],W=U[1],H=U[2],p=U[3],M=U[4],S=U[5],Z=v*p-W*H; -U[0]=p/Z;U[1]=-W/Z;U[2]=-H/Z;U[3]=v/Z;U[4]=(H*S-p*M)/Z;U[5]=(W*M-v*S)/Z},multPoint:function(U,v){var W=v[0],H=v[1]; -return[W*U[0]+H*U[2]+U[4],W*U[1]+H*U[3]+U[5]]},multArray:function(U,v){for(var W=0;WW?R:(116*Y-16)/v,n=a>W?a:(116*Z-16)/v,_=q>W?q:(116*w-16)/v,C=_*96.72,O=n*100,$=g*81.427,b=[C/100,O/100,$/100],V=[3.1338561,-1.6168667,-.4906146,-.9787684,1.9161415,.033454,.0719453,-.2289914,1.4052427],d=[V[0]*b[0]+V[1]*b[1]+V[2]*b[2],V[3]*b[0]+V[4]*b[1]+V[5]*b[2],V[6]*b[0]+V[7]*b[1]+V[8]*b[2]]; -for(var G=0;G<3;G++)d[G]=Math.max(0,Math.min(1,UDOC.C.srgbGamma(d[G])));return d}};UDOC.getState=function(U){return{font:UDOC.getFont(),dd:{flat:1},ca:1,colr:[0,0,0],space:"/DeviceGray",CA:1,COLR:[0,0,0],sspace:"/DeviceGray",bmode:"/Normal",SA:!1,OPM:0,AIS:!1,OP:!1,op:!1,SMask:"/None",lwidth:1,lcap:0,ljoin:0,mlimit:10,SM:.1,doff:0,dash:[],ctm:[1,0,0,1,0,0],cpos:[0,0],pth:{cmds:[],crds:[]},cpth:U?UDOC.G.rectToPath(U):null,cpstack:[]}}; +var UDOC={};UDOC.B=function(){var P=new Uint8Array(4),A=P.buffer,m=new Int16Array(A),w=new Uint16Array(A),E=new Int32Array(A),L=new Uint32Array(A),R=new Float32Array(A); +return{readShort:function(f,l){P[0]=f[l];P[1]=f[l+1];return m[0]},readUshort:function(f,l){P[0]=f[l]; +P[1]=f[l+1];return w[0]},readInt:function(f,l){P[0]=f[l];P[1]=f[l+1];P[2]=f[l+2];P[3]=f[l+3];return E[0]},readUint:function(f,l){P[0]=f[l]; +P[1]=f[l+1];P[2]=f[l+2];P[3]=f[l+3];return L[0]},readUintBE:function(f,l){P[3]=f[l];P[2]=f[l+1];P[1]=f[l+2]; +P[0]=f[l+3];return L[0]},readFloat:function(f,l){P[0]=f[l];P[1]=f[l+1];P[2]=f[l+2];P[3]=f[l+3];return R[0]},readASCII:function(f,l,D){var a=""; +for(var h=0;hw)w=R;if(fE)E=f}return[A,m,w,E]},rectToPath:function(P){return{cmds:["M","L","L","L","Z"],crds:[P[0],P[1],P[2],P[1],P[2],P[3],P[0],P[3]]}},insideBox:function(P,A){return A[0]<=P[0]&&A[1]<=P[1]&&P[2]<=A[2]&&P[3]<=A[3]},isBox:function(P,A){var m=function(p,c){for(var S=0; +S<8;S+=2){var B=!0;for(var N=0;N<8;N++)if(Math.abs(c[N]-p[N+S&7])>=2){B=!1;break}if(B)return!0}return!1},L=!1; +if(P.cmds.length>10)return!1;var w=P.cmds.join(""),E=P.crds;if(w=="MLLLZ"&&E.length==8||(w=="MLLLLZ"||w=="MLLLL")&&E.length==10){if(E.length==10)E=E.slice(0,8); +if(A==null){A=[E[0],E[1],E[0],E[1]];for(var R=0;RE)L-=2*Math.PI; +else while(L(w[1]-m[1])*(h[0]-m[0])},f=function(){var h=[m[0]-w[0],m[1]-w[1]],W=[E[0]-L[0],E[1]-L[1]],p=m[0]*w[1]-m[1]*w[0],z=E[0]*L[1]-E[1]*L[0],c=1/(h[0]*W[1]-h[1]*W[0]); +return[(p*W[0]-z*h[0])*c,(p*W[1]-z*h[1])*c]},l=P,D,a;m=A[A.length-1];for(a in A){var w=A[a],q=l;l=[]; +E=q[q.length-1];for(D in q){var L=q[D];if(R(L)){if(!R(E)){l.push(f())}l.push(L)}else if(R(E)){l.push(f())}E=L}m=w}return l}}; +UDOC.M={getScale:function(P){return Math.sqrt(Math.abs(P[0]*P[3]-P[1]*P[2]))},translate:function(P,A,m){UDOC.M.concat(P,[1,0,0,1,A,m])},rotate:function(P,A){UDOC.M.concat(P,[Math.cos(A),-Math.sin(A),Math.sin(A),Math.cos(A),0,0])},scale:function(P,A,m){UDOC.M.concat(P,[A,0,0,m,0,0])},concat:function(P,A){var m=P[0],w=P[1],E=P[2],L=P[3],R=P[4],f=P[5]; +P[0]=m*A[0]+w*A[2];P[1]=m*A[1]+w*A[3];P[2]=E*A[0]+L*A[2];P[3]=E*A[1]+L*A[3];P[4]=R*A[0]+f*A[2]+A[4]; +P[5]=R*A[1]+f*A[3]+A[5]},invert:function(P){var A=P[0],m=P[1],w=P[2],E=P[3],L=P[4],R=P[5],f=A*E-m*w; +P[0]=E/f;P[1]=-m/f;P[2]=-w/f;P[3]=A/f;P[4]=(w*R-E*L)/f;P[5]=(m*L-A*R)/f},multPoint:function(P,A){var m=A[0],w=A[1]; +return[m*P[0]+w*P[2]+P[4],m*P[1]+w*P[3]+P[5]]},multArray:function(P,A){for(var m=0;mm?q:(116*D-16)/A,z=l>m?l:(116*f-16)/A,c=W>m?W:(116*h-16)/A,S=c*96.72,B=z*100,N=p*81.427,x=[S/100,B/100,N/100],i=[3.1338561,-1.6168667,-.4906146,-.9787684,1.9161415,.033454,.0719453,-.2289914,1.4052427],t=[i[0]*x[0]+i[1]*x[1]+i[2]*x[2],i[3]*x[0]+i[4]*x[1]+i[5]*x[2],i[6]*x[0]+i[7]*x[1]+i[8]*x[2]]; +for(var I=0;I<3;I++)t[I]=Math.max(0,Math.min(1,UDOC.C.srgbGamma(t[I])));return t}};UDOC.getState=function(P){return{font:UDOC.getFont(),dd:{flat:1},ca:1,colr:[0,0,0],space:"/DeviceGray",CA:1,COLR:[0,0,0],sspace:"/DeviceGray",bmode:"/Normal",SA:!1,OPM:0,AIS:!1,OP:!1,op:!1,SMask:"/None",lwidth:1,lcap:0,ljoin:0,mlimit:10,SM:.1,doff:0,dash:[],ctm:[1,0,0,1,0,0],cpos:[0,0],pth:{cmds:[],crds:[]},cpth:P?UDOC.G.rectToPath(P):null,cpstack:[]}}; UDOC.getFont=function(){return{Tc:0,Tw:0,Th:100,Tl:0,Tf:"Helvetica-Bold",Tfs:1,Tmode:0,Trise:0,Tk:0,Tal:0,Tun:0,Tm:[1,0,0,1,0,0],Tlm:[1,0,0,1,0,0],Trm:[1,0,0,1,0,0]}}; -function FromPS(){}FromPS.Parse=function(U,v){U=new Uint8Array(U);var W=0,M=null,S=null,_=!0;while(!(U[W]==37&&U[W+1]==33))W++; -var H=FromPS.B.readASCII(U,W,U.length-W),p=H.split(/[\n\r]+/);for(var Z=0;Z>"){var b=[];while(U.length!=0){var V=U.pop();if(V.typ=="mark")break;b.push(V)}b.reverse(); -if(g=="]")U.push({typ:"array",val:b});else{var d={};for(var G=0;G=bU.val.length){}else if(an.typ=="string")for(var G=0;G=0; -G--)if(W[G].typ=="file"){ap=W[G];break}U.push({typ:"file",val:ap.val})}else if(r=="currentdict"){var N=v[v.length-1]; -U.push({typ:"dict",val:N,maxl:1e3})}else if("currentpacking currentoverprint currentglobal currentsystemparams currentuserparams currentpagedevice".split(" ").indexOf(r)!=-1){var f=p[r.slice(7)]; -U.push({typ:typeof f=="boolean"?"boolean":"dict",val:f})}else if(r=="gcheck"){var B=U.pop();U.push({typ:"boolean",val:!1})}else if("setpacking setoverprint setglobal setsystemparams setuserparams setpagedevice".split(" ").indexOf(r)!=-1){p[r.slice(3)]=U.pop().val}else if(r=="currentflat"){U.push({typ:"real",val:1})}else if(r=="currentlinewidth"){U.push({typ:"real",val:R.lwidth})}else if(r=="currentdash"){U.push({typ:"array",val:FromPS.makeArr(R.dash,"integer")},{typ:"real",val:R.doff})}else if(r=="currentpoint"){var a7=R.ctm.slice(0); -UDOC.M.invert(a7);var aa=UDOC.M.multPoint(a7,R.cpos);U.push({typ:"real",val:aa[0]},{typ:"real",val:aa[1]})}else if(r=="currentscreen"){U.push({typ:"int",val:60},{typ:"real",val:0},{typ:"real",val:0})}else if(r=="setscreen"){U.pop(); -U.pop();U.pop()}else if(r=="currenthalftone"){U.push({typ:"dict",val:{},maxl:1e3})}else if(r=="currentblackgeneration"||r=="currentundercolorremoval"){U.push(p.funs[r.slice(7)])}else if(r=="currentcolortransfer"){for(var G=0; -G<4;G++)U.push(p.funs.blackgeneration)}else if(r=="findresource"){var cl=U.pop().val.slice(1),bG=U.pop(),P=bG.val.slice(1),aj; -if(cl=="Font"){p.res[cl].val[P]={typ:"dict",val:{FontType:{typ:"integer",val:1},FontMatrix:{typ:"array",val:FromPS.makeArr([1,0,0,1,0,0],"real")},FontName:bG,FID:{typ:"fontID",val:Math.floor(Math.random()*16777215)},Encoding:{typ:"array",val:[]},FontBBox:{typ:"array",val:FromPS.makeArr([0,0,1,1],"real")},PaintType:{typ:"integer",val:0}}}}if(cl=="Category"&&P=="Generic")aj={typ:"dict",val:{},maxl:1e3}; -else if((cl=="ProcSet"||cl=="Procset")&&P=="CIDInit")aj={typ:"dict",val:{},maxl:1e3};else aj=p.res[cl].val[P]; -if(aj==null)throw"e";U.push(aj)}else if(r=="resourcestatus"){var cl=U.pop().val.slice(1),P=U.pop().val.slice(1),aj=p.res[cl].val[P]; -if(aj){U.push({typ:"integer",val:1});U.push({typ:"integer",val:Object.keys(aj.val).length})}U.push({typ:"boolean",val:aj!=null})}else if(r=="defineresource"){var cl=U.pop().val.slice(1),bm=U.pop(),P=U.pop().val.slice(1); -p.res[cl].val[P]=bm;U.push(bm)}else if(r=="undefineresource"){var cl=U.pop().val.slice(1),P=U.pop().val.slice(1); -delete p.res[cl].val[P]}else if(r=="resourceforall"){var cl=U.pop().val.slice(1),b7=U.pop().val,F=U.pop(),af=U.pop().val; -if(af.length!=1||af[0]!=42)throw"e";var c3=p.res[cl].val;for(var P in c3){var z=b7.slice(0);for(var G=0; -G0?t<>>-y;if(r=="mod")j=t%y;if(r=="exp")j=Math.pow(t,y);if(r=="atan")j=Math.atan2(t,y)*180/Math.PI; -if(b$=="real"){Y[0]=j;j=Y[0]}U.push({typ:b$,val:j})}else if("neg abs floor ceiling round truncate sqrt ln sin cos".split(" ").indexOf(r)!=-1){var k=U.pop(),t=k.val,j=0,b$=""; -if(r=="neg"||r=="abs"||r=="truncate"||r=="floor"||r=="ceiling"||r=="round")b$=k.typ;else if(r=="sqrt"||r=="sin"||r=="cos"||r=="ln")b$="real"; -if(k.typ=="real"){Y[0]=t;t=Y[0]}if(r=="neg")j=-t;if(r=="abs")j=Math.abs(t);if(r=="floor")j=Math.floor(t); -if(r=="ceiling")j=Math.ceil(t);if(r=="round")j=Math.round(t);if(r=="truncate")j=Math.trunc(t);if(r=="sqrt")j=Math.sqrt(t); -if(r=="ln")j=Math.log(t);if(r=="sin")j=Math.sin(t*Math.PI/180);if(r=="cos")j=Math.cos(t*Math.PI/180); -if(r=="ln"&&t<=0)throw"e";if(b$=="real"){Y[0]=j;j=Y[0]}U.push({typ:b$,val:j})}else if("eq ge gt le lt ne".split(" ").indexOf(r)!=-1){var ah=U.pop(),k=U.pop(),ch=k.typ,cv=ah.typ,t=k.val,y=ah.val,j=!1; -if(r=="eq"||r=="ne"){var x=k.typ==ah.typ;if(x&&["integer","real","name","null","dict"].indexOf(ch)!=-1)j=t==y; -else if(ch=="real"&&cv=="integer"||cv=="real"&&ch=="integer")j=t==y;else if(!x&&(k.typ=="null"||ah.typ=="null"))j=!1; -else if(x&&k.typ=="string"){if(t.length!=y.length)j=!1;else{j=!0;for(var G=0;G=y;else if(r=="gt")j=t>y;else if(r=="le")j=t<=y;else if(r=="lt")j=t0&&e.init<=e.limit||e.inc<0&&e.init>=e.limit){W.push(w);FromPS.addProc(e.proc,W); -U.push({typ:"integer",val:e.init});e.init+=e.inc}}else{var c=new Float32Array(1);c[0]=e.limit;e.limit=c[0]; -c[0]=e.inc;e.inc=c[0];c[0]=e.init;if(e.inc>0&&c[0]<=e.limit||e.inc<0&&c[0]>=e.limit){W.push(w);FromPS.addProc(e.proc,W); -U.push({typ:"real",val:c[0]});c[0]+=e.inc;e.init=c[0]}}}else if(r=="loop"){var F=U.pop();W.push({typ:"name",val:r+"---",ctx:{proc:F}})}else if(r=="loop---"){var e=w.ctx; -W.push(w);FromPS.addProc(e.proc,W)}else if(r=="pathforall"){var E=U.pop(),c4=U.pop(),bW=U.pop(),bg=U.pop()}else if(r=="forall"){var F=U.pop(),A=U.pop(),e=[F,A,0]; -W.push({typ:"name",val:r+"---",ctx:e})}else if(r=="forall---"){var e=w.ctx,F=e[0],A=e[1],G=e[2];if(A.typ=="dict"){var bD=Object.keys(A.val); -if(GG)W.pop()}else if(r=="bind"){}else if(r=="xcheck"){var A=U.pop(),q=A.typ;U.push({typ:"boolean",val:q=="procedure"})}else if(r=="status"){var z=U.pop(); -U.push({typ:"boolean",val:!1})}else if(r=="cachestatus"){for(var G=0;G<7;G++)U.push({typ:"integer",val:5e3})}else if(r=="setcachelimit"){U.pop()}else if(r=="type"){var V=U.pop(),cp={name:"nametype",dict:"dicttype",boolean:"booleantype",procedure:"operatortype",string:"stringtype",null:"nulltype",integer:"integertype",array:"arraytype",operator:"operatortype",real:"realtype"}; -if(cp[V.typ]==null){console.log(V);throw V.typ}U.push({typ:"name",val:"/"+cp[V.typ]})}else if(r=="save"){U.push({typ:"state",val:JSON.parse(JSON.stringify(R))})}else if(r=="restore"){R=p.gst=U.pop().val}else if(r=="clipsave"){R.cpstack.push(JSON.parse(JSON.stringify(R.cpth)))}else if(r=="cliprestore"){R.cpath=R.cpstack.pop()}else if(r=="gsave"){H.push(JSON.parse(JSON.stringify(R)))}else if(r=="grestore"){if(H.length!=0)R=p.gst=H.pop(); -else R=UDOC.getState()}else if(r=="grestoreall"){while(H.length!=0)R=p.gst=H.pop()}else if(r=="usertime"||r=="realtime")U.push({typ:"integer",val:r=="usertime"?Date.now()-a:Date.now()}); -else if(r=="flush"||r=="readonly"||r=="executeonly"){}else if(r=="flushfile"){FromPS.GetFile(U.pop())}else if(r=="filter"){var aF=U.pop().val,av; -if(aF=="/SubFileDecode"){var z=U.pop();if(z.typ!="string")throw"e";var cj=U.pop().val;z=z.val;av=[aF,z,cj]}else av=[aF]; -var a1=U.pop();U.push({typ:"file",val:{buff:new Uint8Array,off:0},_flt:av,_src:a1})}else if(r=="begincmap"||r=="endcmap"){}else if(r=="begincodespacerange"||r=="beginbfrange"||r=="beginbfchar"){p.cmnum=U.pop().val}else if(r=="endcodespacerange"||r=="endbfrange"||r=="endbfchar"){var E=r=="endbfrange"?3:2,aS=r.slice(3),N=v[v.length-1],bX=0; -if(N[aS]==null)N[aS]=[];for(var G=0;G=0;bC--){var aM=U.pop(),ba=aM.val,f; -if(aM.typ=="string"){f=FromPS.strToInt(ba);if(bC==0)bX=ba.length}else{f=[];for(var bn=0;bn=U.buff.length)throw"e";var S=U.buff[M];M++;if(FromPS.isWhite(S))continue;if(S==126){if(H!=0){if(H==3){W.push(p>>>24&255)}if(H==4){W.push(p>>>24&255,p>>>16&255)}var Z=5-H<<3,Y=p>>>Z&255; -p=p&(1<>>24&255);W.push(p>>>16&255);W.push(p>>>8&255);W.push(p>>>0&255); -H=0;p=0}}},RunLengthDecode:function(U){var v=[],W=U.off;while(!0){if(W>=U.buff.length){console.log(v); -throw"e"}var H=U.buff[W];W++;if(H==128){U.off=W;return new Uint8Array(v)}if(H<128){for(var p=0;p>>3]<<16|H[O+8>>>3]<<8|H[O+16>>>3];d=V>>24-(O&7)-C&(1<>>3]<<16|H[O+8>>>3]<<8|H[O+16>>>3];d=V>>24-(O&7)-C&(1<=n){w[n]=_;I[w[n]]=P[0];q[n]=1;_=_+1+3&~3; -n++}else{w[n]=_;var h=w[s],z=q[s];v(I,h,I,_,z);I[_+z]=I[P];z++;q[n]=z;n++;_=_+z+3&~3}if(n+1==1<=n){w[n]=_; -q[n]=0;n++}else{w[n]=_;var h=w[s],z=q[s];v(I,h,I,_,z);I[_+z]=I[_];z++;q[n]=z;n++;v(I,_,M,S,z);S+=z;_=_+z+3&~3}if(n+1==1<=0){if(v[W][U]!=null)return v[W][U];W--}return null};FromPS.where=function(U,v){var W=v.length-1; -while(W>=0){if(v[W][U]!=null)return v[W];W--}return null};FromPS.skipWhite=function(U){var v=U.off,W=U.buff,H=FromPS.isWhite; -while(H(W[v])||W[v]==37){while(H(W[v]))v++;if(W[v]==37){while(v1){U.pop();if(U.length!=0)p=FromPS.getFToken(U[U.length-1].val,v)}return p}; -FromPS.getFToken=function(U,v){FromPS.skipWhite(U);var W=FromPS.isWhite,H=FromPS.isSpecl,p=U.off,M=U.buff,S=null; -if(p>=M.length)return null;var Z=M[p],Y=String.fromCharCode(Z);p++;if(Y=="("){var I=0,R=p;while(!(M[R]==41&&I==0)){if(M[R]==40)I++; -if(M[R]==41)I--;if(M[R]==92)R++;R++}var w=[];for(var q=0;q"&&M[p]==62){S={typ:"name",val:Y=="<"?"<<":">>"}; -p++}else if(Y=="<"){var w;if(M[p]=="~".charCodeAt(0)){U.off=p+1;var g=FromPS.F.ASCII85Decode(U);w=[]; -for(var q=0;qM[5]){M=M.slice(3).concat(M.slice(0,3)); -p.reverse();a.reverse();for(var R=0;R0)Z.push([0,W(H[0],[S[0]],v)]);for(var Y=0;Y>1)&255; -if(R==4)for(var w=p;w>1)&255;for(var w=p;w>1)&255}if(R==4){for(var w=0; -w=0;Y--)M.push(a[Y]);continue}var I=Z["/MediaBox"];if(I==null)I=U["/Pages"]["/MediaBox"]; -S+=(I[2]-I[0])*(I[3]-I[1])}var M=[U["/Pages"]],R=-1,w=[-1e9,1e9];while(M.length!=0){var Z=M.pop();if(Z["/Type"]=="/Pages"){var a=Z["/Kids"]; -for(var Y=a.length-1;Y>=0;Y--)M.push(a[Y]);continue}R++;if(R=w[1])break}};FromPDF.addCmd=function(U,v,W){var H=U.length,p=new Uint8Array(H);for(var M=0;M>1)]>>(1-(W&1)<<2)&15; -else if(H==2)p=U[v+(W>>2)]>>(3-(W&3)<<1)&3;else if(H==1)p=U[v+(W>>3)]>>(7-(W&7)<<0)&1;return p};FromPDF.getString=function(U,v){var W=v["/Subtype"],H="",p=0,M=null,S=v["/ToUnicode"],Z=v["/Encoding"],a=v,at; -if(S!=null&&typeof S!="object")S=null;if(W=="/Type0")a=v["/DescendantFonts"][0];if(S!=null)H=FromPDF.toUnicode(U,S); -else if(Z=="/WinAnsiEncoding")H=FromPDF.encFromMap(U,FromPDF._win1252);else if(Z=="/MacRomanEncoding")H=FromPDF.encFromMap(U,FromPDF._macRoman); -else if(W=="/Type0"){var Y=0,I=a["/CIDSystemInfo"]["/Ordering"];if(I=="Identity")Y=0;else if(I=="Japan1")Y=31; -else if(I=="GB1")Y=31;else if(I=="CNS1")Y=31;else if(I=="Korea1")Y=31;else{console.log("unknown ordering",I); -Y=0}for(var R=0;R>"){var x=[];while(P.length!=0){var i=P.pop();if(i.typ=="mark")break;x.push(i)}x.reverse(); +if(p=="]")P.push({typ:"array",val:x});else{var t={};for(var I=0;I=cr.val.length){}else if(b7.typ=="string")for(var I=0;I=0; +I--)if(m[I].typ=="file"){bP=m[I];break}P.push({typ:"file",val:bP.val})}else if(n=="currentdict"){var T=A[A.length-1]; +P.push({typ:"dict",val:T,maxl:1e3})}else if("currentpacking currentoverprint currentglobal currentsystemparams currentuserparams currentpagedevice".split(" ").indexOf(n)!=-1){var j=E[n.slice(7)]; +P.push({typ:typeof j=="boolean"?"boolean":"dict",val:j})}else if(n=="gcheck"){var V=P.pop();P.push({typ:"boolean",val:!1})}else if("setpacking setoverprint setglobal setsystemparams setuserparams setpagedevice".split(" ").indexOf(n)!=-1){E[n.slice(3)]=P.pop().val}else if(n=="currentflat"){P.push({typ:"real",val:1})}else if(n=="currentlinewidth"){P.push({typ:"real",val:q.lwidth})}else if(n=="currentdash"){P.push({typ:"array",val:FromPS.makeArr(q.dash,"integer")},{typ:"real",val:q.doff})}else if(n=="currentpoint"){var ck=q.ctm.slice(0); +UDOC.M.invert(ck);var ce=UDOC.M.multPoint(ck,q.cpos);P.push({typ:"real",val:ce[0]},{typ:"real",val:ce[1]})}else if(n=="currentscreen"){P.push({typ:"int",val:60},{typ:"real",val:0},{typ:"real",val:0})}else if(n=="setscreen"){P.pop(); +P.pop();P.pop()}else if(n=="currenthalftone"){P.push({typ:"dict",val:{},maxl:1e3})}else if(n=="currentblackgeneration"||n=="currentundercolorremoval"){P.push(E.funs[n.slice(7)])}else if(n=="currentcolortransfer"){for(var I=0; +I<4;I++)P.push(E.funs.blackgeneration)}else if(n=="findresource"){var ai=P.pop().val.slice(1),bx=P.pop(),d=bx.val.slice(1),bj; +if(ai=="Font"){E.res[ai].val[d]={typ:"dict",val:{FontType:{typ:"integer",val:1},FontMatrix:{typ:"array",val:FromPS.makeArr([1,0,0,1,0,0],"real")},FontName:bx,FID:{typ:"fontID",val:Math.floor(Math.random()*16777215)},Encoding:{typ:"array",val:[]},FontBBox:{typ:"array",val:FromPS.makeArr([0,0,1,1],"real")},PaintType:{typ:"integer",val:0}}}}if(ai=="Category"&&d=="Generic")bj={typ:"dict",val:{},maxl:1e3}; +else if((ai=="ProcSet"||ai=="Procset")&&d=="CIDInit")bj={typ:"dict",val:{},maxl:1e3};else bj=E.res[ai].val[d]; +if(bj==null)throw"e";P.push(bj)}else if(n=="resourcestatus"){var ai=P.pop().val.slice(1),d=P.pop().val.slice(1),bj=E.res[ai].val[d]; +if(bj){P.push({typ:"integer",val:1});P.push({typ:"integer",val:Object.keys(bj.val).length})}P.push({typ:"boolean",val:bj!=null})}else if(n=="defineresource"){var ai=P.pop().val.slice(1),cc=P.pop(),d=P.pop().val.slice(1); +E.res[ai].val[d]=cc;P.push(cc)}else if(n=="undefineresource"){var ai=P.pop().val.slice(1),d=P.pop().val.slice(1); +delete E.res[ai].val[d]}else if(n=="resourceforall"){var ai=P.pop().val.slice(1),aU=P.pop().val,X=P.pop(),bi=P.pop().val; +if(bi.length!=1||bi[0]!=42)throw"e";var al=E.res[ai].val;for(var d in al){var Y=aU.slice(0);for(var I=0; +I0?s<>>-J;if(n=="mod")U=s%J;if(n=="exp")U=Math.pow(s,J);if(n=="atan")U=Math.atan2(s,J)*180/Math.PI; +if(cw=="real"){D[0]=U;U=D[0]}P.push({typ:cw,val:U})}else if("neg abs floor ceiling round truncate sqrt ln sin cos".split(" ").indexOf(n)!=-1){var F=P.pop(),s=F.val,U=0,cw=""; +if(n=="neg"||n=="abs"||n=="truncate"||n=="floor"||n=="ceiling"||n=="round")cw=F.typ;else if(n=="sqrt"||n=="sin"||n=="cos"||n=="ln")cw="real"; +if(F.typ=="real"){D[0]=s;s=D[0]}if(n=="neg")U=-s;if(n=="abs")U=Math.abs(s);if(n=="floor")U=Math.floor(s); +if(n=="ceiling")U=Math.ceil(s);if(n=="round")U=Math.round(s);if(n=="truncate")U=Math.trunc(s);if(n=="sqrt")U=Math.sqrt(s); +if(n=="ln")U=Math.log(s);if(n=="sin")U=Math.sin(s*Math.PI/180);if(n=="cos")U=Math.cos(s*Math.PI/180); +if(n=="ln"&&s<=0)throw"e";if(cw=="real"){D[0]=U;U=D[0]}P.push({typ:cw,val:U})}else if("eq ge gt le lt ne".split(" ").indexOf(n)!=-1){var au=P.pop(),F=P.pop(),ba=F.typ,a1=au.typ,s=F.val,J=au.val,U=!1; +if(n=="eq"||n=="ne"){var O=F.typ==au.typ;if(O&&["integer","real","name","null","dict"].indexOf(ba)!=-1)U=s==J; +else if(ba=="real"&&a1=="integer"||a1=="real"&&ba=="integer")U=s==J;else if(!O&&(F.typ=="null"||au.typ=="null"))U=!1; +else if(O&&F.typ=="string"){if(s.length!=J.length)U=!1;else{U=!0;for(var I=0;I=J;else if(n=="gt")U=s>J;else if(n=="le")U=s<=J;else if(n=="lt")U=s0&&o.init<=o.limit||o.inc<0&&o.init>=o.limit){m.push(h);FromPS.addProc(o.proc,m); +P.push({typ:"integer",val:o.init});o.init+=o.inc}}else{var Q=new Float32Array(1);Q[0]=o.limit;o.limit=Q[0]; +Q[0]=o.inc;o.inc=Q[0];Q[0]=o.init;if(o.inc>0&&Q[0]<=o.limit||o.inc<0&&Q[0]>=o.limit){m.push(h);FromPS.addProc(o.proc,m); +P.push({typ:"real",val:Q[0]});Q[0]+=o.inc;o.init=Q[0]}}}else if(n=="loop"){var X=P.pop();m.push({typ:"name",val:n+"---",ctx:{proc:X}})}else if(n=="loop---"){var o=h.ctx; +m.push(h);FromPS.addProc(o.proc,m)}else if(n=="pathforall"){var $=P.pop(),aG=P.pop(),bG=P.pop(),aT=P.pop()}else if(n=="forall"){var X=P.pop(),K=P.pop(),o=[X,K,0]; +m.push({typ:"name",val:n+"---",ctx:o})}else if(n=="forall---"){var o=h.ctx,X=o[0],K=o[1],I=o[2];if(K.typ=="dict"){var bO=Object.keys(K.val); +if(II)m.pop()}else if(n=="bind"){}else if(n=="xcheck"){var K=P.pop(),W=K.typ;P.push({typ:"boolean",val:W=="procedure"})}else if(n=="status"){var Y=P.pop(); +P.push({typ:"boolean",val:!1})}else if(n=="cachestatus"){for(var I=0;I<7;I++)P.push({typ:"integer",val:5e3})}else if(n=="setcachelimit"){P.pop()}else if(n=="type"){var i=P.pop(),aM={name:"nametype",dict:"dicttype",boolean:"booleantype",procedure:"operatortype",string:"stringtype",null:"nulltype",integer:"integertype",array:"arraytype",operator:"operatortype",real:"realtype"}; +if(aM[i.typ]==null){console.log(i);throw i.typ}P.push({typ:"name",val:"/"+aM[i.typ]})}else if(n=="save"){P.push({typ:"state",val:JSON.parse(JSON.stringify(q))})}else if(n=="restore"){q=E.gst=P.pop().val}else if(n=="clipsave"){q.cpstack.push(JSON.parse(JSON.stringify(q.cpth)))}else if(n=="cliprestore"){q.cpath=q.cpstack.pop()}else if(n=="gsave"){w.push(JSON.parse(JSON.stringify(q)))}else if(n=="grestore"){if(w.length!=0)q=E.gst=w.pop(); +else q=UDOC.getState()}else if(n=="grestoreall"){while(w.length!=0)q=E.gst=w.pop()}else if(n=="usertime"||n=="realtime")P.push({typ:"integer",val:n=="usertime"?Date.now()-l:Date.now()}); +else if(n=="flush"||n=="readonly"||n=="executeonly"){}else if(n=="flushfile"){FromPS.GetFile(P.pop())}else if(n=="filter"){var bS=P.pop().val,af; +if(bS=="/SubFileDecode"){var Y=P.pop();if(Y.typ!="string")throw"e";var c4=P.pop().val;Y=Y.val;af=[bS,Y,c4]}else af=[bS]; +var cv=P.pop();P.push({typ:"file",val:{buff:new Uint8Array,off:0},_flt:af,_src:cv})}else if(n=="begincmap"||n=="endcmap"){}else if(n=="begincodespacerange"||n=="beginbfrange"||n=="beginbfchar"){E.cmnum=P.pop().val}else if(n=="endcodespacerange"||n=="endbfrange"||n=="endbfchar"){var $=n=="endbfrange"?3:2,aQ=n.slice(3),T=A[A.length-1],cp=0; +if(T[aQ]==null)T[aQ]=[];for(var I=0;I=0;aR--){var a8=P.pop(),bF=a8.val,j; +if(a8.typ=="string"){j=FromPS.strToInt(bF);if(aR==0)cp=bF.length}else{j=[];for(var bM=0;bM>>24&255)}if(w==4){m.push(E>>>24&255); +m.push(E>>>16&255)}var a=5-w<<3,q=E>>>a&255;E=E&(1<>>24&255);m.push(E>>>16&255); +m.push(E>>>8&255);m.push(E>>>0&255);w=0;E=0}}}},RunLengthDecode:function(P){var A=[],m=P.off;while(!0){if(m>=P.buff.length){console.log(A); +throw"e"}var w=P.buff[m];m++;if(w==128){P.off=m;return new Uint8Array(A)}if(w<128){for(var E=0;E>>3]<<16|w[B+8>>>3]<<8|w[B+16>>>3];t=i>>24-(B&7)-S&(1<>>3]<<16|w[B+8>>>3]<<8|w[B+16>>>3];t=i>>24-(B&7)-S&(1<=z){h[z]=c;a[h[z]]=d[0];W[z]=1;c=c+1+3&~3; +z++}else{h[z]=c;var Z=h[b],Y=W[b];A(a,Z,a,c,Y);a[c+Y]=a[d];Y++;W[z]=Y;z++;c=c+Y+3&~3}if(z+1==1<=z){h[z]=c; +W[z]=0;z++}else{h[z]=c;var Z=h[b],Y=W[b];A(a,Z,a,c,Y);a[c+Y]=a[c];Y++;W[z]=Y;z++;A(a,c,L,R,Y);R+=Y;c=c+Y+3&~3}if(z+1==1<=0){if(A[m][P]!=null)return A[m][P];m--}return null};FromPS.where=function(P,A){var m=A.length-1; +while(m>=0){if(A[m][P]!=null)return A[m];m--}return null};FromPS.skipWhite=function(P){var A=P.off,m=P.buff,w=FromPS.isWhite; +while(w(m[A])||m[A]==37){while(w(m[A]))A++;if(m[A]==37){while(A1){P.pop();if(P.length!=0)E=FromPS.getFToken(P[P.length-1].val,A)}return E}; +FromPS.getFToken=function(P,A){FromPS.skipWhite(P);var m=FromPS.isWhite,w=FromPS.isSpecl,E=P.off,L=P.buff,R=null; +if(E>=L.length)return null;var f=L[E],D=String.fromCharCode(f);E++;if(D=="("){var a=0,q=E;while(!(L[q]==41&&a==0)){if(L[q]==40)a++; +if(L[q]==41)a--;if(L[q]==92)q++;q++}var h=[];for(var W=0;W"&&L[E]==62){R={typ:"name",val:D=="<"?"<<":">>"}; +E++}else if(D=="<"){var h;if(L[E]=="~".charCodeAt(0)){P.off=E+1;var p=FromPS.F.ASCII85Decode(P);h=[]; +for(var W=0;WL[5]){L=L.slice(3).concat(L.slice(0,3)); +E.reverse();l.reverse();for(var q=0;q0)f.push([0,m(w[0],[R[0]],A)]);for(var D=0;D>1)&255; +if(q==4)for(var h=E;h>1)&255;for(var h=E;h>1)&255}if(q==4){for(var h=0; +h=0;D--)L.push(l[D]);continue}var a=f["/MediaBox"];if(a==null)a=P["/Pages"]["/MediaBox"]; +R+=(a[2]-a[0])*(a[3]-a[1])}var L=[P["/Pages"]],q=-1,h=[-1e9,1e9];while(L.length!=0){var f=L.pop();if(f["/Type"]=="/Pages"){var l=f["/Kids"]; +for(var D=l.length-1;D>=0;D--)L.push(l[D]);continue}q++;if(q=h[1])break}};FromPDF.addCmd=function(P,A,m){var w=P.length,E=new Uint8Array(w);for(var L=0;L>1)]>>(1-(m&1)<<2)&15; +else if(w==2)E=P[A+(m>>2)]>>(3-(m&3)<<1)&3;else if(w==1)E=P[A+(m>>3)]>>(7-(m&7)<<0)&1;return E};FromPDF.getString=function(P,A){var m=A["/Subtype"],w="",E=0,L=null,R=A["/ToUnicode"],f=A["/Encoding"],l=A,bm; +if(R!=null&&typeof R!="object")R=null;if(m=="/Type0")l=A["/DescendantFonts"][0];if(R!=null)w=FromPDF.toUnicode(P,R); +else if(f=="/WinAnsiEncoding")w=FromPDF.encFromMap(P,FromPDF._win1252);else if(f=="/MacRomanEncoding")w=FromPDF.encFromMap(P,FromPDF._macRoman); +else if(m=="/Type0"){var D=0,a=l["/CIDSystemInfo"]["/Ordering"];if(a=="Identity")D=0;else if(a=="Japan1")D=31; +else if(a=="GB1")D=31;else if(a=="CNS1")D=31;else if(a=="Korea1")D=31;else{console.log("unknown ordering",a); +D=0}for(var q=0;q4){H--;W++}return U[W]<<24|U[W+1]<<16|U[W+2]<<8|U[W+3]}; -FromPDF.getIndirect=function(U,v,W,H){var p=H[U],Z;if(p.chr=="f")return null;if(p.val!=null)return p.val; -if(p.opn)return{typ:"ref",ind:U,gen:v};p.opn=!0;var M=W.off;if(p.chr=="s"){var Y=FromPDF.getIndirect(p.off,p.gen,W,H),I={buff:FromPS.GS(Y),off:0},R=0,w=0; -while(R!=U){R=FromPS.getFToken(I).val;w=FromPS.getFToken(I).val}I.off=w+Y["/First"];Z=FromPDF.readObject(I,W,H)}else{W.off=p.off; -var q=FromPS.getFToken(W);if(q.val!="<<"){var g=FromPS.getFToken(W),n=FromPS.getFToken(W)}else W.off-=2; -Z=FromPDF.readObject(W,W,H)}p.val=Z;W.off=M;p.opn=!1;return Z};FromPDF.readObject=function(U,v,W){var H=FromPS.getFToken(U); -if(H.typ=="integer"){var p=U.off,M=FromPS.getFToken(U);if(M&&M.typ=="integer"){FromPS.skipWhite(U);if(U.buff[U.off]==82){U.off++; -if(W&&W[H.val])return FromPDF.getIndirect(H.val,M.val,v,W);else return{typ:"ref",ind:H.val,gen:M.val}}}U.off=p}if(H.val=="<<")return FromPDF.readDict(U,v,W); -if(H.val=="[")return FromPDF.readArra(U,v,W);if(H.typ=="string"){var S="";for(var Z=0;Z>")throw"e";return H.val};FromPDF.readDict=function(U,v,W){var H={}; -while(!0){var p=U.off,M=FromPS.getFToken(U);if(M.typ=="name"&&M.val==">>")break;U.off=p;var S=FromPDF.readObject(U,v,W),Z=FromPDF.readObject(U,v,W); -H[S]=Z}if(H["/Length"]!=null&&H["/CFM"]==null){var a=H["/Length"],Y=FromPS.getFToken(U);if(U.buff[U.off]==32)U.off++; -if(U.buff[U.off]==13)U.off++;if(U.buff[U.off]==10)U.off++;if(U.off+a>U.buff.length){console.log("too big /Length of a stream",a,U.buff.length-U.off,U.off)}H.buff=U.buff.slice(U.off,U.off+a); -U.off+=a;FromPS.getFToken(U)}return H};FromPDF.readArra=function(U,v,W){var H=[];while(!0){var p=U.off,M=FromPS.getFToken(U); -if(M.typ=="name"&&M.val=="]")return H;U.off=p;var S=FromPDF.readObject(U,v,W);H.push(S)}};var FromWMF=function(){var U=0,v=53,W=55,H=258,p=259,M=260,S=261,Z=262,a=263,Y=264,I=295,R=313,w=322,q=329,g=513,n=521,_=529,C=531,O=532,$=544,b=552,V=561,d=564,G=804,A=805,r=522,s=523,f=524,ci=525,P=526,at=527,N=1040,h=1042,z=1045,ct=1046,m=1048,cn=1049,cj=1065,bJ=1078,an=1313,j=1336,bU=1352,aD=1051,cc=1055,c6=1564,a9=1565,b2=30,aT=2074,ap=2851,B=1574,a7=298,aa=299,cl=300,bG=301,aj=302,bm=2071,b7=2096,F=2338,af=2610,c3=3379,a4=2368,al=2881,bX=3907,c0=496,c5=247,bh=505,c9=762,a_=763,bM=764,aA=1791,be=1,bN=2,ce=3,bC=4,b9=5,bz=6,b0=7,bT=8,a5=9,bY=10,a2=11,bK=12,K=13,b_=14,bQ=15,aR=16,bu=17,bc=18,ao=19,az=20,c2=21,a6=22,aL=23,bw=24,bf=25,bV=26,cd=27,bR=28,aJ=29,bn=30,ax=31,aH=32,ad=33,bH=34,aB=35,bv=37,aW=38,aZ=42,b5=256,bq=258,bO=512,au=513,by=514,aP=2049,aK=3073,bx=4096,ag=4097,aI=4098,aE=4110,c8=4111,a$=4112,aC=4115,a3=4116,cs=4117,aY=4118,L=4119,bl=4120,ah=4121,k=4122,Q=4568,t=UDOC.B; -function y(l,i){l=new Uint8Array(l);var D=0,u={fill:!1,strk:!1,bb:[0,0,1,1],lbb:[0,0,1,1],scl:1,fnt:{nam:"Arial",hgh:25,und:!1,orn:0,chrst:0},tclr:[0,0,0],talg:0},J=t.readShort,T=t.readUshort,o=t.readUint,b4=o(l,0),a0=0; -if(b4==2596720087){D=6;var bA=J(l,D+8);u.scl=120/bA;for(var ck=0;ck<4;ck++){u.bb[ck]=Math.round(J(l,D)*u.scl); -D+=2}D+=2;D+=6}i.StartPage(u.bb[0],u.bb[1],u.bb[2],u.bb[3]);var X=UDOC.getState(u.bb),bo=T(l,D);D+=2; -var bB=T(l,D);D+=2;var bS=T(l,D);D+=2;var bp=o(l,D);D+=4;var bs=T(l,D);D+=2;var b3=o(l,D);D+=4;var bs=T(l,D); -D+=2;var e=[];while(!0){var aG=o(l,D)<<1,c4=null;D+=4;var br=T(l,D);D+=2;var c=br,E=D;if(!1){}else if(c==U)break; -else if(c==B){var bW=T(l,D);E+=2;var bg=bW;console.log(c,bg)}else if(c==p||c==Z||c==H){}else if(c==bG){var bD=T(l,E); -E+=2;var ac=e[bD];if(ac.t=="br"){u.fill=ac.stl!=1;if(ac.stl==0){}else if(ac.stl==1){}else throw ac.stl+" e"; -X.colr=ac.clr}else if(ac.t=="pn"){var cp=ac.stl&7;u.strk=cp!=5;if(cp==0||cp==6)X.lwidth=ac.px;else if(cp==5){}else throw cp+" e"; -if((ac.stl&4096)!=0)X.ljoin=2;else if((ac.stl&8192)!=0)X.ljoin=0;else X.ljoin=1;X.COLR=ac.clr}else if(ac.t=="fn"){u.fnt=ac; -X.font.Tf=ac.nam;X.font.Tfs=Math.abs(ac.hgh);X.font.Tun=ac.und}else throw"e"}else if(c==c0){var bD=T(l,E); -E+=2;e[bD]=null}else if(c==s||c==f){var aF=c==s?0:2;u.lbb[aF+1]=J(l,E);E+=2;u.lbb[aF]=J(l,E);E+=2;ch(u,X)}else if(c==bM){c4={t:"br"}; -c4.stl=T(l,E);E+=2;c4.clr=[l[E]/255,l[E+1]/255,l[E+2]/255];E+=4;c4.htc=T(l,E);E+=2}else if(c==c9){c4={t:"pn"}; -c4.stl=T(l,E);E+=2;c4.px=J(l,E);E+=2;c4.py=J(l,E);E+=2;c4.clr=[l[E]/255,l[E+1]/255,l[E+2]/255];E+=4}else if(c==a_){c4={t:"fn",nam:""}; -c4.hgh=J(l,E);E+=2;E+=2*2;c4.orn=J(l,E)/10;E+=2;var av=J(l,E);E+=2;c4.und=l[E+1];E+=2;c4.stk=l[E];c4.chrst=l[D+1]; -E+=2;E+=4;while(l[E]!=0){c4.nam+=String.fromCharCode(l[E]);E++}if(av>500)c4.nam+="-Bold"}else if(c==c5){c4={t:"pl"}}else if(c==n)u.tclr=[l[E]/255,l[E+1]/255,l[E+2]/255]; -else if(c==aj)u.talg=T(l,E);else if(c==O){UDOC.G.moveTo(X,J(l,E+2),J(l,E))}else if(c==C){if(X.pth.cmds.length==0){var a1=X.ctm.slice(0); -UDOC.M.invert(a1);var aS=UDOC.M.multPoint(a1,X.cpos);UDOC.G.moveTo(X,aS[0],aS[1])}UDOC.G.lineTo(X,J(l,E+2),J(l,E)); -var cr=u.fill;u.fill=!1;cv(i,X,u);u.fill=cr}else if(c==j){var aM=T(l,E);E+=2;var ba=E;E+=aM*2;for(var ck=0; -ck127){ck++;bE=bE<<8|l[E+ck]}as+=String.fromCharCode(bE)}var b6=X.colr;X.colr=u.tclr;i.PutText(X,as,as.length*X.font.Tfs*.5); -X.colr=b6}else{console.log(c,aG)}if(c4!=null){var aU=0;while(e[aU]!=null)aU++;e[aU]=c4}D+=aG-6}i.ShowPage(); -i.Done()}function b$(l,i){var D=t.readShort,u=t.readUshort,J=t.readUint,T=J(l,i),o,b4,bA;i+=4;if(T==12)throw"e"; -else{o=J(l,i);i+=4;b4=J(l,i);i+=4;var ck=u(l,i);i+=2;if(ck!=1)throw"e";var X=u(l,i);i+=2;if(X!=1&&X!=24&&X!=32)throw X+" e"; -var bo=J(l,i);i+=4;if(bo!=0)throw"e";var bB=J(l,i);i+=4;var bS=J(l,i);i+=4;var bp=J(l,i);i+=4;bA=J(l,i); -i+=4;var bs=J(l,i);i+=4}var b3=o*b4,e=new Uint8Array(b3*4),a0=Math.floor((o*ck*X+31&~31)/8);if(X==1)for(var aG=0; -aG>>3)]>>>7-(c&7)&1; -e[E]=l[i+c4*4+2];e[E+1]=l[i+c4*4+1];e[E+2]=l[i+c4*4+0];e[E+3]=255}}if(X==24){for(var aG=0;aG500)o.nam+="-Bold"}else if(u==K){T+=16; -var bp=x(L,T),bg="";T+=4;var bs=l(L,T);T+=4;var b3=l(L,T);T+=4;var e=cv(L,T);T+=4;var a0=cv(L,T);T+=4; -var aG=Q.ctm.slice(0);if(bp==1)Q.ctm=[1,0,0,1,0,0];Q.font.Tm=[1,0,0,-1,0,0];UDOC.M.rotate(Q.font.Tm,k.fnt.orn*Math.PI/180); -UDOC.M.translate(Q.font.Tm,e,a0);var br=k.talg;if((br&6)==6)Q.font.Tal=2;else if((br&7)==0)Q.font.Tal=0; -else throw br+" e";if((br&24)==24){}else if((br&24)==0)UDOC.M.translate(Q.font.Tm,0,Q.font.Tfs);else console.log("unknown alignment",br); -var c=x(L,T);T+=4;var E=x(L,T);T+=4;var c4=x(L,T);T+=4;T+=16;var bW=x(L,T);T+=4;E+=ah-8;for(var bD=0; -bD0){UDOC.G.curveTo(Q,aq(L,T),aq(L,T+ai),aq(L,T+2*ai),aq(L,T+3*ai),aq(L,T+4*ai),aq(L,T+5*ai)); -T+=6*ai;cr-=3}}else if(u==aD||u==bU){UDOC.G.newPath(Q);var b1=aC(L,T);if(u==aD){UDOC.G.drawRect(Q,b1[0],b1[1],b1[2]-b1[0],b1[3]-b1[1])}else{var aV=(b1[0]+b1[2])/2,cg=(b1[1]+b1[3])/2; -UDOC.G.arc(Q,aV,cg,(b1[2]-b1[0])/2,0,2*Math.PI,!1)}UDOC.G.closePath(Q);cs(bl,Q,k,!0)}else if(u==al)bl.Fill(Q,!1); -else if(u==c0)bl.Stroke(Q);else if(u==bX){bl.Fill(Q,!1);bl.Stroke(Q)}else if(u==ct||u==m){var c7=[]; -for(var bD=0;bD<6;bD++)c7.push(l(L,T+bD*4));T+=24;if(u==ct)Q.ctm=c7;else{var bp=x(L,T);T+=4;if(bp==2){var bj=Q.ctm; -Q.ctm=c7;UDOC.M.concat(Q.ctm,bj)}else throw"e"}}else if(u==b){var aQ=x(L,T);T+=4}else if(u==bY){var b1=aC(L,T); -T+=16;var am=cv(L,T);T+=4;var cq=cv(L,T);T+=4;var bF=cv(L,T);T+=4;var ab=cv(L,T);T+=4;var ae=cv(L,T); -T+=4;var aX=cv(L,T);T+=4;var aN=x(L,T)+ah-8;T+=4;var aw=x(L,T);T+=4;var bZ=x(L,T)+ah-8;T+=4;var bd=x(L,T); -T+=4;var ak=x(L,T);T+=4;if(ak!=0)throw"e";var bP=x(L,T);T+=4;var ar=cv(L,T);T+=4;var as=cv(L,T);T+=4; -var bE=x(L,aN);aN+=4;var b6=x(L,aN);aN+=4;var aU=x(L,aN);aN+=4;if(b6!=ae||aU!=aX)throw"e";var c1=ch(L,aN); -aN+=2;var bI=ch(L,aN);aN+=2;if(bI!=1&&bI!=4&&bI!=8&&bI!=24&&bI!=32)throw bI+" e";var a8=x(L,aN);aN+=4; -if(a8!=0)throw a8+" e";var bb=x(L,aN);aN+=4;var cf=x(L,aN);aN+=4;var b8=x(L,aN);aN+=4;var bk=x(L,aN); -aN+=4;var bL=x(L,aN);aN+=4;var aO=Math.floor((b6*c1*bI+31&~31)/8),ay=new Uint8Array(b6*aU*4);if(bI==8){for(var cg=0; -cg>>1); -for(var A=0;Ab9)b9=b0}for(var A=0;A=I[Z+Y+1])return 0;for(var C=0;C<=Y;C++){if(R>=I[Z+C]&&R4){w--;m++}return P[m]<<24|P[m+1]<<16|P[m+2]<<8|P[m+3]}; +FromPDF.getIndirect=function(P,A,m,w){var E=w[P],f;if(E.chr=="f")return null;if(E.val!=null)return E.val; +if(E.opn)return{typ:"ref",ind:P,gen:A};E.opn=!0;var L=m.off;if(E.chr=="s"){var D=FromPDF.getIndirect(E.off,E.gen,m,w),a={buff:FromPS.GS(D),off:0},q=0,h=0; +while(q!=P){q=FromPS.getFToken(a).val;h=FromPS.getFToken(a).val}a.off=h+D["/First"];f=FromPDF.readObject(a,m,w)}else{m.off=E.off; +var W=FromPS.getFToken(m);if(W.val!="<<"){var p=FromPS.getFToken(m),z=FromPS.getFToken(m)}else m.off-=2; +f=FromPDF.readObject(m,m,w)}E.val=f;m.off=L;E.opn=!1;return f};FromPDF.readObject=function(P,A,m){var w=FromPS.getFToken(P); +if(w.typ=="integer"){var E=P.off,L=FromPS.getFToken(P);if(L&&L.typ=="integer"){FromPS.skipWhite(P);if(P.buff[P.off]==82){P.off++; +if(m&&m[w.val])return FromPDF.getIndirect(w.val,L.val,A,m);else return{typ:"ref",ind:w.val,gen:L.val}}}P.off=E}if(w.val=="<<")return FromPDF.readDict(P,A,m); +if(w.val=="[")return FromPDF.readArra(P,A,m);if(w.typ=="string"){var R="";for(var f=0;f>")throw"e";return w.val};FromPDF.readDict=function(P,A,m){var w={}; +while(!0){var E=P.off,L=FromPS.getFToken(P);if(L.typ=="name"&&L.val==">>")break;P.off=E;var R=FromPDF.readObject(P,A,m),f=FromPDF.readObject(P,A,m); +w[R]=f}if(w["/Length"]!=null&&w["/CFM"]==null){var l=w["/Length"],D=FromPS.getFToken(P);if(P.buff[P.off]==32)P.off++; +if(P.buff[P.off]==13)P.off++;if(P.buff[P.off]==10)P.off++;if(P.off+l>P.buff.length){console.log("too big /Length of a stream",l,P.buff.length-P.off,P.off)}w.buff=P.buff.slice(P.off,P.off+l); +P.off+=l;FromPS.getFToken(P)}return w};FromPDF.readArra=function(P,A,m){var w=[];while(!0){var E=P.off,L=FromPS.getFToken(P); +if(L.typ=="name"&&L.val=="]")return w;P.off=E;var R=FromPDF.readObject(P,A,m);w.push(R)}};var FromWMF=function(){var P=0,A=53,m=55,w=258,E=259,L=260,R=261,f=262,l=263,D=264,a=295,q=313,h=322,W=329,p=513,z=521,c=529,S=531,B=532,N=544,x=552,i=561,t=564,I=804,K=805,n=522,b=523,j=524,c5=525,d=526,bm=527,T=1040,Z=1042,Y=1045,bg=1046,u=1048,aN=1049,c4=1065,aB=1078,b7=1313,U=1336,cr=1352,bI=1051,ae=1055,ac=1564,bp=1565,cl=30,aJ=2074,bP=2851,V=1574,ck=298,ce=299,ai=300,bx=301,bj=302,cc=2071,aU=2096,X=2338,bi=2610,al=3379,b8=2368,a4=2881,cp=3907,b1=496,aX=247,b5=505,ag=762,bR=763,av=764,aZ=1791,aw=1,a2=2,ch=3,aR=4,cs=5,bD=6,aS=7,bK=8,bz=9,bn=10,a9=11,bX=12,k=13,ct=14,ak=15,bQ=16,b3=17,cg=18,aF=19,c2=20,br=21,a7=22,cm=23,aq=24,bL=25,am=26,bU=27,cf=28,cd=29,bM=30,ca=31,ao=32,bd=33,aK=34,cj=35,b6=37,aE=38,aV=42,bk=256,bN=258,c0=512,b2=513,a6=514,aH=2049,a_=3073,bl=4096,be=4097,b9=4098,c1=4110,bY=4111,b4=4112,b$=4115,as=4116,bh=4117,ah=4118,H=4119,bv=4120,au=4121,F=4122,r=4568,s=UDOC.B; +function J(y,M){y=new Uint8Array(y);var v=0,C={fill:!1,strk:!1,bb:[0,0,1,1],lbb:[0,0,1,1],scl:1,fnt:{nam:"Arial",hgh:25,und:!1,orn:0,chrst:0},tclr:[0,0,0],talg:0},e=s.readShort,_=s.readUshort,G=s.readUint,by=G(y,0),bw=0; +if(by==2596720087){v=6;var bJ=e(y,v+8);C.scl=120/bJ;for(var at=0;at<4;at++){C.bb[at]=Math.round(e(y,v)*C.scl); +v+=2}v+=2;v+=6}M.StartPage(C.bb[0],C.bb[1],C.bb[2],C.bb[3]);var g=UDOC.getState(C.bb),a0=_(y,v);v+=2; +var a$=_(y,v);v+=2;var aA=_(y,v);v+=2;var aL=G(y,v);v+=4;var a5=_(y,v);v+=2;var ci=G(y,v);v+=4;var a5=_(y,v); +v+=2;var o=[];while(!0){var cq=G(y,v)<<1,aG=null;v+=4;var an=_(y,v);v+=2;var Q=an,$=v;if(!1){}else if(Q==P)break; +else if(Q==V){var bG=_(y,v);$+=2;var aT=bG;console.log(Q,aT)}else if(Q==E||Q==f||Q==w){}else if(Q==bx){var bO=_(y,$); +$+=2;var bq=o[bO];if(bq.t=="br"){C.fill=bq.stl!=1;if(bq.stl==0){}else if(bq.stl==1){}else throw bq.stl+" e"; +g.colr=bq.clr}else if(bq.t=="pn"){var aM=bq.stl&7;C.strk=aM!=5;if(aM==0||aM==6)g.lwidth=bq.px;else if(aM==5){}else throw aM+" e"; +if((bq.stl&4096)!=0)g.ljoin=2;else if((bq.stl&8192)!=0)g.ljoin=0;else g.ljoin=1;g.COLR=bq.clr}else if(bq.t=="fn"){C.fnt=bq; +g.font.Tf=bq.nam;g.font.Tfs=Math.abs(bq.hgh);g.font.Tun=bq.und}else throw"e"}else if(Q==b1){var bO=_(y,$); +$+=2;o[bO]=null}else if(Q==b||Q==j){var bS=Q==b?0:2;C.lbb[bS+1]=e(y,$);$+=2;C.lbb[bS]=e(y,$);$+=2;ba(C,g)}else if(Q==av){aG={t:"br"}; +aG.stl=_(y,$);$+=2;aG.clr=[y[$]/255,y[$+1]/255,y[$+2]/255];$+=4;aG.htc=_(y,$);$+=2}else if(Q==ag){aG={t:"pn"}; +aG.stl=_(y,$);$+=2;aG.px=e(y,$);$+=2;aG.py=e(y,$);$+=2;aG.clr=[y[$]/255,y[$+1]/255,y[$+2]/255];$+=4}else if(Q==bR){aG={t:"fn",nam:""}; +aG.hgh=e(y,$);$+=2;$+=2*2;aG.orn=e(y,$)/10;$+=2;var af=e(y,$);$+=2;aG.und=y[$+1];$+=2;aG.stk=y[$];aG.chrst=y[v+1]; +$+=2;$+=4;while(y[$]!=0){aG.nam+=String.fromCharCode(y[$]);$++}if(af>500)aG.nam+="-Bold"}else if(Q==aX){aG={t:"pl"}}else if(Q==z)C.tclr=[y[$]/255,y[$+1]/255,y[$+2]/255]; +else if(Q==bj)C.talg=_(y,$);else if(Q==B){UDOC.G.moveTo(g,e(y,$+2),e(y,$))}else if(Q==S){if(g.pth.cmds.length==0){var cv=g.ctm.slice(0); +UDOC.M.invert(cv);var aQ=UDOC.M.multPoint(cv,g.cpos);UDOC.G.moveTo(g,aQ[0],aQ[1])}UDOC.G.lineTo(g,e(y,$+2),e(y,$)); +var bC=C.fill;C.fill=!1;a1(M,g,C);C.fill=bC}else if(Q==U){var a8=_(y,$);$+=2;var bF=$;$+=a8*2;for(var at=0; +at127){at++;bt=bt<<8|y[$+at]}bV+=String.fromCharCode(bt)}var bW=g.colr;g.colr=C.tclr;M.PutText(g,bV,bV.length*g.font.Tfs*.5); +g.colr=bW}else{console.log(Q,cq)}if(aG!=null){var aO=0;while(o[aO]!=null)aO++;o[aO]=aG}v+=cq-6}M.ShowPage(); +M.Done()}function cw(y,M){var v=s.readShort,C=s.readUshort,e=s.readUint,_=e(y,M),G,by,bJ;M+=4;if(_==12)throw"e"; +else{G=e(y,M);M+=4;by=e(y,M);M+=4;var at=C(y,M);M+=2;if(at!=1)throw"e";var g=C(y,M);M+=2;if(g!=1&&g!=24&&g!=32)throw g+" e"; +var a0=e(y,M);M+=4;if(a0!=0)throw"e";var a$=e(y,M);M+=4;var aA=e(y,M);M+=4;var aL=e(y,M);M+=4;bJ=e(y,M); +M+=4;var a5=e(y,M);M+=4}var ci=G*by,o=new Uint8Array(ci*4),bw=Math.floor((G*at*g+31&~31)/8);if(g==1)for(var cq=0; +cq>>3)]>>>7-(Q&7)&1; +o[$]=y[M+aG*4+2];o[$+1]=y[M+aG*4+1];o[$+2]=y[M+aG*4+0];o[$+3]=255}}if(g==24){for(var cq=0;cq500)G.nam+="-Bold"}else if(C==k){_+=16; +var aL=O(H,_),aT="";_+=4;var a5=y(H,_);_+=4;var ci=y(H,_);_+=4;var o=a1(H,_);_+=4;var bw=a1(H,_);_+=4; +var cq=r.ctm.slice(0);if(aL==1)r.ctm=[1,0,0,1,0,0];r.font.Tm=[1,0,0,-1,0,0];UDOC.M.rotate(r.font.Tm,F.fnt.orn*Math.PI/180); +UDOC.M.translate(r.font.Tm,o,bw);var an=F.talg;if((an&6)==6)r.font.Tal=2;else if((an&7)==0)r.font.Tal=0; +else throw an+" e";if((an&24)==24){}else if((an&24)==0)UDOC.M.translate(r.font.Tm,0,r.font.Tfs);else console.log("unknown alignment",an); +var Q=O(H,_);_+=4;var $=O(H,_);_+=4;var aG=O(H,_);_+=4;_+=16;var bG=O(H,_);_+=4;$+=au-8;for(var bO=0; +bO0){UDOC.G.curveTo(r,aP(H,_),aP(H,_+ab),aP(H,_+2*ab),aP(H,_+3*ab),aP(H,_+4*ab),aP(H,_+5*ab)); +_+=6*ab;bC-=3}}else if(C==bI||C==cr){UDOC.G.newPath(r);var aI=b$(H,_);if(C==bI){UDOC.G.drawRect(r,aI[0],aI[1],aI[2]-aI[0],aI[3]-aI[1])}else{var bb=(aI[0]+aI[2])/2,bs=(aI[1]+aI[3])/2; +UDOC.G.arc(r,bb,bs,(aI[2]-aI[0])/2,0,2*Math.PI,!1)}UDOC.G.closePath(r);bh(bv,r,F,!0)}else if(C==a4)bv.Fill(r,!1); +else if(C==b1)bv.Stroke(r);else if(C==cp){bv.Fill(r,!1);bv.Stroke(r)}else if(C==bg||C==u){var bc=[]; +for(var bO=0;bO<6;bO++)bc.push(y(H,_+bO*4));_+=24;if(C==bg)r.ctm=bc;else{var aL=O(H,_);_+=4;if(aL==2){var ad=r.ctm; +r.ctm=bc;UDOC.M.concat(r.ctm,ad)}else throw"e"}}else if(C==x){var bH=O(H,_);_+=4}else if(C==bn){var aI=b$(H,_); +_+=16;var c9=a1(H,_);_+=4;var bA=a1(H,_);_+=4;var aj=a1(H,_);_+=4;var b0=a1(H,_);_+=4;var aY=a1(H,_); +_+=4;var cb=a1(H,_);_+=4;var ap=O(H,_)+au-8;_+=4;var bE=O(H,_);_+=4;var az=O(H,_)+au-8;_+=4;var ay=O(H,_); +_+=4;var c7=O(H,_);_+=4;if(c7!=0)throw"e";var b_=O(H,_);_+=4;var cn=a1(H,_);_+=4;var bV=a1(H,_);_+=4; +var bt=O(H,ap);ap+=4;var bW=O(H,ap);ap+=4;var aO=O(H,ap);ap+=4;if(bW!=aY||aO!=cb)throw"e";var aW=ba(H,ap); +ap+=2;var bB=ba(H,ap);ap+=2;if(bB!=1&&bB!=4&&bB!=8&&bB!=24&&bB!=32)throw bB+" e";var a3=O(H,ap);ap+=4; +if(a3!=0)throw a3+" e";var aD=O(H,ap);ap+=4;var c3=O(H,ap);ap+=4;var ar=O(H,ap);ap+=4;var bZ=O(H,ap); +ap+=4;var bo=O(H,ap);ap+=4;var aC=Math.floor((bW*aW*bB+31&~31)/8),bT=new Uint8Array(bW*aO*4);if(bB==8){for(var bs=0; +bs>>1); +for(var K=0;Kcs)cs=aS}for(var K=0;K=a[f+D+1])return 0;for(var S=0;S<=D;S++){if(q>=a[f+S]&&q255){var s=G.indexOf(r);d.push(s==-1?32:G[s-1])}else d.push(r)}}else{for(var A=0; -A>2);s[f]=C[A+0]; -s[f+1]=C[A+1];s[f+2]=C[A+2]}}var ci=this._res["/XObject"];for(var P in ci){var at=this._xr[ci[P].ind],N=at["/SMask"],h=N!=null?1:0,z=V!=null?1:0; -if(!S(at.stream,s)||h+z==1)continue;if(h+z==2&&!S(this._xr[N.ind].stream,G))continue;return P}var P="/I"+(w(ci)+1); -ci[P]={typ:"ref",ind:this._xr.length};var ct={"/Type":"/XObject","/Subtype":"/Image","/BitsPerComponent":8,"/ColorSpace":C.length==O*$||r=="/DCTDecode"&&R(C)&&R(C).comps==1?"/DeviceGray":"/DeviceRGB","/Height":$,"/Width":O,stream:s}; -if(r!=null)ct["/Filter"]=Z(C);if(b){ct["/SMask"]={typ:"ref",ind:this._xr.length-1}}this._xr.push(ct); -return P};function R(C){var O=0;while(O>");if(d){b(C,V($)+"\nstream\n");C.file.req(C.off,d.length); -for(var A=0;Athis.size)this.size*=2;var b=new Uint8Array(this.size);for(var V=0;V<$;V++)b[V]=this.data[V]; -this.data=b};return U}();function ToEMF(){this._file={file:new ToEMF.MFile,off:0};this._lstw=0;this._curx=0; +this._bnds=[];this._cont="";this._gst=A()}function A(){return{colr:"[0,0,0]",COLR:"[0,0,0]",lcap:"0",ljoin:"0",lwidth:"1",mlimit:"10",dash:"[]",doff:"0",bmode:"/Normal",CA:"1",ca:"1"}}P.prototype.StartPage=function(S,B,N,x){this._bnds=[S,B,N,x]}; +P.prototype.Stroke=function(S){if(S.CA==0)return;this.setGState(S,!0);this._cont+=" S\n"};P.prototype.Fill=function(S,B){if(S.ca==0)return; +this.setGState(S,!0);this._cont+=" f\n"};function m(S){return""+parseFloat(S.toFixed(2))}function w(S){return""+parseFloat(S.toFixed(3))}function E(S){return Math.sqrt(Math.abs(S[0]*S[3]-S[1]*S[2]))}function L(S){var B=S.map(m).join(" "); +if(B=="1 0 0 1 0 0")return"";return B+" cm "}function R(S,B){if(S.length!=B.length)return!1;for(var N=0; +N255){var b=I.indexOf(n);t.push(b==-1?32:I[b-1])}else t.push(n)}}else{for(var K=0; +K>2);b[j]=S[K+0]; +b[j+1]=S[K+1];b[j+2]=S[K+2]}}var c5=this._res["/XObject"];for(var d in c5){var bm=this._xr[c5[d].ind],T=bm["/SMask"],Z=T!=null?1:0,Y=i!=null?1:0; +if(!R(bm.stream,b)||Z+Y==1)continue;if(Z+Y==2&&!R(this._xr[T.ind].stream,I))continue;return d}var d="/I"+(h(c5)+1); +c5[d]={typ:"ref",ind:this._xr.length};var bg={"/Type":"/XObject","/Subtype":"/Image","/BitsPerComponent":8,"/ColorSpace":S.length==B*N||n=="/DCTDecode"&&q(S)&&q(S).comps==1?"/DeviceGray":"/DeviceRGB","/Height":N,"/Width":B,stream:b}; +if(n!=null)bg["/Filter"]=f(S);if(x){bg["/SMask"]={typ:"ref",ind:this._xr.length-1}}this._xr.push(bg); +return d};function q(S){var B=0;while(B>");if(t){x(S,i(N)+"\nstream\n");S.file.req(S.off,t.length); +for(var K=0;Kthis.size)this.size*=2;var x=new Uint8Array(this.size);for(var i=0;i.05;if(q){g=U.ctm.slice(0); -g[1]*=-1;g[2]*=-1;g[4]=R;g[5]=w;R=w=0;this._trsf(g)}var n=8+16+12+4*6+16;this._addRec("EXTTEXTOUTW",n+H*2); -p.off+=16;S(p.file,p.off,2);p.off+=4;Y(p.file,p.off,31.25);p.off+=4;Y(p.file,p.off,31.25);p.off+=4;Z(p.file,p.off,Math.round(R)); -p.off+=4;Z(p.file,p.off,Math.round(w));p.off+=4;S(p.file,p.off,v.length);p.off+=4;S(p.file,p.off,n); -p.off+=4;S(p.file,p.off,0);p.off+=4;p.off+=16;S(p.file,p.off,0);p.off+=4;for(var _=0;_1; -if(O){g*=C;if(w=="L")n="POLYLINETO";_=8+20+4*g}this._addRec(n,_);if(O){W.off+=16;H(W.file,W.off,C*q[1]); -W.off+=4;R+=C-1}for(var $=0;$this.size)this.size*=2; -var H=new Uint8Array(this.size);for(var p=0;p.05;if(W){p=P.ctm.slice(0); +p[1]*=-1;p[2]*=-1;p[4]=q;p[5]=h;q=h=0;this._trsf(p)}var z=8+16+12+4*6+16;this._addRec("EXTTEXTOUTW",z+w*2); +E.off+=16;R(E.file,E.off,2);E.off+=4;D(E.file,E.off,31.25);E.off+=4;D(E.file,E.off,31.25);E.off+=4;f(E.file,E.off,Math.round(q)); +E.off+=4;f(E.file,E.off,Math.round(h));E.off+=4;R(E.file,E.off,A.length);E.off+=4;R(E.file,E.off,z); +E.off+=4;R(E.file,E.off,0);E.off+=4;E.off+=16;R(E.file,E.off,0);E.off+=4;for(var c=0;c1; +if(B){p*=S;if(h=="L")z="POLYLINETO";c=8+20+4*p}this._addRec(z,c);if(B){m.off+=16;w(m.file,m.off,S*W[1]); +m.off+=4;q+=S-1}for(var N=0;Nthis.size)this.size*=2; +var w=new Uint8Array(this.size);for(var E=0;E0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new f,this.strm.avail_out=0;var a=o.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(a!==b)throw new Error(d[a]);if(e.header&&o.deflateSetHeader(this.strm,e.header),e.dictionary){var n;if(n="string"==typeof e.dictionary?h.string2buf(e.dictionary):"[object ArrayBuffer]"===_.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,a=o.deflateSetDictionary(this.strm,n),a!==b)throw new Error(d[a]);this._dict_set=!0}}function n(t,e){var a=new i(e);if(a.push(t,!0),a.err)throw a.msg||d[a.err];return a.result}function r(t,e){return e=e||{},e.raw=!0,n(t,e)}function s(t,e){return e=e||{},e.gzip=!0,n(t,e)}var o=t("./zlib/deflate"),l=t("./utils/common"),h=t("./utils/strings"),d=t("./zlib/messages"),f=t("./zlib/zstream"),_=Object.prototype.toString,u=0,c=4,b=0,g=1,m=2,w=-1,p=0,v=8;i.prototype.push=function(t,e){var a,i,n=this.strm,r=this.options.chunkSize;if(this.ended)return!1;i=e===~~e?e:e===!0?c:u,"string"==typeof t?n.input=h.string2buf(t):"[object ArrayBuffer]"===_.call(t)?n.input=new Uint8Array(t):n.input=t,n.next_in=0,n.avail_in=n.input.length;do{if(0===n.avail_out&&(n.output=new l.Buf8(r),n.next_out=0,n.avail_out=r),a=o.deflate(n,i),a!==g&&a!==b)return this.onEnd(a),this.ended=!0,!1;0!==n.avail_out&&(0!==n.avail_in||i!==c&&i!==m)||("string"===this.options.to?this.onData(h.buf2binstring(l.shrinkBuf(n.output,n.next_out))):this.onData(l.shrinkBuf(n.output,n.next_out)))}while((n.avail_in>0||0===n.avail_out)&&a!==g);return i===c?(a=o.deflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===b):i!==m||(this.onEnd(b),n.avail_out=0,!0)},i.prototype.onData=function(t){this.chunks.push(t)},i.prototype.onEnd=function(t){t===b&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=l.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},a.Deflate=i,a.deflate=n,a.deflateRaw=r,a.gzip=s},{"./utils/common":3,"./utils/strings":4,"./zlib/deflate":8,"./zlib/messages":13,"./zlib/zstream":15}],2:[function(t,e,a){"use strict";function i(t){if(!(this instanceof i))return new i(t);this.options=o.assign({chunkSize:16384,windowBits:0,to:""},t||{});var e=this.options;e.raw&&e.windowBits>=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(e.windowBits>=0&&e.windowBits<16)||t&&t.windowBits||(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&0===(15&e.windowBits)&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new f,this.strm.avail_out=0;var a=s.inflateInit2(this.strm,e.windowBits);if(a!==h.Z_OK)throw new Error(d[a]);this.header=new _,s.inflateGetHeader(this.strm,this.header)}function n(t,e){var a=new i(e);if(a.push(t,!0),a.err)throw a.msg||d[a.err];return a.result}function r(t,e){return e=e||{},e.raw=!0,n(t,e)}var s=t("./zlib/inflate"),o=t("./utils/common"),l=t("./utils/strings"),h=t("./zlib/constants"),d=t("./zlib/messages"),f=t("./zlib/zstream"),_=t("./zlib/gzheader"),u=Object.prototype.toString;i.prototype.push=function(t,e){var a,i,n,r,d,f,_=this.strm,c=this.options.chunkSize,b=this.options.dictionary,g=!1;if(this.ended)return!1;i=e===~~e?e:e===!0?h.Z_FINISH:h.Z_NO_FLUSH,"string"==typeof t?_.input=l.binstring2buf(t):"[object ArrayBuffer]"===u.call(t)?_.input=new Uint8Array(t):_.input=t,_.next_in=0,_.avail_in=_.input.length;do{if(0===_.avail_out&&(_.output=new o.Buf8(c),_.next_out=0,_.avail_out=c),a=s.inflate(_,h.Z_NO_FLUSH),a===h.Z_NEED_DICT&&b&&(f="string"==typeof b?l.string2buf(b):"[object ArrayBuffer]"===u.call(b)?new Uint8Array(b):b,a=s.inflateSetDictionary(this.strm,f)),a===h.Z_BUF_ERROR&&g===!0&&(a=h.Z_OK,g=!1),a!==h.Z_STREAM_END&&a!==h.Z_OK)return this.onEnd(a),this.ended=!0,!1;_.next_out&&(0!==_.avail_out&&a!==h.Z_STREAM_END&&(0!==_.avail_in||i!==h.Z_FINISH&&i!==h.Z_SYNC_FLUSH)||("string"===this.options.to?(n=l.utf8border(_.output,_.next_out),r=_.next_out-n,d=l.buf2string(_.output,n),_.next_out=r,_.avail_out=c-r,r&&o.arraySet(_.output,_.output,n,r,0),this.onData(d)):this.onData(o.shrinkBuf(_.output,_.next_out)))),0===_.avail_in&&0===_.avail_out&&(g=!0)}while((_.avail_in>0||0===_.avail_out)&&a!==h.Z_STREAM_END);return a===h.Z_STREAM_END&&(i=h.Z_FINISH),i===h.Z_FINISH?(a=s.inflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===h.Z_OK):i!==h.Z_SYNC_FLUSH||(this.onEnd(h.Z_OK),_.avail_out=0,!0)},i.prototype.onData=function(t){this.chunks.push(t)},i.prototype.onEnd=function(t){t===h.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=o.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},a.Inflate=i,a.inflate=n,a.inflateRaw=r,a.ungzip=n},{"./utils/common":3,"./utils/strings":4,"./zlib/constants":6,"./zlib/gzheader":9,"./zlib/inflate":11,"./zlib/messages":13,"./zlib/zstream":15}],3:[function(t,e,a){"use strict";var i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;a.assign=function(t){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var a=e.shift();if(a){if("object"!=typeof a)throw new TypeError(a+"must be non-object");for(var i in a)a.hasOwnProperty(i)&&(t[i]=a[i])}}return t},a.shrinkBuf=function(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)};var n={arraySet:function(t,e,a,i,n){if(e.subarray&&t.subarray)return void t.set(e.subarray(a,a+i),n);for(var r=0;r=252?6:l>=248?5:l>=240?4:l>=224?3:l>=192?2:1;o[254]=o[254]=1,a.string2buf=function(t){var e,a,i,r,s,o=t.length,l=0;for(r=0;r>>6,e[s++]=128|63&a):a<65536?(e[s++]=224|a>>>12,e[s++]=128|a>>>6&63,e[s++]=128|63&a):(e[s++]=240|a>>>18,e[s++]=128|a>>>12&63,e[s++]=128|a>>>6&63,e[s++]=128|63&a);return e},a.buf2binstring=function(t){return i(t,t.length)},a.binstring2buf=function(t){for(var e=new n.Buf8(t.length),a=0,i=e.length;a4)h[n++]=65533,a+=s-1;else{for(r&=2===s?31:3===s?15:7;s>1&&a1?h[n++]=65533:r<65536?h[n++]=r:(r-=65536,h[n++]=55296|r>>10&1023,h[n++]=56320|1023&r)}return i(h,n)},a.utf8border=function(t,e){var a;for(e=e||t.length,e>t.length&&(e=t.length),a=e-1;a>=0&&128===(192&t[a]);)a--;return a<0?e:0===a?e:a+o[t[a]]>e?a:e}},{"./common":3}],5:[function(t,e,a){"use strict";function i(t,e,a,i){for(var n=65535&t|0,r=t>>>16&65535|0,s=0;0!==a;){s=a>2e3?2e3:a,a-=s;do n=n+e[i++]|0,r=r+n|0;while(--s);n%=65521,r%=65521}return n|r<<16|0}e.exports=i},{}],6:[function(t,e,a){"use strict";e.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],7:[function(t,e,a){"use strict";function i(){for(var t,e=[],a=0;a<256;a++){t=a;for(var i=0;i<8;i++)t=1&t?3988292384^t>>>1:t>>>1;e[a]=t}return e}function n(t,e,a,i){var n=r,s=i+a;t^=-1;for(var o=i;o>>8^n[255&(t^e[o])];return t^-1}var r=i();e.exports=n},{}],8:[function(t,e,a){"use strict";function i(t,e){return t.msg=D[e],e}function n(t){return(t<<1)-(t>4?9:0)}function r(t){for(var e=t.length;--e>=0;)t[e]=0}function s(t){var e=t.state,a=e.pending;a>t.avail_out&&(a=t.avail_out),0!==a&&(R.arraySet(t.output,e.pending_buf,e.pending_out,a,t.next_out),t.next_out+=a,e.pending_out+=a,t.total_out+=a,t.avail_out-=a,e.pending-=a,0===e.pending&&(e.pending_out=0))}function o(t,e){C._tr_flush_block(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,s(t.strm)}function l(t,e){t.pending_buf[t.pending++]=e}function h(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e}function d(t,e,a,i){var n=t.avail_in;return n>i&&(n=i),0===n?0:(t.avail_in-=n,R.arraySet(e,t.input,t.next_in,n,a),1===t.state.wrap?t.adler=N(t.adler,e,n,a):2===t.state.wrap&&(t.adler=O(t.adler,e,n,a)),t.next_in+=n,t.total_in+=n,n)}function f(t,e){var a,i,n=t.max_chain_length,r=t.strstart,s=t.prev_length,o=t.nice_match,l=t.strstart>t.w_size-ft?t.strstart-(t.w_size-ft):0,h=t.window,d=t.w_mask,f=t.prev,_=t.strstart+dt,u=h[r+s-1],c=h[r+s];t.prev_length>=t.good_match&&(n>>=2),o>t.lookahead&&(o=t.lookahead);do if(a=e,h[a+s]===c&&h[a+s-1]===u&&h[a]===h[r]&&h[++a]===h[r+1]){r+=2,a++;do;while(h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&r<_);if(i=dt-(_-r),r=_-dt,i>s){if(t.match_start=e,s=i,i>=o)break;u=h[r+s-1],c=h[r+s]}}while((e=f[e&d])>l&&0!==--n);return s<=t.lookahead?s:t.lookahead}function _(t){var e,a,i,n,r,s=t.w_size;do{if(n=t.window_size-t.lookahead-t.strstart,t.strstart>=s+(s-ft)){R.arraySet(t.window,t.window,s,s,0),t.match_start-=s,t.strstart-=s,t.block_start-=s,a=t.hash_size,e=a;do i=t.head[--e],t.head[e]=i>=s?i-s:0;while(--a);a=s,e=a;do i=t.prev[--e],t.prev[e]=i>=s?i-s:0;while(--a);n+=s}if(0===t.strm.avail_in)break;if(a=d(t.strm,t.window,t.strstart+t.lookahead,n),t.lookahead+=a,t.lookahead+t.insert>=ht)for(r=t.strstart-t.insert,t.ins_h=t.window[r],t.ins_h=(t.ins_h<t.pending_buf_size-5&&(a=t.pending_buf_size-5);;){if(t.lookahead<=1){if(_(t),0===t.lookahead&&e===I)return vt;if(0===t.lookahead)break}t.strstart+=t.lookahead,t.lookahead=0;var i=t.block_start+a;if((0===t.strstart||t.strstart>=i)&&(t.lookahead=t.strstart-i,t.strstart=i,o(t,!1),0===t.strm.avail_out))return vt;if(t.strstart-t.block_start>=t.w_size-ft&&(o(t,!1),0===t.strm.avail_out))return vt}return t.insert=0,e===F?(o(t,!0),0===t.strm.avail_out?yt:xt):t.strstart>t.block_start&&(o(t,!1),0===t.strm.avail_out)?vt:vt}function c(t,e){for(var a,i;;){if(t.lookahead=ht&&(t.ins_h=(t.ins_h<=ht)if(i=C._tr_tally(t,t.strstart-t.match_start,t.match_length-ht),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=ht){t.match_length--;do t.strstart++,t.ins_h=(t.ins_h<=ht&&(t.ins_h=(t.ins_h<4096)&&(t.match_length=ht-1)),t.prev_length>=ht&&t.match_length<=t.prev_length){n=t.strstart+t.lookahead-ht,i=C._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-ht),t.lookahead-=t.prev_length-1,t.prev_length-=2;do++t.strstart<=n&&(t.ins_h=(t.ins_h<=ht&&t.strstart>0&&(n=t.strstart-1,i=s[n],i===s[++n]&&i===s[++n]&&i===s[++n])){r=t.strstart+dt;do;while(i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&nt.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=ht?(a=C._tr_tally(t,1,t.match_length-ht),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(a=C._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),a&&(o(t,!1),0===t.strm.avail_out))return vt}return t.insert=0,e===F?(o(t,!0),0===t.strm.avail_out?yt:xt):t.last_lit&&(o(t,!1),0===t.strm.avail_out)?vt:kt}function m(t,e){for(var a;;){if(0===t.lookahead&&(_(t),0===t.lookahead)){if(e===I)return vt;break}if(t.match_length=0,a=C._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,a&&(o(t,!1),0===t.strm.avail_out))return vt}return t.insert=0,e===F?(o(t,!0),0===t.strm.avail_out?yt:xt):t.last_lit&&(o(t,!1),0===t.strm.avail_out)?vt:kt}function w(t,e,a,i,n){this.good_length=t,this.max_lazy=e,this.nice_length=a,this.max_chain=i,this.func=n}function p(t){t.window_size=2*t.w_size,r(t.head),t.max_lazy_match=Z[t.level].max_lazy,t.good_match=Z[t.level].good_length,t.nice_match=Z[t.level].nice_length,t.max_chain_length=Z[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=ht-1,t.match_available=0,t.ins_h=0}function v(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=V,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new R.Buf16(2*ot),this.dyn_dtree=new R.Buf16(2*(2*rt+1)),this.bl_tree=new R.Buf16(2*(2*st+1)),r(this.dyn_ltree),r(this.dyn_dtree),r(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new R.Buf16(lt+1),this.heap=new R.Buf16(2*nt+1),r(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new R.Buf16(2*nt+1),r(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function k(t){var e;return t&&t.state?(t.total_in=t.total_out=0,t.data_type=Q,e=t.state,e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=e.wrap?ut:wt,t.adler=2===e.wrap?0:1,e.last_flush=I,C._tr_init(e),H):i(t,K)}function y(t){var e=k(t);return e===H&&p(t.state),e}function x(t,e){return t&&t.state?2!==t.state.wrap?K:(t.state.gzhead=e,H):K}function z(t,e,a,n,r,s){if(!t)return K;var o=1;if(e===Y&&(e=6),n<0?(o=0,n=-n):n>15&&(o=2,n-=16),r<1||r>$||a!==V||n<8||n>15||e<0||e>9||s<0||s>W)return i(t,K);8===n&&(n=9);var l=new v;return t.state=l,l.strm=t,l.wrap=o,l.gzhead=null,l.w_bits=n,l.w_size=1<L||e<0)return t?i(t,K):K;if(o=t.state,!t.output||!t.input&&0!==t.avail_in||o.status===pt&&e!==F)return i(t,0===t.avail_out?P:K);if(o.strm=t,a=o.last_flush,o.last_flush=e,o.status===ut)if(2===o.wrap)t.adler=0,l(o,31),l(o,139),l(o,8),o.gzhead?(l(o,(o.gzhead.text?1:0)+(o.gzhead.hcrc?2:0)+(o.gzhead.extra?4:0)+(o.gzhead.name?8:0)+(o.gzhead.comment?16:0)),l(o,255&o.gzhead.time),l(o,o.gzhead.time>>8&255),l(o,o.gzhead.time>>16&255),l(o,o.gzhead.time>>24&255),l(o,9===o.level?2:o.strategy>=G||o.level<2?4:0),l(o,255&o.gzhead.os),o.gzhead.extra&&o.gzhead.extra.length&&(l(o,255&o.gzhead.extra.length),l(o,o.gzhead.extra.length>>8&255)),o.gzhead.hcrc&&(t.adler=O(t.adler,o.pending_buf,o.pending,0)),o.gzindex=0,o.status=ct):(l(o,0),l(o,0),l(o,0),l(o,0),l(o,0),l(o,9===o.level?2:o.strategy>=G||o.level<2?4:0),l(o,zt),o.status=wt);else{var _=V+(o.w_bits-8<<4)<<8,u=-1;u=o.strategy>=G||o.level<2?0:o.level<6?1:6===o.level?2:3,_|=u<<6,0!==o.strstart&&(_|=_t),_+=31-_%31,o.status=wt,h(o,_),0!==o.strstart&&(h(o,t.adler>>>16),h(o,65535&t.adler)),t.adler=1}if(o.status===ct)if(o.gzhead.extra){for(d=o.pending;o.gzindex<(65535&o.gzhead.extra.length)&&(o.pending!==o.pending_buf_size||(o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),s(t),d=o.pending,o.pending!==o.pending_buf_size));)l(o,255&o.gzhead.extra[o.gzindex]),o.gzindex++;o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),o.gzindex===o.gzhead.extra.length&&(o.gzindex=0,o.status=bt)}else o.status=bt;if(o.status===bt)if(o.gzhead.name){d=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),s(t),d=o.pending,o.pending===o.pending_buf_size)){f=1;break}f=o.gzindexd&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),0===f&&(o.gzindex=0,o.status=gt)}else o.status=gt;if(o.status===gt)if(o.gzhead.comment){d=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),s(t),d=o.pending,o.pending===o.pending_buf_size)){f=1;break}f=o.gzindexd&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),0===f&&(o.status=mt)}else o.status=mt;if(o.status===mt&&(o.gzhead.hcrc?(o.pending+2>o.pending_buf_size&&s(t),o.pending+2<=o.pending_buf_size&&(l(o,255&t.adler),l(o,t.adler>>8&255),t.adler=0,o.status=wt)):o.status=wt),0!==o.pending){if(s(t),0===t.avail_out)return o.last_flush=-1,H}else if(0===t.avail_in&&n(e)<=n(a)&&e!==F)return i(t,P);if(o.status===pt&&0!==t.avail_in)return i(t,P);if(0!==t.avail_in||0!==o.lookahead||e!==I&&o.status!==pt){var c=o.strategy===G?m(o,e):o.strategy===X?g(o,e):Z[o.level].func(o,e);if(c!==yt&&c!==xt||(o.status=pt),c===vt||c===yt)return 0===t.avail_out&&(o.last_flush=-1),H;if(c===kt&&(e===U?C._tr_align(o):e!==L&&(C._tr_stored_block(o,0,0,!1),e===T&&(r(o.head),0===o.lookahead&&(o.strstart=0,o.block_start=0,o.insert=0))),s(t),0===t.avail_out))return o.last_flush=-1,H}return e!==F?H:o.wrap<=0?j:(2===o.wrap?(l(o,255&t.adler),l(o,t.adler>>8&255),l(o,t.adler>>16&255),l(o,t.adler>>24&255),l(o,255&t.total_in),l(o,t.total_in>>8&255),l(o,t.total_in>>16&255),l(o,t.total_in>>24&255)):(h(o,t.adler>>>16),h(o,65535&t.adler)),s(t),o.wrap>0&&(o.wrap=-o.wrap),0!==o.pending?H:j)}function E(t){var e;return t&&t.state?(e=t.state.status,e!==ut&&e!==ct&&e!==bt&&e!==gt&&e!==mt&&e!==wt&&e!==pt?i(t,K):(t.state=null,e===wt?i(t,M):H)):K}function A(t,e){var a,i,n,s,o,l,h,d,f=e.length;if(!t||!t.state)return K;if(a=t.state,s=a.wrap,2===s||1===s&&a.status!==ut||a.lookahead)return K;for(1===s&&(t.adler=N(t.adler,e,f,0)),a.wrap=0,f>=a.w_size&&(0===s&&(r(a.head),a.strstart=0,a.block_start=0,a.insert=0),d=new R.Buf8(a.w_size),R.arraySet(d,e,f-a.w_size,a.w_size,0),e=d,f=a.w_size),o=t.avail_in,l=t.next_in,h=t.input,t.avail_in=f,t.next_in=0,t.input=e,_(a);a.lookahead>=ht;){i=a.strstart,n=a.lookahead-(ht-1);do a.ins_h=(a.ins_h<>>24,b>>>=y,g-=y,y=k>>>16&255,0===y)A[o++]=65535&k;else{if(!(16&y)){if(0===(64&y)){k=m[(65535&k)+(b&(1<>>=y,g-=y),g<15&&(b+=E[r++]<>>24,b>>>=y,g-=y,y=k>>>16&255,!(16&y)){if(0===(64&y)){k=w[(65535&k)+(b&(1<d){t.msg="invalid distance too far back",a.mode=i;break t}if(b>>>=y,g-=y,y=o-l,z>y){if(y=z-y,y>_&&a.sane){t.msg="invalid distance too far back",a.mode=i;break t}if(B=0,S=c,0===u){if(B+=f-y,y2;)A[o++]=S[B++],A[o++]=S[B++],A[o++]=S[B++],x-=3;x&&(A[o++]=S[B++],x>1&&(A[o++]=S[B++]))}else{B=o-z;do A[o++]=A[B++],A[o++]=A[B++],A[o++]=A[B++],x-=3;while(x>2);x&&(A[o++]=A[B++],x>1&&(A[o++]=A[B++]))}break}}break}}while(r>3,r-=x,g-=x<<3,b&=(1<>>24&255)+(t>>>8&65280)+((65280&t)<<8)+((255&t)<<24)}function n(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new w.Buf16(320),this.work=new w.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function r(t){var e;return t&&t.state?(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=1&e.wrap),e.mode=T,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new w.Buf32(bt),e.distcode=e.distdyn=new w.Buf32(gt),e.sane=1,e.back=-1,Z):N}function s(t){var e;return t&&t.state?(e=t.state,e.wsize=0,e.whave=0,e.wnext=0,r(t)):N}function o(t,e){var a,i;return t&&t.state?(i=t.state,e<0?(a=0,e=-e):(a=(e>>4)+1,e<48&&(e&=15)),e&&(e<8||e>15)?N:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=a,i.wbits=e,s(t))):N}function l(t,e){var a,i;return t?(i=new n,t.state=i,i.window=null,a=o(t,e),a!==Z&&(t.state=null),a):N}function h(t){return l(t,wt)}function d(t){if(pt){var e;for(g=new w.Buf32(512),m=new w.Buf32(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(y(z,t.lens,0,288,g,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;y(B,t.lens,0,32,m,0,t.work,{bits:5}),pt=!1}t.lencode=g,t.lenbits=9,t.distcode=m,t.distbits=5}function f(t,e,a,i){var n,r=t.state;return null===r.window&&(r.wsize=1<=r.wsize?(w.arraySet(r.window,e,a-r.wsize,r.wsize,0),r.wnext=0,r.whave=r.wsize):(n=r.wsize-r.wnext,n>i&&(n=i),w.arraySet(r.window,e,a-i,n,r.wnext),i-=n,i?(w.arraySet(r.window,e,a-i,i,0),r.wnext=i,r.whave=r.wsize):(r.wnext+=n,r.wnext===r.wsize&&(r.wnext=0),r.whave>>8&255,a.check=v(a.check,Et,2,0),_=0,u=0,a.mode=F;break}if(a.flags=0,a.head&&(a.head.done=!1),!(1&a.wrap)||(((255&_)<<8)+(_>>8))%31){t.msg="incorrect header check",a.mode=_t;break}if((15&_)!==U){t.msg="unknown compression method",a.mode=_t;break}if(_>>>=4,u-=4,yt=(15&_)+8,0===a.wbits)a.wbits=yt;else if(yt>a.wbits){t.msg="invalid window size",a.mode=_t;break}a.dmax=1<>8&1),512&a.flags&&(Et[0]=255&_,Et[1]=_>>>8&255,a.check=v(a.check,Et,2,0)),_=0,u=0,a.mode=L;case L:for(;u<32;){if(0===l)break t;l--,_+=n[s++]<>>8&255,Et[2]=_>>>16&255,Et[3]=_>>>24&255,a.check=v(a.check,Et,4,0)),_=0,u=0,a.mode=H;case H:for(;u<16;){if(0===l)break t;l--,_+=n[s++]<>8),512&a.flags&&(Et[0]=255&_,Et[1]=_>>>8&255,a.check=v(a.check,Et,2,0)),_=0,u=0,a.mode=j;case j:if(1024&a.flags){for(;u<16;){if(0===l)break t;l--,_+=n[s++]<>>8&255,a.check=v(a.check,Et,2,0)),_=0,u=0}else a.head&&(a.head.extra=null);a.mode=K;case K:if(1024&a.flags&&(g=a.length,g>l&&(g=l),g&&(a.head&&(yt=a.head.extra_len-a.length,a.head.extra||(a.head.extra=new Array(a.head.extra_len)),w.arraySet(a.head.extra,n,s,g,yt)),512&a.flags&&(a.check=v(a.check,n,g,s)),l-=g,s+=g,a.length-=g),a.length))break t;a.length=0,a.mode=M;case M:if(2048&a.flags){if(0===l)break t;g=0;do yt=n[s+g++],a.head&&yt&&a.length<65536&&(a.head.name+=String.fromCharCode(yt));while(yt&&g>9&1,a.head.done=!0),t.adler=a.check=0,a.mode=X;break;case q:for(;u<32;){if(0===l)break t;l--,_+=n[s++]<>>=7&u,u-=7&u,a.mode=ht;break}for(;u<3;){if(0===l)break t;l--,_+=n[s++]<>>=1,u-=1,3&_){case 0:a.mode=J;break;case 1:if(d(a),a.mode=at,e===A){_>>>=2,u-=2;break t}break;case 2:a.mode=$;break;case 3:t.msg="invalid block type",a.mode=_t}_>>>=2,u-=2;break;case J:for(_>>>=7&u,u-=7&u;u<32;){if(0===l)break t;l--,_+=n[s++]<>>16^65535)){t.msg="invalid stored block lengths",a.mode=_t;break}if(a.length=65535&_,_=0,u=0,a.mode=Q,e===A)break t;case Q:a.mode=V;case V:if(g=a.length){if(g>l&&(g=l),g>h&&(g=h),0===g)break t;w.arraySet(r,n,s,g,o),l-=g,s+=g,h-=g,o+=g,a.length-=g;break}a.mode=X;break;case $: for(;u<14;){if(0===l)break t;l--,_+=n[s++]<>>=5,u-=5,a.ndist=(31&_)+1,_>>>=5,u-=5,a.ncode=(15&_)+4,_>>>=4,u-=4,a.nlen>286||a.ndist>30){t.msg="too many length or distance symbols",a.mode=_t;break}a.have=0,a.mode=tt;case tt:for(;a.have>>=3,u-=3}for(;a.have<19;)a.lens[At[a.have++]]=0;if(a.lencode=a.lendyn,a.lenbits=7,zt={bits:a.lenbits},xt=y(x,a.lens,0,19,a.lencode,0,a.work,zt),a.lenbits=zt.bits,xt){t.msg="invalid code lengths set",a.mode=_t;break}a.have=0,a.mode=et;case et:for(;a.have>>24,mt=St>>>16&255,wt=65535&St,!(gt<=u);){if(0===l)break t;l--,_+=n[s++]<>>=gt,u-=gt,a.lens[a.have++]=wt;else{if(16===wt){for(Bt=gt+2;u>>=gt,u-=gt,0===a.have){t.msg="invalid bit length repeat",a.mode=_t;break}yt=a.lens[a.have-1],g=3+(3&_),_>>>=2,u-=2}else if(17===wt){for(Bt=gt+3;u>>=gt,u-=gt,yt=0,g=3+(7&_),_>>>=3,u-=3}else{for(Bt=gt+7;u>>=gt,u-=gt,yt=0,g=11+(127&_),_>>>=7,u-=7}if(a.have+g>a.nlen+a.ndist){t.msg="invalid bit length repeat",a.mode=_t;break}for(;g--;)a.lens[a.have++]=yt}}if(a.mode===_t)break;if(0===a.lens[256]){t.msg="invalid code -- missing end-of-block",a.mode=_t;break}if(a.lenbits=9,zt={bits:a.lenbits},xt=y(z,a.lens,0,a.nlen,a.lencode,0,a.work,zt),a.lenbits=zt.bits,xt){t.msg="invalid literal/lengths set",a.mode=_t;break}if(a.distbits=6,a.distcode=a.distdyn,zt={bits:a.distbits},xt=y(B,a.lens,a.nlen,a.ndist,a.distcode,0,a.work,zt),a.distbits=zt.bits,xt){t.msg="invalid distances set",a.mode=_t;break}if(a.mode=at,e===A)break t;case at:a.mode=it;case it:if(l>=6&&h>=258){t.next_out=o,t.avail_out=h,t.next_in=s,t.avail_in=l,a.hold=_,a.bits=u,k(t,b),o=t.next_out,r=t.output,h=t.avail_out,s=t.next_in,n=t.input,l=t.avail_in,_=a.hold,u=a.bits,a.mode===X&&(a.back=-1);break}for(a.back=0;St=a.lencode[_&(1<>>24,mt=St>>>16&255,wt=65535&St,!(gt<=u);){if(0===l)break t;l--,_+=n[s++]<>pt)],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(pt+gt<=u);){if(0===l)break t;l--,_+=n[s++]<>>=pt,u-=pt,a.back+=pt}if(_>>>=gt,u-=gt,a.back+=gt,a.length=wt,0===mt){a.mode=lt;break}if(32&mt){a.back=-1,a.mode=X;break}if(64&mt){t.msg="invalid literal/length code",a.mode=_t;break}a.extra=15&mt,a.mode=nt;case nt:if(a.extra){for(Bt=a.extra;u>>=a.extra,u-=a.extra,a.back+=a.extra}a.was=a.length,a.mode=rt;case rt:for(;St=a.distcode[_&(1<>>24,mt=St>>>16&255,wt=65535&St,!(gt<=u);){if(0===l)break t;l--,_+=n[s++]<>pt)],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(pt+gt<=u);){if(0===l)break t;l--,_+=n[s++]<>>=pt,u-=pt,a.back+=pt}if(_>>>=gt,u-=gt,a.back+=gt,64&mt){t.msg="invalid distance code",a.mode=_t;break}a.offset=wt,a.extra=15&mt,a.mode=st;case st:if(a.extra){for(Bt=a.extra;u>>=a.extra,u-=a.extra,a.back+=a.extra}if(a.offset>a.dmax){t.msg="invalid distance too far back",a.mode=_t;break}a.mode=ot;case ot:if(0===h)break t;if(g=b-h,a.offset>g){if(g=a.offset-g,g>a.whave&&a.sane){t.msg="invalid distance too far back",a.mode=_t;break}g>a.wnext?(g-=a.wnext,m=a.wsize-g):m=a.wnext-g,g>a.length&&(g=a.length),bt=a.window}else bt=r,m=o-a.offset,g=a.length;g>h&&(g=h),h-=g,a.length-=g;do r[o++]=bt[m++];while(--g);0===a.length&&(a.mode=it);break;case lt:if(0===h)break t;r[o++]=a.length,h--,a.mode=it;break;case ht:if(a.wrap){for(;u<32;){if(0===l)break t;l--,_|=n[s++]<=1&&0===j[N];N--);if(O>N&&(O=N),0===N)return b[g++]=20971520,b[g++]=20971520,w.bits=1,0;for(C=1;C0&&(t===o||1!==N))return-1;for(K[1]=0,Z=1;Zr||t===h&&T>s)return 1;for(;;){B=Z-I,m[R]z?(S=M[P+m[R]],E=L[H+m[R]]):(S=96,E=0),p=1<>I)+v]=B<<24|S<<16|E|0;while(0!==v);for(p=1<>=1;if(0!==p?(F&=p-1,F+=p):F=0,R++,0===--j[Z]){if(Z===N)break;Z=e[a+m[R]]}if(Z>O&&(F&y)!==k){for(0===I&&(I=O),x+=C,D=Z-I,U=1<r||t===h&&T>s)return 1;k=F&y,b[k]=O<<24|D<<16|x-g|0}}return 0!==F&&(b[x+F]=Z-I<<24|64<<16|0),w.bits=O,0}},{"../utils/common":3}],13:[function(t,e,a){"use strict";e.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],14:[function(t,e,a){"use strict";function i(t){for(var e=t.length;--e>=0;)t[e]=0}function n(t,e,a,i,n){this.static_tree=t,this.extra_bits=e,this.extra_base=a,this.elems=i,this.max_length=n,this.has_stree=t&&t.length}function r(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function s(t){return t<256?lt[t]:lt[256+(t>>>7)]}function o(t,e){t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255}function l(t,e,a){t.bi_valid>W-a?(t.bi_buf|=e<>W-t.bi_valid,t.bi_valid+=a-W):(t.bi_buf|=e<>>=1,a<<=1;while(--e>0);return a>>>1}function f(t){16===t.bi_valid?(o(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)}function _(t,e){var a,i,n,r,s,o,l=e.dyn_tree,h=e.max_code,d=e.stat_desc.static_tree,f=e.stat_desc.has_stree,_=e.stat_desc.extra_bits,u=e.stat_desc.extra_base,c=e.stat_desc.max_length,b=0;for(r=0;r<=X;r++)t.bl_count[r]=0;for(l[2*t.heap[t.heap_max]+1]=0,a=t.heap_max+1;ac&&(r=c,b++),l[2*i+1]=r,i>h||(t.bl_count[r]++,s=0,i>=u&&(s=_[i-u]),o=l[2*i],t.opt_len+=o*(r+s),f&&(t.static_len+=o*(d[2*i+1]+s)));if(0!==b){do{for(r=c-1;0===t.bl_count[r];)r--;t.bl_count[r]--,t.bl_count[r+1]+=2,t.bl_count[c]--,b-=2}while(b>0);for(r=c;0!==r;r--)for(i=t.bl_count[r];0!==i;)n=t.heap[--a],n>h||(l[2*n+1]!==r&&(t.opt_len+=(r-l[2*n+1])*l[2*n],l[2*n+1]=r),i--)}}function u(t,e,a){var i,n,r=new Array(X+1),s=0;for(i=1;i<=X;i++)r[i]=s=s+a[i-1]<<1;for(n=0;n<=e;n++){var o=t[2*n+1];0!==o&&(t[2*n]=d(r[o]++,o))}}function c(){var t,e,a,i,r,s=new Array(X+1);for(a=0,i=0;i>=7;i8?o(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0}function m(t,e,a,i){g(t),i&&(o(t,a),o(t,~a)),N.arraySet(t.pending_buf,t.window,e,a,t.pending),t.pending+=a}function w(t,e,a,i){var n=2*e,r=2*a;return t[n]>1;a>=1;a--)p(t,r,a);n=l;do a=t.heap[1],t.heap[1]=t.heap[t.heap_len--],p(t,r,1),i=t.heap[1],t.heap[--t.heap_max]=a,t.heap[--t.heap_max]=i,r[2*n]=r[2*a]+r[2*i],t.depth[n]=(t.depth[a]>=t.depth[i]?t.depth[a]:t.depth[i])+1,r[2*a+1]=r[2*i+1]=n,t.heap[1]=n++,p(t,r,1);while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],_(t,e),u(r,h,t.bl_count)}function y(t,e,a){var i,n,r=-1,s=e[1],o=0,l=7,h=4;for(0===s&&(l=138,h=3),e[2*(a+1)+1]=65535,i=0;i<=a;i++)n=s,s=e[2*(i+1)+1],++o=3&&0===t.bl_tree[2*nt[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e}function B(t,e,a,i){var n;for(l(t,e-257,5),l(t,a-1,5),l(t,i-4,4),n=0;n>>=1)if(1&a&&0!==t.dyn_ltree[2*e])return D;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return I;for(e=32;e0?(t.strm.data_type===U&&(t.strm.data_type=S(t)),k(t,t.l_desc),k(t,t.d_desc),s=z(t),n=t.opt_len+3+7>>>3,r=t.static_len+3+7>>>3,r<=n&&(n=r)):n=r=a+5,a+4<=n&&e!==-1?A(t,e,a,i):t.strategy===O||r===n?(l(t,(F<<1)+(i?1:0),3),v(t,st,ot)):(l(t,(L<<1)+(i?1:0),3),B(t,t.l_desc.max_code+1,t.d_desc.max_code+1,s+1),v(t,t.dyn_ltree,t.dyn_dtree)),b(t),i&&g(t)}function C(t,e,a){return t.pending_buf[t.d_buf+2*t.last_lit]=e>>>8&255,t.pending_buf[t.d_buf+2*t.last_lit+1]=255&e,t.pending_buf[t.l_buf+t.last_lit]=255&a,t.last_lit++,0===e?t.dyn_ltree[2*a]++:(t.matches++,e--,t.dyn_ltree[2*(ht[a]+M+1)]++,t.dyn_dtree[2*s(e)]++),t.last_lit===t.lit_bufsize-1}var N=t("../utils/common"),O=4,D=0,I=1,U=2,T=0,F=1,L=2,H=3,j=258,K=29,M=256,P=M+1+K,Y=30,q=19,G=2*P+1,X=15,W=16,J=7,Q=256,V=16,$=17,tt=18,et=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],at=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],it=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],nt=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],rt=512,st=new Array(2*(P+2));i(st);var ot=new Array(2*Y);i(ot);var lt=new Array(rt);i(lt);var ht=new Array(j-H+1);i(ht);var dt=new Array(K);i(dt);var ft=new Array(Y);i(ft);var _t,ut,ct,bt=!1;a._tr_init=E,a._tr_stored_block=A,a._tr_flush_block=R,a._tr_tally=C,a._tr_align=Z},{"../utils/common":3}],15:[function(t,e,a){"use strict";function i(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}e.exports=i},{}],"/":[function(t,e,a){"use strict";var i=t("./lib/utils/common").assign,n=t("./lib/deflate"),r=t("./lib/inflate"),s=t("./lib/zlib/constants"),o={};i(o,n,r,s),e.exports=o},{"./lib/deflate":1,"./lib/inflate":2,"./lib/utils/common":3,"./lib/zlib/constants":6}]},{},[])("/")}); /** @@ -6830,322 +6830,322 @@ X+=4){a[X]=B[Q++];a[X+1]=B[Q++];a[X+2]=B[Q++];a[X+3]=255}}else if(E==13)Q=UTEX.R else if(E==15)Q=UTEX.k(B,Q,a,z,r);else throw E;Y.push({width:z,height:r,image:a.buffer})}}return Y}function aa(k,B,Q){var T=UTEX.X.T,u=UTEX.X.Y,G=UTEX.X.t(k,B,4); B+=4;var a=T(k,B);B+=4;var E=T(k,B);B+=4;var D=T(k,B);B+=4;Q.width=u(k,B);B+=2;Q.height=u(k,B);B+=2; Q.u=T(k,B);B+=4;Q.frames=u(k,B);B+=2;Q.a7=u(k,B);B+=2;B+=4;B+=12;B+=4;B+=4;Q.s=T(k,B);B+=4;Q.p=k[B++]; -Q.a2=T(k,B);B+=4;Q.F=k[B++];Q.d=k[B++];if(E>=2){Q.depth=u(k,B);B+=2;if(E>=3){B+=3;Q.a5=T(k,B);B+=4}}return D}return{decode:a6}}();(function(){var V={};if(typeof module=="object"){module.exports=V}else{self.UTIF=V}var a3=typeof require==="function"?require("pako"):self.pako; -function aI(){if(typeof process=="undefined"||process.env.NODE_ENV=="development")console.log.apply(console,arguments)}(function(V,a3){(function(){"use strict"; -var c=function n(){function c(g){this.message="JPEG error: "+g}c.prototype=new Error;c.prototype.name="JpegError"; -c.constructor=c;return c}(),O=function j(){var g=new Uint8Array([0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63]),D=4017,P=799,a=3406,y=2276,W=1567,T=3784,b=5793,I=2896; -function O(S){if(S==null)S={};if(S.w==null)S.w=-1;this.V=S.n;this.N=S.w}function R(S,_){var m=0,X=[],B,e,h=16,z; -while(h>0&&!S[h-1]){h--}X.push({children:[],index:0});var s=X[0];for(B=0;B0){s=X.pop()}s.index++;X.push(s);while(X.length<=B){X.push(z={children:[],index:0}); -s.children[s.index]=z.children;s=z}m++}if(B+10){L--;return A>>L&1}A=S[_++]; -if(A===255){var o=S[_++];if(o){if(o===220&&Q){_+=2;var al=t(S,_);_+=2;if(al>0&&al!==m.s){throw new DNLMarkerError("Found DNL marker (0xFFDC) while parsing scan data",al)}}else if(o===217){if(Q){var ay=F*8; -if(ay>0&&ay>>7}function aB(o){var al=o;while(!0){al=al[U()];switch(typeof al){case"number":return al;case"object":continue}throw new c("invalid huffman sequence")}}function ax(o){var av=0; -while(o>0){av=av<<1|U();o--}return av}function v(o){if(o===1){return U()===1?1:-1}var av=ax(o);if(av>=1<>4;if(a9===0){if(b5<15){break}r+=16;continue}r+=b5; -var ae=g[r];x.D[o+ae]=v(a9);r++}}function b4(x,o){var al=aB(x.J),ay=al===0?0:v(al)<0){w--; -return}var r=e,al=h;while(r<=al){var ay=aB(x.i),aZ=ay&15,a9=ay>>4;if(aZ===0){if(a9<15){w=ax(a9)+(1<>4;if(aZ===0){if(ay<15){w=ax(ay)+(1<0){for(u=0;u0?"unexpected":"excessive";_=aO.offset}if(aO.M>=65488&&aO.M<=65495){_+=2}else{break}}return _-d}function $(S,_,m){var X=S.$,B=S.D,e,h,z,s,Q,E,p,d,A,L,w,G,au,F,x,ag,u; -if(!X){throw new c("missing required Quantization Table.")}for(var M=0;M<64;M+=8){A=B[_+M];L=B[_+M+1]; -w=B[_+M+2];G=B[_+M+3];au=B[_+M+4];F=B[_+M+5];x=B[_+M+6];ag=B[_+M+7];A*=X[M];if((L|w|G|au|F|x|ag)===0){u=b*A+512>>10; -m[M]=u;m[M+1]=u;m[M+2]=u;m[M+3]=u;m[M+4]=u;m[M+5]=u;m[M+6]=u;m[M+7]=u;continue}L*=X[M+1];w*=X[M+2];G*=X[M+3]; -au*=X[M+4];F*=X[M+5];x*=X[M+6];ag*=X[M+7];e=b*A+128>>8;h=b*au+128>>8;z=w;s=x;Q=I*(L-ag)+128>>8;d=I*(L+ag)+128>>8; -E=G<<4;p=F<<4;e=e+h+1>>1;h=e-h;u=z*T+s*W+128>>8;z=z*W-s*T+128>>8;s=u;Q=Q+p+1>>1;p=Q-p;d=d+E+1>>1;E=d-E; -e=e+s+1>>1;s=e-s;h=h+z+1>>1;z=h-z;u=Q*y+d*a+2048>>12;Q=Q*a-d*y+2048>>12;d=u;u=E*P+p*D+2048>>12;E=E*D-p*P+2048>>12; -p=u;m[M]=e+d;m[M+7]=e-d;m[M+1]=h+p;m[M+6]=h-p;m[M+2]=z+E;m[M+5]=z-E;m[M+3]=s+Q;m[M+4]=s-Q}for(var r=0; -r<8;++r){A=m[r];L=m[r+8];w=m[r+16];G=m[r+24];au=m[r+32];F=m[r+40];x=m[r+48];ag=m[r+56];if((L|w|G|au|F|x|ag)===0){u=b*A+8192>>14; -if(u<-2040){u=0}else if(u>=2024){u=255}else{u=u+2056>>4}B[_+r]=u;B[_+r+8]=u;B[_+r+16]=u;B[_+r+24]=u; -B[_+r+32]=u;B[_+r+40]=u;B[_+r+48]=u;B[_+r+56]=u;continue}e=b*A+2048>>12;h=b*au+2048>>12;z=w;s=x;Q=I*(L-ag)+2048>>12; -d=I*(L+ag)+2048>>12;E=G;p=F;e=(e+h+1>>1)+4112;h=e-h;u=z*T+s*W+2048>>12;z=z*W-s*T+2048>>12;s=u;Q=Q+p+1>>1; -p=Q-p;d=d+E+1>>1;E=d-E;e=e+s+1>>1;s=e-s;h=h+z+1>>1;z=h-z;u=Q*y+d*a+2048>>12;Q=Q*a-d*y+2048>>12;d=u;u=E*P+p*D+2048>>12; -E=E*D-p*P+2048>>12;p=u;A=e+d;ag=e-d;L=h+p;x=h-p;w=z+E;F=z-E;G=s+Q;au=s-Q;if(A<16){A=0}else if(A>=4080){A=255}else{A>>=4}if(L<16){L=0}else if(L>=4080){L=255}else{L>>=4}if(w<16){w=0}else if(w>=4080){w=255}else{w>>=4}if(G<16){G=0}else if(G>=4080){G=255}else{G>>=4}if(au<16){au=0}else if(au>=4080){au=255}else{au>>=4}if(F<16){F=0}else if(F>=4080){F=255}else{F>>=4}if(x<16){x=0}else if(x>=4080){x=255}else{x>>=4}if(ag<16){ag=0}else if(ag>=4080){ag=255}else{ag>>=4}B[_+r]=A; -B[_+r+8]=L;B[_+r+16]=w;B[_+r+24]=G;B[_+r+32]=au;B[_+r+40]=F;B[_+r+48]=x;B[_+r+56]=ag}}function C(S,_){var m=_.P,X=_.c,B=new Int16Array(64); -for(var e=0;e=X){return null}var e=t(S,_);if(e>=65472&&e<=65534){return{u:null,M:e,offset:_}}var h=t(S,B); -while(!(h>=65472&&h<=65534)){if(++B>=X){return null}h=t(S,B)}return{u:e.toString(16),M:h,offset:B}}O.prototype={parse(S,_){if(_==null)_={}; -var m=_.F,X=0,B=null,e=null,h,z,s=0;function Q(){var b5=t(S,X);X+=2;var ae=X+b5-2,L=f(S,ae,X);if(L&&L.u){ae=L.offset}var a$=S.subarray(X,ae); -X+=a$.length;return a$}function E(h){var b5=Math.ceil(h.o/8/h.X),ae=Math.ceil(h.s/8/h.B);for(var w=0; -w>4===0){for(G=0; -G<64;G++){ag=g[G];r[ag]=S[X++]}}else if(M>>4===1){for(G=0;G<64;G++){ag=g[G];r[ag]=t(S,X);X+=2}}else{throw new c("DQT - invalid table spec")}p[M&15]=r}break; -case 65472:case 65473:case 65474:if(h){throw new c("Only single frame JPEGs supported")}X+=2;h={};h.G=L===65473; -h.Z=L===65474;h.precision=S[X++];var av=t(S,X),a6,aW=0,aO=0;X+=2;h.s=m||av;h.o=t(S,X);X+=2;h.W=[];h._={}; -var aa=S[X++];for(w=0;w>4,aA=S[X+1]&15;if(aW>4===0?A:d)[ax&15]=R(v,b4)}break;case 65501:X+=2;z=t(S,X); -X+=2;break;case 65498:var aM=++s===1&&!m,as;X+=2;var aP=S[X++],b7=[];for(w=0;w>4];as.i=d[aq&15];b7.push(as)}var ah=S[X++],o=S[X++],al=S[X++]; -try{var ay=J(S,X,h,b7,z,ah,o,al>>4,al&15,aM);X+=ay}catch(ex){if(ex instanceof DNLMarkerError){return this.parse(S,{F:ex.s})}else if(ex instanceof EOIMarkerError){break markerLoop}throw ex}break; -case 65500:X+=4;break;case 65535:if(S[X]!==255){X--}break;default:var aZ=f(S,X-2,X-3);if(aZ&&aZ.u){X=aZ.offset; -break}if(X>=S.length-1){break markerLoop}throw new c("JpegImage.parse - unknown marker: "+L.toString(16))}L=t(S,X); -X+=2}this.width=h.o;this.height=h.s;this.g=B;this.b=e;this.W=[];for(w=0;w>8)+r[A+1]}}}return x},get f(){if(this.b){return!!this.b.a}if(this.p===3){if(this.N===0){return!1}else if(this.W[0].index===82&&this.W[1].index===71&&this.W[2].index===66){return!1}return!0}if(this.N===1){return!0}return!1},z:function b1(S){var _,m,X; -for(var B=0,e=S.length;B4){throw new c("Unsupported color mode")}var e=this.Y(_,m,B);if(this.p===1&&X){var h=e.length,z=new Uint8ClampedArray(h*3),s=0; -for(var Q=0;Q>24}function t(g,D){return g[D]<<8|g[D+1]}function H(g,D){return(g[D]<<24|g[D+1]<<16|g[D+2]<<8|g[D+3])>>>0}V.JpegDecoder=O}()); -V.encodeImage=function(c,O,n,j){var t={t256:[O],t257:[n],t258:[8,8,8,8],t259:[1],t262:[2],t273:[1e3],t277:[4],t278:[n],t279:[O*n*4],t282:[[72,1]],t283:[[72,1]],t284:[1],t286:[[0,1]],t287:[[0,1]],t296:[1],t305:["Photopea (UTIF.js)"],t338:[1]}; -if(j)for(var H in j)t[H]=j[H];var g=new Uint8Array(V.encode([t])),D=new Uint8Array(c),P=new Uint8Array(1e3+O*n*4); -for(var H=0;H>>3)];if(a==null)a=O.t325;var y=new Uint8Array(O.height*(D>>>3)); -if(O.t322!=null){var W=O.t322[0],T=O.t323[0],b=Math.floor((O.width+W-1)/W),l=Math.floor((O.height+T-1)/T),I=new Uint8Array(Math.ceil(W*T*g/8)|0); -for(var R=0;R>>3,l=c.t278?c.t278[0]:c.height,I=Math.ceil(W*T*c.width/8); -if(W==16&&!c.isLE&&c.t33422==null)for(var R=0;R>>8&255}else if(T==3)for(var P=3; -P>>3]>>>7-(C&7)&1;$[1]++;return N}function y($,C){if(n==null){n={}; -for(var N=0;N>>1}return $}function W($,C){return $>>C}function T($,C,N,i,S,_){C[N]=W(W(11*$[S]-4*$[S+_]+$[S+_+_]+4,3)+$[i],1); -C[N+_]=W(W(5*$[S]+4*$[S+_]-$[S+_+_]+4,3)-$[i],1)}function b($,C,N,i,S,_){var X=$[S-_]-$[S+_],B=$[S],z=$[i]; -C[N]=W(W(X+4,3)+B+z,1);C[N+_]=W(W(-X+4,3)+B-z,1)}function l($,C,N,i,S,_){C[N]=W(W(5*$[S]+4*$[S-_]-$[S-_-_]+4,3)+$[i],1); -C[N+_]=W(W(11*$[S]-4*$[S-_]+$[S-_-_]+4,3)-$[i],1)}function R($){$=$<0?0:$>4095?4095:$;$=k[$]>>>2;return $}function Y($,C,N,i,S){i=new Uint16Array(i.buffer); -var _=Date.now(),X=V._binBE,B=C+N,z,p,Z,A,aK,w,a8,G,au,ab,at,ac,F,aY,x,ak,aR,an;C+=4;while(C>>1)*(Z>>>1));an=new Int16Array((p>>>1)*(Z>>>1));j=new Int16Array(1024); -for(var ap=0;ap<1024;ap++){var aH=ap-512,a1=Math.abs(aH),z=Math.floor(768*a1*a1*a1/(255*255*255))+a1; -j[ap]=Math.sign(aH)*z}k=new Uint16Array(4096);var av=(1<<16)-1;for(var ap=0;ap<4096;ap++){var a6=ap,ad=av*(Math.pow(113,a6/4095)-1)/112; -k[ap]=Math.min(ad,av)}}var b3=aR[a8],aW=K(p,1+t[A]),aa=K(Z,1+t[A]);if(A==0){for(var U=0;U>>1)+v]=$[aV]<<8|$[aV+1]}}else{var b4=[$,C*8],aM=[],aP=0,b7=aW*aa,aQ=[0,0],b8=0,M=0; -while(aP0){aM[aP++]=M;b8--}}var aq=(A-1)%3,ah=aq!=1?aW:0,o=aq!=0?aa:0; -for(var U=0;U>>1)+ah,ay=U*aW;for(var v=0;v>>1,aZ=aW*2,a9=aa*2; -for(var U=0;U>14-aD*2&3; -var af=aF[b2];if(af!=0)for(var U=0;U>>1)*(p>>>1)+(v>>>1),a_=b0[aV],a5=aC[aV]-2048,aL=aG[aV]-2048,aw=a4[aV]-2048,aE=(a5<<1)+a_,b6=(aL<<1)+a_,aU=a_+aw,aJ=a_-aw; -i[a2]=R(aE);i[a2+1]=R(aU);i[a2+p]=R(aJ);i[a2+p+1]=R(b6)}}C+=aX*4}else if(r==16388){C+=aX*4}else if(aT==8192||aT==8448||aT==9216){}else throw r.toString(16)}}console.log(Date.now()-_)}return Y}(); -V.decode._ljpeg_diff=function(c,O,n){var j=V.decode._getbithuff,k,t;k=j(c,O,n[0],n);t=j(c,O,k,0);if((t&1<>>(W[T]>>>8);for(var b=0;b<$;b++)K[++l]=W[T]}for(I=H;I--;)for(R=0; -R>>4;k[t+T+1]=f<<4|N>>>4;k[t+T+2]=N<<4|b1>>>4}return}var aN=new Uint16Array(16),z=new Uint8Array(H+1); -for(R=0;R>>11;m=15&i>>>22;X=15&i>>>26;for(B=0;B<4&&128<>3))>>>(e&7)&127)<2047)aN[T]=2047; -e+=7}for(T=0;T<16;T++,I+=2){var C=aN[T]<<1;V.decode._putsF(k,(R*H+I)*D,C<<16-D)}I-=I&1?1:31}}};V.decode._decodeNikon=function(c,O,n,j,k,t,H){var g=[[0,0,1,5,1,1,1,1,1,1,2,0,0,0,0,0,0,5,4,3,6,2,7,1,0,8,9,11,10,12],[0,0,1,5,1,1,1,1,1,1,2,0,0,0,0,0,0,57,90,56,39,22,5,4,3,2,1,0,11,12,12],[0,0,1,4,2,3,1,2,0,0,0,0,0,0,0,0,0,5,4,6,3,7,2,8,1,9,0,10,11,12],[0,0,1,4,3,1,1,1,1,1,2,0,0,0,0,0,0,5,6,4,7,8,3,9,2,1,0,10,11,12,13,14],[0,0,1,5,1,1,1,1,1,1,1,2,0,0,0,0,0,8,92,75,58,41,7,6,5,4,3,2,1,0,13,14],[0,0,1,4,2,2,3,1,2,0,0,0,0,0,0,0,0,7,6,8,5,9,4,10,3,11,12,2,0,1,13,14]],D=c.t256[0],P=c.t257[0],a=c.t258[0],y=0,K=0,W=V.decode._make_decoder,T=V.decode._getbithuff,b=O[0].exifIFD.makerNote,l=b.t150?b.t150:b.t140,I=0,R=l[I++],Y=l[I++],N=0,C,i,S,_,m,X,B=0; -if(R==73||Y==88)I+=2110;if(R==70)y=2;if(a==14)y+=3;var J=[[0,0],[0,0]],$=c.isLE?V._binLE:V._binBE;for(var C=0; -C<2;C++)for(var f=0;f<2;f++){J[C][f]=$.readShort(l,I);I+=2}var b1=1<1)N=Math.floor(b1/(aN-1));if(R==68&&Y==32&&N>0)K=$.readShort(l,562);var e=[0,0],h=W(g[y]),z=[j,0,0,0]; -for(B=i=0;i>>4;X=(T(n,z,_-m,0)<<1)+1<>>1; -if((X&1<<_-1)==0)X-=(1<<_)-(m==0?1:0);if(S<2)e[S]=J[i&1][S]+=X;else e[S&1]+=X;var s=Math.min(Math.max(e[S&1],0),(1<>>3;c[j]|=n>>>16; -c[j+1]|=n>>>8;c[j+2]|=n};V.decode._getbithuff=function(c,O,n,j){var k=0,t=V.decode._get_byte,H,g=O[0],D=O[1],P=O[2],a=O[3]; -if(n==0||P<0)return 0;while(!a&&P>>32-n; -if(j){P-=j[H+1]>>>8;H=j[H+1]&255}else P-=n;if(P<0)throw"e";O[0]=g;O[1]=D;O[2]=P;O[3]=a;return H};V.decode._make_decoder=function(c){var O,n,j,t,H,g=[],D=17; -for(O=16;O!=0&&!c[O];O--);g[0]=O;for(j=n=1;n<=O;n++)for(t=0;t>>8}else for(var K=0; -K>>8;k[t+(K<<1)+1]=l[K]&255}}else if(b==14||b==12){var R=16-b;for(var K=0;K1}if(!b){if(O[n]==255&&O[n+1]==k)return{jpegOffset:n};if(Y!=null){if(O[n+J]==255&&O[n+J+1]==k)y=n+J; -else aI("JPEGInterchangeFormat does not point to SOI");if($==null)aI("JPEGInterchangeFormatLength field is missing"); -else if(J>=K||J+C<=K)aI("JPEGInterchangeFormatLength field value is invalid");if(y!=null)return{jpegOffset:y}}}if(b1!=null){N=b1[0]; -aN=b1[1]}if(Y!=null)if($!=null)if(C>=2&&J+C<=K){if(O[n+J+C-2]==255&&O[n+J+C-1]==k)W=new Uint8Array(C-2); -else W=new Uint8Array(C);for(l=0;l offset to first strip or tile"); -if(W==null){var _=0,m=[];m[_++]=255;m[_++]=k;var X=c.t519;if(X==null)throw new Error("JPEGQTables tag is missing"); -for(l=0;l>>8;m[_++]=e&255; -m[_++]=l|R<<4;for(I=0;I<16;I++)m[_++]=O[n+B[l]+I];for(I=0;I>>8&255;m[_++]=c.height&255;m[_++]=c.width>>>8&255; -m[_++]=c.width&255;m[_++]=i;if(i==1){m[_++]=1;m[_++]=17;m[_++]=0}else for(l=0;l<3;l++){m[_++]=l+1;m[_++]=l!=0?17:(N&15)<<4|aN&15; -m[_++]=l}if(S!=null&&S[0]!=0){m[_++]=255;m[_++]=D;m[_++]=0;m[_++]=4;m[_++]=S[0]>>>8&255;m[_++]=S[0]&255}W=new Uint8Array(m)}var h=-1; -l=0;while(l>>8&255; -W[s++]=c.height&255;W[s++]=c.width>>>8&255;W[s++]=c.width&255;W[s++]=i;if(i==1){W[s++]=1;W[s++]=17;W[s++]=0}else for(l=0; -l<3;l++){W[s++]=l+1;W[s++]=l!=0?17:(N&15)<<4|aN&15;W[s++]=l}}if(O[K]==255&&O[K+1]==a){var Q=O[K+2]<<8|O[K+3]; -T=new Uint8Array(Q+2);T[0]=O[K];T[1]=O[K+1];T[2]=O[K+2];T[3]=O[K+3];for(l=0;l>>8&255;P[y.sofPosition+6]=c.height&255;P[y.sofPosition+7]=c.width>>>8&255; -P[y.sofPosition+8]=c.width&255;if(O[n]!=255||O[n+1]!=SOS){P.set(y.sosMarker,a);a+=sosMarker.length}for(H=0; -H=0&&D<128)for(var P=0;P=-127&&D<0){for(var P=0; -P<-D+1;P++){H[k]=t[O];k++}O++}}};V.decode._decodeThunder=function(c,O,n,j,k){var t=[0,1,0,-1],H=[0,1,2,3,0,-3,-2,-1],g=O+n,D=k*2,P=0; -while(O>>6,K=a&63;O++;if(y==3){P=K&15;j[D>>>1]|=P<<4*(1-D&1);D++}if(y==0)for(var W=0; -W>>1]|=P<<4*(1-D&1);D++}if(y==2)for(var W=0;W<2;W++){var T=K>>>3*(1-W)&7;if(T!=4){P+=H[T]; -j[D>>>1]|=P<<4*(1-D&1);D++}}if(y==1)for(var W=0;W<3;W++){var T=K>>>2*(2-W)&3;if(T!=2){P+=t[T];j[D>>>1]|=P<<4*(1-D&1); -D++}}}};V.decode._dmap={"1":0,"011":1,"000011":2,"0000011":3,"010":-1,"000010":-2,"0000010":-3};V.decode._lens=function(){var c=function(D,P,a,y){for(var K=0; -K>>3>>3]>>>7-(D&7)&1;if(H==2)N=c[D>>>3]>>>(D&7)&1;D++;a+=N;if(C=="H"){if(g._lens[J][a]!=null){var aN=g._lens[J][a]; -a="";P+=aN;if(aN<64){g._addNtimes(y,P,J);T+=P;J=1-J;P=0;f--;if(f==0)C=""}}}else{if(a=="0001"){a="";g._addNtimes(y,R-T,J); -T=R}if(a=="001"){a="";C="H";f=2}if(g._dmap[a]!=null){b=I+g._dmap[a];g._addNtimes(y,b-T,J);T=b;a="";J=1-J}}if(y.length==t&&C==""){g._writeBits(y,j,k*8+$*b1); -J=0;$++;T=0;K=g._makeDiff(y);y=[]}}};V.decode._findDiff=function(c,O,n){for(var j=0;j=O&&c[j+1]==n)return c[j]}; -V.decode._makeDiff=function(c){var O=[];if(c[0]==1)O.push(0,1);for(var n=1;n>>3>>3]>>>7-(P&7)&1;if(H==2)i=c[P>>>3]>>>(P&7)&1;P++;y+=i;if(N){if(D._lens[$][y]!=null){var S=D._lens[$][y]; -y="";a+=S;if(S<64){D._addNtimes(K,a,$);$=1-$;a=0}}}else{if(f=="H"){if(D._lens[$][y]!=null){var S=D._lens[$][y]; -y="";a+=S;if(S<64){D._addNtimes(K,a,$);b+=a;$=1-$;a=0;b1--;if(b1==0)f=""}}}else{if(y=="0001"){y="";D._addNtimes(K,J-b,$); -b=J}if(y=="001"){y="";f="H";b1=2}if(D._dmap[y]!=null){l=R+D._dmap[y];D._addNtimes(K,l-b,$);b=l;y=""; -$=1-$}}}if(y.endsWith("000000000001")){if(C>=0)D._writeBits(K,j,k*8+C*aN);if(g){if(H==1)N=(c[P>>>3]>>>7-(P&7)&1)==1; -if(H==2)N=(c[P>>>3]>>>(P&7)&1)==1;P++}y="";$=0;C++;b=0;W=D._makeDiff(K);K=[]}}if(K.length==t)D._writeBits(K,j,k*8+C*aN)}; -V.decode._addNtimes=function(c,O,n){for(var j=0;j>>3]|=c[j]<<7-(n+j&7)};V.decode._decodeLZW=V.decode._decodeLZW=function(){var c,n,j,k,t=0,H=0,g=0,D=0,P=function(){var R=c>>>3,J=n[R]<<16|n[R+1]<<8|n[R+2],$=J>>>24-(c&7)-H&(1<>>----------------");for(var D=0;D4){c.writeUint(n,j,g);l=g}if(y==1||y==7){for(var I=0;I4){b+=b&1;g+=b}j+=4}return[j,g]};V.toRGBA8=function(c,O){var n=c.width,j=c.height,t=n*j,H=t*4,g=c.data,D=new Uint8Array(t*4),P=c.t262?c.t262[0]:2,a=c.t258?Math.min(32,c.t258[0]):1; -if(c.t262==null&&a==1)P=0;if(!1){}else if(P==0){var y=Math.ceil(a*n/8);for(var K=0;K>3)]>>7-(b&7)&1;D[l]=D[l+1]=D[l+2]=(1-I)*255;D[l+3]=255}if(a==4)for(var b=0; -b>1)]>>4-4*(b&1)&15;D[l]=D[l+1]=D[l+2]=(15-I)*17;D[l+3]=255}if(a==8)for(var b=0; -b>3)]>>7-(b&7)&1; -D[l]=D[l+1]=D[l+2]=I*255;D[l+3]=255}if(a==2)for(var b=0;b>2)]>>6-2*(b&3)&3; -D[l]=D[l+1]=D[l+2]=I*85;D[l+3]=255}if(a==8)for(var b=0;b>>3)]>>>7-(N&7)&1; -else if(a==8)aN=g[i+N*R];else throw a;D[l]=f[aN]>>8;D[l+1]=f[b1+aN]>>8;D[l+2]=f[b1+b1+aN]>>8;D[l+3]=255}}else if(P==5){var R=c.t258?c.t258.length:4,S=R>4?1:0; -for(var b=0;b>>1),B=g[_+(Q&1)],E=g[_+2]-128,q=g[_+3]-128,p=B+((q>>2)+(q>>3)+(q>>5)),d=B-((E>>2)+(E>>4)+(E>>5))-((q>>1)+(q>>3)+(q>>4)+(q>>5)),Z=B+(E+(E>>1)+(E>>2)+(E>>6)); -D[l]=Math.max(0,Math.min(255,p));D[l+1]=Math.max(0,Math.min(255,d));D[l+2]=Math.max(0,Math.min(255,Z)); -D[l+3]=255}}}else aI("Unknown Photometric interpretation: "+P);return D};V.replaceIMG=function(c){if(c==null)c=document.getElementsByTagName("img"); -var O=["tif","tiff","dng","cr2","nef"];for(var n=0;nt){t=P;H=D}}V.decodeImage(n,H,j);var a=V.toRGBA8(H),y=H.width,K=H.height,W=V._xhrs.indexOf(c.target),D=V._imgs[W]; -V._xhrs.splice(W,1);V._imgs.splice(W,1);var T=document.createElement("canvas");T.width=y;T.height=K; -var b=T.getContext("2d"),l=new ImageData(new Uint8ClampedArray(a.buffer),y,K);b.putImageData(l,0,0); -D.setAttribute("src",T.toDataURL())};V._binBE={nextZero:function(c,O){while(c[O]!=0)O++;return O},readUshort:function(c,O){return c[O]<<8|c[O+1]},readShort:function(c,O){var n=V._binBE.ui8; -n[0]=c[O+1];n[1]=c[O+0];return V._binBE.i16[0]},readInt:function(c,O){var n=V._binBE.ui8;n[0]=c[O+3]; -n[1]=c[O+2];n[2]=c[O+1];n[3]=c[O+0];return V._binBE.i32[0]},readUint:function(c,O){var n=V._binBE.ui8; -n[0]=c[O+3];n[1]=c[O+2];n[2]=c[O+1];n[3]=c[O+0];return V._binBE.ui32[0]},readASCII:function(c,O,n){var j=""; -for(var k=0;k>8&255; -c[O+1]=n&255},writeInt:function(c,O,n){var j=V._binBE.ui8;V._binBE.i32[0]=n;c[O+3]=j[0];c[O+2]=j[1]; -c[O+1]=j[2];c[O+0]=j[3]},writeUint:function(c,O,n){c[O]=n>>24&255;c[O+1]=n>>16&255;c[O+2]=n>>8&255;c[O+3]=n>>0&255},writeASCII:function(c,O,n){for(var j=0; -j>8&255},writeInt:function(c,O,n){var j=V._binBE.ui8; -V._binBE.i32[0]=n;c[O+0]=j[0];c[O+1]=j[1];c[O+2]=j[2];c[O+3]=j[3]},writeUint:function(c,O,n){c[O]=n>>>0&255; -c[O+1]=n>>>8&255;c[O+2]=n>>>16&255;c[O+3]=n>>>24&255},writeASCII:V._binBE.writeASCII};V._copyTile=function(c,O,n,j,k,t,H,g){var D=Math.min(O,k-H),P=Math.min(n,t-g); -for(var a=0;a>--aS&1; -aK=s[aK+L]}Z[q]=aK}}function Y(z,s,Q,E){if(z[s+3]!=255)return 0;if(Q==0)return s;for(var q=0;q<2;q++){if(z[s+q]==0){z[s+q]=z.length; -z.push(0,0,E,255)}var p=Y(z,z[s+q],Q-1,E+1);if(p!=0)return p}return 0}function J(z){var s=z.c,Q=z.d; -while(s<25){var E=z.data[z.a++];if(!z.b)z.a+=E+1>>>8;Q=Q<<8|E;s+=8}z.c=s;z.d=Q}function C(z,s){if(s.c>(s.c-=z)&65535>>16-z}function b1(z,s){var Q=z[0],E=0,q=255,p=0;if(s.c<16)J(s);var d=s.d>>s.c-8&255; -E=z[1][d];q=Q[E+3];s.c-=Q[E+2];while(q==255){p=s.d>>--s.c&1;E=Q[E+p];q=Q[E+3]}return q}function aN(z,s){if(z<32768>>16-s)z+=-(1<>>1);else throw p;z[L]=w+i(d[Z],Q)}}A+=s}}function m(z,s){var Q=C(z,s); -return z==16?-32768:aN(Q,z)}function e(z,s,Q){var E=c.length-O;for(var q=0;q>>4]}H=y();O+=2;break}else{O+=Q-2}}var aS=n>8?Uint16Array:Uint8Array,A=k*t,aK=new aS(j*A),L={c:0,d:0,b:H==8,a:O,data:c}; -if(L.b)e(aK,A,L);else _(aK,A,L);return aK}return h}()}(V,a3))}())// (c) Dean McNamee , 2013. +Q.a2=T(k,B);B+=4;Q.F=k[B++];Q.d=k[B++];if(E>=2){Q.depth=u(k,B);B+=2;if(E>=3){B+=3;Q.a5=T(k,B);B+=4}}return D}return{decode:a6}}();(function(){var j={};if(typeof module=="object"){module.exports=j}else{self.UTIF=j}var b7=typeof require==="function"?require("pako"):self.pako; +function aV(){if(typeof process=="undefined"||process.env.NODE_ENV=="development")console.log.apply(console,arguments)}(function(j,b7){(function(){"use strict"; +var P=function F(){function P(T){this.message="JPEG error: "+T}P.prototype=new Error;P.prototype.name="JpegError"; +P.constructor=P;return P}(),a=function n(){var T=new Uint8Array([0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63]),f=4017,z=799,G=3406,X=2276,C=1567,w=3784,p=5793,m=2896; +function a(E){if(E==null)E={};if(E.w==null)E.w=-1;this.V=E.n;this.N=E.w}function k(E,O){var D=0,s=[],W,R,h=16,V; +while(h>0&&!E[h-1]){h--}s.push({children:[],index:0});var $=s[0];for(W=0;W0){$=s.pop()}$.index++;s.push($);while(s.length<=W){s.push(V={children:[],index:0}); +$.children[$.index]=V.children;$=V}D++}if(W+10){I--;return g>>I&1}g=E[O++]; +if(g===255){var l=E[O++];if(l){if(l===220&&K){O+=2;var b8=Z(E,O);O+=2;if(b8>0&&b8!==D.s){throw new DNLMarkerError("Found DNL marker (0xFFDC) while parsing scan data",b8)}}else if(l===217){if(K){var ad=o*8; +if(ad>0&&ad>>7}function as(l){var b8=l;while(!0){b8=b8[H()];switch(typeof b8){case"number":return b8;case"object":continue}throw new P("invalid huffman sequence")}}function ag(l){var a4=0; +while(l>0){a4=a4<<1|H();l--}return a4}function _(l){if(l===1){return H()===1?1:-1}var a4=ag(l);if(a4>=1<>4;if(b5===0){if(b0<15){break}v+=16;continue}v+=b0; +var b2=T[v];r.D[l+b2]=_(b5);v++}}function a8(r,l){var b8=as(r.J),ad=b8===0?0:_(b8)<<$;r.D[l]=r.Q+=ad}function an(r,l){r.D[l]|=H()<<$}function aJ(r,l){if(q>0){q--; +return}var v=R,b8=h;while(v<=b8){var ad=as(r.i),at=ad&15,b5=ad>>4;if(at===0){if(b5<15){q=ag(b5)+(1<>4;if(at===0){if(ad<15){q=ag(ad)+(1<0){for(Y=0;Y0?"unexpected":"excessive";O=a$.offset}if(a$.M>=65488&&a$.M<=65495){O+=2}else{break}}return O-U}function c(E,O,D){var s=E.$,W=E.D,R,h,V,$,K,e,u,U,g,I,q,b,b3,o,r,b4,Y; +if(!s){throw new P("missing required Quantization Table.")}for(var B=0;B<64;B+=8){g=W[O+B];I=W[O+B+1]; +q=W[O+B+2];b=W[O+B+3];b3=W[O+B+4];o=W[O+B+5];r=W[O+B+6];b4=W[O+B+7];g*=s[B];if((I|q|b|b3|o|r|b4)===0){Y=p*g+512>>10; +D[B]=Y;D[B+1]=Y;D[B+2]=Y;D[B+3]=Y;D[B+4]=Y;D[B+5]=Y;D[B+6]=Y;D[B+7]=Y;continue}I*=s[B+1];q*=s[B+2];b*=s[B+3]; +b3*=s[B+4];o*=s[B+5];r*=s[B+6];b4*=s[B+7];R=p*g+128>>8;h=p*b3+128>>8;V=q;$=r;K=m*(I-b4)+128>>8;U=m*(I+b4)+128>>8; +e=b<<4;u=o<<4;R=R+h+1>>1;h=R-h;Y=V*w+$*C+128>>8;V=V*C-$*w+128>>8;$=Y;K=K+u+1>>1;u=K-u;U=U+e+1>>1;e=U-e; +R=R+$+1>>1;$=R-$;h=h+V+1>>1;V=h-V;Y=K*X+U*G+2048>>12;K=K*G-U*X+2048>>12;U=Y;Y=e*z+u*f+2048>>12;e=e*f-u*z+2048>>12; +u=Y;D[B]=R+U;D[B+7]=R-U;D[B+1]=h+u;D[B+6]=h-u;D[B+2]=V+e;D[B+5]=V-e;D[B+3]=$+K;D[B+4]=$-K}for(var v=0; +v<8;++v){g=D[v];I=D[v+8];q=D[v+16];b=D[v+24];b3=D[v+32];o=D[v+40];r=D[v+48];b4=D[v+56];if((I|q|b|b3|o|r|b4)===0){Y=p*g+8192>>14; +if(Y<-2040){Y=0}else if(Y>=2024){Y=255}else{Y=Y+2056>>4}W[O+v]=Y;W[O+v+8]=Y;W[O+v+16]=Y;W[O+v+24]=Y; +W[O+v+32]=Y;W[O+v+40]=Y;W[O+v+48]=Y;W[O+v+56]=Y;continue}R=p*g+2048>>12;h=p*b3+2048>>12;V=q;$=r;K=m*(I-b4)+2048>>12; +U=m*(I+b4)+2048>>12;e=b;u=o;R=(R+h+1>>1)+4112;h=R-h;Y=V*w+$*C+2048>>12;V=V*C-$*w+2048>>12;$=Y;K=K+u+1>>1; +u=K-u;U=U+e+1>>1;e=U-e;R=R+$+1>>1;$=R-$;h=h+V+1>>1;V=h-V;Y=K*X+U*G+2048>>12;K=K*G-U*X+2048>>12;U=Y;Y=e*z+u*f+2048>>12; +e=e*f-u*z+2048>>12;u=Y;g=R+U;b4=R-U;I=h+u;r=h-u;q=V+e;o=V-e;b=$+K;b3=$-K;if(g<16){g=0}else if(g>=4080){g=255}else{g>>=4}if(I<16){I=0}else if(I>=4080){I=255}else{I>>=4}if(q<16){q=0}else if(q>=4080){q=255}else{q>>=4}if(b<16){b=0}else if(b>=4080){b=255}else{b>>=4}if(b3<16){b3=0}else if(b3>=4080){b3=255}else{b3>>=4}if(o<16){o=0}else if(o>=4080){o=255}else{o>>=4}if(r<16){r=0}else if(r>=4080){r=255}else{r>>=4}if(b4<16){b4=0}else if(b4>=4080){b4=255}else{b4>>=4}W[O+v]=g; +W[O+v+8]=I;W[O+v+16]=q;W[O+v+24]=b;W[O+v+32]=b3;W[O+v+40]=o;W[O+v+48]=r;W[O+v+56]=b4}}function y(E,O){var D=O.P,s=O.c,W=new Int16Array(64); +for(var R=0;R=s){return null}var R=Z(E,O);if(R>=65472&&R<=65534){return{u:null,M:R,offset:O}}var h=Z(E,W); +while(!(h>=65472&&h<=65534)){if(++W>=s){return null}h=Z(E,W)}return{u:R.toString(16),M:h,offset:W}}a.prototype={parse(E,O){if(O==null)O={}; +var D=O.F,s=0,W=null,R=null,h,V,$=0;function K(){var b0=Z(E,s);s+=2;var b2=s+b0-2,I=A(E,b2,s);if(I&&I.u){b2=I.offset}var aN=E.subarray(s,b2); +s+=aN.length;return aN}function e(h){var b0=Math.ceil(h.o/8/h.X),b2=Math.ceil(h.s/8/h.B);for(var q=0; +q>4===0){for(b=0; +b<64;b++){b4=T[b];v[b4]=E[s++]}}else if(B>>4===1){for(b=0;b<64;b++){b4=T[b];v[b4]=Z(E,s);s+=2}}else{throw new P("DQT - invalid table spec")}u[B&15]=v}break; +case 65472:case 65473:case 65474:if(h){throw new P("Only single frame JPEGs supported")}s+=2;h={};h.G=I===65473; +h.Z=I===65474;h.precision=E[s++];var a4=Z(E,s),aZ,aX=0,a$=0;s+=2;h.s=D||a4;h.o=Z(E,s);s+=2;h.W=[];h._={}; +var aL=E[s++];for(q=0;q>4,aa=E[s+1]&15;if(aX>4===0?g:U)[ag&15]=k(_,a8)}break;case 65501:s+=2;V=Z(E,s); +s+=2;break;case 65498:var an=++$===1&&!D,aJ;s+=2;var ay=E[s++],aU=[];for(q=0;q>4];aJ.i=U[af&15];aU.push(aJ)}var a_=E[s++],l=E[s++],b8=E[s++]; +try{var ad=Q(E,s,h,aU,V,a_,l,b8>>4,b8&15,an);s+=ad}catch(ex){if(ex instanceof DNLMarkerError){return this.parse(E,{F:ex.s})}else if(ex instanceof EOIMarkerError){break markerLoop}throw ex}break; +case 65500:s+=4;break;case 65535:if(E[s]!==255){s--}break;default:var at=A(E,s-2,s-3);if(at&&at.u){s=at.offset; +break}if(s>=E.length-1){break markerLoop}throw new P("JpegImage.parse - unknown marker: "+I.toString(16))}I=Z(E,s); +s+=2}this.width=h.o;this.height=h.s;this.g=W;this.b=R;this.W=[];for(q=0;q>8)+v[g+1]}}}return r},get f(){if(this.b){return!!this.b.a}if(this.p===3){if(this.N===0){return!1}else if(this.W[0].index===82&&this.W[1].index===71&&this.W[2].index===66){return!1}return!0}if(this.N===1){return!0}return!1},z:function av(E){var O,D,s; +for(var W=0,R=E.length;W4){throw new P("Unsupported color mode")}var R=this.Y(O,D,W);if(this.p===1&&s){var h=R.length,V=new Uint8ClampedArray(h*3),$=0; +for(var K=0;K>24}function Z(T,f){return T[f]<<8|T[f+1]}function J(T,f){return(T[f]<<24|T[f+1]<<16|T[f+2]<<8|T[f+3])>>>0}j.JpegDecoder=a}()); +j.encodeImage=function(P,a,F,n){var Z={t256:[a],t257:[F],t258:[8,8,8,8],t259:[1],t262:[2],t273:[1e3],t277:[4],t278:[F],t279:[a*F*4],t282:[[72,1]],t283:[[72,1]],t284:[1],t286:[[0,1]],t287:[[0,1]],t296:[1],t305:["Photopea (UTIF.js)"],t338:[1]}; +if(n)for(var J in n)Z[J]=n[J];var T=new Uint8Array(j.encode([Z])),f=new Uint8Array(P),z=new Uint8Array(1e3+a*F*4); +for(var J=0;J>>3)];if(G==null)G=a.t325;var X=new Uint8Array(a.height*(f>>>3)); +if(a.t322!=null){var C=a.t322[0],w=a.t323[0],p=Math.floor((a.width+C-1)/C),d=Math.floor((a.height+w-1)/w),m=new Uint8Array(Math.ceil(C*w*T/8)|0); +for(var k=0;k>>3,d=P.t278?P.t278[0]:P.height,m=Math.ceil(C*w*P.width/8); +if(C==16&&!P.isLE&&P.t33422==null)for(var k=0;k>>8&255}else if(w==3)for(var z=3; +z>>3]>>>7-(y&7)&1;c[1]++;return i}function X(c,y){if(F==null){F={}; +for(var i=0;i>>1}return c}function C(c,y){return c>>y}function w(c,y,i,x,E,O){y[i]=C(C(11*c[E]-4*c[E+O]+c[E+O+O]+4,3)+c[x],1); +y[i+O]=C(C(5*c[E]+4*c[E+O]-c[E+O+O]+4,3)-c[x],1)}function p(c,y,i,x,E,O){var s=c[E-O]-c[E+O],W=c[E],V=c[x]; +y[i]=C(C(s+4,3)+W+V,1);y[i+O]=C(C(-s+4,3)+W-V,1)}function d(c,y,i,x,E,O){y[i]=C(C(5*c[E]+4*c[E-O]-c[E-O-O]+4,3)+c[x],1); +y[i+O]=C(C(11*c[E]-4*c[E-O]+c[E-O-O]+4,3)-c[x],1)}function k(c){c=c<0?0:c>4095?4095:c;c=N[c]>>>2;return c}function L(c,y,i,x,E){x=new Uint16Array(x.buffer); +var O=Date.now(),s=j._binBE,W=y+i,V,u,M,g,az,q,ap,b,b3,ab,b1,aR,o,aW,r,a1,aK,ah;y+=4;while(y>>1)*(M>>>1));ah=new Int16Array((u>>>1)*(M>>>1));n=new Int16Array(1024); +for(var a5=0;a5<1024;a5++){var ax=a5-512,aQ=Math.abs(ax),V=Math.floor(768*aQ*aQ*aQ/(255*255*255))+aQ; +n[a5]=Math.sign(ax)*V}N=new Uint16Array(4096);var a4=(1<<16)-1;for(var a5=0;a5<4096;a5++){var aZ=a5,aC=a4*(Math.pow(113,aZ/4095)-1)/112; +N[a5]=Math.min(aC,a4)}}var a9=aK[ap],aX=S(u,1+Z[g]),aL=S(M,1+Z[g]);if(g==0){for(var H=0;H>>1)+_]=c[ak]<<8|c[ak+1]}}else{var a8=[c,y*8],an=[],ay=0,aU=aX*aL,aM=[0,0],ar=0,B=0; +while(ay0){an[ay++]=B;ar--}}var af=(g-1)%3,a_=af!=1?aX:0,l=af!=0?aL:0; +for(var H=0;H>>1)+a_,ad=H*aX;for(var _=0;_>>1,at=aX*2,b5=aL*2; +for(var H=0;H>14-aG*2&3; +var aA=b6[aw];if(aA!=0)for(var H=0;H>>1)*(u>>>1)+(_>>>1),aT=au[ak],aS=aH[ak]-2048,ae=aB[ak]-2048,a6=aD[ak]-2048,a3=(aS<<1)+aT,aI=(ae<<1)+aT,aP=aT+a6,ac=aT-a6; +x[aF]=k(a3);x[aF+1]=k(aP);x[aF+u]=k(ac);x[aF+u+1]=k(aI)}}y+=a2*4}else if(v==16388){y+=a2*4}else if(aE==8192||aE==8448||aE==9216){}else throw v.toString(16)}}console.log(Date.now()-O)}return L}(); +j.decode._ljpeg_diff=function(P,a,F){var n=j.decode._getbithuff,N,Z;N=n(P,a,F[0],F);Z=n(P,a,N,0);if((Z&1<>>(C[w]>>>8);for(var p=0;p>>4;N[Z+w+1]=A<<4|i>>>4;N[Z+w+2]=i<<4|av>>>4}return}var aO=new Uint16Array(16),V=new Uint8Array(J+1); +for(k=0;k>>11;D=15&x>>>22;s=15&x>>>26;for(W=0;W<4&&128<>3))>>>(R&7)&127)<2047)aO[w]=2047; +R+=7}for(w=0;w<16;w++,m+=2){var y=aO[w]<<1;j.decode._putsF(N,(k*J+m)*f,y<<16-f)}m-=m&1?1:31}}};j.decode._decodeNikon=function(P,a,F,n,N,Z,J){var T=[[0,0,1,5,1,1,1,1,1,1,2,0,0,0,0,0,0,5,4,3,6,2,7,1,0,8,9,11,10,12],[0,0,1,5,1,1,1,1,1,1,2,0,0,0,0,0,0,57,90,56,39,22,5,4,3,2,1,0,11,12,12],[0,0,1,4,2,3,1,2,0,0,0,0,0,0,0,0,0,5,4,6,3,7,2,8,1,9,0,10,11,12],[0,0,1,4,3,1,1,1,1,1,2,0,0,0,0,0,0,5,6,4,7,8,3,9,2,1,0,10,11,12,13,14],[0,0,1,5,1,1,1,1,1,1,1,2,0,0,0,0,0,8,92,75,58,41,7,6,5,4,3,2,1,0,13,14],[0,0,1,4,2,2,3,1,2,0,0,0,0,0,0,0,0,7,6,8,5,9,4,10,3,11,12,2,0,1,13,14]],f=P.t256[0],z=P.t257[0],G=P.t258[0],X=0,S=0,C=j.decode._make_decoder,w=j.decode._getbithuff,p=a[0].exifIFD.makerNote,d=p.t150?p.t150:p.t140,m=0,k=d[m++],L=d[m++],i=0,y,x,E,O,D,s,W=0; +if(k==73||L==88)m+=2110;if(k==70)X=2;if(G==14)X+=3;var Q=[[0,0],[0,0]],c=P.isLE?j._binLE:j._binBE;for(var y=0; +y<2;y++)for(var A=0;A<2;A++){Q[y][A]=c.readShort(d,m);m+=2}var av=1<1)i=Math.floor(av/(aO-1));if(k==68&&L==32&&i>0)S=c.readShort(d,562);var R=[0,0],h=C(T[X]),V=[n,0,0,0]; +for(W=x=0;x>>4;s=(w(F,V,O-D,0)<<1)+1<>>1; +if((s&1<>>3;P[n]|=F>>>16; +P[n+1]|=F>>>8;P[n+2]|=F};j.decode._getbithuff=function(P,a,F,n){var N=0,Z=j.decode._get_byte,J,T=a[0],f=a[1],z=a[2],G=a[3]; +if(F==0||z<0)return 0;while(!G&&z>>32-F; +if(n){z-=n[J+1]>>>8;J=n[J+1]&255}else z-=F;if(z<0)throw"e";a[0]=T;a[1]=f;a[2]=z;a[3]=G;return J};j.decode._make_decoder=function(P){var a,F,n,Z,J,T=[],f=17; +for(a=16;a!=0&&!P[a];a--);T[0]=a;for(n=F=1;F<=a;F++)for(Z=0;Z>>8}else for(var S=0; +S>>8;N[Z+(S<<1)+1]=d[S]&255}}else if(p==14||p==12){var k=16-p;for(var S=0;S1}if(!p){if(a[F]==255&&a[F+1]==N)return{jpegOffset:F};if(L!=null){if(a[F+Q]==255&&a[F+Q+1]==N)X=F+Q; +else aV("JPEGInterchangeFormat does not point to SOI");if(c==null)aV("JPEGInterchangeFormatLength field is missing"); +else if(Q>=S||Q+y<=S)aV("JPEGInterchangeFormatLength field value is invalid");if(X!=null)return{jpegOffset:X}}}if(av!=null){i=av[0]; +aO=av[1]}if(L!=null)if(c!=null)if(y>=2&&Q+y<=S){if(a[F+Q+y-2]==255&&a[F+Q+y-1]==N)C=new Uint8Array(y-2); +else C=new Uint8Array(y);for(d=0;d offset to first strip or tile"); +if(C==null){var O=0,D=[];D[O++]=255;D[O++]=N;var s=P.t519;if(s==null)throw new Error("JPEGQTables tag is missing"); +for(d=0;d>>8;D[O++]=R&255; +D[O++]=d|k<<4;for(m=0;m<16;m++)D[O++]=a[F+W[d]+m];for(m=0;m>>8&255;D[O++]=P.height&255;D[O++]=P.width>>>8&255; +D[O++]=P.width&255;D[O++]=x;if(x==1){D[O++]=1;D[O++]=17;D[O++]=0}else for(d=0;d<3;d++){D[O++]=d+1;D[O++]=d!=0?17:(i&15)<<4|aO&15; +D[O++]=d}if(E!=null&&E[0]!=0){D[O++]=255;D[O++]=f;D[O++]=0;D[O++]=4;D[O++]=E[0]>>>8&255;D[O++]=E[0]&255}C=new Uint8Array(D)}var h=-1; +d=0;while(d>>8&255; +C[$++]=P.height&255;C[$++]=P.width>>>8&255;C[$++]=P.width&255;C[$++]=x;if(x==1){C[$++]=1;C[$++]=17;C[$++]=0}else for(d=0; +d<3;d++){C[$++]=d+1;C[$++]=d!=0?17:(i&15)<<4|aO&15;C[$++]=d}}if(a[S]==255&&a[S+1]==G){var K=a[S+2]<<8|a[S+3]; +w=new Uint8Array(K+2);w[0]=a[S];w[1]=a[S+1];w[2]=a[S+2];w[3]=a[S+3];for(d=0;d>>8&255;z[X.sofPosition+6]=P.height&255;z[X.sofPosition+7]=P.width>>>8&255; +z[X.sofPosition+8]=P.width&255;if(a[F]!=255||a[F+1]!=SOS){z.set(X.sosMarker,G);G+=sosMarker.length}for(J=0; +J=0&&f<128)for(var z=0;z=-127&&f<0){for(var z=0; +z<-f+1;z++){J[N]=Z[a];N++}a++}}};j.decode._decodeThunder=function(P,a,F,n,N){var Z=[0,1,0,-1],J=[0,1,2,3,0,-3,-2,-1],T=a+F,f=N*2,z=0; +while(a>>6,S=G&63;a++;if(X==3){z=S&15;n[f>>>1]|=z<<4*(1-f&1);f++}if(X==0)for(var C=0; +C>>1]|=z<<4*(1-f&1);f++}if(X==2)for(var C=0;C<2;C++){var w=S>>>3*(1-C)&7;if(w!=4){z+=J[w]; +n[f>>>1]|=z<<4*(1-f&1);f++}}if(X==1)for(var C=0;C<3;C++){var w=S>>>2*(2-C)&3;if(w!=2){z+=Z[w];n[f>>>1]|=z<<4*(1-f&1); +f++}}}};j.decode._dmap={"1":0,"011":1,"000011":2,"0000011":3,"010":-1,"000010":-2,"0000010":-3};j.decode._lens=function(){var P=function(f,z,G,X){for(var S=0; +S>>3>>3]>>>7-(f&7)&1;if(J==2)i=P[f>>>3]>>>(f&7)&1;f++;G+=i;if(y=="H"){if(T._lens[Q][G]!=null){var aO=T._lens[Q][G]; +G="";z+=aO;if(aO<64){T._addNtimes(X,z,Q);w+=z;Q=1-Q;z=0;A--;if(A==0)y=""}}}else{if(G=="0001"){G="";T._addNtimes(X,k-w,Q); +w=k}if(G=="001"){G="";y="H";A=2}if(T._dmap[G]!=null){p=m+T._dmap[G];T._addNtimes(X,p-w,Q);w=p;G="";Q=1-Q}}if(X.length==Z&&y==""){T._writeBits(X,n,N*8+c*av); +Q=0;c++;w=0;S=T._makeDiff(X);X=[]}}};j.decode._findDiff=function(P,a,F){for(var n=0;n=a&&P[n+1]==F)return P[n]}; +j.decode._makeDiff=function(P){var a=[];if(P[0]==1)a.push(0,1);for(var F=1;F>>3>>3]>>>7-(z&7)&1;if(J==2)x=P[z>>>3]>>>(z&7)&1;z++;X+=x;if(i){if(f._lens[c][X]!=null){var E=f._lens[c][X]; +X="";G+=E;if(E<64){f._addNtimes(S,G,c);c=1-c;G=0}}}else{if(A=="H"){if(f._lens[c][X]!=null){var E=f._lens[c][X]; +X="";G+=E;if(E<64){f._addNtimes(S,G,c);p+=G;c=1-c;G=0;av--;if(av==0)A=""}}}else{if(X=="0001"){X="";f._addNtimes(S,Q-p,c); +p=Q}if(X=="001"){X="";A="H";av=2}if(f._dmap[X]!=null){d=k+f._dmap[X];f._addNtimes(S,d-p,c);p=d;X=""; +c=1-c}}}if(X.endsWith("000000000001")){if(y>=0)f._writeBits(S,n,N*8+y*aO);if(T){if(J==1)i=(P[z>>>3]>>>7-(z&7)&1)==1; +if(J==2)i=(P[z>>>3]>>>(z&7)&1)==1;z++}X="";c=0;y++;p=0;C=f._makeDiff(S);S=[]}}if(S.length==Z)f._writeBits(S,n,N*8+y*aO)}; +j.decode._addNtimes=function(P,a,F){for(var n=0;n>>3]|=P[n]<<7-(F+n&7)};j.decode._decodeLZW=j.decode._decodeLZW=function(){var P,F,n,N,Z=0,J=0,T=0,f=0,z=function(){var k=P>>>3,Q=F[k]<<16|F[k+1]<<8|F[k+2],c=Q>>>24-(P&7)-J&(1<>>----------------");for(var f=0;f4){P.writeUint(F,n,T);d=T}if(X==1||X==7){for(var m=0;m4){p+=p&1;T+=p}n+=4}return[n,T]};j.toRGBA8=function(P,a){var F=P.width,n=P.height,Z=F*n,J=Z*4,T=P.data,f=new Uint8Array(Z*4),z=P.t262?P.t262[0]:2,G=P.t258?Math.min(32,P.t258[0]):1; +if(P.t262==null&&G==1)z=0;if(!1){}else if(z==0){var X=Math.ceil(G*F/8);for(var S=0;S>3)]>>7-(p&7)&1;f[d]=f[d+1]=f[d+2]=(1-m)*255;f[d+3]=255}if(G==4)for(var p=0; +p>1)]>>4-4*(p&1)&15;f[d]=f[d+1]=f[d+2]=(15-m)*17;f[d+3]=255}if(G==8)for(var p=0; +p>3)]>>7-(p&7)&1; +f[d]=f[d+1]=f[d+2]=m*255;f[d+3]=255}if(G==2)for(var p=0;p>2)]>>6-2*(p&3)&3; +f[d]=f[d+1]=f[d+2]=m*85;f[d+3]=255}if(G==8)for(var p=0;p>>3)]>>>7-(i&7)&1; +else if(G==8)aO=T[x+i*k];else throw G;f[d]=A[aO]>>8;f[d+1]=A[av+aO]>>8;f[d+2]=A[av+av+aO]>>8;f[d+3]=255}}else if(z==5){var k=P.t258?P.t258.length:4,E=k>4?1:0; +for(var p=0;p>>1),W=T[O+(K&1)],e=T[O+2]-128,t=T[O+3]-128,u=W+((t>>2)+(t>>3)+(t>>5)),U=W-((e>>2)+(e>>4)+(e>>5))-((t>>1)+(t>>3)+(t>>4)+(t>>5)),M=W+(e+(e>>1)+(e>>2)+(e>>6)); +f[d]=Math.max(0,Math.min(255,u));f[d+1]=Math.max(0,Math.min(255,U));f[d+2]=Math.max(0,Math.min(255,M)); +f[d+3]=255}}}else aV("Unknown Photometric interpretation: "+z);return f};j.replaceIMG=function(P){if(P==null)P=document.getElementsByTagName("img"); +var a=["tif","tiff","dng","cr2","nef"];for(var F=0;FZ){Z=z;J=f}}j.decodeImage(F,J,n);var G=j.toRGBA8(J),X=J.width,S=J.height,C=j._xhrs.indexOf(P.target),f=j._imgs[C]; +j._xhrs.splice(C,1);j._imgs.splice(C,1);var w=document.createElement("canvas");w.width=X;w.height=S; +var p=w.getContext("2d"),d=new ImageData(new Uint8ClampedArray(G.buffer),X,S);p.putImageData(d,0,0); +f.setAttribute("src",w.toDataURL())};j._binBE={nextZero:function(P,a){while(P[a]!=0)a++;return a},readUshort:function(P,a){return P[a]<<8|P[a+1]},readShort:function(P,a){var F=j._binBE.ui8; +F[0]=P[a+1];F[1]=P[a+0];return j._binBE.i16[0]},readInt:function(P,a){var F=j._binBE.ui8;F[0]=P[a+3]; +F[1]=P[a+2];F[2]=P[a+1];F[3]=P[a+0];return j._binBE.i32[0]},readUint:function(P,a){var F=j._binBE.ui8; +F[0]=P[a+3];F[1]=P[a+2];F[2]=P[a+1];F[3]=P[a+0];return j._binBE.ui32[0]},readASCII:function(P,a,F){var n=""; +for(var N=0;N>8&255; +P[a+1]=F&255},writeInt:function(P,a,F){var n=j._binBE.ui8;j._binBE.i32[0]=F;P[a+3]=n[0];P[a+2]=n[1]; +P[a+1]=n[2];P[a+0]=n[3]},writeUint:function(P,a,F){P[a]=F>>24&255;P[a+1]=F>>16&255;P[a+2]=F>>8&255;P[a+3]=F>>0&255},writeASCII:function(P,a,F){for(var n=0; +n>8&255},writeInt:function(P,a,F){var n=j._binBE.ui8; +j._binBE.i32[0]=F;P[a+0]=n[0];P[a+1]=n[1];P[a+2]=n[2];P[a+3]=n[3]},writeUint:function(P,a,F){P[a]=F>>>0&255; +P[a+1]=F>>>8&255;P[a+2]=F>>>16&255;P[a+3]=F>>>24&255},writeASCII:j._binBE.writeASCII};j._copyTile=function(P,a,F,n,N,Z,J,T){var f=Math.min(a,N-J),z=Math.min(F,Z-T); +for(var G=0;G>--aY&1; +az=$[az+I]}M[t]=az}}function d(V,$,K,e){if(V[$+3]!=255)return 0;if(K==0)return $;for(var t=0;t<2;t++){if(V[$+t]==0){V[$+t]=V.length; +V.push(0,0,e,255)}var u=d(V,V[$+t],K-1,e+1);if(u!=0)return u}return 0}function L(V){var $=V.a,K=V.d; +while($<25&&V.c>>8;K=K<<8|e;$+=8}V.a=$;V.d=K}function Q(V,$){if($.a>($.a-=V)&65535>>16-V}function c(V,$){var K=V[0],e=0,t=255,u=0;if($.a<16)L($);var U=$.d>>$.a-8&255; +e=V[1][U];t=K[e+3];$.a-=K[e+2];while(t==255){u=$.d>>--$.a&1;e=K[e+u];t=K[e+3]}return t}function av(V,$){if(V<32768>>16-$)V+=-(1<<$)+1; +return V}function aO(V,$){var K=c(V,$);if(K==0)return 0;var e=Q(K,$);return av(e,K)}function E(V,$,K){var e=Z,t=n,u=J,U=G; +for(var M=0;M>>1);else if(u==7)q=q+V[I-$]>>>1; +else throw u;V[I]=q+aO(U[M],K)}}g+=$}}function O(V,$){var K=Q(V,$);return V==16?-32768:av(K,V)}function R(V,$,K){var e=P.length-a; +for(var t=0;t>>4]}J=S();a+=2;break}else{a+=K-2}}var g=F>8?Uint16Array:Uint8Array,az=N*Z,I=new g(n*az),q={a:0,d:0,b:J==8,c:a,data:P,e:P.length}; +if(q.b)R(I,az,q);else E(I,az,q);return I}return h}()}(j,b7))}())// (c) Dean McNamee , 2013. // // https://github.com/deanm/omggif // @@ -7684,255 +7684,256 @@ exports.invert = function invert(A) { return exports; })(); -var Typr=function(){var U={};U.parse=function(h){var d=function(L,k,B,e){var T=U.B,i=U.T,$={cmap:i.c,head:i.head,hhea:i.aN,maxp:i.aa,hmtx:i.a4,name:i.name,"OS/2":i.g,post:i.a$,loca:i.b5,kern:i.U,glyf:i.A,"CFF ":i.$,"SVG ":i.am,COLR:i.aD,CPAL:i.aA},x={_data:L,_index:k,_offset:B}; -for(var m in $){var u=U.findTable(L,m,B);if(u){var z=u[0],F=e[z];if(F==null)F=$[m].v(L,z,u[1],x);x[m]=e[z]=F}}return x},T=U.B,L=new Uint8Array(h),e={},G=T.z(L,0,4); -if(G=="ttcf"){var B=4,f=T.d(L,B);B+=2;var O=T.d(L,B);B+=2;var s=T.u(L,B);B+=4;var Y=[];for(var A=0;A>8&255; -h[d+1]=T&255},ae:function(h,d,T){var L=[];for(var e=0;e>24&255; -h[d+1]=T>>16&255;h[d+2]=T>>8&255;h[d+3]=T>>0&255},f:function(h,d){return U.B.u(h,d)*(4294967295+1)+U.B.u(h,d+4)},z:function(h,d,T){var L=""; -for(var e=0;e255)return-1; -return U.T.$.b6(h,U.T.$.a_[d])},a0:function(h,d,T){var L=U.B,e=[".notdef"],G=h[d];d++;if(G==0){for(var B=0; -B>4,m=$&15;if(x!=15)i.push(x);if(m!=15)i.push(m);if(m==15)break}var u=[0,1,2,3,4,5,6,7,8,9,".","e","e-","reserved","-","endOfNumber"]; -for(var z=0;z>>1;T.az=e(h,d);d+=2;T.ad=e(h,d);d+=2; -T.ar=e(h,d);d+=2;T.aL=G(h,d,Y);d+=Y*2;d+=2;T.af=G(h,d,Y);d+=Y*2;T.aB=[];for(var A=0;A>>1);return T},av:function(h,d,T){var L=U.B,e=d;d+=2;var G=L.d(h,d); -d+=2;var B=L.d(h,d);d+=2;T.aU=L.d(h,d);d+=2;var f=L.d(h,d);d+=2;T.R=[];for(var O=0;O=f.ak||f.ag>=f.at)return null; -if(f.j>0){f.h=[];for(var O=0;O>>8;A&=15;if(A==0)d=G.H(h,d,O)}return O},aO:function(h,d,T,L){var e=U.B,G=U.T.U,B=e.p(h,d),f=e.u(h,d+4); -d+=8;var O={P:[],Z:[]};for(var s=0;s65535)G++;e.push(U.U.codeToGlyph(h,B))}var O=[]; -for(var G=0;G>>1);if($[V*u]<=z)F=V; -else a=V}return F*u},O=T.C[L],s=O.aw,Y=-1;if(s==0){if(d>=O.map.length)Y=0;else Y=O.map[d]}else if(s==4){var A=-1,t=O.aL; -if(d>t[t.length-1])A=-1;else{A=B(t,1,d);if(t[A]>1)-(O.m.length-A)];else k=d+O.aB[A];Y=k&65535}}else if(s==6){var i=d-O.aU,$=O.R; -if(i<0||i>=$.length)Y=0;else Y=$[i]}else if(s==12){var x=O.a9;if(d>x[x.length-2])Y=0;else{var G=B(x,3,d); -if(x[G]<=d&&d<=x[G+1]){Y=x[G+2]+(d-x[G])}if(Y==-1)Y=0}}else throw"unknown cmap table format "+O.aw;var m=h["SVG "],n=h.loca; -if(Y!=0&&h["CFF "]==null&&(m==null||m.entries[Y]==null)&&n[Y]==n[Y+1]&&[9,10,11,12,13,32,133,160,5760,8232,8233,8239,12288,6158,8203,8204,8205,8288,65279].indexOf(d)==-1&&!(8192<=d&&d<=8202))Y=0; -return Y},glyphToPath:function(h,d){var T={B:[],b:[]},L=h["SVG "],e=h["CFF "],G=h.COLR,B=U.U;if(L&&L.entries[d]){var f=L.entries[d]; -if(f!=null){if(typeof f=="string"){f=B.SVG.b7(f);L.entries[d]=f}T=f}}else if(G&&G[0]["g"+d]){function O(F){var a=F.toString(16); -return(a.length==1?"0":"")+a}var s=h.CPAL,Y=G[0]["g"+d];for(var A=0;A-1)U.U._simpleGlyph(L,T);else U.U._compoGlyph(L,d,T)}},_simpleGlyph:function(h,d){var T=U.U.P; -for(var L=0;L>1;G.length=0;f=!0}else if(y=="o3"||y=="o23"){var l;l=G.length%2!==0; -if(l&&!f){O=G.shift()+K}B+=G.length>>1;G.length=0;f=!0}else if(y=="o4"){if(G.length>1&&!f){O=G.shift()+K; -f=!0}if(s)j.D(e);t+=G.pop();j.G(e,A,t);s=!0}else if(y=="o5"){while(G.length>0){A+=G.shift();t+=G.shift(); -j.J(e,A,t)}}else if(y=="o6"||y=="o7"){var D=G.length,Q=y=="o6";for(var o=0;oMath.abs(F-t)){A=z+G.shift()}else{t=F+G.shift()}j.l(e,k,$,x,m,H,b); -j.l(e,n,u,z,F,A,t)}}else if(y=="o14"){if(G.length>0&&!f){O=G.shift()+T.nominalWidthX;f=!0}if(G.length==4){var a9=0,_=G.shift(),I=G.shift(),ah=G.shift(),a6=G.shift(),ae=g.Y(T,ah),a4=g.Y(T,a6); -U.U._drawCFF(T.CharStrings[ae],d,T,L,e);d.x=_;d.y=I;U.U._drawCFF(T.CharStrings[a4],d,T,L,e)}if(s){j.D(e); -s=!1}}else if(y=="o19"||y=="o20"){var l;l=G.length%2!==0;if(l&&!f){O=G.shift()+K}B+=G.length>>1;G.length=0; -f=!0;Y+=B+7>>3}else if(y=="o21"){if(G.length>2&&!f){O=G.shift()+K;f=!0}t+=G.pop();A+=G.pop();if(s)j.D(e); -j.G(e,A,t);s=!0}else if(y=="o22"){if(G.length>1&&!f){O=G.shift()+K;f=!0}A+=G.pop();if(s)j.D(e);j.G(e,A,t); -s=!0}else if(y=="o25"){while(G.length>6){A+=G.shift();t+=G.shift();j.J(e,A,t)}k=A+G.shift();$=t+G.shift(); -x=k+G.shift();m=$+G.shift();A=x+G.shift();t=m+G.shift();j.l(e,k,$,x,m,A,t)}else if(y=="o26"){if(G.length%2){A+=G.shift()}while(G.length>0){k=A; -$=t+G.shift();x=k+G.shift();m=$+G.shift();A=x;t=m+G.shift();j.l(e,k,$,x,m,A,t)}}else if(y=="o27"){if(G.length%2){t+=G.shift()}while(G.length>0){k=A+G.shift(); -$=t;x=k+G.shift();m=$+G.shift();A=x+G.shift();t=m;j.l(e,k,$,x,m,A,t)}}else if(y=="o10"||y=="o29"){var C=y=="o10"?L:T; -if(G.length==0){console.log("error: empty stack")}else{var S=G.pop(),q=C.Subrs[S+C.Bias];d.x=A;d.y=t; -d.N=B;d.w=f;d.width=O;d.open=s;U.U._drawCFF(q,d,T,L,e);A=d.x;t=d.y;B=d.N;f=d.w;O=d.width;s=d.open}}else if(y=="o30"||y=="o31"){var D,X=G.length,r=0,c=y=="o31"; -D=X&~2;r+=X-D;while(r0&&A[i-1]!="e"){A=A.slice(0,i)+" "+A.slice(i); -i++;k=!0}}A=A.split(/\s*[\s,]\s*/).map(parseFloat);if(!1){}else if(Y=="translate"){if(A.length==1)h.translate(t,A[0],0); -else h.translate(t,A[0],A[1])}else if(Y=="scale"){if(A.length==1)h.scale(t,A[0],A[0]);else h.scale(t,A[0],A[1])}else if(Y=="rotate"){var x=0,m=0; -if(A.length!=1){x=A[1];m=A[2]}h.translate(t,-x,-m);h.rotate(t,-Math.PI*A[0]/180);h.translate(t,x,m)}else if(Y=="matrix")t=A; -else console.log("unknown transform: ",Y);return t}function G(Y){var A={B:[],b:[]};if(Y==null)return A; -var t=new DOMParser,k=t.parseFromString(Y,"image/svg+xml"),i=k.getElementsByTagName("svg")[0],$=i.getAttribute("viewBox"); -if($)$=$.trim().split(" ").map(parseFloat);else $=[0,0,1e3,1e3];B(i.children,A);for(var x=0;x=0?1:-1)*Math.acos(Math.max(-1,Math.min(1,as)))},a7=(X-ao)/I,aj=(c-a2)/v,am=ab(1,0,a7,aj),au=ab(a7,aj,(-X-ao)/I,(-c-a2)/v); -au=au%(2*Math.PI);var ac=function(a8,i,$,R,P,M,E){var a5=function(w,Z){var an=Math.sin(Z),p=Math.cos(Z),Z=w[0],ai=w[1],ad=w[2],Y=w[3]; -w[0]=Z*p+ai*an;w[1]=-Z*an+ai*p;w[2]=ad*p+Y*an;w[3]=-ad*an+Y*p},N=function(w,Z){for(var K=0;KP)M-=2*Math.PI;else while(M>>2,z=e.hb_buffer_get_glyph_positions(x,0)>>>2; -for(var F=0;F>>16)+4)}B=new Uint8Array(G.buffer);f=new Uint32Array(G.buffer);O=new Int32Array(G.buffer); -if(s!=z){if(Y!=null){e.hb_blob_destroy(Y);e.free(A);e.hb_face_destroy(t);e.hb_font_destroy(k)}A=e.malloc(u.byteLength); -B.set(u,A);Y=e.hb_blob_create(A,u.byteLength,2,0,0);t=e.hb_face_create(Y,0);k=e.hb_font_create(t);s=z}if(window.TextEncoder==null){alert("Your browser is too old. Please, update it."); -return}if($==null)$=new window.TextEncoder("utf8");var V=e.hb_buffer_create(),H=$.encode(m),b=H.length,g=e.malloc(b); -B.set(H,g);e.hb_buffer_add_utf8(V,g,b,0,b);e.free(g);e.hb_buffer_set_direction(V,n?4:5);e.hb_buffer_guess_segment_properties(V); -e.hb_shape(k,V,0,0);var j=i(V);e.hb_buffer_destroy(V);var K=j.slice(0);if(!n)K.reverse();for(var l=1; -l>8&255; +i[p+1]=C&255},am:function(i,p,C){var O=[];for(var M=0;M>24&255; +i[p+1]=C>>16&255;i[p+2]=C>>8&255;i[p+3]=C>>0&255},L:function(i,p){return A.B.Q(i,p)*(4294967295+1)+A.B.Q(i,p+4)},_:function(i,p,C){var O=""; +for(var M=0;M255)return-1; +return A.T.k.a9(i,A.T.k.aR[p])},as:function(i,p,C){var O=A.B,M=[".notdef"],c=i[p];p++;if(c==0){for(var q=0; +q>4,v=I&15;if(S!=15)l.push(S);if(v!=15)l.push(v);if(v==15)break}var N=[0,1,2,3,4,5,6,7,8,9,".","e","e-","reserved","-","endOfNumber"]; +for(var a=0;a>>1;C.aw=M(i,p);p+=2;C.aK=M(i,p);p+=2; +C.aF=M(i,p);p+=2;C.aL=c(i,p,Z);p+=Z*2;p+=2;C.ay=c(i,p,Z);p+=Z*2;C.av=[];for(var Y=0;Y>>1);return C},b4:function(i,p,C){var O=A.B,M=p;p+=2;var c=O.V(i,p); +p+=2;var q=O.V(i,p);p+=2;C.aj=O.V(i,p);p+=2;var y=O.V(i,p);p+=2;C.A=[];for(var r=0;r=y.ak||y.aZ>=y.ae)return null; +if(y.G>0){y.J=[];for(var r=0;r>>8;Y&=15;if(Y==0)p=c.a(i,p,r)}return r},aI:function(i,p,C,O){var M=A.B,c=A.T.w,q=M.S(i,p),y=M.Q(i,p+4); +p+=8;var r={f:[],z:[]};for(var F=0;F65535)c++;M.push(A.U.codeToGlyph(i,q))}var r=[]; +for(var c=0;c>>1);if(I[E*N]<=a)X=E; +else s=E}return X*N},r=C.T[O],F=r.a3,Z=-1;if(F==0){if(p>=r.map.length)Z=0;else Z=r.map[p]}else if(F==4){var Y=-1,P=r.aL; +if(p>P[P.length-1])Y=-1;else{Y=q(P,1,p);if(P[Y]>1)-(r.p.length-Y)];else o=p+r.av[Y];Z=o&65535}}else if(F==6){var l=p-r.aj,I=r.A; +if(l<0||l>=I.length)Z=0;else Z=I[l]}else if(F==12){var S=r.au;if(p>S[S.length-2])Z=0;else{var c=q(S,3,p); +if(S[c]<=p&&p<=S[c+1]){Z=S[c+2]+(p-S[c])}if(Z==-1)Z=0}}else throw"unknown cmap table format "+r.a3;var v=i["SVG "],L=i.loca; +if(Z!=0&&i["CFF "]==null&&(v==null||v.entries[Z]==null)&&L[Z]==L[Z+1]&&[9,10,11,12,13,32,133,160,5760,8232,8233,8239,12288,6158,8203,8204,8205,8288,65279].indexOf(p)==-1&&!(8192<=p&&p<=8202))Z=0; +return Z},glyphToPath:function(i,p){var C={o:[],v:[]},O=i["SVG "],M=i["CFF "],c=i.COLR,q=A.U;if(O&&O.entries[p]){var y=O.entries[p]; +if(y!=null){if(typeof y=="string"){y=q.SVG.ad(y);O.entries[p]=y}C=y}}else if(c&&c[0]["g"+p]){function r(X){var s=X.toString(16); +return(s.length==1?"0":"")+s}var F=i.CPAL,Z=c[0]["g"+p];for(var Y=0;Y-1)A.U._simpleGlyph(O,C);else A.U._compoGlyph(O,p,C)}},_simpleGlyph:function(i,p){var C=A.U.P; +for(var O=0;O>1;c.length=0;y=!0}else if(W=="o3"||W=="o23"){var B;B=c.length%2!==0; +if(B&&!y){r=c.shift()+n}q+=c.length>>1;c.length=0;y=!0}else if(W=="o4"){if(c.length>1&&!y){r=c.shift()+n; +y=!0}if(F)H.O(M);P+=c.pop();H.j(M,Y,P);F=!0}else if(W=="o5"){while(c.length>0){Y+=c.shift();P+=c.shift(); +H.n(M,Y,P)}}else if(W=="o6"||W=="o7"){var G=c.length,t=W=="o6";for(var D=0;DMath.abs(X-P)){Y=a+c.shift()}else{P=X+c.shift()}H.W(M,o,I,S,v,h,e); +H.W(M,L,N,a,X,Y,P)}}else if(W=="o14"){if(c.length>0&&!y){r=c.shift()+C.nominalWidthX;y=!0}if(c.length==4){var ah=0,T=c.shift(),m=c.shift(),ai=c.shift(),a5=c.shift(),a8=x.F(C,ai),a4=x.F(C,a5); +A.U._drawCFF(C.CharStrings[a8],p,C,O,M);p.x=T;p.y=m;A.U._drawCFF(C.CharStrings[a4],p,C,O,M)}if(F){H.O(M); +F=!1}}else if(W=="o19"||W=="o20"){var B;B=c.length%2!==0;if(B&&!y){r=c.shift()+n}q+=c.length>>1;c.length=0; +y=!0;Z+=q+7>>3}else if(W=="o21"){if(c.length>2&&!y){r=c.shift()+n;y=!0}P+=c.pop();Y+=c.pop();if(F)H.O(M); +H.j(M,Y,P);F=!0}else if(W=="o22"){if(c.length>1&&!y){r=c.shift()+n;y=!0}Y+=c.pop();if(F)H.O(M);H.j(M,Y,P); +F=!0}else if(W=="o25"){while(c.length>6){Y+=c.shift();P+=c.shift();H.n(M,Y,P)}o=Y+c.shift();I=P+c.shift(); +S=o+c.shift();v=I+c.shift();Y=S+c.shift();P=v+c.shift();H.W(M,o,I,S,v,Y,P)}else if(W=="o26"){if(c.length%2){Y+=c.shift()}while(c.length>0){o=Y; +I=P+c.shift();S=o+c.shift();v=I+c.shift();Y=S;P=v+c.shift();H.W(M,o,I,S,v,Y,P)}}else if(W=="o27"){if(c.length%2){P+=c.shift()}while(c.length>0){o=Y+c.shift(); +I=P;S=o+c.shift();v=I+c.shift();Y=S+c.shift();P=v;H.W(M,o,I,S,v,Y,P)}}else if(W=="o10"||W=="o29"){var $=W=="o10"?O:C; +if(c.length==0){console.log("error: empty stack")}else{var Q=c.pop(),k=$.Subrs[Q+$.Bias];p.x=Y;p.y=P; +p.I=q;p.r=y;p.width=r;p.open=F;A.U._drawCFF(k,p,C,O,M);Y=p.x;P=p.y;q=p.I;y=p.r;r=p.width;F=p.open}}else if(W=="o30"||W=="o31"){var G,V=c.length,g=0,_=W=="o31"; +G=V&~2;g+=V-G;while(g0&&Y[l-1]!="e"){Y=Y.slice(0,l)+" "+Y.slice(l); +l++;o=!0}}Y=Y.split(/\s*[\s,]\s*/).map(parseFloat);if(!1){}else if(Z=="translate"){if(Y.length==1)i.translate(P,Y[0],0); +else i.translate(P,Y[0],Y[1])}else if(Z=="scale"){if(Y.length==1)i.scale(P,Y[0],Y[0]);else i.scale(P,Y[0],Y[1])}else if(Z=="rotate"){var S=0,v=0; +if(Y.length!=1){S=Y[1];v=Y[2]}i.translate(P,-S,-v);i.rotate(P,-Math.PI*Y[0]/180);i.translate(P,S,v)}else if(Z=="matrix")P=Y; +else console.log("unknown transform: ",Z);return P}function c(Z){var Y={o:[],v:[]};if(Z==null)return Y; +var P=new DOMParser,o=P.parseFromString(Z,"image/svg+xml"),l=o.getElementsByTagName("svg")[0],I=l.getAttribute("viewBox"); +if(I)I=I.trim().split(" ").map(parseFloat);else I=[0,0,1e3,1e3];q(l.children,Y);for(var S=0;S=0?1:-1)*Math.acos(Math.max(-1,Math.min(1,ac)))},ak=(V-ap)/m,ae=(_-au)/f,a9=ag(1,0,ak,ae),as=ag(ak,ae,(-V-ap)/m,(-_-au)/f); +as=as%(2*Math.PI);var ab=function(at,l,I,K,j,u,w){var ao=function(J,d){var aa=Math.sin(d),U=Math.cos(d),d=J[0],af=J[1],a6=J[2],Z=J[3]; +J[0]=d*U+af*aa;J[1]=-d*aa+af*U;J[2]=a6*U+Z*aa;J[3]=-a6*aa+Z*U},z=function(J,d){for(var n=0;nj)u-=2*Math.PI;else while(u>>2,a=M.hb_buffer_get_glyph_positions(S,0)>>>2; +for(var X=0;X>>16)+4)}q=new Uint8Array(c.buffer);y=new Uint32Array(c.buffer);r=new Int32Array(c.buffer); +if(F!=a){if(Z!=null){M.hb_blob_destroy(Z);M.free(Y);M.hb_face_destroy(P);M.hb_font_destroy(o)}Y=M.malloc(N.byteLength); +q.set(N,Y);Z=M.hb_blob_create(Y,N.byteLength,2,0,0);P=M.hb_face_create(Z,0);o=M.hb_font_create(P);F=a}if(window.TextEncoder==null){alert("Your browser is too old. Please, update it."); +return}if(I==null)I=new window.TextEncoder("utf8");var E=M.hb_buffer_create(),h=I.encode(v),e=h.length,x=M.malloc(e); +q.set(h,x);M.hb_buffer_add_utf8(E,x,e,0,e);M.free(x);M.hb_buffer_set_direction(E,L?4:5);M.hb_buffer_guess_segment_properties(E); +M.hb_shape(o,E,0,0);var H=l(E);M.hb_buffer_destroy(E);var n=H.slice(0);if(!L)n.reverse();for(var B=1; +B0};dc.prototype.addEventListener=function(h,e){this.k(h,e,null)}; -dc.prototype.k=function(h,e,$){if(this.BD[h]==null){this.BD[h]=[];this.QR[h]=[]}this.BD[h].push(e);this.QR[h].push($); -if(h==D.E.Pt){var Z=dc.o9;if(Z.indexOf(this)==-1)Z.push(this)}};dc.prototype.removeEventListener=function(h,e){var $=this.BD[h]; -if($==null)return;var Z=$.indexOf(e);if(Z<0)return;var c=this.QR[h];$.splice(Z,1);c.splice(Z,1);if(h==D.E.Pt&&$.length==0){var q=dc.o9; -q.splice(q.indexOf(this),1)}};dc.prototype.f=function(h){h.currentTarget=this;if(h.target==null)h.target=this; -var e=this.BD[h.type];if(e==null)return;var $=this.QR[h.type];for(var G=0;G=0; -if(h==null)return"";var $=[];for(var G=0;G>>G&1)==1)break;G++}if(e==0||$[G][1]==""){if((e&15)!=0&&bc.RH(h,[33,126])>.7)G=0; -else if(e==0)G=0;else{G=0}}return $[G][1]};bc.cI=120;bc.SA=20;bc.cols=16;bc.w8=function(h){var e=h.name.postScriptName; -if(e==null)return null;return e.replace(/ /g,"-")};bc.on=function(h){var e=h.name,$=e.typoFamilyName?e.typoFamilyName:e.fontFamily,Z=e.typoSubfamilyName?e.typoSubfamilyName:e.fontSubfamily,c=bc.ah2,q=$.toLowerCase(); -for(var G=0;G128)c=this.XJ(e,c);if(this.am1[h]==null){this.am1[h]=1; -var L=Date.now()-this.abT>2e3?2e3:0;this.abT=Date.now();alert(h+" \u27A1 "+c,L)}return this.bE(c,e)}this.lw[h]="a"; -var H=new B(D.E.P,!0);H.data={e:D.U.fu,Av:{url:"rsrc/fonts/"+$}};this.f(H)};bc.prototype.XJ=function(h,e,$){var Z=this.Vx[e]; -if(Z&&Typr.U.codeToGlyph(Z,h)!=0)return e;var c=this.Ht(),q=bc.a1$(h),E=q[0];if(c[e]&&(c[e][3]&E)==0){if($)for(var G=0; -G<$.length;G++){var P=$[G].Name,a=c[P];if(a&&(a[3]&E)!=0)return P}var P=bc.eM[q[1]][4];if(c[P])return P}return e}; -bc.a1$=function(h){var e=bc.eM,$=[0];for(var G=0;GP?1:0}for(var G=0;Ge[2])return 1;return 0};bc.a0Y=function(h,e){if(h[5]=="fs/"+h[2]+".otf")h[5]=""; -else if(h[5]=="gf/"+h[2]+".otf")h[5]="a";if(h[2]==(h[0]+"-"+h[1]).replace(/\s/g,"")){h[2]=""}else if(h[2]==h[0].replace(/\s/g,"")){h[2]="a"}if(e){if(h[0]==e[0])h[0]=""; -if(h[1]==e[1])h[1]="";if(h[3]==e[3])h[3]="";if(h[4]==e[4])h[4]=""}return h.join(",")};bc.aeU=function(h,e){h=h.split(","); -if(h[0]=="")h[0]=e[0];if(h[1]=="")h[1]=e[1];if(h[3]=="")h[3]=e[3];else h[3]=parseInt(h[3]);if(h[4]=="")h[4]=e[4]; -else h[4]=parseInt(h[4]);if(h[2]=="")h[2]=(h[0]+"-"+h[1]).replace(/\s/g,"");else if(h[2]=="a")h[2]=h[0].replace(/\s/g,""); -if(h[5]=="")h[5]="fs/"+h[2]+".otf";else if(h[5]=="a")h[5]="gf/"+h[2]+".otf";return h};bc.abm={ArialMT:"LiberationSans","Arial-BoldMT":"LiberationSans-Bold","Arial-ItalicMT":"LiberationSans-Italic","Arial-BoldItalicMT":"LiberationSans-BoldItalic",TimesNewRomanPSMT:"LiberationSerif","TimesNewRomanPS-BoldMT":"LiberationSerif-Bold","TimesNewRomanPS-ItalicMT":"LiberationSerif-Italic","TimesNewRomanPS-BoldItalicMT":"LiberationSerif-BoldItalic",CourierNewPSMT:"LiberationMono","CourierNewPS-BoldMT":"LiberationMono-Bold","CourierNewPS-ItalicMT":"LiberationMono-Italic","CourierNewPS-BoldItalicMT":"LiberationMono-BoldItalic",Courier:"CourierPrime",TrebuchetMS:"SourceSansPro-Regular","TrebuchetMS-Bold":"SourceSansPro-Semibold","TrebuchetMS-Italic":"SourceSansPro-It","TrebuchetMS-BoldItalic":"SourceSansPro-SemiboldIt","Times-Roman":"LiberationSerif",Impact:"Anton-Regular",Calibri:"SourceSansPro-Regular","Calibri-Italic":"SourceSansPro-It","Calibri-Bold":"SourceSansPro-Bold",CalibriBold:"SourceSansPro-Bold","Times-Roman":"LiberationSerif","Times-Italic":"LiberationSerif-Italic","Times-Bold":"LiberationSerif-Bold","Helvetica-Bold":"LiberationSans-Bold","HelveticaNeue-Thin":"Roboto-Thin","HelveticaNeue-Light":"Roboto-Light",HelveticaNeue:"Roboto-Regular","HelveticaNeue-Roman":"Roboto-Regular","HelveticaNeue-Medium":"Roboto-Medium","HelveticaNeue-Bold":"Roboto-Bold","HelveticaNeue-BoldItalic":"Roboto-BoldItalic","HelveticaNeue-Black":"Roboto-Black","HelveticaNeue-Heavy":"Roboto-Black","SFProText-Light":"Roboto-Light","SFProText-Regular":"Roboto-Regular","SFProText-Roman":"Roboto-Regular","SFProText-Medium":"Roboto-Medium","SFProText-Semibold":"Roboto-Medium","SFProText-Bold":"Roboto-Bold","SFProText-BoldItalic":"SFProText-BoldItalic","SFProText-Black":"Roboto-Black","SFProText-Heavy":"Roboto-Black","SFProDisplay-Light":"Roboto-Light","SFProDisplay-Regular":"Roboto-Regular","SFProDisplay-Roman":"Roboto-Regular","SFProDisplay-Medium":"Roboto-Medium","SFProDisplay-Semibold":"Roboto-Medium","SFProDisplay-Bold":"Roboto-Bold","SFProDisplay-BoldItalic":"SFProDisplay-BoldItalic","SFProDisplay-Black":"Roboto-Black","SFProDisplay-Heavy":"Roboto-Black","SFUIText-Light":"Roboto-Light","SFUIText-Regular":"Roboto-Regular","SFUIText-Roman":"Roboto-Regular","SFUIText-Medium":"Roboto-Medium","SFUIText-Semibold":"Roboto-Medium","SFUIText-Bold":"Roboto-Bold","SFUIText-BoldItalic":"SFUIText-BoldItalic","SFUIText-Black":"Roboto-Black","SFUIText-Heavy":"Roboto-Black",Verdana:"DejaVuSans","Verdana-Bold":"DejaVuSans-Bold","Verdana-Italic":"DejaVuSans-Oblique","Verdana-BoldItalic":"DejaVuSans-BoldOblique","MyriadPro-Regular":"PTSans-Regular","MyriadPro-Bold":"PTSans-Bold","MyriadPro-LightIt":"PTSans-Italic","MyriadPro-Semibold":"PTSans-Bold","MyriadPro-BlackCond":"PTSans-NarrowBold",Cambria:"Oranienbaum-Regular",Georgia:"CharisSIL","Georgia-Bold":"CharisSIL-Bold","Georgia-Italic":"CharisSIL-Italic","Georgia-BoldItalic":"CharisSIL-BoldItalic","AGaramondPro-Regular":"EBGaramond08-Regular","AGaramondPro-Bold":"EBGaramond08-Bold","AGaramondPro-Italic":"EBGaramond08-Italic",Garamond:"EBGaramond08-Regular",FontAwesome:"FontAwesome5FreeSolid","ProximaNova-Regular":"Metropolis-Regular","ProximaNova-Semibold":"Metropolis-SemiBold","ProximaNova-Light":"Metropolis-Light",BellMT:"GalatiaSIL",PalatinoLinotype:"TeXGyrePagella-Regular","PalatinoLinotype-Bold":"TeXGyrePagella-Bold","PalatinoLinotype-Italic":"TeXGyrePagella-Italic","PalatinoLinotype-BoldItalic":"TeXGyrePagella-BoldItalic"}; -bc.prototype.Ht=function(){if(FNTS.map==null){var h=FNTS.list,e=[];for(var G=0;Ge()/20};e3.z5=function(){return e3.ale()!=null}; -e3.Lr=function(){return e3.Fd};e3.Py=function(h){window.addEventListener("message",e3.ahg,!1);setInterval(e3.yz,5e3); -if(e3.z5()){e3.gW=h;e3.DW()}else setTimeout(h,1)};e3.yz=function(){if(e3.z5()&&e3.r8){e3.UZ(e3.Wi()); -e3.r8=!1}};e3.ck=function(h){e3.gW=h;var e="https://www.photopea.com/papi/login.php?redirect="+encodeURIComponent(window.location.href); -e3.Bu=window.open(e,"_blank")};e3.akH=function(){localStorage.removeItem(e3.mw+"_uid");localStorage.removeItem(e3.mw+"_provider"); -localStorage.removeItem(e3.mw+"_token");e3.Fd=null};e3.ahg=function(h){if(h.data instanceof ArrayBuffer||h.data instanceof Object)return; -if(h.data.charAt(0)!="{")return;var e=JSON.parse(h.data);if(e.prms==null)return;var $=e.prms.split(","); -if($[0]=="papi_logged_in"){localStorage[e3.mw+"_uid"]=$[1];e3.BV($[2]);localStorage[e3.mw+"_provider"]=$[3]; -e3.Bu.close();e3.DW()}if($[0]=="payment_complete"){e3.RN.close();e3.DW()}};e3.ale=function(){var h=localStorage[e3.mw+"_token"]; -if(h!=null&&Date.now()*.001+10q?1:-1;if(P)return-1;if(a)return 1;return c>q?1:-1},e=LNG.langs.slice(0);e.sort(h); -return e};e_.aig=function(h){e_.I6=h};e_.VV=function(h){for(var G=0;G")==-1)e_.IS[JSON.stringify(h[G])]=h[G+1]}; -e_.wE=function(h){var e=-1,$=LNG.langs;for(var G=0;G<$.length;G++)if($[G].code==h)e=G;return e};var aC={rY:!1,e3:!1,Vj:!1}; -aC.G5=function(){return D.TH[D.t5("vrt",2)]!=D.TH[D.t5("xksn",5)]};aC.JO=function(){var h=D.Wc,e=D.TH[h("u#z/*%1:")],$=e[h("s#{3")],Z=h("t&|{1%h2.94@I"),c=h("xy+_)%0+7@qK~<"),q=h("r$'\x7F+$f.283"),E=h("#y$)3%f.283"),P=0,a=h("$y+[145/+AC7"),j=h("rx*\x7F+3("),L=D.aR("Y_5UDDB>&\x7F"); -if(D.TH[L]!=!0){P=1}var H=e[Z](h("u}-"));H[a](h("zx"),j);H[a](h("$(0&\""),h("(}{.%ZXVY5){P=4}$[E](H)}if(aC.e3)P=5; -if(aC.Vj)P=6;return P};aC.aey=function(h){var e=D.YO("y),+1ZRU:.787=mlITWRZVgphaifg}u~!C{+,P5)2328eDPnDJ\\NhYdgbjf2q}"),$={method:"HEAD",mode:"no-cors"},Z=new Request(e,$); -fetch(Z).then(function(c){return c}).then(function(c){h(!1)}).catch(function(c){aC.e3=!0;console.clear(); -h(!0)})};aC.a7E=function(){var h=D.vO("UU[YW#ECC8"),e=D.vO("VQ](RUK>@B8p71*03m}x'"),$=D.vO("WQRMKT"),Z=this.al5[h][e](); -if(Z[$]<4){aC.Vj=!0;this.a0b(!0)}};aC.aoB=function(){var h=D.TH._cwY,e=D.TH[D.Wc("$y+n&-(5>@")],$="FQi[VE];;J6@?18',!'*3$|*niu~hgcWhlOUU`LOIT53A-11/)~$'>-cvys~_]k[RQiYHEJMWH@N--E$++|!|~t*hht,{HaWP_NrcLBNWIDN>049?5(+3qq}3$pp{ZjkoMi6UEJCLAQ/.+47-09>Tspy|ru~(xAaVl2Tcm]|LMZ\\",Z=String.fromCharCode(32); -h(D.aR($)+Z+Z+aC.JO());if(!e3.xK())e(aC.aoB,Math.round(Math.PI*1e4))};aC.xC=function(h){var e=D.Wc,$=D.TH[e("u#z/*%1:")],Z=e("t&|{1%h2.94@I"),c=e("$y+[145/+AC7"),q=e("%y/.`/1:.:C"),E=$[Z](h[0]); -for(var P in h[1]){if(P=="txt")E[q]=h[1][P];else E[c](P,h[1][P])}return E};aC.alK=function(h,e,$,Z,c){D.LK($); -var q=D.Wc,E=q("r$'\x7F+$f.283"),P=q("$y+[145/+AC7"),a=q("rx{_3%1:u5BF:F@P"),j=q("#y'&~#("),L=q("$(0&\""),H=q("$&z"),_=q("r'0( "),J=q("%y/.`/1:.:C"),S=q("u}-"),N=D.YO("zz*{+&"),Y=D.TH[q("u#z/*%1:")],U=q("t&|{1%h2.94@I"),g=q("$w)#-4"),M=D.YO("z#+ 05e,0300*300){var m=Y[q("xy+_)%0+7@BtN,N[NWLNBc~iSbedj4,/fsy:%!~{+-5*6?[4CDhSqqY]aQ bai,kw)6/ \"#)}$D_JC8@9GRk@CFQT_z~zy\\.`*~q$}(/?L?H=?3ToZDSVU[%| Wdj+uqol{}&z'0L%45YDbbnnArE~}\"\"W$[hn/nz,92t*3+#D_=>D7R5f9bWJ\\V`gw%w!v}|-H3,!)\"0;T1P@Id%jeZb[it.juxs{w*y#>>AGFKkSVQFNGU`yVad_gcuen8p}w6V<7,4-;F_W4?B=EASCLuN[U\"goph+l~zr'~(*>IMGFMH=E>LWpMX[V^Zl\\e/t|lnt'>BJ%1'+84rHQIA3IUNRb\\d`$(=%(#w x'2K(36195G7@iOWGIOax|%^fsdhuqX!~-% .p7,2X\\qY\\]k!hsPVhZtepsnvr0P61&.'5@Y06H:TEPSNVRoorxW\\+3xl$%yX~o&5=3*270+30)e=3;if(h>=4*270+30)e=4; -return e};aC.ajz=function(){var h=D.Wc,e=h("r$'\x7F+$f.283"),$=h("$y+[145/+AC7"),Z=h("rx{_3%1:u5BF:F@P"),c=h("#y'&~#("),q=h("$(0&\""),E=h("$&z"),P=h("r'0( "),a=h("%y/.`/1:.:C"),j=h("u}-"),L=D.YO("zz*{+&"),H=D.TH[h("u#z/*%1:")],_=h("t&|{1%h2.94@I"),J=h("$w)#-4"),S=D.YO("z#+ 05e,0B:FPLJGCku+e[mqqp%nlz%yRNiTxA=MIJg,Rp7fhpeqz+*l>p:}46979O\\OX=IAVYj&pTWli -&pn/J5,(&#O),<0S`YJLDPPMXq-wpemft 9mp*++~1-N&N?C;GQMKHDlv,f\\nrrq&om{&zS=JC9@?OjUzI\\NRZh_T^awhw!hh~n21sv")),U=D.TH,g=-1,M=U[D.YO("f#!}f")],C=D.YO("xy'"),y=D.YO("TU"),i=D.YO("Vi"),W=0; -if(M&&M[C]){var Q=M[C];if(Q==i)g=0;if(Q==y)g=1}var m=g==-1?null:aC.xC(Y[g]),n=this.Dh,u=this.a5Q,K=this.head,F=this.CD,b=[.4,.4,.2],d=Math.random(); -while(b[W][j\\kffv|qu&bih3&888;;C?'lp0TK_W\\daahim|W^]\"x-%*2>31D;\")(SQUUL`X]eFMLoko!|s( %-mtsbWUh_&.,kkrsw'AI"),T=z.split(","),R=D.YO("9z-)!5-68LW[UT[UCWg^WkY4!003~;A?9Ay 40.687FIHZz`RLalH@BApsrWm|$v(,BF[<465DGFfKMTJIOgdhXnbckgwst2R8\"40(<4=?[_UFFbmaY[Zilk,sihn'c(w.\"?_bH_NWZWSKML[^]}fjZptu%EH.CDGC97%9I2CRrX@NEZUP\\e\"hobr|Ynxtu*(._.1OL)55K;iIG#omySYmigu/)1j2PTTSgkS~\\Xm>twxrn%'z@=##9)W@6B;?OEGgqiw-^^#c* }k 0||,}-(EeK4_8GIRFR[AV^Wep*cqh}xs )R$$3%4/Z?C;Gcg|NN]O^Y%qoiwk1%|~}-0/O7->>@BJ?1E[Zq'XXgYhc/gsy!u;?T\"M6+=lCFGA=SUInpQQgW&ndpim}su;C:239,RJMPpQIKJY\\[{`d\\h%\"JK].;2JBQIM@@:{jcwe,102$Oe%|\"'2-9B0HPJBdu*\\Qah^fb$(/Kk\"uA%)4GKQH@AG:`uVNPO^a`!i^jc*.C)79=R"); -for(var I=0;Irzwc$!$V>CP/l{m|ww(.#'7SZYD7IIILLTPw]a!e\\phmurryz~.HON3*>6;CODBULryxdbff]qinv7>=!|!2.%916>^edSHFYPv~'$#bbijn}8EBE"),T=z.split(","),r=H[_](L); -for(var G=0;G9EN~Y,JpMSgcao'/gvx\"u\"+p&.'5@Y3A8MHCOX\"SSbTc^*nrjv37L}}-~.)TA?9G;`TLNM\\_^~f\\mmoqyn`t+*AV((7)83^7CIPEjn$il-megfuxw8|!x%A>fgyJWNX=LONT}ux]eUW]o-i3lz$s!|}**'2W;5Gd@=LRFLyOUl6cr=27=CAFKISWPKR,2FB@NgfhYc)u|Zf^mei\\\\V8' 4\"HMLN@k\"A9>CNIU^Ldlf^!2Fxm}%z#~@DKg(>2]AEPcgmd\\]cV|2rjlkz}|=&z' FJ_ESUYn"),x=H[_](J); -x[a]=R;K[e](x)}}else if(u==1&&W==1){console.log(1);var X=H[_](D.YO("u}."));X[$](q,D.Wc("~u)!&.P(8@CABrmnQ\\")); -var l=H[_](D.YO("u}."));X[e](l);l[$](D.YO("zx"),D.YO("AK}|~T()V`1i9eoEGwtL##V$`0e4>@rtvMOL"));l[$](D.YO("t!x.1"),D.YO("pu(y~1)?).4")); -var R=D.YO("(u*:~%4<=5ECUu[VKSLZe~U[jrsk{y,/O50%-&4?X/5DLMEUSeehnmfm`8\\a%E-0tz*23+;9Y@G:eKSTLnPb^Vjbkm*.('.rx(01)97WAB<=@AQ#Iol}(ZY[1de3=mFuBL\"$TQ)__3`=lBpz|OQS*,)|'<$'(6K"),x=H[_](J); -x[a]=R;l[e](x);n[e](X);if(!aC.rY){aC.rY=!0;var R=D.YO("9z-)!5-68TG^U=d^]dgaOcsjy: g4l~ts*}`+'2-9BXZJ=OISZot*qh&npd$D*4?By}+M$*9AB:JHhAPQu}}'%&(]crz{s$\"B\".D[CF=ZDLF>[{ak\\Pfe#a[savi{u '6"),D.YO("wu$.#"));x[a]=R;K[e](x)}}else{console.log(2);var hH=H[_](J);hH.setAttribute(E,D.YO("y),+1ZRU.@8iARrqq|S~P~Wcirdixxz$@$}0M2:*77D<Y17bIDNVTXPOTcd-245=+81v~/H&29T,2]D?IQOSKJO^_(-138&3,qy*C!-4O'-X?:DLJNFEJYZ#(,/4!.'lt%>{(/J\"(S:5?GEIA@ETU}#(%({)\"go 9v#*E|#N50:B@D<;@OPx}# $vU")),gj=[hZ[0]]; -if(u==2)gj=hZ.slice(1,1+aC.wF(F));for(var G=0;GDate.now()*.001+30){while(eY.O2.length>0)eY.O2.pop()()}else{if(eY.SQ==0)eY.SQ=1; -gapi.auth.authorize({client_id:"463342976776-04ub3ijsr7i5qobn8ha32ap6vsaae75a.apps.googleusercontent.com",scope:["https://www.googleapis.com/auth/drive.install","https://www.googleapis.com/auth/drive.file"].join(" "),immediate:eY.SQ==2?!1:!0},eY.ajd)}}; -eY.ajd=function(h){if(h&&!h.error){eY.aW=h;eY.SQ=!1;eY.lr()}else if(eY.SQ==1){eY.SQ=2;eY.lr()}else alert("Error: "+h.error)}; -eY.ZP=function(){return"access_token="+eY.aW.access_token+"&token_type="+eY.aW.token_type};eY.VE=function(){return eY.aW.token_type+" "+eY.aW.access_token}; -function gH(){}gH.Hm=function(h){var e=new Uint8Array(h),$=0,Z={nM:[],fB:[],list:[]},c=k.oO(e,$);$+=2; -if(c<=2){return gH.afX(e)}var q=k.oO(e,$);$+=2;var E=k.dd(e,$,8);$+=8;var P=k.n(e,$);$+=4;if(P>0)Z.nM=gH.w7(e,$,P,q,c); -$+=P;var a=k.dd(e,$,8);$+=8;var j=k.n(e,$);$+=4;if(j>0)Z.fB=b5.ky(e,$,j);$+=j;var L=k.dd(e,$,8);$+=8; -var H=k.n(e,$);$+=4;if(H>0){var _={};bf.Cb(e,_,$+4);Z.list=_.Brsh.v}$+=H;var J=Z.list;for(var G=0;G>>G&1;if(P){if(q==0){var a=cH.tQ(h,e);e+=2+2*a.length}else{var a=cH.amz(h,e); -e+=256}c.push(a)}else c.push(q==0?[0,0,255,255]:cH.agp())}var j=dA.X3("curv");for(var G=0;G<4;G++){if(q==0){var L=c[G],H=[]; -for(var _=0;_1){}if(_){if(_.v.masterFXSwitch==null)_.v.masterFXSwitch={t:"bool",v:!0}; -ck.q1(_.v)}}return Z};bA.KG=function(h,e){h.h0.Nm.v=e};bA.A7=function(h){var e=new e4,$=0;k.W$(e,$,2); -$+=2;k.Ed(e,$,"8BSL");$+=4;k.W$(e,$,3);$+=2;var Z=$;$+=4;$=b5.tN(e,$,h.Qm);k.ni(e,Z,$-Z-4);var c=h.Mp.length; -k.ni(e,$,c);$+=4;for(var G=0;G>>2)-16;console.log(k.PH(e,_,64)); -console.log(k.PH(H,_,64));console.log(e.slice(_,_+64));console.log(H.slice(_,_+64));throw G}return[Z]}; -aK.aD=function(h,e){var $=k.n(h,e);return k.dd(h,e+4,$)};aK.Bo=function(h,e,$){k.ni(h,e,$.length);k.Ed(h,e+4,$)}; -aK.A7=function(h){var e=new e4,$=0;k.ni(e,$,16);$+=4;k.Q7(e,$,h.cJ+"\0");$+=4+h.cJ.length*2+2;e.sN($,1); -e.data[$++]=h.exp?1:0;var Z=h.qM.length;k.ni(e,$,Z);$+=4;for(var G=0;G>>2)}else if(Z==3||Z==4){a=new Float32Array(E*P*2); -var j=0,L=0,H=!0;$=Z==3?32:16+8+40;while($1e3)throw"e";if($==0)$=4;return k.dd(h,e+4,$).trim()}; -bf.bS=function(h,e){var $=k.hY(h,e);return $==0?8:4+$};bf.U8=function(h,e,$){var Z="warp list Comp xx xy yx yy tx ty PinP PnRt PnOv PnDp xor PuX0 PuX1 PuX2 PuX3 PuY0 PuY1 PuY2 PuY3 base kana ruby box flow trim then else".split(" "),c=4<$.length||Z.indexOf($)!=-1; -k.vi(h,e,c?$.length:0);k.Ed(h,e+4,$);if($.length<4&&!c){var q="";for(var G=$.length;G<4;G++)q+=" ";k.Ed(h,e+4+$.length,q)}}; -bf.adA=function(h){var e={};for(var $ in h){if($=="classID")e[$]=h[$];else if($=="__name")e[$]=h[$]; -else e[$]=bf.Wg(h[$])}return e};bf.Wg=function(h){if(h.A2=="Objc")return bf.adA(h.v);else if(h.A2=="VlLs"){var e=[]; -for(var G=0;G=12)Z[P].oG=k.dd(h,e+8,4); -break;case"lsdk":Z.lsct={type:k.n(h,e)};break;case"lyvr":Z[P]=k.n(h,e);break;case"lnsr":var L={artb:1,bgnd:1,cont:1,layr:1,lset:1,rend:1,shap:1,user:1,____:null}; -Z[P]=k.dd(h,e,4);break;case"lspf":Z[P]=k.n(h,e);break;case"lclr":Z[P]=k.oO(h,e);break;case"luni":Z[P]=k.uT(h,e); -break;case"fxrp":Z[P]=new eu(k.bq(h,e),k.bq(h,e+8));break;case"artb":case"artd":Z[P]={};bf.Cb(h,Z[P],e+4); -break;case"SoCo":Z[P]={};bf.Cb(h,Z[P],e+4);break;case"GdFl":Z[P]={};bf.Cb(h,Z[P],e+4);ck.Nc(Z[P],P); -break;case"PtFl":Z[P]={};bf.Cb(h,Z[P],e+4);ck.Nc(Z[P],P);break;case"CgEd":var H=Z.brit=dA.X3("brit"),_={}; -bf.Cb(h,_,e+4);H.Brgh.v=_.Brgh?_.Brgh.v:0;H.Cntr.v=_.Cntr?_.Cntr.v:0;H.useLegacy.v=_.useLegacy?_.useLegacy.v:0; -break;case"brit":if(Z.brit==null){var H=Z.brit=dA.X3("brit"),_={};H.Brgh.v=k.nP(h,e);H.Cntr.v=k.nP(h,e+2); -H.useLegacy.v=!1}break;case"levl":var J=h.buffer.slice(e,e+a);Z[P]=fH.Hm(J);break;case"curv":Z[P]=cH.Yo(h,e,a); -break;case"expA":var S=k.oO(h,e),N=Z[P]=dA.X3("expA");N.Exps.v=k.tk(h,e+2);N.Ofst.v=k.tk(h,e+6);N.gammaCorrection.v=k.tk(h,e+10); -break;case"vibA":Z[P]={};bf.Cb(h,Z[P],e+4);break;case"hue2":Z[P]=eb.Yo(h,e,a);break;case"blnc":var N=Z[P]=dA.X3(P); -N.PrsL.v=h[e+18]==1;var Y=["ShdL","MdtL","HghL"];for(var G=0;G<3;G++)for(var U=0;U<3;U++)N[Y[G]].v[U].v=k.nP(h,e+G*6+U*2); -break;case"blwh":var g={};bf.Cb(h,g,e+4);var N=dA.X3(P),M="Bl Cyn Grn Mgnt Rd Yllw tintColor useTint".split(" "); -for(var G=0;G>0&1)==1;I.MV=(r>>1&1)==0;I.isEnabled=(r>>2&1)==0; -I.b=bS.KJ(h,e+8,a-8,q.d,q.v);break;case"shmd":Z[P]={};var l=k.n(h,e),n=e+4;for(var G=0;G>0&1){P=e[$];$++}if(_>>1&1){a=k.bq(e,$);$+=8}if(_>>2&1){j=e[$];$++}if(_>>3&1){L=k.bq(e,$);$+=8}if(($-H&1)==1)$++; -h.tD=[P,a,j,L]}else{if(Z==20)$+=2;else{h.MN=f5.yB(e,$);$+=18}}return c+Z};f5.aei=function(h,e,$){k.ni(e,$,0); -$+=4;if(h.r==null)return $;var Z=$,c=!0;k.ni(e,$,0);k.pS(e,$,h.r.rect);$+=16;k.Bn(e,$,h.r.color);$+=1; -f5.xu(h.r,e,$,c);$+=1;if(c){if(h.MN){f5.a1k(e,$,h.MN);$+=18}k.Bn(e,$,15);$+=1;var q=h.kV(),E=h.add.vmsk; -k.Bn(e,$,q?q.Ks:255);$+=1;k.aL(e,$,q?q.gE:0);$+=8;k.Bn(e,$,E?E.Ks:255);$+=1;k.aL(e,$,E?E.gE:0);$+=8; -$++;k.ni(e,Z-4,$-Z)}return $};f5.yB=function(h,e){var $=new o.kq;f5.iT($,h,e);e+=1;$.color=h[e];e+=1; -$.rect=k.RQ(h,e);e+=16;return $};f5.a1k=function(h,e,$){f5.xu($,h,e,!1);e+=1;k.Bn(h,e,$.color);e+=1; -k.pS(h,e,$.rect);e+=16};f5.iT=function(h,e,$){var Z=e[$];h.MV=(Z>>0&1)==0;h.isEnabled=(Z>>1&1)==0;h.FH=(Z>>3&1)==1; -return Z>>4&1};f5.xu=function(h,e,$,Z){var c=0;if(!h.MV)c+=1<<0;if(!h.isEnabled)c+=1<<1;if(h.FH)c+=1<<3; -if(Z)c+=1<<4;k.Bn(e,$,c)};f5.ac_=function(h,e,$){var Z=k.n(e,$);$+=4;if(Z==0)return $;if(Z!=5*8)console.log("unexpected Layer Blending Ranges content, size:",Z); -for(var G=0;G>>3),L=j&3,H=j+(L==0?0:4-L); -if(P<=0){return s.m(H)}if(E>3){console.log("unknown compression: "+E,Z,c,Z*c,P);E=0}if(E==0){if(q+H<=$.length)a=$.slice(q,q+H); -else{a=s.m(j);for(var G=0;G>>8; -N[y+1]=M&255}}}if(N.length==H)a=N;else{a=s.m(H);for(var G=0;G>>1]=a[G];a=i}return a};f6.jF=function(h,e,$,Z,c,q){var E=$*Z;if(q==0)for(var G=0; -G0;E=c,t-=d6){j=t<128?t:128;if(E<=P-3&&h[E+1]==h[E+0]&&h[E+2]==h[E+0]){for(c=E+3; -c=128){var P=h[e++],a=c+(257-t);while(c+1>>1];if(c)c.MX=k.oO($,G)}}if(e.Iw.r1032){var $=e.Iw.r1032,E=k.n($,12); -for(var G=0;G0){var N=h.add.Txt2?h.add.Txt2.AA:null; -h.add.Txt2={};h.add.Txt2.AA=bQ.a5L(Z,null,N)}var Y=h.add.lnk2;if(Y){var U=h.add.lnk2=[];for(var G=0; -G2e3*3e3&&c<.5){if(h.buffer){var q=s.m(Z.X()*4); -s.hX(h.buffer,h.rect,q,Z);h.buffer=q;h.rect=Z}else{var q=s.m(Z.X());s.T7(h.channel,h.rect,q,Z);h.channel=q; -h.rect=Z}alert("Removing hidden parts of layers")}};ip.a6d=function(h,e,$,Z,c){var q=$;k.ni(e,$,0);$+=4; -var E=h.t.length;k.W$(e,$,c?-E:E);$+=2;var P=[];for(var G=0;G>>3)}else if(S==1){N=s.m(J);var g=h.vB?4:2;if(U==0)$+=h.OL*_*g;$+=f6.mB(e,N,H,_,Y+U*_*g,$,g)}else{console.log("unknown compression of image data: ",S); -return}if(U".charCodeAt(0)){$+=2;break}else{var j=h[$];if(j==10||j==9||j==32)$++; -else{console.log("unknown byte: "+j+", char: "+String.fromCharCode(j),$);$++}}}return $};i3.Ky=function(h,e,$,Z){k.Ed(e,$,"<<\n"); -$+=3;var c=i3.a6a;for(var q in h){k.Bn(e,$,"\t".charCodeAt(0),Z+1);$+=Z+1;k.Ed(e,$,"/"+q);$+=1+q.length; -if(c(h[q])||h[q]instanceof Array){k.Ed(e,$," ");$++}else{k.Ed(e,$,"\n");$++;k.Bn(e,$,"\t".charCodeAt(0),Z+1); -$+=Z+1}$=i3.qR(h[q],e,$,Z+1);k.Ed(e,$,"\n");$++}k.Bn(e,$,"\t".charCodeAt(0),Z);$+=Z;k.Ed(e,$,">>");$+=2; -return $};i3.iL=function(h,e,$,Z){var c=e,q={size:0,G:0};while(!0){while(h[e]==" ".charCodeAt(0)||h[e]=="\t".charCodeAt(0)||h[e]=="\n".charCodeAt(0))e++; -if(h[e]=="<".charCodeAt(0)){q.G={};e=i3.xW(h,q.G,e,$+1);break}else if(h[e]=="(".charCodeAt(0)){e+=3; -var E=e;while(!0){if(h[E-1]!="\\".charCodeAt(0)&&h[E]==")".charCodeAt(0)&&(h[E+1]=="\n".charCodeAt(0)||h[E+1]==" ".charCodeAt(0)))break; -else E++}q.G=k.Jf(h,e,E);e=E+2;break}else if(h[e]=="[".charCodeAt(0)){e++;q.G=[];while(h[e]==" ".charCodeAt(0)||h[e]=="\t".charCodeAt(0)||h[e]=="\n".charCodeAt(0))e++; -while(h[e]!="]".charCodeAt(0)){var P=i3.iL(h,e,$+1,Z);q.G.push(P.G);e+=P.size;while(h[e]==" ".charCodeAt(0)||h[e]=="\t".charCodeAt(0)||h[e]=="\n".charCodeAt(0))e++}e++; -break}else{var a=k.indexOf(h," ".charCodeAt(0),e,e+50),j=k.indexOf(h,"\n".charCodeAt(0),e,e+50);if(j==-1)j=Infinity; -if(a==-1)a=Infinity;var L=k.dd(h,e,Math.min(a,j)-e).trim(),H=parseFloat(L);if(!isNaN(H)){q.G=parseFloat(L); -e=Math.min(a,j)+1;break}else if(L=="true"||L=="false"){q.G=L=="true";e=Math.min(a,j)+1;break}else if(L=="null"||L=="NaN"||L=="undefined"){q.G=0; -e=Math.min(a,j)+1;break}else{console.log("unknown identifier: "+L);throw"e"}e=Math.min(a,j)+1}}q.size=e-c; -return q};i3.qR=function(h,e,$,Z){if(h instanceof Array){var c=h.length==0||typeof h[0]=="number";if(c){k.Ed(e,$,"[ "); -$+=2;for(var G=0;G>");$+=2;return $};dL._e=function(h){return h==9||h==10||h==32};dL.kn=function(h,e,$,Z){while(!0){while(dL._e(h[$])||h[$]==0)$++; -if($>=h.length)break;if(h[$]=="/".charCodeAt(0)){$++;var c=$;while(!dL._e(h[c]))c++;var q=k.dd(h,$,c-$); -$=c+1;var E=dL.iL(h,$,Z,q);e["_"+q]=E.G;$+=E.size}else if(h[$]==">".charCodeAt(0)){$+=2;break}else{var P=h[$]; -console.log(k.dd(h,$,$+100));console.log("unknown byte: "+P+", char: "+String.fromCharCode(P)+", offset: "+$); -$++;throw"e";return-1}}return $};dL.LA=function(h,e,$,Z){for(var c in h){var q=c.substring(1,c.length); -k.Ed(e,$,"/"+q);$+=1+q.length;k.Ed(e,$," ");$++;$=dL.qR(h[c],e,$,Z+1);k.Ed(e,$," ");$++}return $};dL.iL=function(h,e,$,Z){var c=e,q={type:"",size:0,G:0}; -while(dL._e(h[e]))e++;if(h[e]=="<".charCodeAt(0)){q.type="Object";q.G={};e=dL.xW(h,q.G,e,$+1)}else if(h[e]=="(".charCodeAt(0)){q.type="String"; -e++;if(h[e]==")".charCodeAt(0)){q.G="s";e++}else{e+=2;var E=e,hi=0;while(!0){if(h[E]==")".charCodeAt(0)&&h[E-1]!="\\".charCodeAt(0))break; -else E+=1}q.G="s"+k.Jf(h,e,E);e=E+2}}else if(h[e]=="[".charCodeAt(0)){e++;q.G=[];q.type="Array";while(dL._e(h[e]))e++; -while(h[e]!="]".charCodeAt(0)){var P=dL.iL(h,e,$+1,Z);if(P==-1)return-1;q.G.push(P.G);e+=P.size;delete P.size; -while(dL._e(h[e]))e++}e++}else{var a=e;while(!dL._e(h[a]))a++;var j=k.dd(h,e,a-e),L=parseFloat(j);if(!isNaN(L)&&j.indexOf(".")!=-1){q.type="Float"; -var H=parseFloat(j);q.G="f"+H}else if(!isNaN(L)&&j.indexOf(".")==-1){q.type="Integer";q.G="i"+parseInt(j)}else if(j=="true"||j=="false"){q.type="Boolean"; -q.G=j=="true"}else if(j.charAt(0)=="/"){q.type="BString";q.G=j}else if(j=="NaN"){q.type="Float";q.G="f0"}else{console.log("unknown value",JSON.stringify(j)); -throw"e"}e=a+1}q.size=e-c;return q};dL.a0r=function(h){if(h==Math.round(h))return h+".0";var e=h.toFixed(5); -if(0=0;G--)h+=String.fromCharCode(t>>G*8&255);return h};k.ae5=function(h){var t=0;for(var G=h.length-1; -G>=0;G--)t|=h.charCodeAt(G)<<(3-G)*8;return t};k.indexOf=function(h,e,$,Z){if($==null)$=0;if(Z==null)Z=h.length; -Z=Math.min(Z,h.length);for(var G=$;G>6; -e[$+G+1]=128|q>>0&63;G+=2}else if((q&4294967295-(1<<16)+1)==0){e[$+G]=224|q>>12;e[$+G+1]=128|q>>6&63; -e[$+G+2]=128|q>>0&63;G+=3}else if((q&4294967295-(1<<21)+1)==0){e[$+G]=240|q>>18;e[$+G+1]=128|q>>12&63; -e[$+G+2]=128|q>>6&63;e[$+G+3]=128|q>>0&63;G+=4}else throw"e"}return G};k.aT=function(h,e){var $=k.n(h,e),Z=k.rM(h,e+4,$-1); -return{Zp:Z,a9:4+$}};k.anh=function(h,e){var $=k.bt(h,e),Z=k.Os(h,e+4,$);return Z};k.uT=function(h,e){var $=k.n(h,e),Z=k.M2(h,e+4,$); -return Z};k.$d=function(h,e){var $=k.n(h,e),Z=k.M2(h,e+4,$-1);return Z};k.a7L=function(h,e,$){k.E5(h,e,$.length); -e+=4;k.a3J(h,e,$)};k.afy=function(h,e,$){k.K_(h,e,$.length);e+=4;k._8(h,e,$)};k.Q7=function(h,e,$){h.sN(e,4+2*$.length); -k.afy(h.data,e,$)};k.al7=function(h,e,$){h.sN(e,4+2*$.length);k.a7L(h.data,e,$)};k.PH=function(h,e,$){var Z=[]; -for(var G=0;G<$;G++)Z.push(String.fromCharCode(h[e+G]));return Z};k.ajS=function(h,e,$){var Z=!1,c=h.length-$.length; -for(var G=e;G>8&255;h[e+1]=t&255};k.W$=function(h,e,t){h.sN(e,4);k.OF(h.data,e,t)};k.a22=function(h,e){var $=k.oO(h,e),Z=k.oO(h,e+2); -return $+Z*(1/65536)};k.A1=function(h,e,t){var $=Math.floor(t),Z=Math.floor((t-$)*65536);k.OF(h,e,$); -k.OF(h,e+2,Z)};k.EW=function(h,e){return h[e+1]<<8|h[e]};k.wB=function(h,e,t){h[e+1]=t>>8&255;h[e]=t&255}; -k.lc=function(h,e,t){h.sN(e,4);k.wB(h.data,e,t)};k.nP=function(h,e){k.AD[0]=h[e+1];k.AD[1]=h[e];return k.FL[0]}; -k.av=function(h,e){k.AD[0]=h[e];k.AD[1]=h[e+1];return k.FL[0]};k.H0=k.OF;k.qI=k.W$;k.hY=function(h,e){k.kx[0]=h[e+3]; -k.kx[1]=h[e+2];k.kx[2]=h[e+1];k.kx[3]=h[e];return k.Si[0]};k.KB=function(h,e,t){k.Si[0]=t;h[e+3]=k.kx[0]; -h[e+2]=k.kx[1];h[e+1]=k.kx[2];h[e+0]=k.kx[3]};k.vi=function(h,e,t){h.sN(e,4);k.KB(h.data,e,t)};k.Ir=function(h,e,$,Z){$[Z+0]=h[e+0]; -$[Z+1]=h[e+1];$[Z+2]=h[e+2];$[Z+3]=h[e+3]};k.bt=function(h,e){k.Ir(h,e,k.kx,0);return k.bh[0]};k.E5=function(h,e,t){k.bh[0]=t; -k.Ir(k.kx,0,h,e)};k.t2=function(h,e,t){h.sN(e,4);k.E5(h.data,e,t)};k.Mn=function(h,e){k.Ir(h,e,k.kx,0); -return k.Si[0]};k.a9y=function(h,e,t){k.Si[0]=t;k.Ir(k.kx,0,h,e)};k.adZ=function(h,e,t){h.sN(e,4);k.a9y(h.data,e,t)}; -k.n=function(h,e){var $=h[e]*(256*256*256)+(h[e+1]<<16|h[e+2]<<8|h[e+3]);return $};k.K_=function(h,e,t){h[e]=t>>24&255; -h[e+1]=t>>16&255;h[e+2]=t>>8&255;h[e+3]=t>>0&255};k.ni=function(h,e,t){h.sN(e,4);k.K_(h.data,e,t)};k.EQ=function(h,e){return k.n(h,e)<<32|k.n(h,e+4)}; -k.a0m=function(h,e,t){k.K_(h,e,t>>16>>16);k.K_(h,e+4,t&4294967295)};k.VJ=function(h,e,t){h.sN(e,8);k.a0m(h.data,e,t)}; -k.bq=function(h,e){var $=new Uint8Array(8);for(var G=0;G<8;G++)$[G]=h[e+7-G];var Z=new Float64Array($.buffer); -return Z[0]};k.a0W=function(h,e){var $=new Uint8Array(8);for(var G=0;G<8;G++)$[G]=h[e+G];var Z=new Float64Array($.buffer); -return Z[0]};k.NW=function(h,e,t){var $=new Float64Array(1);$[0]=t;var Z=new Uint8Array($.buffer);for(var G=0; -G<4;G++){var c=Z[G];Z[G]=Z[7-G];Z[7-G]=c}for(var G=0;G<8;G++)h[e+G]=Z[G]};k.aL=function(h,e,t){h.sN(e,8); -k.NW(h.data,e,t)};k.tk=function(h,e){k.kx[0]=h[e+3];k.kx[1]=h[e+2];k.kx[2]=h[e+1];k.kx[3]=h[e+0];return k.vd[0]}; -k.hz=function(h,e){k.kx[0]=h[e+0];k.kx[1]=h[e+1];k.kx[2]=h[e+2];k.kx[3]=h[e+3];return k.vd[0]};k.sM=function(h,e,t){k.vd[0]=t; -h[e+0]=k.kx[3];h[e+1]=k.kx[2];h[e+2]=k.kx[1];h[e+3]=k.kx[0]};k.afp=function(h,e,t){h.sN(e,4);k.sM(h.data,e,t)}; -k.gs=function(h,e,t){k.vd[0]=t;h[e+0]=k.kx[0];h[e+1]=k.kx[1];h[e+2]=k.kx[2];h[e+3]=k.kx[3]};k.aiw=function(h,e,t){h.sN(e,4); -k.gs(h.data,e,t)};k.akX=function(h,e){var $=k.hY(h,e),Z=$*(1/(1<<24));return Z};k.NE=function(h,e,$){var Z=Math.floor($*(1<<24)); -k.KB(h,e,Z)};k.ae2=function(h,e,$){h.sN(e,4);k.NE(h.data,e,$)};k.CA=function(h,e){var $=h[e],Z=k.dd(h,e+1,$); -$+=1-$%2;return{zm:Z,length:$+1}};k.a2$=function(h,e,$){var Z=$.length;h[e]=Z;k.KP(h,e+1,$);if(Z%2==0){h[e+1+Z]=0; -++Z}return Z+1};k.vL=function(h,e,$){h.sN(e,$.length+2);return k.a2$(h.data,e,$)};k.eb=function(h,e){var $=new i7; -$.R=k.bq(h,e+0*8);$.O=k.bq(h,e+1*8);$.Ma=k.bq(h,e+2*8);$.rU=k.bq(h,e+3*8);$.zq=k.bq(h,e+4*8);$.nL=k.bq(h,e+5*8); -return $};k.uC=function(h,e,$){k.NW(h,e+0*8,$.R);k.NW(h,e+1*8,$.O);k.NW(h,e+2*8,$.Ma);k.NW(h,e+3*8,$.rU); -k.NW(h,e+4*8,$.zq);k.NW(h,e+5*8,$.nL)};k.a6U=function(h,e,$){h.sN(e,48);k.uC(h.data,e,$)};k.ahu=function(h,e){var $=k.tk(h,e),Z=k.tk(h,e+4),c=k.tk(h,e+8),q=k.tk(h,e+12); -return new O($,Z,c-$,q-Z)};k.agk=function(h,e,$){k.sM(h,e,$.x);k.sM(h,e+4,$.y);k.sM(h,e+8,$.x+$.d);k.sM(h,e+12,$.y+$.v)}; -k.a8z=function(h,e,$){h.sN(e,16);k.agk(h.data,e,$)};k.RQ=function(h,e){var $=k.hY(h,e),Z=k.hY(h,e+4),c=k.hY(h,e+8),q=k.hY(h,e+12); -return new O(Z,$,q-Z,c-$)};k.kZ=function(h,e,$){k.KB(h,e,$.y);k.KB(h,e+4,$.x);k.KB(h,e+8,$.y+$.v);k.KB(h,e+12,$.x+$.d)}; -k.pS=function(h,e,$){h.sN(e,16);k.kZ(h.data,e,$)};k.nH=function(h,e,$){var Z=new Uint8Array($);for(var G=0; -G<$;G++)Z[G]=h[e+G];return Z};k.Ze=function(h,e,$){h.set($,e)};k.$N=function(h,e,$){h.sN(e,$.length); -k.Ze(h.data,e,$)};k.a2H=function(h,e,$,t){if(!t)t=1;for(var G=0;G=this.x&&h<=this.x+this.d&&(e>=this.y&&e<=this.y+this.v)}; -O.prototype.B4=function(h){return this.contains(h.x,h.y)};O.prototype.x1=function(h){return this.x<=h.x&&this.y<=h.y&&h.x+h.d<=this.x+this.d&&h.y+h.v<=this.y+this.v}; -O.prototype.tE=function(h){this.x=h.x;this.y=h.y;this.d=h.d;this.v=h.v};O.prototype.dz=function(h){return this.x==h.x&&this.y==h.y&&this.d==h.d&&this.v==h.v}; -O.prototype.P5=function(h,e){this.x-=h;this.y-=e;this.d+=2*h;this.v+=2*e};O.prototype.anx=function(h){this.P5(h.x,h.y)}; -O.prototype.jx=function(h){var e=Math.max(this.x,h.x),$=Math.max(this.y,h.y),Z=Math.min(this.x+this.d,h.x+h.d),c=Math.min(this.y+this.v,h.y+h.v); -if(Zthis.x+this.d||h.y>this.y+this.v||h.x+h.d=7){a=a}else alert("Unknown XCF version: "+q); -P=8}var j={};Z=eZ.dB($,Z,j);var L=[];Z=eZ.Fi($,Z,L,P);var H=[];Z=eZ.Fi($,Z,H,P);e.Zs=0;for(var G=0;G0){e.t.push(e.d_());e.Zs--}e.t.reverse();delete e.Zs;e.buffer=s.m(e.d*e.v*4); -if(e.t.length==0)console.log("No layers!!!");for(var G=0;GH){$.t.push($.d_()); -$.Zs--}$.Zs=H;if(E.add.lsct==hJ.sE||E.add.lsct==hJ.Y7)$.Zs++;var hZ=c==4?k.n:k.EQ;if(E.J7()){E.buffer=s.m(E.rect.X()*4); -var gj=new s.EI(E.rect.X()),hO=hZ(h,e);e+=c;var d3=hZ(h,e);e+=c;eZ.mh(h,hO,gj,Z,c,q);s.cl(gj,E.buffer); -if(d3!=0){E.r=new o.kq;E.r.color=0;E.r.rect=E.rect.clone();E.r.channel=eZ.uj(h,d3,Z,c,q).mF;if(_[dw.i9])E.r.isEnabled=k.n(_[dw.i9],0)==1}}$.t.push(E)}; -eZ.a5n=function(h){var e="("+k.rM(h,0,h.length-1)+")",$=[],Z={};eZ.Pa(e,1,$);eZ.aaN($,Z);return Z};eZ.aaN=function(h,e){for(var G=0; -G=h.length)throw"e"; -var Z=h.charAt(e);e++;if(Z=="("){var c=[];e=eZ.Pa(h,e,c);$.push(c)}else if(Z==" "||Z=="\n"||Z=="\r"){}else if(Z==")")return e; -else if(Z=="\""){var q=e;while(!0){var E=h[e];e++;if(E=="\"")break;if(E=="\\")e++}$.push(JSON.parse(h.slice(q-1,e)))}else{var q=e-1; -while(h[e]!=" "&&h[e]!=")")e++;$.push(h.slice(q,e))}}};eZ.uj=function(h,e,$,Z,c){var q=k.n(h,e);e+=4; -var E=k.n(h,e);e+=4;var P=k.aT(h,e);e+=P.a9;var a={};e=eZ.dB(h,e,a);var j=new s.EI(q*E),L=Z==4?k.n:k.EQ,H=L(h,e); -e+=Z;eZ.mh(h,H,j,$,Z,c);return{mF:j.h,l8:a}};eZ.mh=function(h,e,$,Z,c,q){var E=k.n(h,e);e+=4;var P=k.n(h,e); -e+=4;var a=k.n(h,e);e+=4;var j=c==4?k.n:k.EQ,L=j(h,e);e+=c;eZ.a5B(h,L,$,Z,a,c,q)};eZ.a5B=function(h,e,$,Z,c,q,E){var P=k.n(h,e),L=0,G=0; -e+=4;var a=k.n(h,e);e+=4;var j=new O(0,0,P,a);if(E==100||E==150)L=1;else if(E==200||E==250)L=2;else if(E==300||E==350)L=4; -else if(E==500||E==550)L=2;else if(E==600||E==650)L=4;else if(E==700||E==750)L=8;else{alert("unsupported bit depth "+E); -throw"e"}var H=c/L,L=Math.round(c/H),_=[];e=eZ.Fi(h,e,_,q);var J=new s.EI(64*64*L),S=new O,N=Z[dw.adw][0],Y=[J.h,J.l,J.O,J.R]; -if(H==3)J.R.fill(255);var U=Date.now();for(var g=0;g>>8,255)}}}else if(E==600){var K=eZ.ak7(),F=new Uint32Array(1),b=new Float32Array(F.buffer); -for(var Q=0;Q1)d=1;m[n]=K[~~(.5+d*1e3)]}}}else console.log("unknown data format",E); -s.wU(J,S,$,j)}};eZ.ak7=function(){var h=eZ.aje;if(h!=null)return h;h=eZ.aje=new Uint8Array(1001);for(var G=0; -G<1001;G++)h[G]=~~(.49+255*s.QN(G*.001));return h};eZ.ahH=function(h,e,$,Z,c,q){if(Z==1){for(var E=0; -E1)console.log(Z.pages.length,"pages"); -var c=[],E=new O;for(var P=0;P8e3*8e3||L.d>3e4||L.v>3e4){$.M_(j,!0); -var H=$.Be(j,P);if(H.X()>=L.X())$.M_(j,!1)}L=$.Be(j,P);for(var J=0;Je||Math.max(Math.round(h.d/$),Math.round(h.v/$))>3e4)$++; -if($!=1&&!window.confirm("Your image is quite large ("+h.d+" x "+h.v+" px).\n"+"Press OK to scale it down "+$+"x, or Cancel to keep the size."))$=1; -return $};cj.Be=function(h,e){var $=[],Z=cj;for(var c=0;c3e4&&a.d<=3e4||P.v>3e4&&a.v<=3e4){alert("Re-arranging artboards"); -for(var c=0;c1&&n.image!=null)m=!0}if(L.shouldBreakMaskChain){while(a.length!=0)P.eA(a.pop(),e)}if(Y){y.add.lsct=L.layerListExpandedType==2?hJ.sE:hJ.Y7; -y.oG="pass";y.GO=24;y.QL(L.isVisible);e.t.push(e.d_());if(S=="artboard"){var u=H.clone(),K=J.rD();u.x=-Math.floor(J.zq/K); -u.y=-Math.floor(J.nL/K);u.d=Math.floor(u.d/K);u.v=Math.floor(u.v/K);y.$O(u);var F=L.backgroundColor,b=F?{h:255*F.red,l:255*F.green,O:255*F.blue}:{h:255,l:255,O:255}; -y.add.artb.Clr={t:"Objc",v:s.Y.lp(b)};y.add.artb.artboardBackgroundType={t:"long",v:4}}P.P7(L.layers,e,J,Z,c,q,E)}else if(N&&!m){y.add.vmsk=new o.MM; -y.add.vstk=JSON.parse(JSON.stringify(c3.oF.default));y.add.vstk.strokeEnabled.v=!1;y.add.vogk=[];var d=Q!=null&&Q.frameFXMulti.v.length==1,W=_?_.fills:null,A=_?P.uV(Z,W,H,J,y.getName(),e,P.lC(E,L.do_objectID+"_image")):[]; -if(A.length==0){if(d)y.add.vstk.fillEnabled.v=!1;else y.add.iOpa=0;y.add.SoCo={classID:"null",Clr:{t:"Objc",v:s.Y.lp({h:0,l:0,O:0})}}}else{var z=A[0],T=null,R=null; -if(z.type=="SoFi"){T="SoCo";R=c3.O7}if(z.type=="GrFl"){T="GdFl";R=c3.bv}if(z.type=="patternFill"){T="PtFl"; -R=c3.Tk}if(T!=null){y.add[T]={classID:"null"};for(var G=0;G0)bP/=2;var fz=ga.v.Fltr.v; -fz.Brgh.v=Math.round(eB*255);fz.Cntr.v=Math.round(bP*255);fz.useLegacy.v=!0;W.push(ga)}}}if(m){var ca=d3.patternFillType; -if(ca==3){var gf=y.rect.d/y.rect.v,bb=H.d/H.v;if(gfe1.length){ch[ch.length-2]--; -f2--;if(ch[ch.length-2]==0){ch.pop();ch.pop()}}ch[ch.length-2]+=e1.length-f2}e1=e1.replace(/\u2028/g,"\n"); -e1=e1.replace(/\u2029/g,"\n");e1=e1.replace(/\r/g,"\n");var a3=y.add.TySh.Kx;gK.Ja(a3,0,e1);if(e1!=""){var bm=L.textBehaviour,h2=_.textStyle,ag=h2?h2.verticalAlignment:0,eU=P.a4I(a3,ch,hE,e1),K=dV.rD(),iz=gK.hT(a3,0,1),fa=0; -if(iz.By.Font){var d2=iz.Kr[iz.By.Font].Name;if(d2=="FontAwesome"||d2=="Ionicons")eU*=.87}var gP=iz.By.AutoLeading?0:iz.By.Leading*.6,eI=Math.max(eU,gP)*K,it=H.d,ic=H.v; -if(bm==0){gK.gq(a3,0);var iK=gK.Ge(iz.Bp);if(iK==1)fa=it*K;if(iK==2)fa=it*K*.5;if(ag==0)eI*=1;else eI*=.9}else{gK.gq(a3,1); -gK.IE(a3,[0,0,Math.round(it),Math.round(ic)]);if(bm==2&&ag==0)eI=eI*.2;else if(bm==2&&ag==1){eI=K*.5*(ic-iz.By.FontSize)}else if(bm==1&&ag==0)eI=eI*.2; -else eI=eI*.35}y.add.TySh.J.translate(fa,eI)}}else if(S=="symbolInstance"||S=="symbolMaster"){var fA=L.symbolID; -if(q[L.do_objectID])fA=q[L.do_objectID].symbolID;var iB=P.lC(E,L.do_objectID+"_symbolID");if(iB)fA=iB.value; -if(fA=="")continue;var hG={};for(var I in q)hG[I]=q[I];if(L.overrides)for(var I in L.overrides)hG[I]=L.overrides[I]; -var dt=E.slice(0);if(L.overrideValues)dt=dt.concat(L.overrideValues);var gO=c[fA];if(gO==null){console.log("Unknown master master",L.symbolID); -continue}var cX=cj.RQ(gO.Hp.frame),bh=cX.d/H.d,bi=cX.v/H.v,dM=J.clone();dM.scale(bh,bi);y.add.lsct=hJ.Y7; -y.oG="pass";y.GO=24;y.QL(L.isVisible);e.t.push(e.d_());var ik=gO.Hp;if(e.nn.indexOf(ik)==-1){e.nn.push(ik); -P.P7(ik.layers,e,dM,Z,c,hG,dt);e.nn.pop()}}else if(S=="slice"){console.log("slice layers are ignored by now"); -continue}else{console.log("unknown layer type: "+S,L);continue}if(_&&_.contextSettings){var iW=_.contextSettings,et=iW.blendMode; -if(et1){a.push(y);e.t.push(e.d_())}}while(a.length!=0)P.eA(a.pop(),e)};cj.lC=function(h,e){for(var G=0; -G127){c+=128*(h[$]-1);$++;if(h[$-1]>127){c+=128*(h[$]-1);$++}}var q=h[$];$++;Z.push(c,q)}return Z}; -cj.a4I=function(h,e,$,Z){var c=cj,q=0,L=0,H=0;for(var G=0;GZ.length/2;for(var G=0;G0; -var u=S.NSStrikethrough;if(u==null)u=S.strikethroughStyle;if(u!=null)N.By.Strikethrough=u>0;if(S.MSAttributedStringTextTransformAttribute==1)N.By.FontCaps=2; -var K=S.NSParagraphStyle;if(K==null)K=S.paragraphStyle;if(K){var F=K.paragraphSpacing;if(F!=null){N.Bp.SpaceAfter=F}var b=K.NSAlignment; -if(b==null)b=K.alignment;if(b!=null){var d=0;if(!1){}else if(b==1)d=1;else if(b==2)d=2;else if(b==4)d=0; -else{d=b;console.log("unknown align",b)}if(j&&d<2)d=1-d;N.Bp.Justification=d}var W=K.NSMinLineHeight; -if(W==null)W=K.minimumLineHeight;if(W!=null){N.By.AutoLeading=!1;N.By.Leading=W}}N.Bp._Direction=j?1:0; -gK.sq(h,L,L+_,N);L+=_}return H};cj.a5_=function(h,e,$,Z,c,q,E){var P=cj,a=JSON.parse(c3.default),j=!1; -for(var G=0;G1e6; -if(Q.type!="text"&&!n){if(m){var L=E.eb(Q.transform);L.vy();var u=H.clone();u.concat(L);_.add.vmsk=new o.MM; -_.add.vmsk.b=E.zu(m);u=u.clone();u.vy();s.W.wD(_.add.vmsk.b,u);_.ZB(e)}}else if(!n)alert("Clipping by text has been ignored")}_.add.lsct=hJ.sE; -_.oG="pass";_.GO=24;if(h.visible!=null)_.QL(h.visible);e.t.push(e.d_());var K=a.children,F=Y;if(F)F=F.color; -if(F)F=F.value;if(Y){if(P=="artboard"&&U=="solid"){_.$O(new O(0,0,10,10));_.add.artb.Clr={t:"Objc",v:s.Y.lp({h:F.r,l:F.g,O:F.b})}; -_.add.artb.artboardBackgroundType={t:"long",v:4}}else{var b=e.by();b.aq("BACKGROUND");b.GO|=16;b.add.vstk=JSON.parse(JSON.stringify(c3.oF.default)); -b.add.vmsk=new o.MM;b.add.vmsk.b=E.zu({type:"rect",x:q.x,y:q.y,width:q.d,height:q.v});E.Tn(Y,U,H,q,q,b,e,Z,c); -b.ZB(e);e.t.push(b)}}for(var G=0;G>>16&255)/255,(dq>>>8&255)/255,(dq>>>0&255)/255]}}gK.sq(fz,dV,dV+ch,gf); -dV+=ch}if(bP.type=="area"||bP.type=="autoHeight"){var f2=bP.width,a3=bP.height;gK.gq(fz,1);gK.IE(fz,[0,0,f2,a3!=null?a3:f2*2])}}else console.log(P,h); -e.t.push(_)};fQ.zu=function(h){var e=h.type,$=[{type:6},{type:8,all:0}];if(e=="rect"){var Z=h.r,c=h.x,q=h.y,E=h.width,P=h.height; -if(Z==null)$=s.W.d5.Rect(c,q,E,P,0);else $=$.concat([{type:0,aN:1,length:8,Bs:0,W7:0,pg:1}]).concat(s.W.PW([c,q,c+E,q,c+E,q+P,c,q+P],Z,!1))}else if(e=="circle"){var Z=h.r; -$=s.W.d5.eX(h.cx-Z,h.cy-Z,2*Z,2*Z)}else if(e=="ellipse"){var a=h.rx,j=h.ry;$=s.W.d5.eX(h.cx-a,h.cy-j,2*a,2*j)}else if(e=="path"||e=="compound"){var L=Typr.U.SVGToPath(h.path); -$=s.a.b0({Z:L.cmds,H:L.crds},!1)}else if(e=="line"){var H=h.x1,_=h.x2,J=h.y1,S=h.y2;$=$.concat([{type:0,aN:1,length:2,Bs:0,W7:0,pg:1}]).concat(s.W.PW([H,J,_,S],0,!0))}else if(e=="polygon"){var N=h.points,Y=[]; -for(var G=0;G8192)J*=.5;e.ms=!0;e.d=~~(a.d*J);e.v=~~(a.v*J);e.buffer=s.m(e.d*e.v*4); -var S=new i7(J,0,0,J,-a.x*J,-a.y*J),N={R_:a0.VP(P),ac4:E};a0.BE(q,P.children,e,S,N,new i7,0);if(e.t.length==0){var Y=e.by(); -Y.aq("Layer");e.t.push(Y)}};a0.GA=function(h){var e=" ";if(h.indexOf(",")!=-1)e=",";return h.split(e).map(parseFloat)}; -a0.BE=function(h,e,$,Z,c,q,E){var P=a0,a=["display","opacity","fill-opacity"];for(var j=0;j0){if(H=="text")q=P.go(L,q); -var z=L.getAttribute("viewBox"),T=L.getAttribute("width"),R=L.getAttribute("height");if(z&&T&&R){var I=a0.GA(z),r=P.go(L),x=new i7; -x.translate(-I[0],-I[1]);x.scale(parseFloat(T)/I[2],parseFloat(R)/I[3]);x.translate(r.zq,r.nL);x.concat(Y); -Y=x}var X=L.children.length,l=c.R_;c.R_=J;var hH=H!="text"&&H!="textPath"||X>1;if(hH){var hZ=M.o6(); -M.add.lsct=E<2&&hZ&&(_==null||!_.endsWith(":::"))?hJ.sE:hJ.Y7;M.oG="pass";M.GO=24;M.QL(hZ);$.t.push($.d_())}P.BE(h,L.children,$,Y,c,q,E+1); -if(hH)$.t.push(M);else{var gj=$.t[$.t.length-1];gj.opacity=M.opacity;gj.oG=M.oG}c.R_=l}else if(H=="use"){var x=P.go(L); -x.concat(Y);var hO=P.Zv(L),d3=h.getElementById(hO.slice(1)),l=c.R_;c.R_=J;P.BE(h,[d3],$,x,c,q,E+1);c.R_=l}else if(H=="path"||H=="rect"||H=="circle"||H=="ellipse"||H=="polygon"||H=="polyline"||H=="line"){M.GO|=16; -M.add.vmsk=new o.MM;M.add.vstk=JSON.parse(JSON.stringify(c3.oF.default));M.add.vstk.strokeEnabled.v=!1; -var v=M.add.vstk,F=M.add.vmsk;F.b=P.zu(h,L,J["fill-rule"]=="evenodd");s.W.wD(F.b,Y);var hl=s.W.v4(F.b),ht=J.stroke,ga=J["stroke-width"],eB=J["stroke-dasharray"],bP=J.fill,ek=J["stroke-linejoin"],b_=J["stroke-linecap"],fz=J["paint-order"]; -if(ht==null||ht=="none"||ht=="null"){}else{var ca=P.pz(h,ht,Y,hl),gf=["SoFi","GrFl","patternFill"].indexOf(ca.type),bb=ca.G.v.Opct.v,ch=1; -if(bb.val!=100){M.opacity=Math.round(M.opacity*bb.val/100);bb.val=100}var b2=[c3.O7,c3.bv,c3.Tk][gf],dV=v.strokeStyleContent.v={classID:c3.oF.$v[gf]}; -for(var G=0;G0){var dq=P.VP(L.children[0],c.ac4);for(var S in dq)if(a.indexOf(S)==-1)J[S]=dq[S]}var f2=J["xml:space"],a3=L.textContent; -if(f2=="preserve")a3=a3.replace(/\t/g," ").replace(/\n/g," ");if(_==null)M.aq(a3);M.add.lnsr="rend"; -M.add.TySh=gK.Zh(0,0);M.add.TySh._P=new O(0,0,100,100);M.add.TySh.J=x.clone();var bm=M.add.TySh.Kx;gK.Ja(bm,0,a3); -var bP=J.fill,h2=J["font-weight"],ag=J["font-family"],eU=J["text-decoration"],ht=J.stroke,ga=J["stroke-width"],iz=J["dominant-baseline"]; -if(iz=="text-before-edge")d2=N;else if(iz=="middle")d2=N/2;else if(iz=="hanging")d2=N;if(d2!=0)M.add.TySh.J.translate(0,d2); -var gP=gK.hT(bm,0,1);if(bP&&bP!="none"){var fa=CSS._w(bP);gP.By.FillColor={Type:1,Values:[1,fa.h/255,fa.l/255,fa.O/255]}}if(eU=="underline")gP.By.Underline=!0; -gP.By.FontSize=Math.round(N);gK.P0(gP,"LiberationSans");if(h2=="bold")gK.P0(gP,"LiberationSans-Bold"); -if(ag){ag=ag.split(",")[0].trim();if(ag[0]=="\"")ag=ag.slice(1);if(ag[ag.length-1]=="\"")ag=ag.slice(0,ag.length-1); -var eI=ag+":"+(h2?h2:"normal"),it={"'DejaVu Sans':normal":"DejaVuSans","'DejaVu Sans':bold":"DejaVuSans-Bold","'Nimbus Sans L':normal":"NimbusSanL-Reg","'Nimbus Sans L':bold":"NimbusSanL-Bol","Libre Franklin:300":"LibreFranklin-Light","Libre Franklin:400":"LibreFranklin-Regular","Libre Franklin:500":"LibreFranklin-Medium","Libre Franklin:600":"LibreFranklin-SemiBold","Libre Franklin:700":"LibreFranklin-Bold"}; -if(it[eI])gK.P0(gP,it[eI]);else gK.P0(gP,ag)}if(J["text-anchor"])gP.Bp.Justification=["start","end","middle"].indexOf(J["text-anchor"]); -gK.sq(bm,0,a3.length,gP);if(ht==null||ht=="none"){}else{var ic=JSON.parse(c3.kD[c3.order.indexOf("FrFX")]); -ic.Clr.v=s.Y.lp(CSS._w(ht));ic.Sz.v.val=Math.round(parseFloat(ga)*f.o.rD(x));var iK=JSON.parse(c3.default); -for(var G=0;G"); -var P={CV:[],qM:[],l$:0,vh:0,PL:0,Kj:{},wz:{},dD:0,Mp:{},hR:{},fl:0,R0:[]};a0.ZX(h,P,h.root.children,1,e,$); -if(P.CV.length!=0){Z.push(c.za(1)+"");Z=Z.concat(P.CV);Z.push(c.za(1)+"")}Z.push(c.za(1)+"");Z=Z.concat(P.qM);Z.push("");Z=Z.join(e.a4s?"\n":"");var j=s.m(Math.round(Z.length*1.5)),L=k.Gn(Z,j,0); -if(c.t7){console.log(c.t7);var H="SVGParser.gen.db = [\n";for(var G=0;G"); -e.CV.push(E.za(3)+"");e.CV.push(E.za(2)+"")}if(J.length!=0)U.push("style=\""+J.join(";")+"\""); -e.qM.push(E.za(Z)+"");E.ZX(h,e,i,Z+1,c,q);e.qM.push(E.za(Z)+"")}}else if(a.SV()&&L==null){var u=new O(0,0,h.d,h.v); -E.NZ(J,a.add,e,u);if(J.length!=0)U.push("style=\""+J.join(";")+"\"");e.qM.push(E.za(Z)+"")}else if(L){var u=s.W.v4(L.b),Q=s.W.dG(L.b); -if(Q.lD!=0){U.push("fill-rule=\"evenodd\"")}var K=Q.ahD;E.NZ(J,a.add,e,u);if(J.length!=0){var F=J.join(";"),b=e.hR[F]; -if(b==null){b="shp"+e.fl;e.fl++;e.hR[F]=b;e.Mp[b]=F}g.push(b)}e.qM.push(E.za(Z)+""); -if(E.t7&&E.t7[E.t7.length-1]){var d=s.a.$o(L.b);d.H=d.H.map(Math.round);var W=E.t7[E.t7.length-1];W.NX+=JSON.stringify(d).length; -W.v9.push([J[0].split("#").pop(),d])}}else if(_&&c.a6Q){var A=_.Kx,z=new br(A,q);if(y)U.push("fill=\""+CSS.PU(y.Clr.v)+"\""); -var T=cg.VL(z,_),R=s.a.G9(T);for(var I in R){if(y==null)U.push("fill=\""+I+"\"");var n=R[I],K=Typr.U.pathToSVG({crds:n.H,cmds:n.Z},2); -e.qM.push(E.za(Z)+"");if(y==null)U.pop()}}else if(_&&!c.anc){var A=_.Kx,r=_.J.clone(),ht=0,ga=0; -if(gK.De(A)==1){var x=gK.hT(A,0,0).Bp.Justification,X=0,hH=gK.r1(A)[2];if(x==2)X=hH/2;if(x==1)X=hH;r.translate(X,0)}J.push("transform: "+E.uC(r)); -var hZ=gK.N8(A),gj=A.EngineDict.ParagraphRun,hO=gj.RunArray,d3=gj.RunLengthArray;if(J.length!=0)U.push("style=\""+J.join(";")+"\""); -e.qM.push(E.za(Z)+"");var v=a.add.lmfx;if(v)v=v.frameFXMulti.v[0];if(v)v=v.v;var hl=y?CSS.PU(y.Clr.v):null; -for(var G=0;G"+E.zm(ek)+"")}ht+=bP}e.qM.push(E.za(Z)+"")}else if(a.add.SoLd&&c.Dy){var dV=a.add.SoLd,ch=dV.Idnt.v,hE=0,dS=dV.Crop?dV.Crop.v:null; -if(e.wz[ch]!=null)hE=e.wz[ch];else{e.dD++;hE=e.dD;e.wz[ch]=e.dD;var e1=h.Cv(ch,dS),f2="";if(e1==null)return; -var eG=e1.bH,dq=cE.B3(e1.raw.buffer);if(dq=="pdf"){var a3=new c9("h");cE.fy("PDF").Cj(e1.raw.buffer,a3); -a3.Nq();a3.pL();a3.s();a3.cm();if(dV.Crop&&dV.Crop.v==1){f.u4.Hx(a3,a3.root._A(a3,!0))}var bm=cE.fy("SVG").pT(a3,a3.d,a3.v,null,{R0:q}); -f2="data:image/svg+xml;base64,"+cE.oq(bm)}else if(dq=="jpg"||dq=="png"||dq=="gif"||dq=="svg"){var h2={jpg:"image/jpg",png:"image/png",jpg:"image/jpg",svg:"image/svg+xml"}; -f2="data:"+h2[dq]+";base64,"+cE.oq(e1.raw.buffer)}else{f2=cE.Me(eG[0].buffer,eG[1].d,eG[1].v)}e.CV.push(E.za(2)+"")}var ag=s.I.co(dV); -if(J.length!=0)U.push("style=\""+J.join(";")+"\"");var eU=E.hq(U,g);e.qM.push(E.za(Z)+"")}else if(!a.rect.nK()&&(c.Dy||_)){if(J.length!=0)U.push("style=\""+J.join(";")+"\""); -var eU=E.hq(U,g),iz=a.buffer;if(y)iz=hn.Qo(iz,y,a.rect);var d2=a.rect;e.dD++;var f2=cE.Me(iz.buffer,d2.d,d2.v,"png",null,!0); -e.CV.push(E.za(2)+""); -e.qM.push(E.za(Z)+"")}}};a0.hq=function(h,e){if(e.length!=0)h.push("class=\""+e.join(" ")+"\""); -return h.join(" ")};a0.zm=function(h){return String(h).replace(/&/g,"&").replace(//g,">").replace(/\u0022/g,""")}; -a0.uC=function(h){var e=[h.R,h.O,h.Ma,h.rU,h.zq,h.nL].map(a0.$0);return"matrix("+e.join(",")+")"};a0.NZ=function(h,e,$,Z){var c=a0,q=e.vstk,E=e.vmsk,P=e.lmfx; -if(E&&E.gE!=0){var a=c.$0(E.gE);if($.Kj[a]==null){$.vh++;$.Kj[a]=$.vh;$.CV.push(c.za(2)+" ")}h.push("filter: url(#flt"+$.Kj[a]+")")}var j=hn.Ef(P,e),L=j[0],H=j[1]; -if(q&&!q.fillEnabled.v)h.push("fill: none");else if(L){var _=CSS.PU(L.Clr.v);h.push("fill: "+_)}else if(H){c.Cd(H,$,Z); -h.push("fill: url(#grd"+$.l$+")")}if(q==null||!q.strokeEnabled.v)q=hn.tX(P);if(q&&q.strokeEnabled.v){var J=q.strokeStyleContent.v,S=J.classID; -if(S=="solidColorLayer")h.push("stroke: "+CSS.PU(J.Clr.v));else{c.Cd(J,$,Z);h.push("stroke: url(#grd"+$.l$+")")}var N=c3.oF.kS.indexOf(q.strokeStyleLineCapType.v.strokeStyleLineCapType),Y=c3.oF.join.indexOf(q.strokeStyleLineJoinType.v.strokeStyleLineJoinType),U=q.strokeStyleOpacity.v.val/100,g=q.strokeStyleLineWidth.v.val,M=c3.oF.ws.indexOf(q.strokeStyleLineAlignment.v.strokeStyleLineAlignment); -if(M==2){g*=2;h.push("paint-order:stroke fill markers")}var C=q.strokeStyleLineDashSet.v,y=[];for(var G=0; -G"); -if(a==1)e.CV.push(H+" cx=\""+Z.$0(L[0].x)+"\" cy=\""+Z.$0(L[0].y)+"\" r=\""+Z.$0(eu.nj(L[0],L[1]))+"\">"); -var _=h.Rvrs.v;if(_){q.reverse();E.reverse()}for(var G=0;G")}e.CV.push(Z.za(2)+"")}; -a0.d5=function(h,e,$,Z,c){var q=[],E=a0.d5,P=!1,a={EN:h,CD:e,mc:[!0,!0,!0],rn:!1,ZW:$,ad7:0};a.bQ=Math.round(Math.max(h,e)*(.02+E.Dg(a)*.03)); -a.a0=E.aaa(a);a.fL=E.aeJ(a.a0,(E.Dg(a)<.5?-1:1)*(.2+E.Dg(a)*.3));if(E.Dg(a)<.5){var j=a.a0;a.a0=a.fL; -a.fL=j}a.a4S=E.Dg(a)<.4&&E.a0y(a.fL,{h:1,l:1,O:1})>.3;a.age=E.Dg(a)<.5?0:1;q.push(""); -a.z$=Z[Math.floor(E.J_(a)*Z.length)];a.wp=Z[Math.floor(E.J_(a)*Z.length)];q.push(""); -var L=[0,0,h,e],H=L;if(c==null)q.push(""); -else{a.rn=!0;E.FP(a,L,q,c)}if(E.Dg(a)<.25&&!a.rn){a.mc[0]=a.mc[2]=!1;E.a34(L,a,q);H=L}else if(E.Dg(a)<.25||a.rn)H=L; -else{var _=.52+E.Dg(a)*.2;if(E.Dg(a)<.5)_=1-_;var J=L.slice(0),S=L.slice(0);if(E.Dg(a)<.5)J[2]=S[0]=Math.round(_*h); -else J[3]=S[1]=Math.round(_*e);if(E.Dg(a)<.5){var j=J;J=S;S=j}H=J;E.alD(a,S,q,c)}E.a5$(a,H,q);q.push(""); -q=q.join("\n");var N=s.m(Math.round(q.length*1.5)),Y=k.Gn(q,N,0);return[N.buffer.slice(0,Y),a.bj]};a0.d5.a34=function(h,e,$){var Z=a0.d5,c=h[2]-h[0],q=h[3]-h[1]; -if(Z.Dg(e)<.5){$.push("")}else if(Z.Dg(e)<-.4){Z.agw(e,h,$)}else{var E=Z.Dg(e)<.5?0:1,P=(E==0?q:c)/4,a=Z.oU(e,E,h,$,P,!0),a=Z.oU(e,E+2,h,$,P,!0,a)}}; -a0.d5.a5$=function(h,e,$){var Z=a0.d5,c="Hello World!-What a beautiful day.-What Is Love?-Baby, don't hurt me.-Is This a Real Life?-Is this a fantasy?-Wake Me Up!-Before you go go.-I Saw The Sign.-And it opened up my mind!".split("-"),q=2*Math.floor(Z.Dg(h)*c.length/2),E=e[2]-e[0],P=e[3]-e[1],j=0,H=0; -h.nC=(h.EN+E)*.5*(.04+Z.Dg(h)*.05);h.nC=Math.min(h.nC,P*.4,E*.12);h.nC=Math.round(h.nC);var a=Math.min(h.nC*c[q].length*(.35+.3*Z.Dg(h)),E*.9),L=(e[1]+e[3])/2,_=s.GE(h.a0)<.85?{h:1,l:1,O:1}:{h:.1,l:.1,O:.1}; -if(Z.Dg(h)<.25&&h.mc[0]){H=0;j=e[0]+h.bQ}else if(Z.Dg(h)<.33&&h.mc[2]){H=2;j=e[2]-h.bQ}else{H=1;j=(e[0]+e[2])/2}var J=_.h==1?"0,0,0":"255,255,255",S=h.rn&&Z.Dg(h)<1; -if(S){var N=e[0],Y=E,U=L-h.nC*1.1,g=h.nC*2.2,M=.7;if(H==1&&Z.Dg(h)<.5){N=U=.2*Math.min(E,P);Y=E-2*U; -g=P-U-U}else if(Z.Dg(h)<.7){N=U=0;Y=E;g=P;M=.25}$.push("")}if(Z.Dg(h)<.4){var C=h.nC*.07; -C*=1.5+Z.Dg(h)*1;if(H==-1&&E/P<3&&!S){$.push(""); -$.push("")}if(H!=1){$.push(""); -j+=(H==0?1:-1)*h.nC/3}}var y=h.nC*.4;$.push(Z.qX(c[q+1],j,L+y*1.6,y,_,H,h.wp));$.push(Z.qX(c[q],j,L+h.nC*.04,h.nC,_,H,h.z$))}; -a0.d5.alD=function(h,e,$,Z){var c=e[2]-e[0],q=e[3]-e[1],E=Math.max(c,q),P=Math.min(c,q),a=a0.d5;if(E/P<5&&!h.rn&&!1){a.FP(h,e,$,Z)}else if(a.Dg(h)<0)$.push(""); -else{var j=0;if(e[3]!=h.CD)j=0;if(e[2]!=h.EN)j=3;if(e[0]!=0)j=1;if(e[1]!=0)j=2;var L=j+2&3;if(E/P<3){var H=a.a2x(L),_=H[Math.round(a.Dg(h)*(H.length-1))],J=_.A3.slice(0,4),S=J.indexOf(1); -_=JSON.parse(JSON.stringify(_));var N=-1;if(J!="0000"){var Y=new i7;if(_.A3[5]=="0"){if(S==3&&j==1){N=1; -Y.scale(-1,1)}else N=S}else{var U=L;while(U==L)U=Math.floor(a.Dg(h)*4)&3;Y.rotate((-S+U)*Math.PI/2)}a.J(_,Y)}var g=a.Be(_),M=c-2*h.bQ,C=q-2*h.bQ; -if(N!=-1){if((N&1)==0)C-=h.bQ;else M-=h.bQ}var y=Math.min(M/g.d,C/g.v),i=new i7;i.translate(-g.x,-g.y); -i.scale(y,y);var Q=(c-g.d*y)/2,m=(q-g.v*y)/2;if(N!=-1){if(N==3)Q=0;if(N==0)m=0;if(N==1)Q=c-g.d*y;if(N==2)m=q-g.v*y}i.translate(e[0]+Q,e[1]+m); -a.vA(h,_,i,h.fL,$)}else{a.oU(h,j,e,$,1e9)}}};a0.d5.FP=function(h,e,$,Z){var c=e[2]-e[0],q=e[3]-e[1],E=Math.max(c,q),P=Math.min(c,q),a=a0.d5,j=a.J_(h),L,H,_,J=Z[0]instanceof ArrayBuffer; -if(J){L="data:image/jpg;base64,"+co.vo(Z[0]);H=Z[1];_=Z[2]}else{var S=Math.floor(j*Z.length),N=Z[S]; -h.bj=N;L=N.webformatURL;H=N.webformatWidth;_=N.webformatHeight}var Y=e[0],U=e[1],g=c,M=q;if(c/q>H/_){M=g*_/H; -U=U-(M-q)/2}else{g=M*H/_;Y=Y-(g-c)/2}if(J){$.push("");$.push(""); -$.push("");var C=g/H;$.push("")}else{var y="cp"+Math.random(); -$.push("");$.push(""); -$.push("");$.push("")}}; -a0.d5.qX=function(h,e,$,Z,c,q,E){var P=a0.d5;return""+h+""}; -a0.d5.vA=function(h,e,$,Z,c){var q=a0.d5,E=[];for(var G=0;G"); -for(var G=0;G")}c.push("")}; -a0.d5.agw=function(h,e,$){var Z=a0.d5,c=a0.d5.Oe,q=[];for(var G=0;G0){U.v+=U.y; -U.y=0}if((e&1)==0){M=N;g=Y}else{g=N;M=Y}var C=Math.min(Math.min(.5+.5*a.Dg(h))*Math.min(Y,N),c)/U.v,y=Math.ceil(g/(1e3*C)),i=new i7,Q=new i7; -Q.scale(C,C);if(e==0||e==2){Q.translate(-(Y/2),-(N/2));Q.rotate(-e*Math.PI/2);Q.translate(Y/2+$[0],N/2+$[1])}else{Q.rotate(Math.PI/2); -Q.scale(1,-1);Q.translate($[0],$[1]);if(e==1){Q.scale(-1,1);Q.translate(Y,0)}}Z.push(""); -for(var G=0;G"); -return J};a0.d5.Rect=function(h,e,$,Z){return Typr.U.pathToSVG({crds:[h,e,h+$,e,h+$,e+Z,h,e+Z],cmds:["M","L","L","L","Z"]})}; -a0.d5.ahh=function(h,e,$,Z,c){var q=[h,e,h+$,e,h+$,e+Z,h,e+Z];h+=c;e+=c;$-=2*c;Z-=2*c;q.push(h,e,h,e+Z,h+$,e+Z,h+$,e); -return Typr.U.pathToSVG({crds:q,cmds:"M L L L Z M L L L Z".split(" ")})};a0.d5.aeJ=function(h,e){var $=s.fe(h.h,h.l,h.O); -$.a9=Math.max(.1,Math.min(.9,$.a9+e));return s.lR($.CD,$.Zp,$.a9)};a0.d5.aeC=function(h,e){var $=s.fe(h.h,h.l,h.O); -$.CD+=e;return s.lR($.CD,$.Zp,$.a9)};a0.d5.amc=function(h){var e=s.fe(h.h,h.l,h.O);e.a9=1-e.a9;return s.lR(e.CD,e.Zp,e.a9)}; -a0.d5.a0y=function(h,e){var $=h.h-e.h,Z=h.l-e.l,c=h.O-e.O;return Math.sqrt($*$+Z*Z+c*c)};a0.d5.aaa=function(h){var e=a0.d5; -return{h:e.Dg(h),l:e.Dg(h),O:e.Dg(h)}};a0.d5.Fv=function(h){return CSS.iP({h:h.h*255,l:h.l*255,O:h.O*255})}; -a0.d5.Be=function(h){var e=h.v9,$=new O;for(var G=0;G>>8*e&255;return $*(.99999999/255)};a0.d5.J_=function(h){var e=a0.d5.Ms(h.ZW); -h.ZW=a0.d5.Ms(e);return e*(1/4294967295)};a0.d5.Ms=function(h){h=(h^61^h>>>16)>>>0;h=h+(h<<3)>>>0;h=(h^h>>>4)>>>0; -h=h*668265261>>>0;h=(h^h>>>15)>>>0;return h};a0.d5.Oe=[{A3:"0001-0-bird",v9:[["4b3c34",{Z:"M C L C C L Z M C C L C C L Z M C L C L Z M C L C C L Z".split(" "),H:[208,16,253,5,247,86,228,104,218,108,253,60,235,12,211,18,210,18,209,17,208,16,208,16,187,140,238,125,326,133,319,189,318,198,307,210,299,207,297,205,307,208,316,195,317,188,320,126,208,137,174,149,187,140,137,75,156,79,177,94,164,157,173,147,177,101,165,79,142,75,137,75,368,59,165,59,182,233,0,210,0,225,161,250,194,61,364,63,367,61,368,59,368,59,368,59]}],["3c7040",{Z:"M C C C C C L Z M C C C C L Z M C C C C L Z M C C C C L Z M C C C C C L Z M C C C C L Z M C C C C Z".split(" "),H:[345,123,324,113,331,70,284,80,287,79,310,89,314,103,314,104,306,90,284,82,281,81,270,85,268,86,274,117,335,119,345,123,345,123,270,0,283,29,282,58,244,66,258,62,265,40,269,27,265,37,256,56,249,58,242,31,263,18,270,0,270,0,89,100,81,136,47,182,101,196,90,189,92,157,91,145,94,160,93,191,109,195,148,158,96,129,89,100,89,100,230,187,201,240,160,226,133,198,150,191,172,197,187,198,166,193,153,190,134,193,159,162,207,194,230,187,230,187,126,177,131,159,129,150,119,139,122,122,145,112,147,97,166,128,164,155,134,168,139,154,146,142,145,131,143,145,133,159,126,177,126,177,209,86,195,86,166,91,173,109,177,102,181,97,191,96,180,99,174,113,175,113,194,114,200,96,209,86,209,86,278,175,254,167,235,168,231,143,245,143,248,151,256,158,252,147,243,144,240,142,276,147,265,171,278,175]}],["b588c1",{Z:"M C C C C C C C C C C C C L Z".split(" "),H:[189,40,188,42,186,44,184,47,184,52,183,55,181,59,175,70,160,78,147,79,142,79,131,78,127,75,118,74,95,71,93,70,89,70,88,70,69,72,74,66,82,68,93,65,78,64,83,62,95,59,128,50,128,33,155,29,162,16,180,13,189,31,193,31,196,34,198,37,197,37,193,39,189,40,189,40]}]]},{A3:"0001-0-bird2",v9:[["ff7f2a",{Z:"M L L L Z M L L L Z".split(" "),H:[296,0,296,62,335,62,296,0,357,0,357,62,318,62,357,0]}],["b588c1",{Z:"M C C C C C C C C C C C L Z".split(" "),H:[321,48,344,48,379,67,396,121,408,176,396,230,337,255,303,265,265,268,217,235,191,217,170,188,186,180,195,177,199,187,205,192,203,185,199,178,207,172,217,165,224,178,225,182,227,196,231,203,250,206,273,205,290,196,292,165,289,133,269,118,268,101,267,77,288,49,321,48,321,48]}],["74439e",{Z:"M C C C C C C L Z M C C Z".split(" "),H:[337,187,329,202,317,204,304,204,293,204,284,205,293,224,286,216,278,209,268,214,257,220,262,237,269,243,284,258,310,256,323,243,337,227,339,208,337,187,337,187,340,77,310,78,287,81,315,96,269,83,309,75,340,77]}],["000000",{Z:"M L L L Z M L L L Z".split(" "),H:[326,258,334,315,323,316,326,258,298,262,296,318,286,317,298,262]}],["4b3c34",{Z:"M L C C C C C C C C L Z".split(" "),H:[0,272,0,336,63,296,119,296,175,320,205,330,229,339,278,338,322,337,354,322,405,325,443,329,482,332,501,377,501,366,502,348,474,328,464,320,440,312,384,309,296,309,300,333,186,293,118,264,54,250,0,272,0,272]}],["3c7040",{Z:"M C C C Z M C C C Z M C C C L Z M C C C L Z M C C C L Z M C C C Z".split(" "),H:[58,260,44,247,27,239,20,208,15,188,32,182,43,198,59,227,56,242,58,260,181,323,167,336,150,345,143,375,138,396,155,401,166,385,182,356,179,342,181,323,60,260,79,249,100,243,113,214,122,194,102,186,86,200,62,227,65,242,60,260,60,260,499,378,479,377,462,372,435,388,417,399,425,415,444,411,476,403,484,390,499,378,499,378,501,379,494,397,482,411,488,442,491,463,511,461,514,442,520,410,508,397,501,379,501,379,503,378,513,390,516,402,531,413,546,421,557,412,548,401,534,382,519,379,503,378]}]]},{A3:"0000-1-flower",v9:[["7a59a2",{Z:"M C C C C C C C Z M C C C C C C L Z M C C C C C C C L Z M C C C C C C L Z M C C C C C C C L Z M C C C C C C L Z M C C C C C C C L Z M C C C C C C L Z".split(" "),H:[468,470,411,473,371,480,351,495,332,509,322,536,325,581,325,601,328,621,325,637,346,634,371,638,397,637,427,636,456,626,465,611,478,596,485,553,489,490,477,489,470,483,468,470,445,563,435,583,425,591,415,590,401,588,401,572,410,549,388,558,375,557,369,546,366,533,374,524,390,517,416,506,441,498,465,495,463,519,455,542,445,563,445,563,489,450,486,392,480,352,465,332,451,313,425,302,380,305,360,305,340,307,324,304,327,324,322,350,323,376,323,406,332,435,347,444,362,457,405,465,468,470,469,458,476,451,489,450,489,450,395,424,376,415,368,405,369,394,371,380,387,380,410,390,402,368,403,355,414,349,427,346,436,355,443,370,454,397,460,422,463,446,439,443,417,435,395,424,395,424,508,470,566,468,606,462,626,447,645,433,656,407,654,362,654,342,652,322,655,306,634,309,609,304,583,305,553,305,524,314,514,329,501,344,493,387,488,449,500,451,507,457,508,470,508,470,534,377,544,357,554,350,564,351,578,353,578,369,568,392,590,384,604,385,609,396,612,409,603,418,588,425,561,435,536,442,512,445,515,421,523,399,534,377,534,377,488,490,492,547,499,587,514,607,528,626,554,636,600,633,619,632,640,630,656,633,652,612,656,587,655,560,655,531,645,502,629,493,614,480,571,473,508,469,507,481,501,488,488,490,488,490,582,513,602,523,610,533,609,543,607,557,591,557,568,548,577,570,576,583,565,589,552,592,542,584,535,568,524,542,517,517,514,493,538,495,560,503,582,513,582,513]}]]},{A3:"0000-1-flower",v9:[["d13777",{Z:"M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z".split(" "),H:[474,503,457,528,452,530,450,528,450,523,469,498,464,493,388,522,332,552,314,585,297,628,322,660,372,639,361,698,421,709,450,665,467,649,477,596,482,505,474,503,474,503,439,563,431,563,424,556,424,548,424,539,431,532,439,532,447,532,454,539,454,548,454,556,447,563,439,563,462,475,432,467,429,463,430,460,435,458,465,469,468,463,417,399,371,356,335,348,288,345,265,379,300,420,241,428,249,488,301,503,321,513,374,507,462,483,462,475,462,475,394,460,391,452,396,444,404,441,412,438,420,443,423,451,426,459,421,467,413,470,405,473,396,468,394,460,484,455,483,424,486,419,489,420,492,424,492,456,498,457,543,389,570,332,566,294,554,249,515,238,487,284,461,231,406,256,408,310,405,333,427,381,477,458,484,455,484,455,477,385,484,380,494,382,499,389,504,396,502,405,496,410,489,415,479,414,474,407,469,400,471,390,477,385,511,470,539,459,545,461,545,463,542,467,512,477,513,483,592,505,654,513,688,497,728,472,726,432,674,419,717,378,675,334,625,353,602,356,563,393,506,464,511,470,511,470,575,442,581,447,583,456,578,463,573,470,563,472,557,467,550,462,548,452,553,445,558,438,568,437,575,442,505,499,524,523,524,529,521,531,517,529,498,503,492,506,496,588,508,650,533,677,570,707,607,693,603,639,656,667,685,614,651,572,641,551,594,525,509,493,505,499,505,499,551,552,548,560,540,564,532,561,524,559,519,550,522,542,524,534,533,530,541,532,549,535,554,543,551,552]}]]},{A3:"0000-1-flower",v9:[["ffac42",{Z:"M C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C Z M C C C C Z".split(" "),H:[646,471,646,446,626,426,601,426,599,426,597,426,595,427,596,426,598,424,599,423,616,406,616,378,599,360,581,343,553,343,536,360,534,361,533,363,532,364,532,363,532,361,532,359,532,335,512,315,488,315,463,315,443,335,443,359,443,361,443,363,443,365,442,364,441,363,440,362,422,344,394,344,377,362,359,379,359,407,377,425,378,426,380,427,381,429,379,428,378,428,376,428,351,428,331,448,331,473,331,498,351,518,376,518,378,518,380,517,382,517,381,518,379,519,378,521,361,538,361,566,378,584,396,601,424,601,441,584,443,582,444,581,445,579,445,581,445,583,445,584,445,609,465,629,490,629,514,629,534,609,534,584,534,582,534,580,534,579,535,580,536,581,537,582,555,600,583,600,600,582,618,565,618,537,600,519,599,518,597,516,596,515,598,515,599,516,601,516,626,516,646,496,646,471,489,552,444,552,409,516,409,472,409,428,444,392,489,392,533,392,569,428,569,472,569,516,533,552,489,552]}]]},{A3:"0000-1-flower",v9:[["d04040",{Z:"M C C L L C C C C L L C C L L C C C C L C C C C L Z M C C C Z M C C C L Z M C C C L Z".split(" "),H:[691,424,690,369,680,330,660,303,634,320,601,361,568,406,568,406,568,327,578,326,585,317,585,306,585,294,576,284,564,284,552,284,542,294,542,306,542,317,550,326,560,327,560,406,559,406,540,359,522,311,501,291,475,319,453,360,433,407,431,406,431,327,441,326,448,317,448,306,448,294,439,284,427,284,415,284,405,294,405,306,405,317,412,326,423,327,423,404,390,363,360,326,341,308,296,401,299,489,360,567,396,613,443,639,500,638,624,636,694,524,692,424,691,424,389,543,370,514,379,498,399,504,439,518,470,564,488,613,455,600,414,580,389,543,481,480,488,445,505,441,515,459,533,497,524,552,501,599,487,567,472,523,481,480,481,480,624,523,610,563,565,595,515,613,528,580,548,538,585,514,614,494,629,503,624,523,624,523]}]]},{A3:"0000-1-flower",v9:[["ec7272",{Z:"M C C C C Z M C C C C Z M C C C C L Z M C C C C L Z M C C C C Z M C C C C L Z".split(" "),H:[447,475,452,450,452,438,437,423,422,407,407,412,390,383,398,418,421,415,433,434,445,453,446,474,447,475,495,446,520,439,529,433,535,412,542,390,529,380,546,351,520,376,533,394,523,414,513,434,495,445,495,446,545,473,564,490,574,495,595,490,617,485,620,469,653,468,619,459,610,479,587,480,565,482,546,472,545,473,545,473,549,533,543,558,543,569,559,585,574,601,589,596,606,624,597,590,575,592,563,573,551,555,550,534,549,533,549,533,504,562,480,570,470,575,464,596,458,618,470,628,454,657,479,632,466,614,476,594,486,575,504,563,504,562,459,536,440,519,430,513,409,518,387,524,384,539,351,540,385,549,394,529,417,528,439,527,457,536,459,536,459,536]}],["333333",{Z:"M C C C C C C C C C C C C L Z M C C C C C C C C C C C C L Z M C C C C C C C C C C C C L Z M C C C C C C C C C C C C L Z M C C C C C C C C C C C C L Z M C C C C C C C C C C C C L Z".split(" "),H:[534,455,584,415,579,358,577,335,574,315,585,304,585,304,585,304,568,308,561,312,554,316,520,333,500,363,479,392,493,437,486,456,479,476,452,485,452,485,452,485,471,474,475,454,479,434,460,402,482,365,505,328,565,292,597,294,612,295,591,298,587,316,583,333,593,373,584,404,574,440,533,456,534,455,534,455,559,506,619,530,666,497,685,483,701,471,716,475,716,475,716,475,704,463,697,459,690,454,657,434,622,431,587,428,554,462,534,465,513,469,492,451,492,451,492,451,511,461,530,455,549,448,568,416,611,417,654,418,716,452,730,481,737,495,724,478,706,483,689,489,660,516,628,524,592,534,558,506,559,506,559,506,524,552,534,615,586,640,607,649,625,657,629,672,629,672,629,672,634,655,634,647,634,639,636,601,621,569,606,537,560,525,547,509,534,494,539,466,539,466,539,466,539,488,554,501,569,514,607,514,627,552,648,590,650,660,632,687,623,700,631,680,617,667,605,656,566,644,543,621,517,594,524,551,524,552,524,552,467,546,417,585,421,643,424,665,426,686,415,697,415,697,415,697,432,693,439,689,446,684,481,667,501,638,521,609,508,563,515,544,522,524,548,515,548,515,548,515,530,527,526,546,522,566,540,598,518,635,496,672,436,709,404,706,388,705,409,702,413,684,417,667,408,628,417,596,426,561,467,544,467,546,467,546,442,495,383,472,336,504,317,518,301,530,286,526,286,526,286,526,298,539,305,543,312,547,344,568,380,571,415,574,448,539,468,536,488,532,510,551,510,551,510,551,490,540,471,547,452,553,434,585,391,584,348,583,286,550,272,521,265,507,278,524,296,518,313,513,342,485,373,477,409,468,444,495,442,495,442,495,476,449,467,386,415,361,394,352,375,344,371,329,371,329,371,329,366,346,366,354,366,362,364,400,379,433,394,465,440,476,453,492,467,508,462,535,462,535,462,535,461,513,446,500,431,487,394,487,373,449,352,411,350,341,368,314,377,301,369,321,383,334,396,345,434,357,457,380,483,407,477,450,476,449,476,449]}]]},{A3:"0000-0-hearts",v9:[["d17070",{Z:"M C C C C C C C C C L Z".split(" "),H:[415,584,413,585,411,586,409,587,392,596,389,620,395,633,401,647,414,663,450,668,485,674,487,681,494,690,491,679,487,673,507,643,527,613,524,593,518,579,512,566,493,552,475,558,467,561,451,566,448,586,435,578,423,581,415,584,415,584]}],["6bcc6b",{Z:"M C C C C C C C C C L Z".split(" "),H:[595,451,593,449,590,448,588,448,563,439,537,457,529,475,521,493,516,520,542,560,568,601,563,609,559,623,568,611,571,602,618,595,666,589,684,567,692,550,700,532,697,501,674,488,665,482,645,472,622,486,619,465,606,456,595,451,595,451]}],["5c5cc2",{Z:"M C C C C C C C C C L Z".split(" "),H:[341,362,338,364,335,366,332,368,304,385,301,424,312,446,323,468,345,494,405,501,465,508,468,520,480,534,475,516,468,506,499,455,531,404,524,370,514,348,503,325,470,304,440,315,427,320,401,331,397,364,374,351,355,356,341,362,341,362]}]]},{A3:"0000-0-anchor",v9:[["2a3b66",{Z:"M C C C C L Z M C C C C C C C C C C C C C C L C C C C C C C C C C C C C L C C C C C C C C C C C C C L Z".split(" "),H:[495,315,490,315,488,318,489,323,491,328,502,326,502,320,502,317,501,316,497,315,496,315,496,315,495,315,495,315,496,303,509,303,521,320,514,327,511,330,513,345,517,348,519,350,531,352,546,354,570,357,572,357,578,354,588,347,592,351,592,369,592,385,588,390,580,385,576,383,570,383,552,384,524,387,519,389,517,397,515,404,517,515,520,554,522,583,525,599,530,606,534,610,555,617,565,617,584,616,607,602,635,572,639,568,641,566,644,563,633,559,616,557,616,557,675,533,675,533,671,605,669,609,667,611,664,591,658,577,657,579,657,580,656,582,628,638,603,660,565,664,545,666,521,672,514,675,512,677,507,682,504,688,501,693,497,698,496,698,494,698,490,693,487,688,484,682,480,677,477,675,471,672,447,666,427,664,391,660,367,640,340,591,335,604,332,621,331,619,329,615,325,544,325,544,384,568,384,568,368,569,357,573,385,602,408,616,426,617,437,617,458,610,461,606,466,599,470,583,472,554,474,515,476,404,475,397,473,389,468,387,440,384,422,383,416,383,412,385,403,390,400,385,400,369,400,351,403,347,414,354,419,357,421,357,446,354,460,352,473,350,475,348,478,345,481,330,478,327,470,320,483,303,496,303,496,303]}]]},{A3:"0000-1-leaf",v9:[["fbb600",{Z:"M L L L L L L C L L C L C L C C C C C L C C C C C C C C C L C C C C C C C C C C C C C L L L L Z".split(" "),H:[642,726,633,723,632,707,591,631,570,582,526,521,537,547,535,579,517,598,501,619,486,602,414,634,412,606,379,609,346,611,394,557,406,547,401,539,386,532,319,519,337,508,332,493,320,478,326,464,302,450,287,436,303,436,324,441,330,432,346,434,359,434,359,415,377,428,397,431,417,432,442,440,437,418,417,416,406,372,401,370,395,367,389,355,417,363,408,339,406,323,416,312,427,303,417,276,433,295,444,297,452,294,479,321,490,313,496,294,503,322,510,329,517,338,522,353,530,371,530,379,546,402,551,389,555,378,578,333,606,333,628,304,652,280,646,306,644,327,657,329,649,356,658,374,679,384,666,392,656,415,645,432,627,457,653,451,661,457,692,460,698,473,715,481,697,485,678,488,669,509,656,523,655,533,666,539,659,537,659,542,643,531,630,535,613,543,608,539,598,535,594,542,590,553,590,566,594,564,596,569,568,575,551,543,531,519,575,577,597,628,639,708,642,726]}]]},{A3:"0000-1-acorn",v9:[["a05a2c",{Z:"M C C C C C C C L Z".split(" "),H:[506,453,450,426,413,422,398,444,374,480,374,533,384,573,391,602,407,625,430,645,451,658,487,654,509,647,554,633,587,605,612,565,635,527,591,500,565,482,557,476,515,457,506,453,506,453]}],["502d16",{Z:"M C C C C C C C C C C C Z".split(" "),H:[640,524,639,539,623,540,623,540,627,522,607,504,583,488,547,465,507,445,470,434,439,426,412,417,400,437,400,437,391,424,400,414,434,370,498,356,551,376,555,349,583,317,597,321,612,326,621,346,620,350,619,354,594,352,584,368,580,375,577,382,575,387,619,412,649,460,640,524]}]]},{A3:"0000-0-skull",v9:[["808080",{Z:"M C L C C L C L C C C C C C C L C L C C C C C C C C L C C L C L C C C C C C C L C L C L C C C C C C Z M C C C C Z M C C C C Z M L L L Z".split(" "),H:[396,410,398,415,398,420,398,424,420,437,433,404,465,382,501,382,538,382,569,404,582,435,602,424,602,419,603,415,604,410,604,410,609,392,622,379,633,382,643,384,648,402,643,420,643,421,642,421,642,422,643,422,643,422,644,422,662,427,675,440,672,450,669,461,652,465,633,460,628,459,624,457,620,455,589,473,588,491,582,507,572,520,607,540,611,538,615,536,620,535,639,530,656,535,659,545,662,556,649,568,630,573,630,574,629,574,629,574,629,574,629,575,629,575,634,594,630,611,619,614,609,617,596,604,591,585,590,580,589,576,589,571,565,557,564,592,536,619,501,619,466,619,438,591,437,557,412,572,411,576,411,580,410,585,410,585,405,604,392,617,381,614,371,611,366,593,371,575,371,574,371,574,372,574,371,573,371,573,370,573,352,568,339,556,342,545,345,534,362,530,381,535,385,536,390,538,394,540,430,519,421,507,415,491,414,475,380,455,376,457,372,459,367,460,367,460,349,465,331,461,328,450,326,440,338,427,357,422,357,422,358,422,358,422,358,421,358,421,358,420,353,402,357,384,368,381,379,379,391,391,396,410,463,439,445,439,431,453,431,470,431,488,445,502,463,502,480,502,494,488,494,470,494,453,480,439,463,439,540,439,522,439,508,453,508,470,508,488,522,502,540,502,557,502,571,488,571,470,571,453,557,439,540,439,483,528,518,528,500,503,483,528]}]]},{A3:"0000-0-ghost",v9:[["e6e6e6",{Z:"M C C C C C C C C C C L Z M C C C C C C C C Z M C C Z".split(" "),H:[653,486,653,574,689,597,689,638,689,661,640,644,620,656,601,666,609,682,583,692,563,700,538,666,512,666,490,666,451,695,433,686,415,677,416,646,388,644,367,641,313,671,313,648,313,619,346,588,346,486,346,388,415,308,500,308,584,308,653,388,653,486,653,486,449,396,428,396,412,415,412,439,412,462,428,482,449,482,465,482,478,470,484,454,489,470,503,482,519,482,539,482,556,462,556,439,556,415,539,396,519,396,503,396,489,407,484,423,478,407,465,396,449,396,482,505,441,505,465,560,482,560,503,560,524,505,482,505]}],["000000",{Z:"M C C C C Z M C C C C Z".split(" "),H:[526,446,526,455,519,462,510,462,501,462,494,455,494,446,494,437,501,430,510,430,519,430,526,437,526,446,475,446,475,455,468,462,459,462,450,462,442,455,442,446,442,437,450,430,459,430,468,430,475,437,475,446]}]]},{A3:"1001-1-rose",v9:[["9e1460",{Z:"M C C C C C C C C C Z M C C C C C C C C C Z".split(" "),H:[568,83,558,83,548,88,539,96,538,98,536,99,535,101,522,115,513,134,517,149,522,172,561,200,592,207,604,210,611,215,615,221,622,234,611,258,611,258,613,260,615,264,618,264,627,266,638,241,640,236,660,188,614,83,568,83,526,125,527,97,567,68,593,75,616,81,642,121,649,152,651,165,656,172,662,176,675,183,698,173,698,173,698,173,698,173,698,173,704,176,705,179,705,180,706,189,681,199,678,200,678,200,677,201,677,201,627,220,524,170,526,125]}],["020304",{Z:"M C C C C C Z M C C C C C Z M C C C C C Z M C C C C Z".split(" "),H:[60,151,60,151,37,125,60,98,83,72,95,91,115,66,134,42,117,26,120,30,123,34,146,83,132,114,114,154,60,151,60,151,280,70,280,70,258,97,283,122,308,147,318,127,339,150,361,173,344,190,347,186,350,182,370,132,354,101,333,62,280,70,280,70,61,150,61,150,27,143,30,108,33,73,54,81,55,50,57,19,33,16,38,17,43,19,91,44,98,78,107,121,61,150,61,150,-27,185,184,158,222,43,352,32,444,24,538,97,538,97,538,97,453,45,354,48,241,51,185,170,-27,185]}]]},{A3:"1001-1-curls",v9:[["53a7ab",{Z:"M C C C C C C C C C C C C C C C C L Z M C C C C C C C C C C C C C C C C L Z M C C C C C C C C C C C C C C C C C C C C C L Z".split(" "),H:[68,114,121,103,159,110,183,135,212,169,211,204,189,237,162,277,124,291,86,276,52,263,38,236,47,202,55,168,79,151,121,156,147,162,165,177,160,205,155,228,135,241,113,237,97,234,92,221,96,205,98,195,105,194,115,200,124,205,133,204,135,197,139,183,122,167,95,171,68,176,54,193,68,220,84,252,131,261,165,238,201,202,199,164,158,136,118,113,52,122,-23,151,2,134,33,122,68,114,68,114,71,83,119,75,163,79,198,107,226,129,247,174,271,207,291,229,316,241,342,232,370,222,394,206,418,209,443,212,461,238,485,258,500,272,522,276,543,271,543,271,524,279,518,281,500,287,483,277,466,256,453,243,441,230,427,223,413,217,392,220,372,229,372,230,371,230,370,230,354,241,337,251,315,250,283,248,253,222,229,172,209,133,178,106,137,94,103,84,52,94,-30,133,-3,108,30,91,71,83,71,83,83,54,122,46,166,49,195,67,219,82,250,122,290,168,308,186,330,194,355,192,393,183,400,145,383,118,372,101,355,91,328,91,313,92,303,98,300,109,298,116,299,125,304,131,315,147,327,152,340,149,349,149,354,132,343,131,330,131,326,129,328,120,332,97,355,100,365,114,381,137,367,165,343,168,321,170,289,150,288,117,290,77,319,58,352,64,388,74,405,104,404,141,403,177,382,202,345,207,312,211,284,191,260,161,245,141,229,122,213,106,196,84,166,73,129,67,80,62,28,79,-26,108,10,79,46,63,83,54,83,54]}],["bbdc54",{Z:"M C C C C C L Z M C C C C C L Z M C C C C L Z M C C C C L Z M C C C C C C C C C L Z M C C C C C C C C C C C C C C C C C C C C C C C C C C C C C L Z".split(" "),H:[321,315,287,324,252,312,211,219,217,284,239,326,279,341,324,352,362,329,398,291,316,305,258,269,217,196,238,284,274,319,321,315,321,315,211,261,223,300,234,345,252,374,220,378,194,367,193,324,194,306,198,288,206,270,197,315,204,340,221,351,206,327,202,297,211,261,211,261,206,246,193,301,170,317,138,297,162,281,184,254,205,222,201,246,191,267,174,283,186,279,197,267,206,246,206,246,378,233,370,286,337,299,294,270,312,277,330,276,347,267,294,278,259,252,234,203,280,259,327,278,378,233,378,233,626,217,604,273,555,313,511,315,484,316,438,289,432,232,450,253,488,296,511,291,532,286,551,277,566,261,527,269,498,263,480,243,478,241,478,237,480,235,486,230,504,220,519,226,537,233,551,242,567,241,591,236,611,228,626,217,626,217,411,192,432,183,439,166,420,136,443,144,460,158,466,182,470,165,456,149,430,133,459,136,485,145,505,165,503,143,463,133,434,128,486,127,526,124,539,118,505,123,470,124,435,122,461,111,483,96,500,76,475,95,450,110,424,118,450,96,465,72,466,48,458,75,440,98,419,112,424,106,428,99,428,91,429,68,413,57,393,51,419,70,426,92,411,110,408,77,385,58,343,52,383,26,422,25,445,62,458,47,465,29,467,8,477,27,479,51,475,76,497,64,515,49,528,29,524,57,515,82,496,103,521,113,549,111,579,99,560,122,535,136,502,137,518,149,521,173,514,205,505,181,492,166,476,158,483,188,470,205,447,216,456,183,451,166,438,157,444,193,426,211,379,207,403,193,416,172,416,140,434,156,428,173,411,192,411,192]}]]},{A3:"0111-0-pines",v9:[["e9e9e9",{Z:"M C C C C C C C C L L L Z".split(" "),H:[0,946,0,946,54,960,99,944,149,927,182,954,205,956,245,960,298,940,382,974,435,995,478,957,538,956,571,955,597,969,631,968,663,967,701,938,749,944,805,950,851,960,893,946,950,928,1e3,946,1e3,946,1e3,1e3,0,1e3,0,946]}],["437a26",{Z:"M C L C C C L L C C L L L L L C Z M C L C C C L L C C L L L L L C Z M C L C C C L L C C L L L L L C Z M C L C C C L L C C L L L L L C Z M C L C C C L L C C L L L L L C Z".split(" "),H:[119,801,120,801,148,859,148,859,137,853,137,853,155,890,155,891,156,892,138,887,140,888,141,888,171,925,171,925,126,924,125,943,125,943,105,944,106,944,107,944,106,924,106,924,61,925,93,886,77,891,100,854,89,860,89,860,119,801,119,801,286,871,286,871,303,905,303,905,296,902,296,902,307,924,307,924,307,925,297,922,297,922,298,922,316,944,316,944,289,944,289,955,289,955,277,956,278,956,278,956,278,944,278,944,251,944,270,921,260,924,274,902,268,906,268,906,285,871,286,871,526,863,526,863,546,903,546,903,538,899,538,899,550,924,550,925,550,926,539,922,540,922,540,922,561,948,561,948,530,947,529,960,529,960,516,961,517,961,518,961,517,947,517,947,486,948,508,921,497,925,513,899,505,903,505,903,526,863,526,863,731,841,731,841,752,883,752,883,744,879,744,879,757,907,757,908,758,908,745,905,746,905,747,905,769,932,769,932,736,932,735,946,735,946,721,946,721,946,722,947,721,932,721,932,688,932,712,903,700,908,717,880,709,884,709,884,731,841,731,841,889,826,889,826,914,876,914,876,904,871,904,871,920,904,920,905,920,906,906,901,907,902,908,902,934,934,934,934,894,933,894,950,894,950,877,951,878,951,879,951,878,933,878,933,838,934,866,900,852,905,872,872,862,877,862,877,889,826,889,826]}]]},{A3:"0111-0-flowers",v9:[["8cae40",{Z:"M C L C C C L C C L C C C L C C C L C C L C C L Z M C L C C C L C C L C C C L C C C L C C L C C L Z M C L C C C L C C L C C C L C C C L C C L C C L Z M C L C C C L C C L C C C L C C C L C C L C C L Z".split(" "),H:[182,866,160,879,146,903,135,929,135,844,177,842,228,831,230,796,231,770,207,765,182,779,160,792,146,816,135,843,135,713,135,711,134,710,132,710,130,710,128,711,128,713,128,841,117,815,103,791,82,779,57,764,33,769,34,795,36,830,86,841,128,844,128,930,117,903,103,880,82,867,57,853,33,858,34,884,36,919,86,930,128,932,128,1009,128,1010,130,1012,132,1012,134,1012,135,1010,135,1009,135,931,177,928,228,918,230,882,231,856,207,851,182,866,182,866,447,904,430,898,412,904,394,916,394,861,413,873,431,879,447,873,458,868,458,852,447,848,430,841,412,848,394,859,394,788,394,787,393,786,391,786,389,786,388,787,388,788,388,859,370,847,352,841,336,848,325,852,325,868,336,873,352,879,370,873,388,862,388,915,370,904,352,898,336,904,325,909,325,925,336,929,352,936,370,930,388,918,388,1009,388,1010,389,1011,391,1011,393,1011,394,1010,394,1009,394,918,413,930,431,936,447,929,458,925,458,909,447,904,447,904,662,943,650,954,641,972,634,993,634,914,659,907,680,895,692,873,707,846,686,836,662,859,650,870,641,888,634,909,634,818,634,816,632,815,631,815,629,815,628,816,628,818,628,908,621,887,612,870,600,859,576,836,555,846,570,873,582,895,603,907,628,914,628,992,621,971,612,954,600,943,576,920,555,930,570,957,582,978,603,990,628,998,628,1009,628,1010,629,1011,631,1011,632,1011,634,1010,634,1009,634,998,659,991,680,978,692,957,707,930,686,920,662,943,662,943,892,842,875,857,862,882,850,912,850,822,874,817,896,805,908,778,919,755,896,751,877,769,866,779,857,796,850,815,850,737,850,736,848,735,847,735,845,735,844,736,844,737,844,815,836,795,828,779,817,769,798,751,775,755,785,777,797,804,820,817,844,822,844,912,832,882,818,857,801,842,772,816,737,822,753,854,772,894,806,911,844,918,844,1009,844,1010,845,1011,847,1011,848,1011,850,1010,850,1009,850,918,887,911,922,894,941,854,957,822,922,816,892,842,892,842]}],["d13777",{Z:"M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M C C C C C C C Z M C C C C C C L Z M C C C C C C C L Z M C C C C C C L Z M C C C C C C C L Z M C C C C C C L Z M C C C C C C C L Z M C C C C C C L Z M C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C Z M C C C C Z M C C L L C C C C L L C C L L C C C C L C C C C L Z M C C C Z M C C C L Z M C C C L Z".split(" "),H:[125,603,115,617,112,619,110,618,111,615,122,600,119,597,75,614,43,631,32,650,22,675,36,694,65,682,59,716,94,722,111,696,120,687,126,657,129,604,125,603,125,603,104,638,99,638,95,634,95,629,95,624,99,620,104,620,109,620,113,624,113,629,113,634,109,638,104,638,117,587,100,582,98,579,99,578,102,577,119,583,121,580,92,543,65,517,44,513,17,512,4,531,24,555,-10,560,-6,594,24,603,36,609,67,605,118,591,118,587,117,587,78,578,77,573,79,568,84,567,88,565,93,568,95,573,96,577,94,582,89,584,85,585,80,583,78,578,130,575,130,557,131,554,133,555,135,557,135,575,138,576,164,537,180,504,177,482,171,456,148,449,132,476,117,445,85,460,86,491,84,504,97,532,126,577,130,575,130,575,126,535,130,532,136,533,139,537,142,541,141,546,137,549,133,552,127,551,125,547,122,543,122,538,126,535,146,584,162,577,165,578,166,580,164,582,146,588,147,591,193,604,229,609,249,600,271,585,271,562,240,554,265,530,241,505,212,516,199,518,176,539,143,580,146,584,146,584,183,567,187,570,187,576,185,580,182,584,176,585,172,582,168,579,167,573,170,569,173,565,179,565,183,567,142,601,153,615,153,618,152,619,149,618,138,603,135,605,137,652,144,688,159,704,180,721,202,713,199,681,230,698,246,667,227,643,221,631,194,616,145,597,142,601,142,601,169,631,167,636,162,638,158,637,153,635,151,630,152,625,154,621,159,618,163,620,168,621,170,626,169,631,376,691,343,693,320,697,309,706,297,714,291,729,294,756,294,767,295,779,294,788,305,786,320,788,335,788,353,787,369,782,375,773,382,764,386,739,388,703,381,702,377,699,376,691,363,745,357,757,351,761,345,761,337,760,337,751,343,737,330,742,322,742,319,735,317,728,322,723,331,718,346,712,360,708,374,706,373,720,369,733,363,745,363,745,388,680,387,646,383,623,375,612,366,600,351,594,325,596,314,596,302,597,293,595,295,607,292,622,292,637,292,654,298,671,306,676,315,684,340,689,376,692,377,684,381,680,388,680,388,680,334,665,323,659,318,654,319,648,320,639,329,640,343,645,338,632,339,625,345,621,352,620,358,625,362,634,368,649,372,664,373,677,360,676,347,671,334,665,334,665,399,691,433,690,456,686,467,678,479,670,485,655,484,629,484,617,482,606,484,597,472,598,458,595,442,596,425,596,409,601,403,610,395,618,391,643,388,679,395,680,399,684,399,691,399,691,414,638,420,626,426,622,432,622,440,624,440,633,434,646,447,641,455,642,458,648,459,656,454,661,445,665,430,671,416,675,402,677,403,663,408,650,414,638,414,638,388,703,390,736,394,759,403,770,411,782,426,788,452,785,464,785,475,784,485,785,483,774,485,759,485,744,484,726,479,710,470,704,461,697,436,693,400,691,399,698,395,702,388,703,388,703,442,716,453,722,458,728,458,734,456,742,447,742,434,736,439,749,438,757,432,760,425,762,419,757,415,748,409,733,404,719,403,705,416,706,429,710,442,716,442,716,722,716,722,701,710,690,696,690,695,690,694,690,693,690,693,689,694,689,695,688,705,678,705,662,695,651,685,641,668,641,658,651,658,652,657,653,656,654,656,653,656,652,656,651,656,637,645,625,630,625,616,625,605,637,605,651,605,652,605,653,605,654,604,654,604,653,603,652,593,642,576,642,566,652,556,662,556,679,566,689,567,690,568,690,569,691,568,691,567,691,566,691,552,691,540,702,540,717,540,731,552,743,566,743,567,743,568,743,569,742,569,743,568,744,567,744,557,754,557,771,567,781,577,791,594,791,604,781,605,780,605,779,606,778,606,779,606,780,606,781,606,795,617,807,632,807,646,807,657,795,657,781,657,780,657,779,657,778,658,779,658,779,659,780,669,790,686,790,696,780,706,770,706,754,696,743,695,743,694,742,693,741,694,741,695,741,696,741,710,741,722,730,722,716,631,762,605,762,585,742,585,716,585,691,605,670,631,670,657,670,677,691,677,716,677,742,657,762,631,762,958,602,957,570,951,547,940,532,925,541,905,565,887,591,886,591,886,546,892,545,897,540,897,533,897,527,891,521,884,521,877,521,872,527,872,533,872,540,876,545,882,546,882,591,882,591,870,564,860,536,848,525,833,541,820,565,808,592,807,592,807,546,813,545,817,540,817,533,817,527,812,521,805,521,798,521,792,527,792,533,792,540,797,545,802,546,802,590,784,567,766,545,755,534,729,588,731,639,766,684,787,711,814,726,847,725,919,724,960,659,958,602,958,602,783,671,772,653,777,645,789,648,812,656,830,682,840,711,821,704,797,692,783,671,836,634,840,614,850,612,856,622,867,644,861,676,848,703,840,684,831,659,836,634,836,634,919,659,911,682,885,701,856,711,863,692,875,668,896,654,913,642,922,647,919,659,919,659]}]]},{A3:"1101-1-confetti",v9:[["e789ff",{Z:"M C C C C C Z M C C C C C C C Z M C C C C C C C Z M C C C C C Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z".split(" "),H:[170,439,169,438,59,370,108,300,152,238,298,276,318,337,338,398,265,380,285,358,312,328,185,247,121,307,72,353,171,440,170,439,318,338,336,399,262,408,184,346,138,309,73,237,112,174,167,88,345,115,377,222,393,276,296,260,335,236,375,212,236,111,155,183,73,254,265,380,285,358,312,328,318,338,318,338,377,222,394,276,318,288,243,236,187,197,146,120,201,56,254,-5,365,26,407,68,407,68,414,94,378,71,344,50,258,31,221,89,178,154,297,260,336,235,374,211,377,222,377,222,406,70,452,115,432,189,324,115,214,39,323,-85,322,-85,320,-85,229,38,331,100,439,166,413,95,377,72,343,51,364,28,406,70,346,405,369,418,356,441,333,428,346,405,513,298,536,311,523,334,500,321,513,298,891,91,914,104,901,127,878,114,891,91,24,123,47,136,34,159,11,146,24,123,664,33,687,46,674,69,651,56,664,33,910,482,933,495,920,518,897,505,910,482]}],["666666",{Z:"M C C C C C Z M C C C C C C C Z M C C C C C C C Z M C C C C C Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z".split(" "),H:[919,442,917,443,802,510,764,432,730,364,837,250,901,261,965,272,913,329,903,301,889,262,755,338,777,424,794,490,920,442,919,442,901,261,964,274,936,345,842,386,787,410,690,435,654,370,604,279,716,132,827,153,883,164,821,244,819,197,817,150,659,228,682,335,706,443,913,329,903,301,889,262,901,261,901,261,827,153,884,163,857,238,774,281,711,313,622,313,593,233,564,157,647,71,705,54,705,54,732,60,694,82,658,102,599,170,632,231,669,301,822,244,819,197,816,150,827,153,827,153,706,54,769,34,825,87,706,149,583,213,527,56,526,57,526,59,590,200,696,137,807,70,732,60,694,82,658,102,648,73,706,54,362,328,383,340,371,361,350,349,362,328,52,189,73,201,61,222,40,210,52,189,509,119,530,131,517,152,496,140,509,119,912,16,933,28,921,49,900,37,912,16,629,380,650,392,638,413,617,401,629,380,77,414,98,426,86,447,65,435,77,414,240,76,261,88,249,109,228,97,240,76]}]]},{A3:"1101-1-branch",v9:[["7f500b",{Z:"M C C C L C C Z M C C C L C C Z M C C C L C C Z M C C C L C C Z M C C C L C C Z M C C C L C C Z".split(" "),H:[144,-14,144,-14,149,-12,150,-12,150,-12,106,22,86,75,63,137,93,193,69,238,64,236,89,174,53,146,80,72,99,19,144,-14,144,-14,280,-18,281,-18,276,-20,276,-20,276,-20,282,23,264,64,244,113,196,129,185,168,189,170,209,120,244,123,269,66,288,25,280,-18,280,-18,429,-5,429,-5,434,-4,434,-4,435,-4,405,28,396,72,386,124,415,164,402,203,398,202,410,150,379,132,391,70,399,26,429,-5,429,-5,514,-7,514,-7,519,-12,519,-12,520,-12,532,50,577,96,630,151,703,150,738,197,733,201,681,144,635,166,571,101,526,54,514,-7,514,-7,666,-67,666,-68,663,-65,662,-64,662,-64,704,-52,734,-18,768,22,763,72,793,99,796,96,760,57,778,26,737,-22,708,-56,666,-67,666,-67,936,-8,936,-8,932,-9,931,-9,931,-9,947,32,938,76,927,127,884,154,881,194,886,195,895,142,930,138,943,76,952,32,936,-8,936,-8]}],["5c7f0b",{Z:"M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z".split(" "),H:[119,6,121,16,113,31,81,33,58,34,27,27,27,27,27,27,53,5,70,-1,93,-9,117,-4,119,6,124,8,132,1,151,12,165,33,179,54,180,87,180,87,180,87,153,75,139,60,122,41,115,14,124,8,78,74,82,83,76,97,48,103,27,108,-2,105,-2,105,-2,105,19,81,33,74,53,64,75,65,78,74,83,75,90,68,108,76,124,93,139,110,144,140,144,140,144,140,117,132,104,121,85,105,76,83,83,75,72,152,75,159,72,172,48,179,30,185,6,185,6,185,6,185,22,163,33,156,49,145,68,145,72,152,76,153,81,146,98,151,112,165,126,178,133,203,133,203,133,203,110,199,97,190,80,178,70,160,76,153,73,206,75,213,71,224,49,228,34,232,12,230,12,230,12,230,28,212,39,206,53,199,70,200,73,206,76,207,81,202,95,207,107,220,118,233,122,255,122,255,122,255,102,250,92,241,78,230,71,213,76,207,70,232,78,236,76,252,66,269,56,286,33,297,33,297,33,297,33,274,39,260,46,241,62,228,70,232,285,3,278,8,274,21,291,39,304,52,325,63,325,63,325,63,323,36,316,24,308,7,291,-2,285,3,281,1,280,-7,263,-10,244,-5,224,1,205,20,205,20,205,20,228,27,244,25,264,22,283,10,281,1,270,65,264,69,259,80,272,99,281,112,299,125,299,125,299,125,300,100,296,88,290,72,277,61,270,65,267,64,267,56,252,51,234,53,216,56,197,71,197,71,197,71,216,80,230,80,249,80,267,72,267,64,231,116,225,119,220,128,230,145,237,157,251,170,251,170,251,170,254,148,251,138,248,123,237,113,231,116,228,114,229,108,217,102,201,103,186,103,168,115,168,115,168,115,184,124,196,126,212,127,228,121,228,114,201,148,196,151,192,160,202,174,209,184,222,194,222,194,222,194,223,175,220,166,216,154,206,145,201,148,198,147,198,141,187,137,174,139,160,141,145,152,145,152,145,152,160,159,171,159,185,160,198,153,198,147,188,165,182,163,173,174,170,190,167,205,173,224,173,224,173,224,186,210,191,198,197,183,195,166,188,165,415,10,417,18,413,31,389,36,371,39,347,37,347,37,347,37,364,16,377,9,393,0,412,2,415,10,418,11,424,4,440,11,453,27,466,43,470,69,470,69,470,69,448,62,436,52,420,38,412,17,418,11,391,69,394,76,392,89,371,96,355,102,333,103,333,103,333,103,346,81,357,74,371,64,388,63,391,69,395,70,399,63,414,68,428,80,441,92,448,116,448,116,448,116,427,113,415,105,400,94,390,77,395,70,395,133,398,139,397,150,379,158,367,164,348,167,348,167,348,167,358,148,366,140,377,130,391,128,395,133,398,134,401,128,414,130,427,140,439,149,447,169,447,169,447,169,429,167,418,162,404,154,394,140,398,134,401,177,404,182,402,192,386,198,374,202,358,203,358,203,358,203,368,187,375,181,386,173,399,172,401,177,404,178,408,173,419,176,429,185,439,194,445,212,445,212,445,212,429,210,420,204,408,196,401,183,404,178,402,198,408,201,409,214,403,229,397,244,381,255,381,255,381,255,378,236,381,224,385,208,396,196,402,198,519,23,531,26,543,42,528,75,518,99,495,125,495,125,495,125,485,87,487,67,490,40,508,19,519,23,523,19,521,7,542,-6,571,-8,600,-10,636,6,636,6,636,6,609,27,586,32,557,39,526,32,523,19,570,100,581,102,594,115,585,147,579,170,562,197,562,197,562,197,548,163,547,145,547,120,560,98,570,100,574,97,570,86,587,72,613,66,639,60,673,71,673,71,673,71,652,93,632,101,607,110,578,107,574,97,649,149,659,150,670,160,666,188,662,208,650,232,650,232,650,232,635,205,633,189,631,168,640,149,649,149,652,146,648,137,662,123,683,116,705,109,734,116,734,116,734,116,718,137,702,145,681,155,657,155,652,146,707,178,715,179,724,189,718,213,714,230,701,250,701,250,701,250,690,225,690,211,689,193,699,177,707,178,710,175,707,167,720,156,739,151,759,147,784,155,784,155,784,155,768,172,753,177,734,185,713,183,710,175,732,194,740,189,757,199,770,218,782,237,783,266,783,266,783,266,758,254,746,240,730,223,724,199,732,194,687,-62,688,-54,699,-45,722,-53,739,-59,759,-73,759,-73,759,-73,733,-82,719,-82,701,-81,685,-71,687,-62,684,-60,676,-62,666,-48,662,-28,659,-9,669,17,669,17,669,17,684,-1,689,-16,696,-35,692,-57,684,-60,737,-23,738,-15,746,-5,768,-9,784,-12,804,-23,804,-23,804,-23,782,-34,769,-36,752,-38,736,-30,737,-23,734,-20,727,-24,716,-13,711,5,705,22,711,46,711,46,711,46,727,33,734,20,742,3,742,-17,734,-20,766,35,766,41,772,50,792,48,806,47,823,40,823,40,823,40,805,28,795,26,780,23,766,28,766,35,763,37,758,33,747,42,741,56,735,70,738,91,738,91,738,91,753,81,760,71,768,57,769,40,763,37,782,76,783,82,789,89,806,86,818,84,832,76,832,76,832,76,816,67,806,66,794,65,782,70,782,76,780,78,775,75,766,84,762,97,758,110,762,128,762,128,762,128,775,118,779,108,786,95,785,80,780,78,792,94,788,100,794,112,807,122,819,131,839,133,839,133,839,133,832,116,823,107,812,95,796,89,792,94,945,11,939,18,938,31,959,45,974,55,997,62,997,62,997,62,989,36,980,25,968,11,950,5,945,11,941,11,938,3,921,3,903,13,885,22,871,45,871,45,871,45,894,47,909,42,929,35,944,19,941,11,944,75,938,80,935,93,952,108,964,119,984,128,984,128,984,128,980,104,974,93,965,78,949,70,944,75,940,75,938,67,923,65,906,71,889,77,873,96,873,96,873,96,894,101,908,99,926,95,942,82,940,75,916,133,911,137,907,147,920,162,930,172,946,182,946,182,946,182,944,160,940,151,933,137,921,129,916,133,913,132,912,125,899,123,884,127,869,130,854,145,854,145,854,145,871,151,883,150,899,148,913,139,913,132,893,171,888,175,887,184,899,196,908,204,923,211,923,211,923,211,920,193,915,184,909,173,897,167,893,171,890,170,889,165,877,163,864,168,851,172,839,187,839,187,839,187,855,190,865,188,879,186,891,176,890,170,884,190,877,190,871,202,871,218,871,234,881,251,881,251,881,251,891,234,893,222,896,206,890,190,884,190]}]]},{A3:"1101-1-sticks",v9:[["ec7272",{Z:"M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z".split(" "),H:[260,148,297,180,286,192,249,160,260,148,114,31,161,47,155,63,109,47,114,31,931,91,902,52,915,42,945,81,931,91,711,19,746,-15,758,-3,723,31,711,19,812,161,782,122,795,112,825,151,812,161,389,34,424,0,436,12,401,46,389,34,431,209,465,175,477,186,442,221,431,209,282,90,282,41,299,41,299,90,282,90,58,233,29,194,42,184,72,223,58,233,574,58,621,74,615,90,569,74,574,58]}],["0000ff",{Z:"M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z".split(" "),H:[722,208,733,161,717,157,706,205,722,208,843,12,797,28,802,44,849,28,843,12,31,74,60,35,47,25,18,64,31,74,220,21,185,-13,173,-1,208,33,220,21,140,166,170,127,157,117,127,156,140,166,558,148,523,114,511,126,546,160,558,148,562,9,516,25,521,41,568,25,562,9,697,105,726,66,713,56,684,95,697,105,961,180,990,141,977,131,948,170,961,180,399,97,353,113,358,129,405,113,399,97]}]]},{A3:"1101-1-dots",v9:[["ec7272",{Z:"M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z".split(" "),H:[154,47,144,47,136,39,136,29,136,19,144,11,154,11,164,11,172,19,172,29,172,39,164,47,154,47,272,164,262,164,254,156,254,146,254,136,262,128,272,128,282,128,290,136,290,146,290,156,282,164,272,164,529,48,519,48,511,40,511,30,511,20,519,12,529,12,539,12,547,20,547,30,547,40,539,48,529,48,696,101,686,101,678,93,678,83,678,73,686,65,696,65,706,65,714,73,714,83,714,93,706,101,696,101,929,91,919,91,911,83,911,73,911,63,919,55,929,55,939,55,947,63,947,73,947,83,939,91,929,91]}],["0000ff",{Z:"M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z".split(" "),H:[66,122,56,122,48,114,48,104,48,94,56,86,66,86,76,86,84,94,84,104,84,114,76,122,66,122,309,55,299,55,291,47,291,37,291,27,299,19,309,19,319,19,327,27,327,37,327,47,319,55,309,55,785,180,775,180,767,172,767,162,767,152,775,144,785,144,795,144,803,152,803,162,803,172,795,180,785,180,459,147,449,147,441,139,441,129,441,119,449,111,459,111,469,111,477,119,477,129,477,139,469,147,459,147,811,48,801,48,793,40,793,30,793,20,801,12,811,12,821,12,829,20,829,30,829,40,821,48,811,48]}],["88a500",{Z:["M","C","C","Z"],H:[389,224,389,224,410,230,410,230,410,230,389,224,389,224]}]]},{A3:"1101-1-strips",v9:[["ffc88c",{Z:"M L L L L Z M L L L L Z M L L L L Z".split(" "),H:[-40,0,44,0,137,99,53,99,-40,0,296,0,380,0,473,99,389,99,296,0,632,0,716,0,809,99,725,99,632,0]}],["88a500",{Z:"M L L L L Z M L L L L Z M L L L L Z".split(" "),H:[128,0,212,0,305,99,221,99,128,0,464,0,548,0,641,99,557,99,464,0,800,0,884,0,977,99,893,99,800,0]}],["88a500",{Z:["M","C","C","Z"],H:[407,217,407,217,428,223,428,223,428,223,407,217,407,217]}]]},{A3:"1101-1-circs",v9:[["ec7272",{Z:"M C C C C Z M C C C C Z".split(" "),H:[61,209,27,209,0,181,0,147,0,113,27,86,61,86,96,86,123,113,123,147,123,181,96,209,61,209,551,209,517,209,489,181,489,147,489,113,517,86,551,86,585,86,612,113,612,147,612,181,585,209,551,209]}],["217995",{Z:"M C C C C Z M C C C C Z".split(" "),H:[303,209,269,209,241,181,241,147,241,113,269,86,303,86,337,86,364,113,364,147,364,181,337,209,303,209,799,209,765,209,738,181,738,147,738,113,765,86,799,86,834,86,861,113,861,147,861,181,834,209,799,209]}],["88a500",{Z:["M","C","C","Z"],H:[530,273,530,273,551,279,551,279,551,279,530,273,530,273]}]]},{A3:"1101-1-squares",v9:[["014ea7",{Z:"M L L L L Z M L L L L Z".split(" "),H:[0,120,124,120,124,244,0,244,0,120,497,120,621,120,621,244,497,244,497,120]}],["fc54ff",{Z:"M L L L L Z M L L L L Z".split(" "),H:[249,120,373,120,373,244,249,244,249,120,746,120,870,120,870,244,746,244,746,120]}],["88a500",{Z:["M","C","C","Z"],H:[389,354,389,354,410,360,410,360,410,360,389,354,389,354]}]]},{A3:"1101-0-christmas",v9:[["014ea7",{Z:"M C C C C Z M C C C C Z M L L L L Z".split(" "),H:[255,480,178,480,116,418,116,341,116,264,178,202,255,202,332,202,394,264,394,341,394,418,332,480,255,480,255,232,236,232,221,217,221,198,221,179,236,164,255,164,274,164,289,179,289,198,289,217,274,232,255,232,251,-152,260,-152,260,248,251,248,251,-152]}],["ff9518",{Z:"M C C C C Z M C C C C Z M L L L L Z".split(" "),H:[746,623,669,623,607,561,607,484,607,407,669,345,746,345,823,345,885,407,885,484,885,561,823,623,746,623,747,376,728,376,713,361,713,342,713,323,728,308,747,308,766,308,781,323,781,342,781,361,766,376,747,376,742,-8,751,-8,751,392,742,392,742,-8]}]]}]; -var gt={};gt.parse=function(h){var e=new Uint8Array(h),$=null;if(e[0]==80&&e[1]==75){var Z=Date.now(),c=UZIP.parse(e.buffer),$=c["document.json"]; -$=JSON.parse(k.rM($,0,$.length));gt.cq($,c)}else{var q=ab.parse(h);$=gt.eo(q[2][0][1])}return $};gt.cq=function(h,e){var $=typeof h; -if($=="string"||$=="number"||$=="boolean")return h;if(h instanceof Array){for(var G=0;G0){var M=Math.min(100,U);g.push(M,0);U-=M}S=new Uint8Array(g)}N=J.NSAttributes instanceof Array?J.NSAttributes:[J.NSAttributes]; -var C={$class:"NSAttributedString",NSString:Y,NSAttributes:N};_.attributedString={_class:"MSAttributedString",archivedAttributedString:C}; -C.NSAttributeInfo={$class:"NSMutableData","NS.data":S};delete _.storage}return Z};gt.pi={oO:function(h,e){return h[e+1]<<8|h[e]},n:function(h,e){return h[e+3]<<24|h[e+2]<<16|h[e+1]<<8|h[e]},dd:function(h,e,$){var Z=""; -for(var G=0;G<$;G++)Z+=String.fromCharCode(h[e+G]);return Z}};gt.PT={MSPage:"page",MSArtboardGroup:"artboard",MSShapeGroup:"shapeGroup",MSLayerGroup:"group",MSBitmapLayer:"bitmap",MSTextLayer:"text",MSSliceLayer:"slice",MSSymbolMaster:"symbolMaster",MSSymbolInstance:"symbolInstance",MSStyleFill:"fill",MSShapePathLayer:"shapePath",MSRectangleShape:"rectangle",MSOvalShape:"oval",MSTriangleShape:"triangle"}; -gt.aeO=["MSArray","MSFillStyleCollection","MSBorderStyleCollection","MSShadowStyleCollection","MSInnerShadowStyleCollection"]; -gt.anF="MSArchivedColor MSLayoutGrid MSSimpleGrid MSColor MSRect MSStyleColorControls MSGraphicsContextSettings NSMutableString NSMutableData NSDecimalNumberPlaceholder MSStyleReflection".split(" "); -gt.adn={MSAssetCollection:["gradients","colors","imageCollection","images"],MSImageCollection:["images"],MSSharedStyleContainer:["objects"],MSSharedTextStyleContainer:["objects"],MSSharedLayerStyleContainer:["objects"],MSSharedLayerTextStyleContainer:["objects"],MSSharedLayerContainer:["objects"],MSSymbolContainer:["objects"],MSGradient:["stops","from","to","points"],MSGradientStop:["color"],MSStyleFill:["color","gradient","contextSettings","image","imageSHA"],MSExportFormat:["fileFormat","name"],MSExportOptions:["exportFormats","includedLayerIds","sizes"],MSRulerData:["guides"],MSStyle:"textStyle fills contextSettings sharedObjectID borders blur shadows innerShadows borderOptions colorControls reflection".split(" "),MSSharedStyle:["name","value"],MSSymbol:["name","value"],MSAttributedString:["archivedAttributedString"],MSSharedLayerStyle:["name","value","instances"],MSSharedLayer:["name","value","instances"],MSDocumentData:"assets layerStyles pages layerTextStyles layerSymbols images userInfo".split(" "),MSShapePathLayer:"exportOptions frame name userInfo path originalObjectID".split(" "),MSOvalShape:"exportOptions frame name userInfo path originalObjectID".split(" "),MSRectangleShape:"exportOptions frame name userInfo path originalObjectID".split(" "),MSPolygonShape:"exportOptions frame name userInfo path originalObjectID".split(" "),MSTriangleShape:"exportOptions frame name userInfo path originalObjectID".split(" "),MSStarShape:"exportOptions frame name userInfo path originalObjectID".split(" "),MSBitmapLayer:"exportOptions frame name userInfo style imageSHA nineSliceCenterRect nineSliceScale image clippingMask originalObjectID".split(" "),MSTextLayer:"exportOptions frame name userInfo style originalObjectID attributedString glyphBounds storage".split(" "),MSShapeGroup:"exportOptions frame name userInfo style originalObjectID layers".split(" "),MSLayerGroup:"exportOptions frame name userInfo style originalObjectID layers sharedObjectID".split(" "),MSArtboardGroup:"exportOptions frame name userInfo style layers horizontalRulerData verticalRulerData layout grid backgroundColor".split(" "),MSPage:"exportOptions frame name userInfo style layers horizontalRulerData verticalRulerData layout grid scrollOrigin".split(" "),MSSymbolMaster:"exportOptions frame name userInfo style layers horizontalRulerData verticalRulerData layout grid originalObjectID symbolID backgroundColor".split(" "),MSSymbolInstance:"exportOptions frame name userInfo style symbolID overrides masterInfluenceBounds originalObjectID".split(" "),MSSliceLayer:["exportOptions","frame","name","userInfo","backgroundColor"],MSTextStyle:["attributes","encodedAttributes"],MSShapePath:["points"],MSPointArray:["points"],MSImageData:["data","sha1","name"],MSCurvePoint:["curveFrom","curveTo","point"],MSImageProxy:["sha1"],MSStyleBorder:["color","gradient","contextSettings"],MSStyleBlur:["center"],MSStyleShadow:["color","contextSettings"],MSStyleInnerShadow:["color","contextSettings"],MSExportSize:["format","name"],MSStyleBorderOptions:["dashPattern"],NSFont:["NSName","NSDescriptor"],NSColor:["NSCustomColorSpace"],NSFontDescriptor:["NSFontDescriptorAttributes"],NSMutableParagraphStyle:["NSTextBlocks","NSTabStops","NSTextLists"],NSAttributedString:["NSAttributes","NSString","NSAttributeInfo"],NSTextStorage:["NSAttributeInfo","NSAttributes","NSString"],NSColorSpace:["NSICC"],NSParagraphStyle:["NSTabStops","NSTextBlocks","NSTextLists"],NSTextList:["NSMarkerFormat"],NSTextTab:["NSTabOptions"],UIFontDescriptor:["UIFontDescriptorAttributes"]}; -var iJ={};iJ.parse=function(h,e){var $=k.dd(h,e,8);e+=8;var Z=iJ.parse.amn(h,h.length-31),c=[];if(Z.ZR==1){var e=h.length-31-Z.ZR*Z.rA; -for(var G=0;G>4,H=j&15,J=null; -a+=1;if([4,5,6,10,12,13].indexOf(L)!=-1&&H==15){var _=P.hY(h,a);a+=_.NX;H=_.G}if(!1){}else if(L==0)J=H==8?!1:H==9?!0:null; -else if(L==1)J=P.hY(h,a-1).G;else if(L==2)J=1<=12&&(E&1)==0){var P=E-13>>1,a=new Uint8Array(P); -ab.i7(h,$,a,0,P);q.push(a);$+=P}else if(E>=13&&(E&1)==1){var P=E-12>>1;q.push(ab.rM(h,$,P));$+=P}else throw"unknonw type "+E}return q},xd:function(h){if(!(h[18]==1&&h[19]==1&&h[20]==0&&h[21]==64&&h[22]==32&&h[23]==32))throw"unexpected SQL3 header"; -var e={wd:ab.dd(h,0,15),N$:ab.oO(h,16),aja:ab.n(h,24),size:ab.n(h,28),ad0:ab.n(h,32),a1m:ab.n(h,36),a6u:ab.n(h,40),ace:ab.n(h,44),ai5:ab.n(h,48),a05:ab.n(h,52),a6t:ab.n(h,56),a6M:ab.n(h,60),abH:ab.n(h,64)!=0,ae0:ab.n(h,68),aof:ab.n(h,92),a9f:ab.n(h,96)}; -if(e.N$==1)e.N$=65536;if(e.a6t!=1)throw"unsupported text encoding "+e.a6t;return e},acI:function(h,e){return h[e]<<16|h[e+1]<<8|h[e+2]},a5g:function(h,e){var $=ab.acI(h,e),Z=$&8388608; -return Z?-(16777215-$+1):$},a2B:function(h,e){ab.lW[0]=h[e];return ab.a4g[0]},hY:function(h,e){var $=ab.lW; -for(var G=0;G<4;G++)$[G]=h[e+3-G];return ab.a4O[0]},nP:function(h,e){var $=ab.lW;$[0]=h[e+1];$[1]=h[e]; -return ab.al9[0]},oO:function(h,e){return h[e]<<8|h[e+1]},n:function(h,e){return h[e]<<24|h[e+1]<<16|h[e+2]<<8|h[e+3]},a4e:function(h,e){var $=ab.lW; -for(var G=0;G<8;G++)$[G]=h[e+7-G];return ab.afj[0]},lh:function(h,e){var $=e,t=0;while(!0){var Z=h[e]; -e++;t=t*128+(Z&127);if(Z<128)break}return{o8:t,NX:e-$}},dd:function(h,e,$){var Z="";for(var G=0;G<$; -G++)Z+=String.fromCharCode(h[e+G]);return Z},rM:function(h,e,$){var Z="";for(var G=0;G<$;G++)Z+="%"+ab.alq(h[e+G].toString(16)); -return decodeURIComponent(Z)},i7:function(h,e,$,Z,c){if(h[e+c-1]==null||$[Z+c-1]==null){console.log(e,Z,c); -throw"e"}for(var G=0;G2*8192*8192)P++;q.scale(1/P,1/P);this.a54=[h,e,$,Z];var P=q.rD();h=Math.round(h*P); -e=Math.round(e*P);$=Math.round($*P);Z=Math.round(Z*P);var j=this.im,L=this.nQ;if(L==null){q.zq=-h}else{var H=L[2]-L[0]+30,_=Math.round($-h)+30; -if(this.gp.x+H+_>8192){q.zq=-h;this.gp.x=0;this.gp.y+=this.rI+120;this.rI=0}else{q.zq+=H;this.gp.x+=H}}q.nL=this.gp.y+(this.aho?Z:-e); -this.rI=Math.max(this.rI,Math.round(Z-e));this.nQ=[h,e,$,Z];j.t.push(j.d_())};gY.prototype.n4=function(){var h=this.im,e=h.t[h.t.length-1]; -return e};gY.prototype.DQ=function(){var h=JSON.parse(JSON.stringify(c3.oF.default));h.strokeStyleLineAlignment.v.strokeStyleLineAlignment="strokeStyleAlignCenter"; -h.strokeEnabled.v=!1;h.fillEnabled.v=!1;return h};gY.prototype.be=function(){var h=this.im,e=h.by(); -e.aq("Path "+h.t.length);this.im.t.push(e);e.GO|=16;e.add.SoCo={classID:"null",Clr:{t:"Objc",v:s.Y.lp({h:0,l:0,O:0})}}; -e.add.vmsk=new o.MM;e.add.vstk=this.DQ();return e};gY.prototype.pN=function(h){var e={H:h.crds,Z:h.cmds},$=s.a.b0(e,!1); -s.W.wD($,this.vC);return $};gY.a6l=function(h,e){for(var G=0;G=0&&h.t[G].add.lsct!=hJ.RS)G--;var Z=this.w9;if(Z){var c=new O,q=e;while(q>G){c=h.t[q].TX(this.im,!1,!0); -q--}$=Z.x1(c)}if($){this.SH.splice(G,1);h.t.splice(G,1)}else{h.t.push(this.ah5)}this.h9=null}};gY._V=function(h,e,$){var Z,c; -if(h.length!=null){Z="SoFi";var q=JSON.parse(c3.kD[c3.order.indexOf("SoFi")]);c={t:"Objc",v:q};c.v.Clr.v=gY.xV(h)}else{var E=gY.adM(h,e,$); -Z="GrFl";c={t:"Objc",v:E}}return{type:Z,G:c}};gY.adM=function(h,e,$){var Z=JSON.parse(c3.kD[c3.order.indexOf("GrFl")]),c=Z.Grad.v; -c.Intr.v=0;var q=gY.iW(h.mat);q.concat(e);var E=new eu(0,0),P=new eu($.d,0),a=h.crds;if(h.typ=="rad"){Z.Type.v.GrdT="Rdl"; -var j=.7;E.x=(1-j)*a[0]+j*a[3];E.y=(1-j)*a[1]+j*a[4];P.x=E.x;P.y=E.y;P.x+=Math.max(a[2],a[5])}else{Z.Type.v.GrdT="Lnr"; -E.x=a[0];E.y=a[1];P.x=a[2];P.y=a[3];E.x=P.x+.5*(E.x-P.x);E.y=P.y+.5*(E.y-P.y)}E=q.tf(E);P=q.tf(P);s.Y.N9(E,P,$,Z); -var L=h.grad;s.Y.GI(L,c);return Z};gY.prototype.PutText=function(h,e,$,Z){var c=e.charCodeAt(0),_=null; -if(this.sy!=-1&&this.sy!=this.kT)return;if(e.length==0||e.length==1&&(c==0||c==8203))return;this.to(h); -var q=this.im,E=h.font,P=gY.iW(h.ctm);P.concat(this.vC);var a=gY.iW(E.Tm);a.concat(P);var j=f.o.rD(a),L=new i7(1/j,0,0,-1/j,0,0); -L.concat(a);var H=E.Tfs*j;if(E.Th!=100||E.Trise!=0){console.log(E)}var J=q.t.length-1;while(J>=0&&q.t[J].add.TySh==null)J--; -if(L.O*L.O+L.Ma*L.Ma<.001&&Z==null&&J>=0&&q.t[J].add.TySh&&q.t[J].opacity==Math.round(255*h.ca)){var S=q.t[J],N=this.SH[J],Y=S.add.TySh.J,U=(Y.zq+N.W9-L.zq)/H,g=Math.abs(U),M=e.indexOf(" ")==-1,C=Y.R==L.R&&Y.O==L.O&&Y.Ma==L.Ma&&Y.rU==L.rU,y=C&&Math.abs(N.Yw-L.nL)<1e-5&&g<.6,i=L.nL-N.Yw; -if(y){_=S;N.W9=L.zq-Y.zq;if(U>.2&&M&&[".",",","?",":","!"].indexOf(e)==-1)e=" "+e}else if(C&&Math.abs(L.zq-Y.zq)<1e-5&&0>3]>>7-(G&7)&1)*255; -c[E]=P;c[E+1]=P;c[E+2]=P;c[E+3]=255}h=c}return h};gY.prototype.Vg=function(h,e,$,Z,c){if(h.length!=e*$*4){var q=cE.B3(h.buffer),E=cE.fy(q); -if(E==null||q=="tga")E=cE.fy("jpg");h=new Uint8Array(E.Cj(h,Z,c)[0].data)}return h};gY.prototype.ShowPage=function(){var h=this.im; -this.kT++;var e=this.nQ;this.$A();var $=h.by();h.t.push($);var Z=new O(Math.round(this.gp.x),Math.round(this.gp.y),Math.round(e[2]-e[0]),Math.round(e[3]-e[1])); -this.uD=this.uD.iJ(Z);$.$O(Z);$.add.artb.artboardBackgroundType.v=3;$.aq("Page "+this.kT);$.add.lsct=hJ.Y7; -$.oG="pass";$.GO=24};gY.prototype.Print=function(h){console.log("Print:",h)};gY.prototype.Done=function(){var h=this.im; -if(this.kT==1)h.t[h.t.length-1].add.lsct=hJ.sE;h.CK(this.kT);for(var G=0;G32767)q=!0}if(q){h.t.splice(G,1); -G--;continue}}e.ZB(h);if(Z&&c.ti.length!=0){this.lz(c);var a=Z.Kx,j=c.ti.length,L=c.ti[0],H=0,_=0;for(var E=0; -ES.length/2){J[E]=S.split("").reverse().join(""); -var g=a.EngineDict.ParagraphRun.RunArray[E].ParagraphSheet.Properties;g._Direction=1;g.Justification=gK.Ge(g)}}gK.Ba(a,J.join("\n"))}}h.ms=!0; -h.d=this.uD.d;h.v=this.uD.v;h.buffer=s.m(this.uD.X()*4)};var h7={};h7.A7=function(h,e,$,Z){var c=!1,q=[h.root],E=h.root.children; -if(h.add.artd){c=!0;for(var G=0;Gq.length){a.splice(G,1);G--}var J=72/h.Ay;for(var G=0; -G>>16&255)/255,(hO>>>8&255)/255,(hO&255)/255]; -var d3=gj[l];s.a.J(d3.H,c,d3.H);d3=s.a.a3d(d3);$.pth={cmds:d3.Z,crds:d3.H};Z.Fill($)}}else if(_&&q[3]==!1){var hH=_.Kx,v=_.J.clone(),hl=new i7(1,0,0,-1,0,0); -hl.concat(v);hl.concat(c);var ht=gK.N8(hH),hZ=new br(hH,E);for(var G=0;G=0;G--){var _=c3.order[G];if(_=="GrFl"||_=="SoFi")continue; -if(h.add.vmsk&&_=="FrFX")continue;var J=$[_],S=G>7||_=="FrFX";if(S!=P)continue;for(var N=0;Nh.length)throw"e";if(q){c.sub=[];e+=12;var E=c.i+c.size; -while(eh.length)throw"e";if(q.af=="RIFF"||q.af=="LIST"&&(q.$v!="cmpr"&&q.$v!="stlt")){q.sub=[]; -e+=12;var E=q.i+q.size;while(eh.length)throw"e";if(q){c.sub=[];e+=12;var E=c.i+c.size; -while(e=0;G--)dp.wN(_[G],e,$,Z)}else if(q=="obj "&&j.G&&j.G.path){H.aq("Object "+$.t.length); -var J=e.Oo[j.G.adv],S=e.R5[j.G.aog],N=H.getName(),Y=J&&J.type!=0,U=Y&&J.G!=null?J.G:[0,0,0];H.GO|=16; -H.add.vstk=JSON.parse(JSON.stringify(c3.oF.default));var g=H.add.vstk;g.strokeEnabled.v=!1;H.add.vmsk=new o.MM; -if(S&&S.a33!=1){g.strokeEnabled.v=!0;g.strokeStyleLineAlignment.v.strokeStyleLineAlignment="strokeStyleAlignCenter"; -g.strokeStyleLineWidth.v.val=S.lineWidth*Z.rD();var M=S.color;g.strokeStyleContent.v.Clr.v=s.Y.lp({h:M[0]*255,l:M[1]*255,O:M[2]*255})}var C=j.G.path; -H.add.vmsk.b=s.a.b0(C,!1);s.W.wD(H.add.vmsk.b,L);gY.Tn(U,H,L,s.W.v4(H.add.vmsk.b));g.fillEnabled.v=Y; -H.__();H.ZB($)}else if(q=="obj "&&P){var y=j.G.a9T,i=j.G.afe,n="";H.add.TySh=gK.Zh(0,0);var Q=L.rD(); -H.add.TySh.J.translate(L.zq,L.nL);var m=H.add.TySh.Kx,u=P.G.aeK;for(var G=0;G=G.data.length)throw"e";var h=0;while(G.data[G.i+h]!=0)h++; -var e=k.dd(G.data,G.i,h);G.i+=h+1;return e};dp.a5l=function(h){if(h.eE<600)return Math.PI*dp.TF(h)/1800; -return Math.PI*dp.oQ(h)/18e7};dp.aev=function(h){if(h.eE<1500)return dp.y9(h);else return dp.bq(h)/254e3}; -dp.y9=function(h){if(h.eE<600)return dp.TF(h)/1e3;else return dp.oQ(h)/254e3};dp.adK=function(h){if(h.eE<600)return CRDParser.Nj(h); -else return dp.my(h)};dp.an6=function(h){if(h.eE<600)return CRDParser.TF(h);else return dp.oQ(h)};dp.cF=function(h,e,$,Z){var c=dp,q=c.acy,E=c.Nj,P=c.my,a=c.alE,j=c.TF,L=c.oQ,H=c.bq,_=c.y9,J=c.aev,S=c.a5l,N=c.adK,Y=c.an6; -for(var U=0;U=1300);M.G.akG=dp.kK(h);M.G.alW={};var R=P(h);for(var G=0;G1300)h.i+=4;if(g>=1300){if(P(h))h.i+=68;else h.i+=12}else{h.i+=20;if(g>=1e3)h.i+=8;if(P(h))h.i+=8; -h.i+=8}}var hO=P(h);M.G.a5C={};for(var G=0;G=1300)ht+=4;h.i+=ht*hl;var ga=P(h);h.i+=28*ga;if(g>800){var eB=P(h); -h.i+=12*eB}M.G.IP={};for(var G=0;G=1200)fz*=2; -h.i+=fz;b_.anz=P(h);b_.a6c=P(h);if(bP>1){b_.ah9=P(h);b_.agO=P(h);b_.a5G=P(h);b_.aj6=P(h);if(g>800)b_.a5A=P(h)}if(bP>2){b_.a1L=P(h); -b_.ae_=P(h);b_.ags=P(h);b_.a8w=P(h);b_.a2F=P(h)}M.G.IP[ek]=b_}}else if(M.af=="LIST")dp.cF(h,M.sub,$,Z+1); -else if(M.af=="txsm"){M.G={};if(g<600)throw"e";if(g<700)throw"e";if(g>=1600)throw"e";if(g>=1500)h.i+=37; -else h.i+=36;if(P(h)){if(g<800)h.i+=32}if(g<800)h.i+=4;M.G.a13=P(h);M.G.aeK=[];h.i+=48;if(g>=800){if(P(h)){h.i+=32; -if(g>=1300)h.i+=8}}if(g>=1500)h.i+=12;var bP=P(h),ca=1,gf=!1;if(!bP){if(g>=800)h.i+=4;if(g>800)h.i+=2; -if(g>=1400)h.i+=2;h.i+=24;if(g<800)h.i+=8;ca=P(h)}for(var b=0;b=1300&&bP)h.i++; -h.i++;var T=P(h),b2=[];for(G=0;G=800)hE=q(h);var b_={}; -if(ch&1){b_.a5m=E(h);var dS=E(h);if(dS)b_.ag6=dS}if(ch&2)h.i+=4;if(ch&4)b_.a7k=_(h);if(ch&8)h.i+=4;if(ch&16)h.i+=4; -if(ch&32)h.i+=4;if(ch&64){b_.anz=P(h);if(g>=1500)h.i+=48}if(ch&128){b_.a6c=P(h)}if(hE&8){if(g>=1300){var e1=P(h); -if(h.i+e1*2>=h.data.length){gf=!0;break}h.i+=e1*2}else h.i+=4}if(hE&32){var eG=q(h);if(eG)h.i+=52}if(dV==2)if(g>=1300)h.i+=48; -b2.push(b_)}if(gf){break}var dq=P(h);if(h.i+dq*4>h.data.length)break;var f2=[];for(G=0;G=1200)a3=a(h)&4294967295;else a3=P(h);f2[G]=a3>>16|a3&1}var bm=dq;if(g>=1200)bm=P(h);var h2=dp.aD(h); -M.G.aeK.push({aff:bb,text:h2,IP:b2})}}else if(M.af=="font"){var ag=E(h),eU=E(h);h.i+=14;var iz=dp.aD(h); -M.G={id:ag,acz:eU,name:iz}}else if(["IKEY","ICMT","pfrd","bcfg"].indexOf(M.af)!=-1){}else if(M.af=="flgs")M.G=P(h); -else if(M.af=="bbox"){var d2=_(h),gP=_(h),fa=_(h),eI=_(h);M.G=new O(d2,gP,fa-d2,eI-gP)}else if(M.af=="fild"){var it=P(h),ic=0,fA; -if(g>=1300){h.i+=4;ic=E(h);h.i+=2}var iK=E(h);if(iK==0){}else if(iK==1){h.i+=g>=1300?13:2;fA=dp._w(h)}else if(iK==2){h.i+=g>=1300?8:2; -var iB=q(h),hG=0;if(g>=1300){h.i+=17;hG=j(h)}else if(g>=600){h.i+=19;hG=L(h)}else{h.i+=11;hG=j(h)}var dt=S(h),gO=.5+Y(h),cX=.5+Y(h)-.5; -if(g>=600)h.i+=2;var bh=N(h)&255,bi=q(h)/100;h.i++;var dM=N(h)&65535;if(g>=1300)h.i+=3;var ik=[];for(var G=0; -G=1300){if(ic==158||g>=1600&&ic==150)h.i+=26;else h.i+=5}var et=N(h)/100; -if(g>=1300)h.i+=3;ik.push([et,iW])}fA={typ:iB==1?"lin":"rad",crds:[gO-Math.cos(dt)/2,cX-Math.sin(dt)/2,gO,cX],grad:ik,mat:[1,0,0,1,0,0]}}else console.log("Unknown fill type",iK); -M.G={id:it,type:iK,G:fA}}else if(M.af=="outl"){var iy=P(h);if(g>=1300){var er=0,h$=0;while(er!=1){h.i+=h$; -er=P(h);h$=P(h)}}var dN=E(h),dQ=E(h),cL=E(h);if(g<1300&&g>=600)h.i+=2;var ge=_(h),ds=E(h)/100;if(g>=600)h.i+=2; -var dH=S(h);if(g>=1300)h.i+=46;else if(g>=600)h.i+=52;var fA=dp._w(h,iy==270963208||iy==276198e3,iy); -M.G={id:iy,a33:dN,a9F:dQ,abp:cL,lineWidth:ge,color:fA}}else if(M.af=="mcfg"){if(1300<=g)h.i+=12;else if(900<=g)h.i+=4; -else if(600<=g&&g<700)h.i+=28;var hs=0,cb=0;if(g<400)throw"e";else{hs=_(h);cb=_(h)}M.G={afG:new eu(hs,cb)}}else if(M.af=="loda"){var z=h.i,fe=N(h),ej=N(h),gd=N(h),cs=N(h),hc=N(h),c5=[],eO=[]; -h.i=z+gd;for(var G=0;G=0;G--)eO[G]=N(h);M.G={};for(var G=0; -G=1300)h.i+=8; -var hQ=E(h);if(hQ==8){var dy,a$,d2,hY,b3,gP;if(g>=600)h.i+=6;if(g>=500){dy=H(h);a$=H(h);d2=H(h)/(g<600?1e3:254e3); -hY=H(h);b3=H(h);gP=H(h)/(g<600?1e3:254e3)}else throw"e";M.FC=new i7(dy,hY,a$,b3,d2,gP)}else console.log(hQ)}}else if(!1){console.log(M); -var bK=Math.min(M.size,32);console.log(k.PH(data,M.i,bK));console.log(k.a9M(data,M.i,bK))}}};dp.kK=function(h,e){var $=dp.my,Z={},c=$(h); -for(var G=0;G=500){E=Z(h);if(E==1&&q>=1300)E=25;if(E==25||E==30){var a=0;if(E==30){E=25;a=30}else{a=Z(h);h.i+=4}var j=Z(h),L=Z(h)}else if(E==14)throw"e"; -else{h.i+=6;P=c(h)}}else throw"e";var H=[];if(E==2||E==9||E==17){var _=[P>>>0&255,P>>>8&255,P>>>16&255,P>>>24&255]; -if(E==2)for(var G=0;G<4;G++)_[G]=Math.round(255*_[G]/100);for(var G=0;G<4;G++)_[G]/=255;H=UDOC.C.cmykToRgb(_)}else if(E==1||E==5){H=[P>>>0&255,P>>>8&255,P>>>16&255]; -for(var G=0;G<3;G++)H[G]=H[G]/255}else console.log("Unknown color model "+E,P,P.toString(16));return H}; -var bD=function(){var h,e,$=new ArrayBuffer(4),Z=new Uint8Array($),c=new Uint32Array($),q=new Float32Array($); -function E(_,J){for(var S=0;S<_.length;S++)if(_[S][0]==J)return _[S]}function P(){var _=0,J=0,S=0;do{S=h[e++]; -_|=(S&127)<>>0}function a(_,J,S,N,Y){h=_;e=J;var U=N[0]=="mesg",g=N[2],M={},C=1,y=U?1e9:g.length; -while(C<=y){var i=C;if(U){i=P();if(i==0)break}var Q=E(g,i),m=Q[2],n=Q[1]==1,u=n?P():1,K=new Array(u); -if(m==3){if(!n)throw"e";K=h.slice(e,e+u);e+=u}else for(var G=0;G>>1):b>>>1}else if(m==7)F=P();else if(m==9){if(h[e]==0){F=0; -e++}else{Z[0]=h[e];Z[1]=h[e+1];Z[2]=h[e+2];Z[3]=h[e+3];var d=c[0];c[0]=d<<23|d>>>9;F=q[0];e+=4}}else if(m==11){var W=j(h,e); -F=W[0];e+=W[1]+1}else throw m}else{var A=S[m>>>1];if(A[0]=="enum"){var z=h[e++];if(z>127)throw"e";F=A[2][z]}else{var T=a(h,e,S,A,Y+1); -F=T[0];e=T[1]}}K[G]=F}M[Q[3]]=n?K:K[0];C++}return[M,e]}function j(_,J){var S=J;while(_[S]!=0)S++;return[k.rM(_,J,S-J),S-J]}function L(_,J){var S=J; -while(_[S]!=0)S++;for(var G=J;G127)throw"e";return k.dd(_,J,S-J)}function H(_){h=_;e=1; -var J=[];while(e<_.length){var S=e,N=J.length,Y=L(_,e);e+=Y.length+1;var U=P();if(U>2)throw"e";var g=P(),M=[]; -for(var G=0;GZ?1:-1}; -b0.JF=function(h){for(var G=1;G1.999*Math.PI)H=s.W.d5.eX(0,0,a,j,0);else H=s.W.d5.ajj(a/2,j/2,j/2,S,N);if(Y!=0&&Y!=1){var U=o.MM.rP(H).slice(3); -U.reverse();for(var G=0;G>>24&255)/255,(_>>>16&255)/255,(_>>>8&255)/255,(_>>>0&255)/255]}function c(_,J){var S=J&4278190080|(J&255)<<16|(J>>>8&255)<<8|J>>>16&255; -new Uint32Array(_.buffer).fill(S)}function q(_,J){var S=_.TSZ,N=_.WPX,Y=_.HPX,U=_.TIL,g=new O(0,0,N,Y),M=s.m(N*Y*4),C=0; -for(var y=0;y>>24!=0){var A=J.by();A.aq("Background");J.t.push(A);A.rect=new O(0,0,b,d);A.buffer=s.m(A.rect.X()*4); -c(A.buffer,W)}var z=(F.LYL?F:N).LYL.LAY;for(var G=0;G>>=1}if(_.CLL){Y.aq(_.LNM);J.t.push(J.d_()); -var M=_.CLL.CEL.ELM;for(var G=M.length-1;G>=0;G--)a(M[G][1],J,M[G][0],N);Y.add.lsct=_.DIS?hJ.sE:hJ.Y7; -Y.GO|=24}else if(S=="GRP"){var C=Y.add.lmfx=j(_.EFL),y;J.t.push(J.d_());var M=_.ELM;if(_.MNA&&_.MRX){y=M[0][1]; -M=M.slice(1)}Y.aq("Group: "+M.length+" objects");for(var G=M.length-1;G>=0;G--)a(M[G][1],J,M[G][0],N); -if(y){var i=q(y,N),Q=Y.r=new o.kq;Q.rect=i[1].clone();Q.rect.x=y.XLC;Q.rect.y=y.YLC;Q.channel=s.m(Q.rect.X()); -s.z0(i[0],Q.channel,0);s.vy(Q.channel)}Y.add.lsct=hJ.Y7;Y.GO|=24}else if(S=="IMG"){Y.aq(_.OBN?_.OBN:"Bitmap"); -var i=q(_,N);Y.rect=i[1].clone();Y.rect.x=_.XLC;Y.rect.y=_.YLC;Y.buffer=i[0]}else if(S=="TXT"){var m=_.TFS,n=m.TRN instanceof Array?m.TRN.length:1,b=""; -Y.add.lnsr="rend";Y.add.TySh=gK.Zh(0,0);Y.add.TySh._P=new O(0,0,100,100);var u=new i7(1,0,0,1,_.LFT,_.TOP); -if(_.MTX){var K=_.MTX,Q=new i7(K.M00,K.M01,K.M10,K.M11,K.M20,K.M21);u.concat(Q)}Y.add.TySh.J=u;var F=Y.add.TySh.Kx; -for(var G=0;G")!=-1)Z="icc";else Z="svg"}if($(e,[60,115,118,103],c))Z="svg"; -if($(e,[60,33,100,111],c)||$(e,[60,33,68,79],c)){if(k.O8(e," \t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",E=" "+q+""; -if(h==1)E+=""+""+""; -E+=""+""+""; -var P=new Uint8Array(E.length);k.Gn(E,P,0);var a="data:image/svg+xml;base64,"+cE.oq(P.buffer);return{bj:a,_:new O(0,0,128,128),yE:new eu(64,64)}}; -cE.oq=function(h){var e=new Uint8Array(h),$="";for(var G=0;G>3)]; -Q=Q>>7-(G&7)&1;var m=C*L+i<<2;S[m]=S[m+1]=S[m+2]=(1-Q)*255;S[m+3]=255}}if(Z=="P5")for(var G=0;G>>16);var L=new Uint8Array(a.memory.buffer),H=a.malloc(Z);L.set(new Uint8Array(h),H); -var _=a.malloc(4),J=a.malloc(4),t=a.malloc(4),S=a.stbi_load_from_memory(H,Z,_,J,t,4);a.free(H);a.free(_,J,t); -a.free(S);var N=L.slice(S,S+E*4);return N};(function(){var h=cE.bO.get("wasm/jpg").buffer;if(window.WebAssembly==null)window.alert("Your browser is too old. Please, update it."); -WebAssembly.instantiate(h).then(function(e){cE.Rj.Sd=e})}());cE.Rj.pT=function(h,e,$,Z){if(Z==null)Z=[70]; -var c=h[0],q=new Uint8Array(c[0]);if(s.AC(q)){var E=new Uint8Array(q.length),P=new O(0,0,e,$);s.Ut(E,4294967295); -s.p.Jn("norm",q,P,E,P,P,1);q=E}var a=new Uint8Array(cE.XB(q.buffer,e,$,"jpeg",Z[0]/100));if(c[2]!=null){var j=cE.Rj.om(a)[224][0]+2; -j+=9;a[j]=1;k.OF(a,j+1,c[2]);k.OF(a,j+3,c[2])}if(c[3]!=null&&Z[1]==!0&&Object.keys(c[3]).length!=0){var L=0,H=0,_=0,J=dn.RM(c[3]),S=new Uint8Array(UTIF.encode([J])),N="http://ns.adobe.com/xap/1.0/",M=0,i=0,K=20; -L=4+6+S.length;var Y=dn.Za(c[3]),U=k.Ft(Y);H=4+N.length+1+U.length;var g=dn.ahe(c[3]);for(var G=0;G15e7||a==0||a==2){var j=new PDFJS.JpegImage;j.parse(h);var L=j.getData({width:c,height:q,forceRGB:!0,isSourcePDF:$}),P=s.m(E*4); -for(var G=0;G1&&C<20)U=s.raw.C4(C,c,q)}if(Z.xmp){Y=dn.Vi(Z.xmp,Y)}var y=e[237],i=[],Q=[]; -if(y){var m=new Uint8Array(65536),n=0,u=0;for(var G=0;Gm.length){var W=new Uint8Array(m.length*2); -W.set(m);m=W}var A=new Uint8Array(h.buffer,u,d);m.set(A,n);n+=d}u=0;h=m;while(u>>1)*c+a3>>>1),h2=bP[bm],ag=bP[bm+(E>>>2)]; -ht[H]=ht[H+1]=ht[H+2]=h2;ht[H+3]=255;dq[H]=dq[H+1]=dq[H+2]=ag;dq[H+3]=255}gj.push({Au:new O(0,0,c,q),data:ht.buffer},{Au:new O(0,0,c,q),data:dq.buffer})}else if(ek=="edof"){var C=bP[8+7]; -console.log(C.toString(16));var u=8+16,eU=k.EW(bP,u),iz=k.EW(bP,u+2),E=eU*iz;u+=4;u+=32+16;var d2=s.m(E*4); -for(var G=0;G1){var eI=gj[0].Au; -gj[0].c5="Main";for(var G=1;G>>3)]>>>7-(M&7)&1,y=C*255; -Y[L]=y;Y[L+1]=y;Y[L+2]=y;Y[L+3]=255}}return[{Au:new O(0,0,E,q),data:Y.buffer}]}else{var J=new PDFJS.JpxImage; -J.parse(h);var E=J.width,q=J.height,i=J.tiles,Q=J.componentsCount,m=new Uint8Array(E*q*4),n=new O(0,0,E,q); -for(var J=0;J>>1,J.y>>>1,J.width-1,J.height-1,h[G][1]]; -for(var N=0;N<5;N++)E(P,a+3*N,S[N]);a+=15;P.sN(a,1);P.data[a]=1-_.blend<<1|_.dispose;a++;var Y=new Uint8Array(cE.XB(_.img.buffer,J.width,J.height,"webp",1)),U=d_.Hm(Y.buffer).sub,g=k.dd(Y,12,4); -if(g!="VP8L"&&g!="VP8 "&&g!="VP8X")throw"e";var M=g=="VP8 "?0:g=="VP8L"?12:30,C=Y.length-M;P.sN(a,C); -for(var N=0;N>>14&(1<<14)-1)+1}else throw"e"; -var J=[$(Z,h,{i:0,size:e.length},L,H)];return J}var S=j.i,L=1+(k.bt(e,S+4)&16777215),H=1+(k.bt(e,S+7)&16777215),N=[],Y=new O(0,0,L,H),U=s.m(L*H*4); -for(var G=0;G>>1==0)s.p.Jn("norm",m,y,U,Y,y,1);else s.hX(m,y,U,Y);N.push({c5:"_a_"+N.length+","+i,Au:Y.clone(),data:U.buffer.slice(0)}); -if((n&1)==1){s.Ut(m,0);s.hX(m,y,U,Y)}}return N};cE.ei.aj$=function(h,e,$,Z,c){var q=cE.ei.exp,E=5e6+2*$.size+Z*c*10,P=q.memory,a=P.buffer.byteLength; -if(a>>16)+1)}var j=new Uint8Array(P.buffer),L=q.malloc($.size);j.set(new Uint8Array(e,$.i,$.size),L); -var H=q.malloc(8),_=q.WebPDecodeARGB(L,$.size,H,H+4),J=k.bt(j,H),S=k.bt(j,H+4),N=J*S*4,Y=s.m(N);for(var G=0; -G256){J=null; -break}}}if(J){Y=1;while(1<>>16,u=J[G]>>>8&255,K=J[G]&255;Q[m]=n;Q[m+1]=u;Q[m+2]=K}i+=y}C.sN(i,M*j); -if(Y==24)for(var F=0;F>>1)]|=A<<4-(d&1)*4}}else if(Y==1)for(var F=0; -F>>3)]|=A<<7-(d&7)}}i+=M*j+2; -return C.data.slice(0,i).buffer}function e(P){P=new Uint8Array(P);if(k.bt(P,0)==40)return[$(P.buffer,0)]; -var a=0,j=k.dd(P,a,2);a+=2;if(j!="BM"){alert("Unsupported BMP format: "+j);return}var L=k.bt(P,a);a+=4; -a+=4;var H=k.bt(P,a);a+=4;return[$(P.buffer,a,H)]}function $(P,a,j){P=new Uint8Array(P);var L=k.bt(P,a),H=q(P,a+4); -if(H.fK!=1)alert("unsupported number of color planes: "+H.fK);if(H.WV!=0&&H.WV!=1&&H.WV!=2&&H.WV!=3){alert("Unsupported BMP compression: "+H.WV); -return}a+=L;var _=a,J=P;if(j==null)j=a;if(H.WV==1||H.WV==2){var S=c(P,j,H);H.C2=8;P=S;j=0}var N=4*Math.floor((H.C2*H.EN+31)/32),Y=H.EN,U=Math.abs(H.CD),g=new Uint8Array(Y*U*4); -g.fill(255);if(H.C2==32)for(var M=0;M>>11)*(255/31); -g[i+1]=(Q>>>5&63)*(255/63);g[i+2]=(Q&31)*(255/31)}}else if(H.C2==8)for(var M=0;M>1)];m=m>>4-4*(y&1);m=m&15; -g[i]=J[_+4*m+2];g[i+1]=J[_+4*m+1];g[i+2]=J[_+4*m+0]}}else if(H.C2==1)for(var M=0;M>3)];n=n>>7-(y&7);n=n&1;g[i]=J[_+4*n+2];g[i+1]=J[_+4*n+1]; -g[i+2]=J[_+4*n+0]}}else throw"Unknown bit depth "+H.C2;if(H.CD<0){var u=new Uint32Array(g.buffer),K=U>>>1; -for(var M=0;M>>4-((G&1)<<2)&15}function c(P,a,j){var L=j.EN,H=Math.abs(j.CD),_=new Uint8Array(L*H),J=0,S=0,G=0; -while(S0){if(j.C2==4)for(G=0;G>>1)],G)}g=Math.ceil(Y/2)}else{for(G=0; -G127?255:0;if(j==0)a[G]=a[G+1]=a[G+2]=0}c.push(a.buffer); -q.push(h[P][1])}var L=Math.round(2+254*Z[0]/100),H=UPNG.encode.compress(c,e,$,L,[!0,!1,!1,8,!1]),_=H.plte,J=new Uint8Array(4),S=new Uint32Array(J.buffer); -for(var G=0;G<_.length;G++){S[0]=_[G];var Y=J[0];J[0]=J[2];J[2]=Y;_[G]=S[0];if(S[0]==0)N=G}while(_.length<256)_.push(0); -var U=new Uint8Array(2e3+e*$*h.length),g=Z[2],M={palette:_};if(g!=1)M.loop=g==0?0:g-1;var C=new GifWriter(U,e,$,M); -for(var G=0;G256||$>256){alert("Maximum ICO size is 256x256 px. Will be cropped.",4e3); -var c=Math.min(e,256),q=Math.min($,256),E=new O(0,0,c,q),P=s.m(E.X()*4),a=new O(0,0,e,$),j=new Uint8Array(h[0][0]); -s.hX(j,a,P,E);h[0][0]=P.buffer;e=c;$=q}var L=new e4,H=0,_=Z&&Z[0]==!0;k.lc(L,H,0);H+=2;k.lc(L,H,_?2:1); -H+=2;k.lc(L,H,1);H+=2;var J=new Uint8Array(cE.fy("png").pT(h,e,$));L.sN(H,16);L.data[H]=e==256?0:e;H++; -L.data[H]=$==256?0:$;H++;H+=2;k.lc(L,H,_?Math.round(e/2):1);H+=2;k.lc(L,H,_?Math.round($/2):32);H+=2; -k.t2(L,H,J.length);H+=4;k.t2(L,H,6+16);H+=4;L.sN(H,J.length);for(var G=0;GJ)J=g;S+=g;N++}}_=1/256*65535/(.5*J+.5*(2*S/N))}var M=[]; -for(var G=0;G<$.length;G++){var C=$[G],y=72;UTIF.decodeImage(h,C,$);var i=C.t282,Q=C.t296;if(i!=null&&Q!=null){y=i[0][0]/i[0][1]; -if(Q[0]==3)y=Math.round(y/2.54)}if(C.width==null)continue;var m=UTIF.toRGBA8(C,_).buffer,n=dn.Vm(C); -M.push({Au:new O(0,0,C.width,C.height),data:m,Ay:y,ZG:n})}return M};cE.LQ.pT=function(h,e,$,Z){if(Z==null)Z=[!1]; -var c={},q=h[0];if(q[3]!=null&&Z[0])c=dn.RM(q[3]);if(q[2]!=null){c.t282=c.t283=[[Math.round(q[2]),1]]; -c.t296=[2]}return UTIF.encodeImage(q[0],e,$,c)};cE.LW={};cE.LW._Q=!0;cE.LW.Cj=function(h,e){ip.Hm(h,e)}; -cE.LW.a8j=function(h,e,$,Z){if(Z==null)Z=[!1,!1,!1];if(!Z[0])h.v2();var c=new e4,q=ip.XE(h,c,Z);return[c.data.buffer,q]}; -cE.LW.pT=function(h,e,$,Z){var c=cE.LW.a8j(h,e,$,Z),q=c[0],E=c[1];return q.byteLength==E?q:q.slice(0,E)}; -cE.Rg={};cE.Rg._Q=!0;cE.Rg.Cj=function(h,e){var $=pako.inflate(new Uint8Array(h)),Z=k.oO($,0),c=k.oO($,2),q=4; -e.d=k.n($,q);q+=4;e.v=k.n($,q);q+=4;e.buffer=s.m(e.d*e.v*4);var E=k.oO($,q);q+=2;q+=4;for(var P=0;P3)L+=4;a.opacity=Math.round(255*$[L]/100);L++;a.QL($[L]!=0);L++;a.oG="norm,lddg,norm,dark,diff,norm,hLit,norm,norm,lite,mul ,over,scrn,fsub".split(",")[$[L]]; -L++;L++;if(Z>3){var J=k.oO($,L);L+=2;if(J!=0){var S=JSON.parse(k.rM($,L,J));L+=J;var N=S.text,Y=S.textSettings,U=Y.font,g=Y.size,M=Y.padding,C=parseInt(Y.color.slice(1),16); -a.add.lnsr="rend";a.add.TySh=gK.Zh(0,0);a.add.TySh._P=new O(0,0,100,100);a.add.TySh.J=new i7(1,0,0,1,a.rect.x+M,a.rect.y+M); -var y=a.add.TySh.Kx;gK.gq(y,1);gK.IE(y,[0,0,a.rect.d-M*2,a.rect.v]);gK.Ja(y,0,N);var i=gK.hT(y,0,1); -i.By.FontSize=g;i.By.FillColor={Type:1,Values:[1,(C>>>16&255)/255,(C>>>8&255)/255,(C>>>0&255)/255]}; -if(Y.bold)U+="-Bold";gK.P0(i,U);i.Bp.Justification=["left","right","center"].indexOf(Y.align);gK.sq(y,0,N.length,i)}}var Q=k.n($,L); -L+=4;if(Q!=a.rect.X()*4)throw"e";a.buffer=s.m(Q);if(Z>3){m=0;n=1;u=2;K=3}for(var G=0;G3){q+=j; -continue}var b=$[L];L++;var d=k.oO($,L);L+=2;if(F!=0){a.r=new o.kq;a.r.rect=a.rect.clone();a.r.channel=s.m(a.rect.X()); -for(var G=0;G>>2]=$[L+G+1];L+=F}if(b!=0){var W=JSON.parse(c3.default);a.add.lmfx=W; -for(var G=0;G>>4<<1,Q=L+H,m=s.m(i*P*Q),F,b,d;f6.qj(Z,c,M.size,m,0,m.length); -var n=L-2,u=(1<>>3]>>>7-(z&7)&1;W|=T<>>L,W=W&(1<>>n!=0){var r=W>>>n,x=(W&u)*K;if(r==1)d=x;else if(r==2)F=x;else if(r==3)b=x}else{var x=J+W*3; -F=Z[x+0];b=Z[x+1];d=Z[x+2]}}else{F=W>>>0&255;b=W>>>8&255;d=W>>>16&255}q[I+0]=F;q[I+1]=b;q[I+2]=d;q[I+3]=255}}}return[{Au:new O(0,0,E,P),data:q.buffer}]}; -cE.At={};cE.At._Q=!1;cE.At.pT=function(h,e,$,Z){var c=h[0][4],q=new Uint8Array(h[0][0]),E=2,P=c?!0:!1,a=P?4:3,j=new Uint8Array(e*$*a); -for(var L=0;L<$;L++)for(var H=0;H>>4,Y=k.dd(e,18,Z),U=s.m(H*_*4),$=18+Z+(P*a>>>3),g=new Uint8Array(e.buffer,$); -if(q>3){var M=0,C=e,y=new Uint8Array(H*_*J>>>3),i=$,Q=0,m=e.length,n=J>>>3;while(Q>>3;var K=new Uint8Array(4),F=cE.At.acL; -for(var b=0;b<_;b++)for(var d=0;d>>3; -if(q==1){var x=0;if(J==8)x=g[r];else throw"e";F(e,18+Z+E+(x*a>>>3),a,K);z=K[0];T=K[1];R=K[2];I=K[3]}else if(q==2){F(g,r,J,K); -z=K[0];T=K[1];R=K[2];I=K[3]}else if(q==3){if(J==8)z=T=R=g[r];else throw"e"}var X=A*4;U[X]=z;U[X+1]=T; -U[X+2]=R;U[X+3]=I}var K={Au:new O(0,0,H,_),data:U.buffer,c5:Y};if(s.AC(U)){var l=s.m(H*_);s.z0(U,l,3); -s.Ut(U,4278190080,16777215);K.Qe=[l]}return[K]};cE.At.acL=function(h,e,$,Z){var c,q,E,P=255;if($==24||$==32){E=h[e]; -q=h[e+1];c=h[e+2];if($==32)P=h[e+3]}else if($==16){var a=h[e+1]<<8|h[e+0];c=a>>>10&31;q=a>>>5&31;E=a>>>0&31; -c=Math.round(c*(255/31));q=Math.round(q*(255/31));E=Math.round(E*(255/31))}else throw"e";Z[0]=c;Z[1]=q; -Z[2]=E;Z[3]=P};cE.rN={};cE.rN.Cj=function(h){var e=new Uint8Array(h),$=0,Z=112,c=42,q=k.bt,L;$+=8;var E=e[$]; -$++;if(E!=c)throw"e";var P=q(e,$);$+=4;var a=k.Os(e,$,P);$+=P*2;var j=[];while($0)j.push($+J);$+=J+H}var S=new DOMParser,N=S.parseFromString(a,"image/svg+xml").firstChild.firstChild,Y=[]; -cE.rN.jl(N,e,j,Y);return Y};cE.rN.jl=function(h,e,$,Z){var c=h.firstChild.firstChild;if(c.tagName=="Image"){var q=c.getElementsByTagName("ImageDescription")[0],E=q.children[0].children,P=q.children[1].children,a=$.shift(),j=[]; -for(var G=0;G3)j[2]*=j.pop(); -var L=E.length,H=j[0],_=j[1],J=j[2],S=parseInt(P[0].getAttribute("BytesInc"));for(var N=0;N>>2);else throw S; -if(U!=3)s.Jk(g,Y,U);if(L==1){s.Jk(g,Y,1);s.Jk(g,Y,2)}a+=H*_*S}Z.push({Au:new O(0,0,H,_),data:Y.buffer})}}else{var C=h.children,y=0; -while(y>>2); -for(var G=0;GH)H=U}var g=s.m(a*4),M=1/H;for(var C=0;C>>7)}else if(Q==305){var n=Math.round(Math.sqrt(m)),u=[]; -for(var K=0;K>>3; -gj[v]|=d3>>>16;gj[v+1]|=d3>>>8;gj[v+2]|=d3}var X=J*8/(U*g);if(X==16)for(var G=0;G>>12|(hH&4095)<<12; -A[G]=hH>>>16&255;A[G+1]=hH>>>8&255;A[G+2]=hH&255}if(W)A=cE.AR.aeM(A,U,g);var hZ=W?2:1;U*=hZ;Y.t256=[U]; -Y.t257=[g];Y.t258=[z];Y.t50719=[C[1],C[0]*hZ];Y.t50720=[C[3],C[2]*hZ];Y.width=U;Y.height=g;Y.data=new Uint8Array(A.buffer); -return[Y]};cE.AR.aeM=function(h,e,$){h=new Uint16Array(h.buffer);var Z=new Uint16Array(e*$*2);for(var c=0; -c<$;c+=2)for(var q=0;q>>1)+q&1)==0){Z[P]=a; -Z[P+2*e+1]=h[E+1]}else{Z[P]=h[E-1];Z[P+2*e+1]=a}}return Z};cE.EK={};cE.EK.zr=!0;cE.EK.pT=function(h,e,$,Z){var c=new Uint8Array(h[0][0]),q=e*$,E=[1,3,4][Z[0]],P=8+8*Z[1],a=Z[2]; -if(E==1){var j=new Uint8Array(e*$);s.z0(c,j,0);c=j}if(E==3){var j=new Uint8Array(e*$*3);for(var G=0; -G>>8;j[G*2+1-a]=J&255}c=j}return c.buffer}; -cE.Qq={};cE.Qq.Cj=function(h,e){function $(a){return~~(.5+s.QN(Math.max(0,Math.min(1,a)))*255)}var Z=EXRLoader.parse(h),c=Z.width,q=Z.height,E=s.m(c*q*4); -for(var P=0;P>>31==1){U=U&16777215}if(G>>31==1){g=g&268435455;C=c(E,P,P+g,y,L)}else{var i=e(E,P+g),Q=e(E,P+g+4),m=e(E,P+g+8),n=e(E,P+g+12); -if(n!=0)throw"e";if(iL[0]+L[1])throw"e";var u=L[2]+i-L[0];C=E.slice(u,u+Q);var K=cE.B3(C.buffer); -if(K&&["bmp","png","ico"].indexOf(K)!=-1){var F=cE.fy(K);if(!F._Q){var b=null;try{b=F.Cj(C.buffer)}catch(e_){}if(b){b[0].c5=y[1]; -Z.push(b[0])}}}else if(K)console.log(K)}Y[M]=C;a+=8}return Y}function q(E){Z=[];var P=new Uint8Array(E),a=0,j=h(P,a); -a+=2;a+=58;var L=e(P,a);a+=4;a=L;var H=$(P,a,4);a+=4;var _=h(P,a);a+=2;var J=h(P,a);a+=2;var S=e(P,a); -a+=4;var N=e(P,a);a+=4;var Y=e(P,a);a+=4;var U=h(P,a);a+=2;var g=h(P,a);a+=2;a+=U;var M={};for(var G=0; -G>>e)+(h>>>e)&1)*51};s.jT=function(h){var e=h.toString(16); -while(e.length<6)e="0"+e;return e};s.St=function(h){return parseInt(h,16)};s.GE=function(h){return.3*h.h+.59*h.l+.11*h.O}; -s.vD=function(h){return Math.max(h.h,h.l,h.O)-Math.min(h.h,h.l,h.O)};s.jv=function(h,e,$){return.3*h+.59*e+.11*$}; -s.ac3=function(h,e,$){return Math.max(h,e,$)-Math.min(h,e,$)};s.$K=function(h,e){var $=e-h,Z=Math.abs($),c=$-1,q=$+1; -if(Math.abs(c).5?a/(2-(Z+c)):a/(Z+c);switch(Z){case h:q=(e-$)/a+(e<$?6:0);break;case e:q=($-h)/a+2;break;case $:q=(h-e)/a+4; -break}q*=1/6}return{CD:q,Zp:E,a9:P}};s.lR=function(h,e,$){var Z,c,q;if(e==0)Z=c=q=$;else{var E=$<.5?$*(1+e):$+e-$*e,P=2*$-E; -Z=s.EA(P,E,h+1/3);c=s.EA(P,E,h);q=s.EA(P,E,h-1/3)}return{h:Z,l:c,O:q}};s.EA=function(h,e,$){if($<0)$+=1; -if($>1)$-=1;if($<1/6)return h+(e-h)*6*$;if($<1/2)return e;if($<2/3)return h+(e-h)*(2/3-$)*6;return h}; -s.TC=function(h,e,$){var Z=Math.max(h,e,$),c=Math.min(h,e,$),q,E,P=Z,a=Z-c;E=Z==0?0:a/Z;if(Z==c)q=0; -else{switch(Z){case h:q=(e-$)/a+(e<$?6:0);break;case e:q=($-h)/a+2;break;case $:q=(h-e)/a+4;break}q*=1/6}return{CD:q,Zp:E,o8:P}}; -s.g7=function(h,e,$){var Z,c,q,G,E,P,a,j;G=Math.floor(h*6);E=h*6-G;P=$*(1-e);a=$*(1-E*e);j=$*(1-(1-E)*e); -switch(G%6){case 0:Z=$,c=j,q=P;break;case 1:Z=a,c=$,q=P;break;case 2:Z=P,c=$,q=j;break;case 3:Z=P,c=a,q=$; -break;case 4:Z=j,c=P,q=$;break;case 5:Z=$,c=P,q=a;break}return{h:Z,l:c,O:q}};s.sv=function(){var h=[],e=[]; -for(var G=0;G<2e3;G++){var $=G/1e3;h[G]=s.a1X($);e[G]=$>.008856?Math.pow($,1/3):(903.3*$+16)*(1/116)}return[h,e]}(); -s.Z1=function(h,e,$){var Z=s.sv[0],c=s.sv[1];h=Z[~~(h*(1e3/255))];e=Z[~~(e*(1e3/255))];$=Z[~~($*(1e3/255))]; -var q=s.l2.a44,E=q[0]*h+q[1]*e+q[2]*$,P=q[4]*h+q[5]*e+q[6]*$,a=q[8]*h+q[9]*e+q[10]*$;E=E*(100/96.72); -P=P*(100/100);a=a*(100/81.427);return s.Ok(E,P,a)};s.Ok=function(h,e,$){var Z=s.sv[1],c=Z[~~(h*1e3)],q=Z[~~(e*1e3)],E=Z[~~($*1e3)]; -return{Hs:116*q-16,R:500*(c-q),O:200*(q-E)}};s.Dl=function(h,e,$){var Z=903.3,c=.008856,q=(h+16)/116,E=q*q*q,P=q-$/200,a=P*P*P,j=e/500+q,L=j*j*j,H=a>c?a:(116*P-16)/Z,_=E>c?E:(116*q-16)/Z,J=L>c?L:(116*j-16)/Z,S=J*96.72,N=_*100,Y=H*81.427,U=s.l2.Cf(s.l2.EJ,[S/100,N/100,Y/100,0]); -for(var G=0;G<4;G++)U[G]=Math.max(0,Math.min(255,s.QN(U[G])*255));return{h:U[0],l:U[1],O:U[2]}};s.Ku=function(h,e,$,Z,c){var q=h.Hs,E=h.R,P=h.O,a=(q>2]=~~(h[G+0]*c+h[G+1]*q+h[G+2]*E+.5)};s.Kh=function(h,e){var $=e.length; -for(var G=0;G<$;G+=4){var Z=h[G>>>2];e[G]=Z;e[G+1]=Z;e[G+2]=Z}};s.cl=function(h,e){var $=h.R,Z=h.h,c=h.l,q=h.O,E=Math.min(h.R.length,e.buffer.byteLength>>>2),P=4*Math.floor(E/4),a=new Uint32Array(e.buffer),j=new Uint32Array($.buffer),L=new Uint32Array(Z.buffer),H=new Uint32Array(c.buffer),_=new Uint32Array(q.buffer); -for(var G=0;G>2],S=_[G>>2],N=H[G>>2],Y=L[G>>2];a[G]=J<<24|(S&255)<<16|(N&255)<<8|Y&255; -a[G+1]=(J&65280)<<16|(S&65280)<<8|N&65280|(Y&65280)>>>8;a[G+2]=(J&16711680)<<8|S&16711680|(N&16711680)>>>8|(Y&16711680)>>>16; -a[G+3]=J&4278190080|(S&4278190080)>>>8|(N&4278190080)>>>16|(Y&4278190080)>>>24}for(var G=P;G>>2),P=4*Math.floor(E/4),a=new Uint32Array(h.buffer),j=new Uint32Array($.buffer),L=new Uint32Array(Z.buffer),H=new Uint32Array(c.buffer),_=new Uint32Array(q.buffer); -for(var G=0;G>2]=J&255|(S&255)<<8|(N&255)<<16|Y<<24; -H[G>>2]=(J&65280)>>8|S&65280|(N&65280)<<8|(Y&65280)<<16;_[G>>2]=(J&16711680)>>16|(S&16711680)>>8|N&16711680|(Y&16711680)<<8; -j[G>>2]=J>>>24|S>>>24<<8|N>>>24<<16|Y&4278190080}for(var G=P;G>0&255;c[G]=U>>8&255; -q[G]=U>>16&255;$[G]=U>>24&255}};s.z0=function(h,e,$){var Z=new Uint8Array(h.buffer),c=Math.min(Z.length/4,e.length); -for(var G=0;G>>2];Z[(G<<2)+$]=E&255;Z[(G<<2)+$+4]=E>>>8&255;Z[(G<<2)+$+8]=E>>>16&255;Z[(G<<2)+$+12]=E>>>24; -G+=4}while(G>>2,h=new Uint32Array(h.buffer,0,Z),e=new Uint32Array(e.buffer,0,Z); -e.set(h)};s.dz=function(h,e){var $=h.buffer.byteLength,Z=e.buffer.byteLength,c=new Uint32Array(h.buffer,0,$>>2),q=new Uint32Array(e.buffer,0,Z>>2); -if($!=Z)return!1;var E=c.length;for(var G=0;G=2&&Z.v>=2){var c=s.$I($,Z); -h.push(c.Hl,c.rect);$=c.Hl;Z=c.rect}};s.oN=function(h){var e=h.length,$=h[e-2],Z=h[e-1];while(Z.d>=2&&Z.v>=2){var c=s.dM($,Z); -h.push(c.Hl,c.rect);$=c.Hl;Z=c.rect}};s.$I=function(h,e,$){var Z=e.d,c=e.v,q=Z>>1,E=c>>1,P=new O(e.x,e.y,q,E),a=$&&$.length==q*E*4?$:s.m(q*E*4),j=new Uint32Array(h.buffer),L=new Uint32Array(a.buffer); -for(var H=0;H>>24,C=Y>>>24,y=U>>>24,i=g>>>24,Q=M+C+y+i; -if(Q==1020){var m=(N>>>0&255)+(Y>>>0&255)+(U>>>0&255)+(g>>>0&255)+2>>>2,n=(N>>>8&255)+(Y>>>8&255)+(U>>>8&255)+(g>>>8&255)+2>>>2,u=(N>>>16&255)+(Y>>>16&255)+(U>>>16&255)+(g>>>16&255)+2>>>2; -L[J]=255<<24|u<<16|n<<8|m}else if(Q==0)L[J]=0;else{var m=(N>>>0&255)*M+(Y>>>0&255)*C+(U>>>0&255)*y+(g>>>0&255)*i,n=(N>>>8&255)*M+(Y>>>8&255)*C+(U>>>8&255)*y+(g>>>8&255)*i,u=(N>>>16&255)*M+(Y>>>16&255)*C+(U>>>16&255)*y+(g>>>16&255)*i,K=1/Q; -m=~~(m*K+.5);n=~~(n*K+.5);u=~~(u*K+.5);L[J]=Q+2>>>2<<24|u<<16|n<<8|m}}return{rect:P,Hl:a}};s.hg=function(h,e,$){var Z=e.d,c=e.v,q=Z>>1,E=c>>1,P=new O(e.x,e.y,q,E),a=$&&$.length==q*E*4?$:s.m(q*E*4),j=new Uint32Array(h.buffer),L=new Uint32Array(a.buffer); -for(var H=0;H>>0&255)+(Y>>>0&255)+(U>>>0&255)+(g>>>0&255)>>>2,C=2+(N>>>8&255)+(Y>>>8&255)+(U>>>8&255)+(g>>>8&255)>>>2,y=2+(N>>>16&255)+(Y>>>16&255)+(U>>>16&255)+(g>>>16&255)>>>2,i=2+(N>>>24&255)+(Y>>>24&255)+(U>>>24&255)+(g>>>24&255)>>>2; -L[J]=i<<24|y<<16|C<<8|M}return{rect:P,Hl:a}};s.a0N=function(h,e,$){var Z=e.d,c=e.v,q=2*Math.floor(Z/3),E=2*Math.floor(c/3),P=new O(e.x,e.y,q,E),a=$&&$.length==q*E*4?$:s.m(q*E*4),j=new Uint32Array(h.buffer),L=new Uint32Array(a.buffer); -for(var H=0;H>>1)*Z+(_*3>>>1),N=j[S],Y=j[S+1],U=j[S+2],g=j[S+Z],M=j[S+1+Z],C=j[S+2+Z],y=j[S+Z+Z],i=j[S+1+Z+Z],Q=j[S+2+Z+Z],m=N>>>24<<2,n=(N>>>16&255)*m,u=(N>>>8&255)*m,K=(N&255)*m,F=Y>>>24<<1,b=(Y>>>16&255)*F,d=(Y>>>8&255)*F,W=(Y&255)*F,A=U>>>24<<2,z=(U>>>16&255)*A,T=(U>>>8&255)*A,R=(U&255)*A,I=g>>>24<<1,r=(g>>>16&255)*I,x=(g>>>8&255)*I,X=(g&255)*I,l=M>>>24,hH=(M>>>16&255)*l,hZ=(M>>>8&255)*l,gj=(M&255)*l,hO=C>>>24<<1,d3=(C>>>16&255)*hO,v=(C>>>8&255)*hO,hl=(C&255)*hO,ht=y>>>24<<2,ga=(y>>>16&255)*ht,eB=(y>>>8&255)*ht,bP=(y&255)*ht,ek=i>>>24<<1,b_=(i>>>16&255)*ek,fz=(i>>>8&255)*ek,ca=(i&255)*ek,gf=Q>>>24<<2,bb=(Q>>>16&255)*gf,b2=(Q>>>8&255)*gf,dV=(Q&255)*gf,ch=m+F+I+l,hE=A+F+hO+l,dS=ht+ek+I+l,e1=gf+ek+hO+l,eG=ch==0?0:1/ch,dq=hE==0?0:1/hE,f2=dS==0?0:1/dS,a3=e1==0?0:1/e1,bm=0,h2=0,ag=0,eU=0; -bm=~~(.5+(K+W+X+gj)*eG);h2=~~(.5+(u+d+x+hZ)*eG);ag=~~(.5+(n+b+r+hH)*eG);eU=~~(.5+ch*(1/9));L[J]=eU<<24|ag<<16|h2<<8|bm; -bm=~~(.5+(R+W+hl+gj)*dq);h2=~~(.5+(T+d+v+hZ)*dq);ag=~~(.5+(z+b+d3+hH)*dq);eU=~~(.5+hE*(1/9));L[J+1]=eU<<24|ag<<16|h2<<8|bm; -bm=~~(.5+(bP+ca+X+gj)*f2);h2=~~(.5+(eB+fz+x+hZ)*f2);ag=~~(.5+(ga+b_+r+hH)*f2);eU=~~(.5+dS*(1/9));L[J+q]=eU<<24|ag<<16|h2<<8|bm; -bm=~~(.5+(dV+ca+hl+gj)*a3);h2=~~(.5+(b2+fz+v+hZ)*a3);ag=~~(.5+(bb+b_+d3+hH)*a3);eU=~~(.5+e1*(1/9));L[J+q+1]=eU<<24|ag<<16|h2<<8|bm}return{rect:P,Hl:a}}; -s.ahU=function(h,e,$){var Z=e.d,c=e.v,q=2*Math.floor(Z/3),E=2*Math.floor(c/3),P=new O(e.x,e.y,q,E),a=$&&$.length==q*E*4?$:s.m(q*E*4),j=new Uint32Array(h.buffer),L=new Uint32Array(a.buffer); -for(var H=0;H>>1)*Z+(_*3>>>1),N=j[S],Y=j[S+1],U=j[S+2],g=j[S+Z],M=j[S+1+Z],C=j[S+2+Z],y=j[S+Z+Z],i=j[S+1+Z+Z],Q=j[S+2+Z+Z],m=(N>>>16&255)<<2,n=(N>>>8&255)<<2,u=(N&255)<<2,K=(Y>>>16&255)<<1,F=(Y>>>8&255)<<1,b=(Y&255)<<1,d=(U>>>16&255)<<2,W=(U>>>8&255)<<2,A=(U&255)<<2,z=(g>>>16&255)<<1,T=(g>>>8&255)<<1,R=(g&255)<<1,I=M>>>16&255,r=M>>>8&255,x=M&255,X=(C>>>16&255)<<1,l=(C>>>8&255)<<1,hH=(C&255)<<1,hZ=(y>>>16&255)<<2,gj=(y>>>8&255)<<2,hO=(y&255)<<2,d3=(i>>>16&255)<<1,v=(i>>>8&255)<<1,hl=(i&255)<<1,ht=(Q>>>16&255)<<2,ga=(Q>>>8&255)<<2,eB=(Q&255)<<2,bP=0,ek=0,b_=0; -bP=~~(.5+(u+b+R+x)*(1/9));ek=~~(.5+(n+F+T+r)*(1/9));b_=~~(.5+(m+K+z+I)*(1/9));L[J]=255<<24|b_<<16|ek<<8|bP; -bP=~~(.5+(A+b+hH+x)*(1/9));ek=~~(.5+(W+F+l+r)*(1/9));b_=~~(.5+(d+K+X+I)*(1/9));L[J+1]=255<<24|b_<<16|ek<<8|bP; -bP=~~(.5+(hO+hl+R+x)*(1/9));ek=~~(.5+(gj+v+T+r)*(1/9));b_=~~(.5+(hZ+d3+z+I)*(1/9));L[J+q]=255<<24|b_<<16|ek<<8|bP; -bP=~~(.5+(eB+hl+hH+x)*(1/9));ek=~~(.5+(ga+v+l+r)*(1/9));b_=~~(.5+(ht+d3+X+I)*(1/9));L[J+q+1]=255<<24|b_<<16|ek<<8|bP}return{rect:P,Hl:a}}; -s.AC=function(h){var e=255,$=h.length;$-=$&31;for(var G=3;G<$;G+=32)e=e&h[G]&h[G+4]&h[G+8]&h[G+12]&h[G+16]&h[G+20]&h[G+24]&h[G+28]; -return e!=255};s.a3K=function(h,e,$,Z){var c=s.$I,q=s.a0N,P=0;if(!s.AC(h)){c=s.hg;q=s.ahU}var E={Hl:h,rect:e},a=$; -while(a<.499){P++;a*=2}for(var G=0;G>1,E=c>>1,P=new O(e.x,e.y,q,E); -if(h==null)return{rect:P};var a=$&&$.length>=q*E?$:s.m(q*E);for(var j=0;j>>2}}return{rect:P,Hl:a}};s.gK=function(h,e,$){var Z=e.d,c=e.v,q=2*Math.floor(Z/3),E=2*Math.floor(c/3),P=new O(e.x,e.y,q,E); -if(h==null)return{rect:P};var a=$&&$.length>=q*E?$:s.m(q*E);for(var j=0;j>>1)*Z+(L*3>>>1),J=h[_]<<2,S=h[_+1]<<1,N=h[_+2]<<2,Y=h[_+Z]<<1,U=h[_+1+Z],g=h[_+2+Z]<<1,M=h[_+Z+Z]<<2,C=h[_+1+Z+Z]<<1,y=h[_+2+Z+Z]<<2; -a[H]=~~(.5+(J+S+Y+U)*(1/9));a[H+1]=~~(.5+(N+S+g+U)*(1/9));a[H+q]=~~(.5+(M+C+Y+U)*(1/9));a[H+q+1]=~~(.5+(y+C+g+U)*(1/9))}return{rect:P,Hl:a}}; -s.T7=function(h,e,$,Z,c){var q=e.jx(Z);if(c)q=q.jx(c);var E=Math.max(0,q.x-e.x),P=Math.max(0,q.x-Z.x),a=Math.max(0,q.y-e.y),j=Math.max(0,q.y-Z.y),L=q.d,H=q.v; -for(var G=0;G>>8)>>>8};s.round=function(h,e){if(e==null)e=128;var $=h.length;for(var G=0; -G<$;G++)h[G]=h[G]>>24)*(E>>>24))<<24|s.uW((q>>>16&255)*(E>>>16&255))<<16|s.uW((q>>>8&255)*(E>>>8&255))<<8|s.uW((q&255)*(E&255))}}; -s.FE=function(h,e){var $=h.length;for(var G=0;G<$;G++)e[(G<<2)+3]=s.uW(e[(G<<2)+3]*h[G])};s.a3U=function(h,e,$,Z){var c=Math.max(0,Z.x-e.x),q=Math.max(0,e.x-Z.x),E=Math.max(0,Z.y-e.y),P=Math.max(0,e.y-Z.y),a=Math.min(e.x+e.d,Z.x+Z.d)-Math.max(e.x,Z.x),j=Math.min(e.y+e.v,Z.y+Z.v)-Math.max(e.y,Z.y); -for(var G=0;G>>2,E/255]};s.FS=function(h,e){var $=new Uint32Array(h.buffer),Z=$.length; -for(var G=0;G>8&255,P=c>>16&255,a=c>>24&255;$[G]=e[q]|e[E]<<8|e[P]<<16|e[a]<<24}}; -s.al_=function(h,e,$,Z,c,q,E){var P=new Uint32Array(h.buffer),a=new Uint32Array(e.buffer),j=P.length,L=0; -while(256<>>8&255)<>>16&255)<>>8&255)<>>16&255)<M){var C=(g-M)/(255-M);N+=C*(255-N);Y+=C*(255-Y);U+=C*(255-U)}else if(M==0)N=Y=U=0;else{var C=g/M; -N=C*N;Y=C*Y;U=C*U}}a[G]=N|Y<<8|U<<16|H&4278190080}};s.Hd=function(h,e){var $=e.d,Z=e.v,top=0,c=0,q=0,E=0,P=0; -P=0;for(var a=0;a=0;a--){var j=a*$;for(var G=0;G<$;G++)P|=h[j+G];if(P!=0)break;q++}var L=Z-q;P=0; -for(var G=0;G<$;G++){for(var a=top;a=0;G--){for(var a=top; -a=0;_--){var J=_*q;for(var G=0;G=0;G--){for(var _=0;_>2); -s.z0(h.buffer,e,3);var $=s.Hd(e,h.rect);if($.dz(h.rect))return;var Z=new s.m($.X()*4);s.hX(h.buffer,h.rect,Z,$); -h.buffer=Z;h.rect=$};s.extend=function(h,e,$){if(h.rect.x1(e))return;var Z=h.rect.iJ(e),c=s.m(Z.X()); -if($!=null)c.fill($);s.T7(h.channel,h.rect,c,Z);h.rect=Z;h.channel=c};s.a0p=function(h,e){if(e.nK()||h.rect.x1(e))return; -var $=h.rect.iJ(e),Z=s.m($.X()*4);s.hX(h.buffer,h.rect,Z,$);h.rect=$;h.buffer=Z};s.mI=function(h,e,$){if(!$.B4(h))return!1; -var Z=Math.floor(h.x)-$.x,c=Math.floor(h.y)-$.y,G=c*$.d+Z;return e[G]>128};s.a7h=function(h,e,$){if(!$.B4(h))return!1; -var Z=Math.floor(h.x)-$.x,c=Math.floor(h.y)-$.y,G=c*$.d+Z;return e[4*G+3]>128};s.Bh=function(h){if(s.HB.length.5)return 0;if(g>.25)return 1;if(g>.1)return 2;if(g>.02143)return 3;if(g>.00445)return 4;if(g>65e-5)return 5; -if(g>415e-6)return 6;if(g>55e-6)return 7;return 8}function P(g,M,C,y,i,Q){g[M]=C[y]+(i[Q]-C[y]>>1);g[M+1]=C[y+1]+(i[Q+1]-C[y+1]>>1); -g[M+2]=C[y+2]+(i[Q+2]-C[y+2]>>1);g[M+3]=C[y+3]+(i[Q+3]-C[y+3]>>1)}function a(g,M,C,y,i,Q){g[M]=i[Q]+C[y]>>1; -g[M+1]=i[Q+1]+C[y+1]>>1;g[M+2]=i[Q+2]+C[y+2]>>1;g[M+3]=i[Q+3]+C[y+3]>>1}function j(g,M,C,y,i,Q,m,n,u){var K=0,F=0,b=0,G,d=i[Q],W; -P(n,0,g,M,g,C);for(G=0;G0&&y[Q-1]0){j(y,m-4,m,i,K,d,F,b,4)}m+=4}i[M]=i[0];K[M]=K[0];if(i[M-1]0){j(y,m,n,i,K,M,F,b,4)}}q(y)}function H(){var g=Math.random(); -if(g>.659755)return 0;if(g>.1625)return 10;if(g>.06)return 20;if(g>.01)return 30;if(g>.0035)return 40; -if(g>65e-5)return 50;if(g>415e-6)return 60;if(g>55e-6)return 70;return 80}function _(g,M,C,y,i,Q){var m=H()+1,n=y[i]; -for(var G=1;Gi)break;if(y[i-G]C[G]){$(g,b-Q,K,0);C[G-1]=u;F=!1;break}$(g,b-Q,g,b);C[G-1]=C[G];b+=Q}if(F){$(g,b-Q,K,0); -C[i-1]=u}m++;y--;M-=Q}}function N(g,M,C,y,i){var Q=0,m=0,n=M*4;for(var G=0;G>>2),P=new Uint8Array(e.length>>>2); -s.V4.mz(e,q,$,Z,s.V4.aY[2],0,!0);for(var G=0;G>>2]=a;c[G+0]=e[G+0];c[G+1]=e[G+1];c[G+2]=e[G+2];c[G+3]=e[G+3]}s.V4.pn(E,P,$,Z);for(var G=0;G>>2]-50)*(255/205))}for(var G=0,j=e.length;G>>2),E=new Uint8Array(e.length>>>2),P=new Uint8Array(e.length); -for(var G=0;G>>2]=a;P[G]=e[G];P[G+1]=e[G+1]; -P[G+2]=e[G+2]}s.V4.pn(E,q,$,Z);s.V4.mz(e,c,$,Z,s.V4.aY[1],0,!0);for(var G=0;G>>2]}for(var G=0,j=e.length; -G>>8&255,Y=J>>>16&255,U=J>>>24&255,g=~~(Math.random()*8),M=g%3,C=0,y=0; -if(g<3){y--}else if(g>4){y++}if(M==0){C--}else if(M==2){C++}var i=_+C,Q=G+y;if(i<0)i=0;else if(i>E-1)i=E-1; -if(Q<0)Q=0;else if(Q>P-1)Q=P-1;var J=L[Q*E+i],m=J&255,n=J>>>8&255,u=J>>>16&255,K=J>>>24&255;a[H]=j(S,m); -a[H+1]=j(N,n);a[H+2]=j(Y,u);a[H+3]=j(U,K)}}}function e(q,E){return E}function $(q,E){return q>E?E:q}function Z(q,E){return q>8)&255;e[G]=e[U]=g;g=g%8;$[G]=$[U]=c[g]; -Z[G]=Z[U]=q[g]}}function j(U){return U*U*U*(U*(U*6-15)+10)}function L(U,g,M){return(1-M)*U+M*g}function H(U,g){return U&g}function _(U,g){return U%g}function J(U,g,M,C,y){var i=Math.floor(U),Q=Math.floor(g),E,m,n,u,K,F; -U=U-i;g=g-Q;i=i&255;Q=Q&255;E=i+e[Q];u=$[E]*U+Z[E]*g;E=i+e[y(Q+1,C)];n=$[E]*U+Z[E]*(g-1);E=y(i+1,M)+e[Q]; -K=$[E]*(U-1)+Z[E]*g;E=y(i+1,M)+e[y(Q+1,C)];F=$[E]*(U-1)+Z[E]*(g-1);m=j(U);return L(L(u,K,m),L(n,F,m),j(g))}function N(U,E,g){U[E]=g}function Y(U,g,M,C,y){var i=Math.min(Math.min(g,256),Math.min(256,M)),Q=i==256||i<8,m=8,n=new Uint32Array(m),u=new Uint32Array(m),K=new Float32Array(m),F=new Float32Array(m),b=1,d=1,W=Q?H:_,A=N,z; -for(var G=0;G>>2;c[P+1]=H+2>>>2;c[P+2]=_+2>>>2;c[P+3]=J+2>>>2}}}return h}(); -s.rE.abM=function(){var h=[-1e3,34,51,61,71,80,87,95,101,108,113,119,124,129,134,139,143,148,153,157,161,165,168,172,175,180,183,186,190,194,197,200,203,207,210,213,216,218,222,225,228,230,233,236,239,241,244,247,250,252,255]; -function e($,Z,c,q,E){var P=E[0],a=E[1],j=a<=50?h[a]/255:1+(255-h[101-a])/255,L=E[2],H=$.length,_=new Float32Array(H),J=0,S,N=1+1/10*P,Y=(1-1/N)/2,U=16/256,g=Z-1,G,M,C,y,i=0,Q=1,m=255; -for(G=0;G=c||K>=Z){return}var C=_[F],b=j-C,d=Math.random(),W=d/N+Y;if(J==0||Math.abs(y-C)>U){S=W<=b?i:m; -J=~~(Math.random()*P)}else if(.1=Z)break;n(M,g-C)}J=0}for(G=1;G=c||M>=Z)break;n(C,g-M)}J=0}}else if(L==1){for(G=0; -G=Z)break; -n(M,C)}J=0}for(G=1;G=c||M>=Z)break;n(C,M)}J=0}}else{for(G=0;G255?255:H]}return j}function e(){var P=new Uint8Array(256),G,a; -for(G=75,a=15;a<256;G++,a+=24)P[G]=a;for(;G<256;G++)P[G]=255;return P}function $(P,a,j,L){c(P,a,j,11,L)}function Z(P,a,j,L){c(P,a,j,5,L); -for(var G=0;G>>1)}function q(P,a){var j=P.length,L; -for(var G=0;G255?255:M}q(g,P);for(var G=0;G>2); -for(var G=0;G>1,m=Q-1,n=i*i,u=0; -for(var G=0;G=M)d=M-1;if(W<0)W=0;else if(W>=C)W=C-1;K+=U[W*M+d]}}g[u++]=~~(K/n);for(var A=1;A=M)T=M-1;if(W<0)W=0;else if(W>=C)W=C-1;K+=U[W*M+T]-U[W*M+z]}g[u++]=~~(K/n)}}h=g}function Z(U,g){var M=U.length; -for(var G=0;G3?(P-3)*10:0;var M=~~(a*.73)+50,C=Math.min(M+g,128),y=C-M,i=-255*M; -E=q+4;for(var G=0;G<256;G++){var Q=G*65;j[G]=Q>=256?255:Q;L[G]=Math.max(Math.min(~~(i/y),255),0);i+=255}}function _(U,g,M,C,y,i,Q,m,n,u){var K=y+i-1,F=y>>1,b=K>>1,d=0,W=new Int32Array(y),A=new Int32Array(256),z=new Int32Array(16); -if(!Q){b}for(var G=0;G=M)x=M-1;if(X<0)X=0;else if(X>=C)X=C-1; -var l=U[X*M+x];A[l]++;z[l>>>4]++}}var hH=0,hZ;for(hZ=0;hZ<256;hZ++){hH+=A[hZ];if(hH>=u)break}g[d++]=hZ; -for(var gj=1;gj=C)X=C-1;if(hO<0)hO=0;else if(hO>=M)hO=M-1;if(d3<0)d3=0;else if(d3>=M)d3=M-1;var v=U[X*M+hO],hl=U[X*M+d3]; -A[v]--;z[v>>>4]--;A[hl]++;z[hl>>>4]++}hH=0;hZ=0;while(hH+z[hZ>>>4]>>4];hZ+=16}for(;hZ<256; -hZ++){hH+=A[hZ];if(hH>=u)break}g[d++]=hZ}}h=g}function J(U){var g=U.length,M=new Uint8Array(g),G=0;for(; -G=M)m=i;for(var n=0;n=C)K=n;var F=U[i+u],b=U[i+K],d=U[Q+n],W=U[m+n],A=U[i+n];g[y++]=Math.min(Math.max(A+2*(4*A-(F+b+d+W)),0),255)}}h=g}function Y(U,g,M,C,y){H(y); -var i=U.length,Q=new Uint8Array(i),m=J(U);$(U,Q,g,M,c);for(var G=0;G0)U[G]=~~((u*n+(255-u)*128)/255);else U[G]=128}h=U;$(U,Q,g,M,3); -_(Q,U,g,M,15,2,!0,0,1,16);_(Q,m,g,M,15,2,!1,0,1,15);for(var G=0;G>1}h=m;N(m,Q,M,g); -S(Q,L);$(Q,U,g,M,2);C.set(h)}return Y}();s.C6={a7g:function(h,e){var G=h.length;h.push(e);var $=G>>>1; -while($!=0&&h[G][0]>>1}},ai1:function(h){if(h.length==2)return h.pop(); -var top=h[1],G=1;h[1]=h.pop();var e=h.length;while(!0){var $=G<<1,Z=$+1,c=G;if($$){console.log(G);throw"e"}$=Z;e=e>>>1}}}}; -s.p={};s.p.i4=new Float64Array(256);s.p.i$=new Uint8Array(256*256);s.p.fz=new Uint8Array(256*256);(function(){for(var G=0; -G<256;G++)s.p.i4[G]=255/G;for(var G=0;G<256;G++)for(var h=0;h<256;h++)s.p.i$[G*256+h]=G==0?0:Math.round(h*255/G); -for(var G=0;G<256;G++)for(var h=0;h<256;h++)s.p.fz[G*256+h]=Math.round(G*(255-h)/255)}());s.p.Jn=function(h,e,$,Z,c,q,E,P){if(P==null)P=hn.Wn(); -if("idiv,lbrn,div ,lddg,vLit,lLit,hMix,diff".split(",").indexOf(h)==-1){E=E*P.fill;P.fill=1;P.style=!1}var a="norm,dark,mul ,idiv,lbrn,lite,scrn,div ,lddg,over,sLit,hLit,vLit,lLit,pLit,hMix,diff,smud,fsub,fdiv".split(","),j="dkCl,lgCl,hue ,sat ,colr,lum ".split(","),L=s.p[h+"F"]; -if(P.Zo==null&&h=="norm")s.p.and(e,$,Z,c,q,E,L,P.Eq?1:0);else if(h=="diss")s.p.agL(e,$,Z,c,q,E,L,P.Eq?1:0); -else if(a.indexOf(h)!=-1)s.p.amm(e,$,Z,c,q,E,L,P);else if(j.indexOf(h)!=-1)s.p.an3(e,$,Z,c,q,E,L,P)}; -s.p.aa$=function(h,e,$){var Z=h*$+1-$;return Z<.001?0:1-Math.min(1,(1-e)/Z)};s.p.alg=function(h,e,$){return h*$==1?1:Math.min(1,e/(1-h*$))}; -s.p.ob=function(h){return h<=.25?((16*h-12)*h+4)*h:Math.sqrt(h)};s.p.normF=function(h,e,$){return h}; -s.p.darkF=function(h,e,$){return Math.min(h,e)};s.p["mul F"]=function(h,e,$){return h*e};s.p.idivF=function(h,e,$){var Z=h*$+1-$; -return e==1?1:1-e>=Z?0:1-(1-e)/Z};s.p.lbrnF=function(h,e,$){return Math.max(0,h*$+e-$)};s.p.dkClF=function(h,e,$){var Z=s.GE(h)=1-h?1:e/(1-h)};s.p.lddgF=function(h,e,$){h*=$;return Math.min(1,h+e)}; -s.p.lgClF=function(h,e,$){var Z=s.GE(h)>s.GE(e)?h:e;$.h=Z.h;$.l=Z.l;$.O=Z.O;return $};s.p.overF=function(h,e,$){return s.p.hLitF(e,h,$)}; -s.p.sLitF=function(h,e,$){return h<=.5?e-(1-2*h)*e*(1-e):e+(2*h-1)*(s.p.ob(e)-e)};s.p.hLitF=function(h,e,$){return h<=.5?s.p["mul F"](2*h,e,$):s.p.scrnF(2*h-1,e,$)}; -s.p.vLitF=function(h,e,$){return h<=.5?s.p.aa$(2*h,e,$):s.p.alg(2*h-1,e,$)};s.p.lLitF=function(h,e,$){return h<=.5?s.p.lbrnF(2*h,e,$):s.p.lddgF(2*h-1,e,$)}; -s.p.pLitF=function(h,e,$){return h<=.5?s.p.darkF(2*h,e,$):s.p.liteF(2*h-1,e,$)};s.p.hMixF=function(h,e,$){if($>.99)return h+e<1?0:1; -return Math.min(1,Math.max(0,(e+h*$-$)/(1-$+1e-6)))};s.p.diffF=function(h,e,$){h*=$;return Math.abs(h-e)}; -s.p.smudF=function(h,e,$){return h+e-2*h*e};s.p.fsubF=function(h,e,$){return Math.max(e-h,0)};s.p.fdivF=function(h,e,$){return Math.min(e/h,1)}; -s.p["hue F"]=function(h,e,$){s.p.RX(h,s.vD(e),$);s.p.up($,s.GE(e),$)};s.p["sat F"]=function(h,e,$){s.p.RX(e,s.vD(h),$); -s.p.up($,s.GE(e),$)};s.p.colrF=function(h,e,$){s.p.up(h,s.GE(e),$)};s.p["lum F"]=function(h,e,$){s.p.up(e,s.GE(h),$)}; -s.p.up=function(h,e,$){var Z=e-s.GE(h);$.h=h.h+Z;$.l=h.l+Z;$.O=h.O+Z;s.p.a9b($)};s.p.a9b=function(h){var e=h.h,$=h.l,Z=h.O,c=s.jv(e,$,Z),t=Math.min(e,$,Z),q=Math.max(e,$,Z); -if(t<0){var E=c/(c-t);e=c+(e-c)*E;$=c+($-c)*E;Z=c+(Z-c)*E}if(q>1){var E=(1-c)/(q-c);e=c+(e-c)*E;$=c+($-c)*E; -Z=c+(Z-c)*E}h.h=e;h.l=$;h.O=Z};s.p.RX=function(h,e,$){var Z=s.p.a0K,c=h.h,q=h.l,E=h.O;if(c==q&&q==E){$.h=$.l=$.O=0}else if(c>q){if(c>E){if(q>E){$.h=e; -$.l=Z(c,q,E,e);$.O=0}else{$.h=e;$.O=Z(c,E,q,e);$.l=0}}else{$.O=e;$.h=Z(E,c,q,e);$.l=0}}else{if(cE){$.l=e; -$.O=Z(q,E,c,e);$.h=0}else{$.O=e;$.l=Z(E,q,c,e);$.h=0}}else{$.l=e;$.h=Z(q,c,E,e);$.O=0}}};s.p.a0K=function(h,e,$,Z){return(e-$)*Z/(h-$)}; -s.p.and=function(h,e,$,Z,c,q,E,P){var a=e.jx(Z).jx(c),j=Math.max(0,a.x-e.x),L=Math.max(0,a.x-Z.x),H=Math.max(0,a.y-e.y),_=Math.max(0,a.y-Z.y),J=a.d,S=a.v,N=e.d,Y=Z.d,U=s.p.i$,g=s.p.fz,M=new Uint32Array(h.buffer),C=new Uint32Array($.buffer); -for(var G=0;G>>24==0)continue; -if(m>>>24==255&&q==1&&P==0){C[i+Q]=M[y+Q];continue}var n=C[i+Q],u=255*q&255;if(P==0){u=(m>>>24)*q&255; -K=n>>>24}var F=g[K<<8|u],b=u+F,d=m&255,W=m>>>8&255,A=m>>>16&255,z=n&255,T=n>>>8&255,R=n>>>16&255;C[i+Q]=P*(n>>>24)+(1-P)*b<<24|U[b<<8|s.uW(A*u+R*F)]<<16|U[b<<8|s.uW(W*u+T*F)]<<8|U[b<<8|s.uW(d*u+z*F)]}}}; -s.p.aa6=function(h,e,$,Z,c,q){var E=e.jx(Z).jx(c),P=Math.max(0,E.x-e.x),a=Math.max(0,E.x-Z.x),j=Math.max(0,E.y-e.y),L=Math.max(0,E.y-Z.y),H=E.d,_=E.v,J=e.d,S=Z.d,N=s.p.i$,Y=s.p.fz,U=new Uint32Array(h.buffer),g=new Uint32Array($.buffer),M=Math.floor(Math.random()*16777215),C=0; -for(var G=0;G<_;G++){var y=(j+G)*J+P,i=(L+G)*S+a;for(var Q=0;Q>>24==0)continue; -if(m>>24==255&&q==1){g[i+Q]=m;continue}var n=g[i+Q],u=(m>>>24)*q*(1/255),K=(n>>>24)*(1/255),F=K*(1-u),b=u+F,d=m&255,W=m>>>8&255,A=m>>>16&255,z=n&255,T=n>>>8&255,R=n>>>16&255; -C>>>=8;if((Q&3)==0)C=s.p.Ms(i+Q+M);var I=b==0?0:1/b,r=Math.floor(b*(256*255))+(C&255)>>>8,x=Math.floor((A*u+R*F)*I+.5),X=Math.floor((W*u+T*F)*I+.5),l=Math.floor((d*u+z*F)*I+.5); -g[i+Q]=r<<24|x<<16|X<<8|l}}};s.p.Z4=function(h,e,$,Z,c,q,E,P){var a=s.jv(h,e,$),j=s.jv(Z,c,q),L=Math.min,H=s.p.abV,_=H(a,P,0); -_=L(_,H(h,P,8));_=L(_,H(e,P,16));_=L(_,H($,P,24));var J=H(j,P,4);J=L(J,H(Z,P,12));J=L(J,H(c,P,20));J=L(J,H(q,P,28)); -J=Math.max(J,1-E);var S=Math.min(_,J);return S<0?0:S>1?1:S};s.p.abV=function(h,e,G){return Math.min((h-e[G])*e[G+1],(h-e[G+3])*e[G+2])}; -s.p.amm=function(h,e,$,Z,c,q,E,P){var a=1/255,j=a*q,L=P.Eq?1:0,H=P.fill,_=P.style,J=e.jx(Z).jx(c),S=Math.max(0,J.x-e.x),N=Math.max(0,J.x-Z.x),Y=Math.max(0,J.y-e.y),U=Math.max(0,J.y-Z.y),g=J.d,M=J.v,C=e.d,y=Z.d,i=new Uint32Array(h.buffer),Q=new Uint32Array($.buffer); -for(var G=0;G>>24==0)continue; -var F=Q[n],b=(K&255)*a,d=(K>>>8&255)*a,W=(K>>>16&255)*a,A=(F&255)*a,z=(F>>>8&255)*a,T=(F>>>16&255)*a,R=q; -if(L==0){R=(K>>>24)*j;I=(F>>>24)*a}if(P.Zo)R*=s.p.Z4(b,d,W,A,z,T,I,P.Zo);var r=I*(1-R),x=R+r,X=x==0?0:255/x,l=_?1:R,hH=((1-I)*R*b+(1-l)*I*A+l*I*E(b,A,(1+R-l)*H))*X,hZ=((1-I)*R*d+(1-l)*I*z+l*I*E(d,z,(1+R-l)*H))*X,gj=((1-I)*R*W+(1-l)*I*T+l*I*E(W,T,(1+R-l)*H))*X; -x=R*H+I*(1-R*H);var hO=~~(x*255+.5);Q[n]=L*(F>>>24)+(1-L)*hO<<24|gj<<16|hZ<<8|hH}}};s.p.an3=function(h,e,$,Z,c,q,E,P){var a=1/255,j=a*q,L=P.Eq?1:0,H=e.jx(Z).jx(c),_=Math.max(0,H.x-e.x),J=Math.max(0,H.x-Z.x),S=Math.max(0,H.y-e.y),N=Math.max(0,H.y-Z.y),Y=H.d,U=H.v,g=new Uint32Array(h.buffer),M=new Uint32Array($.buffer),C={h:0,l:0,O:0},y={h:0,l:0,O:0},i={h:0,l:0,O:0}; -for(var G=0;G>>8&255)*a,d=(u>>>16&255)*a,W=(K&255)*a,A=(K>>>8&255)*a,z=(K>>>16&255)*a,T=q,R=1; -if(L==0){T=(u>>>24)*j;R=(K>>>24)*a}if(P.Zo)T*=s.p.Z4(F,b,d,W,A,z,R,P.Zo);var I=R*(1-T),r=T+I,x=255/r; -C.h=F;C.l=b;C.O=d;y.h=W;y.l=A;y.O=z;E(C,y,i);var X=(((1-R)*F+R*i.h)*T+W*I)*x,l=(((1-R)*b+R*i.l)*T+A*I)*x,hH=(((1-R)*d+R*i.O)*T+z*I)*x,hZ=L*(K>>>24)+(1-L)*Math.round(r*255); -M[m]=hZ<<24|hH<<16|l<<8|X}}};s.p.f$=function(h){h=h^61^h>>>16;h=h+(h<<3);h=h^h>>>4;h=h*668265261;h=h^h>>15; -return(h&16777215)*(1/16777215)};s.p.Ms=function(h){h=h^61^h>>>16;h=h+(h<<3);h=h^h>>>4;h=h*668265261; -h=h^h>>>15;return h};s.p.nD=function(h){this.ZW=h};s.p.nD.prototype.get=function(){var h=this.ZW=s.p.Ms(this.ZW); -return(h&16777215)*(1/16777215)};s.p.agL=function(h,e,$,Z,c,q,E,P){var a=1/255,j=a*q,L=Math.round(q*(256*256*256/255)),H=e.jx(Z).jx(c),_=Math.max(0,H.x-e.x),J=Math.max(0,H.x-Z.x),S=Math.max(0,H.y-e.y),N=Math.max(0,H.y-Z.y),Y=H.d,U=H.v,g=new Uint32Array(h.buffer),M=new Uint32Array($.buffer); -for(var G=0;G>>24); -if((s.p.Ms(C)&16777215)>=n*L)continue;M[y]=Q&16777215|P*(m>>>24)+(1-P)*255<<24}}};s.p.a5T=function(h,e,$){for(var G=0; -G>>2];if(Z==0)continue;var c=Z*(1/255),q=1/c,E=e[G],P=e[G+1],a=e[G+2],j=h[G],L=h[G+1],H=h[G+2]; -e[G]=Math.min(255,Math.max(0,Math.round((E-(1-c)*j)*q)));e[G+1]=Math.min(255,Math.max(0,Math.round((P-(1-c)*L)*q))); -e[G+2]=Math.min(255,Math.max(0,Math.round((a-(1-c)*H)*q)));e[G+3]=255}};s.p.cZ=function(h,e,$,Z,c,q,E,P,a,j,L){if(j==null)j=!1; -if(L==null)L=[1,1,1];var H=255<<24|L[2]*16711680|L[1]*65280|L[0]*255,_=~H;if(c&&!e.dz(q)){var J=s.m(e.X()*4); -J.fill(E);s.T7(c,q,J,e);c=J;q=e}if(j){if(c==null)s.p.a41(h,e,$,Z,c,P,a,H,_);else s.p.ali(h,e,$,Z,c,P,a)}else{if(c==null)s.p.adt(h,e,$,Z,c,P,a,H,_); -else s.p.anu(h,e,$,Z,c,P,a)}};s.p.adt=function(h,e,$,Z,c,q,E,P,a){var j=1/255,L=e.jx(Z).jx(q),H=Math.max(0,L.x-e.x),_=Math.max(0,L.x-Z.x),J=Math.max(0,L.y-e.y),S=Math.max(0,L.y-Z.y),N=L.d,Y=L.v,U=new Uint32Array(h.buffer),g=new Uint32Array($.buffer),M=s.p.i$,C=E*255&255; -for(var G=0;G>>24,K=n>>>24,F=s.uW(C*u+(255-C)*K),b=s.uW(u*C),d=s.uW(K*(255-C)),W=m&255,A=m>>>8&255,z=m>>>16&255,T=n&255,R=n>>>8&255,I=n>>>16&255,r=b*W+T*d,x=b*A+R*d,X=b*z+I*d; -r=M[F<<8|s.uW(r)];x=M[F<<8|s.uW(x)];X=M[F<<8|s.uW(X)];var l=F<<24|X<<16|x<<8|r;g[i]=a&n|P&l}}};s.p.a41=function(h,e,$,Z,c,q,E,P,a){var j=1/255,L=e.jx(Z).jx(q),H=Math.max(0,L.x-e.x),_=Math.max(0,L.x-Z.x),J=Math.max(0,L.y-e.y),S=Math.max(0,L.y-Z.y),N=L.d,Y=L.v,U=new Uint32Array(h.buffer),g=new Uint32Array($.buffer),M=s.p.i$,C=E*16777215&16777215; -for(var G=0;G>>24,n=Q>>>24,u=s.uW(y*m+(255-y)*n),K=s.uW(m*y),F=s.uW(n*(255-y)),b=i&255,d=i>>>8&255,W=i>>>16&255,A=Q&255,z=Q>>>8&255,T=Q>>>16&255,R=U[u<<8|s.uW(K*b+A*F)],I=U[u<<8|s.uW(K*d+z*F)],r=U[u<<8|s.uW(K*W+T*F)]; -Y[M]=u<<24|r<<16|I<<8|R}}};s.p.ali=function(h,e,$,Z,c,q,E){var P=1/255,a=e.jx(Z).jx(q),j=Math.max(0,a.x-e.x),L=Math.max(0,a.x-Z.x),H=Math.max(0,a.y-e.y),_=Math.max(0,a.y-Z.y),J=a.d,S=a.v,N=new Uint32Array(h.buffer),Y=new Uint32Array($.buffer),U=s.p.i$,g=Math.round(E*257); -for(var G=0;G>>24,u=m>>>24,K=n*i*(1/255),F=u*(255-i)*(1/255),b=Q&255,d=Q>>>8&255,W=Q>>>16&255,A=m&255,z=m>>>8&255,T=m>>>16&255,R=s.p.Ms(C+y+U),I=Math.floor((K+F)*256+.5)+(R>>>0&255)>>>8,r=I==0?0:256/(K+F),x=b*K+A*F,X=d*K+z*F,l=W*K+T*F,hH=Math.floor(x*r+.5)+(R>>>8&255)>>>8,hZ=Math.floor(X*r+.5)+(R>>>16&255)>>>8,gj=Math.floor(l*r+.5)+(R>>>21&248)>>>8; -Y[C+y]=I<<24|gj<<16|hZ<<8|hH}}};s.p.acT=function(h){return Math.floor(h+Math.random())};s.p.Y6=function(h,e,$,Z,c,q,E){var P=1/255,a=e.jx(Z).jx(q),j=Math.max(0,a.x-e.x),L=Math.max(0,a.x-Z.x),H=Math.max(0,a.y-e.y),_=Math.max(0,a.y-Z.y),J=a.d,S=a.v; -for(var G=0;G1+P){b=s.Fn.nh(_,F,x,X);T=Math.sqrt(b);I--;r++}else{b=W=z=1e9;for(var G=0;G=u)continue;var hO=s.Fn.nh(_,gj,x,X);if(hO>1);s.Nw.Tr(e,E,$,Z,q[1]-1>>1);s.Nw.Tr(e,E,$,Z,q[2]-1>>1)};s.Nw.afx=function(h,e,$,Z,c){var q=s.Nw.dx(c,2),E=s.Nw.kM($*Z); -s.i7(h,e);s.Nw.Tr(e,E,$,Z,q[0]-1>>1);s.Nw.Tr(e,E,$,Z,q[1]-1>>1)};s.Nw.aem=function(h,e,$,Z){var c=s.Nw.dx(Z,3),q=s.Nw.kM(e*$*4); -s.Nw.HN(h,q,e,$,c[0]-1>>1);s.Nw.HN(h,q,e,$,c[1]-1>>1);s.Nw.HN(h,q,e,$,c[2]-1>>1)};s.Nw.a9g=function(h,e,$,Z,c,q){if(q==null)q=3; -var E=s.Nw.dx(c,q),P=s.Nw._n($*Z);s.i7(h,e);for(var G=0;G>>24;F+=(z&255)*T;b+=(z>>>8&255)*T;d+=(z>>>16&255)*T;W+=T}}if(W!=0){var R=1/W; -F=~~(F*R+.5);b=~~(b*R+.5);d=~~(d*R+.5);W=~~(W*J*J+.5);c[i]=W<<24|d<<16|b<<8|F}}};s.nS.ib=new Float64Array(5*20); -s.nS.a1l=new Uint32Array(5*5*20);s.nS.mI=function(h,e,$,Z,c,q,E){var P=s.nS.ib,a=s.nS.a1l,j=0,L=0;for(var G=0; -G.05;G++){s.nS.lq(a,0,U);s.nS.Y9(a,4,Y);s.nS.n2(h,a);j=a[8];L=a[9];s.nS.Y9(a,0,U); -s.nS.lq(a,4,Y);s.nS.n2(h,a);H=a[8];_=a[9];J=1/(j*_-L*H);S=(g-e)*J;N=(M-$)*J;Y+=-_*S+H*N;U+=+L*S-j*N; -s.nS.rg(h,Y,U,a);g=a[8];M=a[9];C=(g-e)*(g-e)+(M-$)*(M-$)}if(q&&(Y<0||Y>1||U<0||U>1||C>.25))return P; -E[P]=Y;E[P+1]=U;E[P+2]=g;E[P+3]=M;E[P+4]=j*_-L*H;return P+5};s.nS.apply=function(h,e,$){var Z=$.x,c=$.y,q=1/$.d,E=1/$.v,P=s.nS.TO; -for(var a=0;aL)continue;if(e[H+H+18]==0){if(U=E.length){console.log("Buffer not long enough"); -throw"e"}if(q==s.nS.V.ob||R<2)return a;var I=s.nS.V.Va(h,!0),r=s.a.Be(I[0]),x=s.a.Be(I[1]),X=s.nS.V.Va(h,!1),l=s.a.Be(X[0]),hH=s.a.Be(X[1]); -if(r.d+r.v+x.d+x.vq||h*$<0&&Eq||h*Z<0&&Eq||h*c<0&&Eq?1:0}; -s.h_.a4K=function(h,e,$,Z){var c=new Float32Array(Z),q=0;new Uint32Array(Z).fill(0);for(var E=0;E<$; -E++)for(var P=0;Pq)q=H}var J=e*$,S=q==0?0:1/q; -for(var G=0;G0&&P>0)c[q+0]=-h-1;if(E>0)c[q+1]=-h;if(E>0&&P0)c[q+6]=h-1;if(P>0)c[q+7]=-1;G++;q+=8}return Z}; -s.V4={};s.V4.er=function(h){var e=h.slice(0),$=0;for(var G=0;G>>1,L=new Uint32Array(h.buffer),e=new Uint8ClampedArray(e.buffer); -for(var G=0;G$-1)M=$-1;if(C<0)C=0;else if(C>Z-1)C=Z-1;if(P&&L[C*$+M]>>>24==0){C=G; -M=H}var y=L[C*$+M];_+=(y&255)*g;J+=(y>>>8&255)*g;S+=(y>>>16&255)*g;N+=(y>>>24&255)*g}if(E){if(_<0)_=-_; -if(J<0)J=-J;if(S<0)S=-S;if(N<0)N=-N}if(P){_=Math.max(0,Math.min(255,_));J=Math.max(0,Math.min(255,J)); -S=Math.max(0,Math.min(255,S));N=Math.max(0,Math.min(255,N))}var i=G*$+H<<2;e[i]=~~(.5+_);e[i+1]=~~(.5+J); -e[i+2]=~~(.5+S);e[i+3]=255-q&e[i+3]|q&~~(.5+N)}};s.V4.AP=function(h,e,$,Z){var c=h.length,q=new Uint8Array(c); -s.V4.mz(h,e,$,Z,s.V4.aY[4],0,!0);s.V4.mz(h,q,$,Z,s.V4.aY[5],0,!0);for(var G=0;G>>1,g=new Array(Y),M=new Array(Y); -for(var G=0;Ga-L-Y-1){i.fill(0);var m=Math.max(Q-L,0),n=Math.min(a,Q+L+1),u=n-m; -for(var K=0;K=0)Z(i,E,F*a+m,F*a+n,-1);var d=K*a+Q<<2;J=i[300];if(J!=0)for(var G=0;G<3;G++)P[d+G]=C(N[G],E[d+G],J,_)}}else{for(var G=0; -G=0)$(M,E,F*a+m,F*a+n,-1,U);if(b>>4]+=j}return h}();s.zP.Ib=function(){function h(H,_,J,S,N,Y,U){if(N==0){_.set(H); -return}if(N<=80)e(H,_,J,S,N,Y,U);else q(H,_,J,S,N,Y,U)}function e(H,_,J,S,N,Y,U){var g=0,M=new Int32Array(512),C=1+2*Math.round(Math.sqrt(N)),y=C>>>1,i=new Array(C); -for(var G=0;GJ-N-C-1){M.fill(0); -g=0;var u=Math.max(n-N,0),K=Math.min(J,n+N+1),F=K-u;for(var b=0;b=0){g-=F;Z(M,H,d*J+u,d*J+K,-1)}if(W=0){g-=F;$(i,H,d*J+u,d*J+K,-1,y)}if(W>>4]+=S}function q(H,_,J,S,N,Y,U){var g=0,M=new Int32Array(512),C=new Int32Array(1*J),y=new Int32Array(512*J),i=Math.min(N,J),Q=Math.min(N,S),m=Y[0]; -for(var n=0;n=0)E(y,C,H,J,n-N-1,-1); -M.fill(0);g=0;for(var u=0;u=0&&C[K]!=0){g-=C[K]; -a(M,y,K)}if(F0)G--; -G=(G<<4)+15;while(h[G]==0&&G>0)G--;return G},function(h,e,$,Z,c){var G=15;while(h[256|G]+e[256|G]==0&&G>0)G--; -G=(G<<4)+15;while(h[G]+e[G]==0&&G>0)G--;return G}];s.zP.XA=[function(h,e,$,Z){var G=0;while(h[256|G]==0&&G<15)G++; -G=G<<4;while(h[G]==0&&G<255)G++;return G},function(h,e,$,Z,c){var G=0;while(h[256|G]+e[256|G]==0&&G<15)G++; -G=G<<4;while(h[G]+e[G]==0&&G<255)G++;return G}];s.zP.Wl=.5;s.zP.E0=[function(h,e,$,Z){var c=~~(.5+s.zP.Wl*$),q=0,G=256; -while(q+h[G]<=c)q+=h[G++];G=G-256<<4;while(q<=c)q+=h[G++];return G-1},function(h,e,$,Z,c){var q=~~(.5+s.zP.Wl*Z),E=0,G=256; -while(E+h[G]+e[G]<=q){E+=h[G]+e[G];G++}G=G-256<<4;while(E<=q){E+=h[G]+e[G];G++}return G-1}];s.zP.MJ=[function(h,e,$,Z){var c=Z[0],q=0,E=0,G=Math.max(0,e-c),P=Math.min(256,e+c+1); -while(G1e-9)L=!1}var S=s.I.l5(h),N=s.I.Lc(h)&&S,Y=N?1:0; -if(E||L&&H==$+Z&&S){s.I.ac0(j,e,$,Z,c,q,P,S,a);return}var U=q.d,g=q.v,M=new Float64Array(2);c=new Uint32Array(c.buffer); -e=new Uint32Array(e.buffer);for(var C=0;C$+1||A<-1||A>Z+1; -if(P){W=Math.max(.001,Math.min($-1,W));A=Math.max(.001,Math.min(Z-1,A))}else if(z)continue;var T=_;if(!S){var R=0,I=0; -n=h;Q=b+1/$;m=d;u=1/(n[6]*Q+n[7]*m+1);R=(n[0]*Q+n[1]*m+n[2])*u-K;I=(n[3]*Q+n[4]*m+n[5])*u-F;var r=R*R+I*I; -Q=b;m=d+1/Z;u=1/(n[6]*Q+n[7]*m+1);R=(n[0]*Q+n[1]*m+n[2])*u-K;I=(n[3]*Q+n[4]*m+n[5])*u-F;var x=R*R+I*I; -T=1/Math.sqrt(Math.max(r,x))}if(T<1.1){s.I._4(W,A,e,$,Z,c,i,Y);continue}var X=Math.round(T*2.3);if(!P&&(W<.6||W>$-.6||A<.6||A>Z-.6)){X=Math.max(X,5)}if(P&&z)X=1; -var l=1/X,d3=q.x+y,v=q.y+C;n=j;for(var G=0;G=1||A<0||A>=1)continue;W=Math.floor(W*$);A=Math.floor(A*Z); -var ht=A*$+W,ga=e[ht],eB=ga>>>24;hH+=(ga&255)*eB;hZ+=(ga>>>8&255)*eB;gj+=(ga>>>16&255)*eB;hO+=eB}if(hO!=0){var bP=1/hO; -hH=~~(hH*bP+.5);hZ=~~(hZ*bP+.5);gj=~~(gj*bP+.5);hO=~~(hO*l*l+.5);c[i]=hO<<24|gj<<16|hZ<<8|hH}}};s.I.ac0=function(h,e,$,Z,c,q,E,P,a){if(P&&!E&&q.X()>4e6&&a){s.I.ai$(h,e,$,Z,c,q,E,P,a); -return}var j=q.x+q.d,L=q.y+q.v,H=0,_=new Uint32Array(c.buffer),J=new Uint32Array(e.buffer),S=h[0]*$,N=h[1]*$,Y=h[2]*$,U=h[3]*Z,g=h[4]*Z,M=h[5]*Z,C=h[6],y=h[7]; -if(P&&!E)for(var i=q.y+.5;i>>2<<2)-1e-9,n=-.1+(C>>>1<<1)-1e-9,u=~~$,K=H==0?0:1/H,F=S==0?0:1/S; -for(var b=0;b0){A=Math.max(A,-d*K); -z=Math.min(z,($-d)*K)}else{z=Math.min(z,-d*K);A=Math.max(A,($-d)*K)}if(S==0){}else if(F>0){A=Math.max(A,-W*F); -z=Math.min(z,(Z-W)*F)}else{z=Math.min(z,-W*F);A=Math.max(A,(Z-W)*F)}if(z<0)z=0;if(A>z)A=z;A=Math.ceil(A); -z=~~z;y=~~(b*M);for(var T=0;T=0&&L=0&&L+1=0&&H=0&&H+1Z-1?Z-1:L,y=L<-1?0:L>Z-2?Z-1:L+1,i=H<0?0:H>c-1?c-1:H,Q=H<-1?0:H>c-2?c-1:H+1; -_=$[i*Z+C];J=$[i*Z+y];S=$[Q*Z+C];N=$[Q*Z+y]}else{var C=(L+50*Z)%Z,y=(L+50*Z)%Z,i=(H+50*c)%c,Q=(H+50*c)%c; -_=$[i*Z+C];J=$[i*Z+y];S=$[Q*Z+C];N=$[Q*Z+y]}var m=h-L,n=e-H,u=(1-n)*(1-m)*(_>>>24),K=(1-n)*m*(J>>>24),F=n*(1-m)*(S>>>24),b=n*m*(N>>>24),d=u+K+F+b,W=u*(_&255)+K*(J&255)+F*(S&255)+b*(N&255),A=u*(_>>>8&255)+K*(J>>>8&255)+F*(S>>>8&255)+b*(N>>>8&255),z=u*(_>>>16&255)+K*(J>>>16&255)+F*(S>>>16&255)+b*(N>>>16&255); -if(d==0)q[E]=0;else{var T=1/d;W=~~(W*T+.5);A=~~(A*T+.5);z=~~(z*T+.5);d=~~(d+.5);q[E]=d<<24|z<<16|A<<8|W}}; -s.I.LB=function(h,e,$,Z,c,q){var E=h-.499999,P=e-.499999,a=~~E,j=~~P,L=E-a,H=P-j,_=(1-H)*(1-L),J=(1-H)*L,S=H*(1-L),N=H*L,Y=j*Z+a<<2,U=(j+1)*Z+a<<2,g=_*$[Y]+J*$[Y+4]+S*$[U]+N*$[U+4],M=_*$[Y+1]+J*$[Y+5]+S*$[U+1]+N*$[U+5],C=_*$[Y+2]+J*$[Y+6]+S*$[U+2]+N*$[U+6],y=_*$[Y+3]+J*$[Y+7]+S*$[U+3]+N*$[U+7]; -q[0]=g;q[1]=M;q[2]=C;q[3]=y};s.I.Cq=function(h,e,$,Z,c){h-=.499999;e-=.499999;var q=Math.floor(h),E=Math.floor(e),P=h-q,a=e-E,j=(1-a)*(1-P),L=(1-a)*P,H=a*(1-P),_=a*P,J=(q+50*Z)%Z,S=(q+1+50*Z)%Z,N=(E+50*c)%c,Y=(E+1+50*c)%c,U=$[N*Z+J],g=$[N*Z+S],M=$[Y*Z+J],C=$[Y*Z+S]; -if(U==null||C==null)throw"e";return j*U+L*g+H*M+_*C};s.I.Lq=function(h,e,$,Z,c,q,E,P,a,j,L,H){var _=new Uint32Array(h.buffer),J=new Uint32Array(Z.buffer),S=(1+2*j)/c,N=[],Y=[]; -for(var U=0;Ue-1?e-1:y)),m=~~(.5+(i<0?0:i>$-1?$-1:i)); -J[M*c+U]=_[m*e+Q]}}};s.I.nv=function(h,e,$,Z,c,q,E,P,a,j,L,H){var _=new Uint32Array(h.buffer),J=new Uint32Array(Z.buffer),S=1/H,N=[],Y=$*4,U=1/Y; -for(var g=0;ge?e:$},anv:function(h,e,$,Z,c,q,E,P){var a=$[0],j=$[1],L=$[2],H=$[3],_=Z.d,J=Z.v,S=new Float64Array(_*4+8),N=new Float64Array(_*4+8); -for(var Y=0,G=0;Y>1,Q=L.OT.v-$.v>>1,m=L.OT.d,n=-.6*y,u=(-.6+.4)*y,K=(-.6+2*.4)*y,F=(-.6+3*.4)*y; -for(var b=0,G=0;b=1){r=(I<=0?0:J)<<2;e[G]=U[r];e[G+1]=U[r+1];e[G+2]=U[r+2];e[G+3]=U[r+3];continue}r=Math.max(0,Math.min(J-1,Math.round((I+n)*J)))<<2; -A+=U[r];z+=U[r+1];T+=U[r+2];W+=U[r+3];r=Math.max(0,Math.min(J-1,Math.round((I+u)*J)))<<2;A+=U[r];z+=U[r+1]; -T+=U[r+2];W+=U[r+3];r=Math.max(0,Math.min(J-1,Math.round((I+K)*J)))<<2;A+=U[r];z+=U[r+1];T+=U[r+2];W+=U[r+3]; -r=Math.max(0,Math.min(J-1,Math.round((I+F)*J)))<<2;A+=U[r];z+=U[r+1];T+=U[r+2];W+=U[r+3];e[G]=A>>>2; -e[G+1]=z>>>2;e[G+2]=T>>>2;e[G+3]=W>>>2}}};s.Y.Fz=function(h,e,$){var Z=[];for(var G=0;G>16&255,l:e>>8&255,O:e&255};else if(h[G].v.Type.v.Clry=="BckC")c={h:$>>16&255,l:$>>8&255,O:$&255}; -else c=s.Y.LX(h[G].v.Clr.v);Z.push(c)}return Z};s.Y.LX=function(h){var e,$=h.classID;if($=="RGBC"){if(h.Rd)e={h:h.Rd.v,l:h.Grn.v,O:h.Bl.v}; -else e={h:h.redFloat.v*255,l:h.greenFloat.v*255,O:h.blueFloat.v*255}}else if($=="HSBC"){e=s.g7(h.H.v.val/360,h.Strt.v/100,h.Brgh.v/100); -e.h*=255;e.l*=255;e.O*=255}else if($=="CMYC"){var Z=100-h.Cyn.v,c=100-h.Mgnt.v,q=100-h.Ylw.v,E=100-h.Blck.v,P=255*Z*E*1e-4,a=255*(.2*Z+.8*c)*E*1e-4,j=255*(.2*c+.8*q)*E*1e-4; -e={h:P,l:a,O:j}}else if($=="Grsc")e={h:255-h.Gry.v,l:255-h.Gry.v,O:255-h.Gry.v};else if($=="LbCl"){e=s.Dl(h.Lmnc.v,h.A.v,h.B.v)}else console.log(h); -if(isNaN(e.h))e.h=e.l=e.O=0;return e};s.Y.lp=function(h){return{classID:"RGBC",Rd:{t:"doub",v:h.h},Grn:{t:"doub",v:h.l},Bl:{t:"doub",v:h.O}}}; -s.Y.ai3=function(h,e,$,Z){var c=[],q=1/($-0);for(var G=0;G<$;G++){var E=G*4,P=s.Y.Jj(h,e,(Z?$-1-G:G)*q); -c[E]=P[0];c[E+1]=P[1];c[E+2]=P[2];c[E+3]=P[3]}return c};s.Y.YL=function(h,e,$,Z){var c=new Uint32Array($),q=1/($-0); -for(var G=0;G<$;G++)c[G]=s.Y.uc(h,e,(Z?$-1-G:G)*q);return c};s.Y.Jj=function(h,e,$){var Z=4096,c=1/4096,q=h.Intr.v*c,E=h.Clrs.v,P=h.Trns.v,a=E.length-1,j=P.length-1,G=-1,L=0,H=0,_=0,J=0; -while(Gm)dV[G]=255-(255-v)*e1}}if(Y)console.log("init",Date.now()-N);N=Date.now();if(c*U>0){ch.set(b2); -s.Nw.E_(ch,b2,new O(0,0,$,Z),U)}if(P*g>0){ch.set(dV);s.Nw.E_(ch,dV,new O(0,0,$,Z),g)}if(Y)console.log("blur",Date.now()-N); -N=Date.now();var dq=s.m(256),f2=s.m(256);for(var G=0;G<256;G++){var a3=G*(1/255),bm=0;bm=(1-Math.pow(1-a3,n))*255; -dq[G]=Math.max(0,Math.min(255,~~(bm+.5)));bm=Math.pow(a3,u)*255;f2[G]=Math.max(0,Math.min(255,~~(bm+.5)))}var h2=new Uint8ClampedArray(e.buffer),ag=new Float32Array(32768); -for(var G=0;G<32768;G++){bb=Math.sqrt(G)*(1/128);if(gf>1)bb=(1-bb)*(gf-1)+1;else bb=bb*(gf-1)+1;ag[G]=bb}for(J=0; -J400)S++;var N=h,Y=e,U=a,g=Math.floor(Y.d/S),M=Math.floor(Y.v/S); -h=s.m(g*M*4);s.scale.hF(N,Y.d,Y.v,h,g,M,1/S);a=s.m(g*M);s.scale.rK(U,Y.d,Y.v,a,g,M,1/S);s.round(a,1); -var C=s.Hd(a,new O(0,0,g,M));if(C.nK())return 1;var y=Math.round((C.d+C.v)/2/15),i=Date.now(),Q=s.m(g*M*4); -s.a5Z(h,Q);var m=Int16Array,n=new m(g*M*24),u=new m(64),K=new m(64),F=new m(64),b=new m(64);for(var A=3; -A0){var A=Math.floor(G*bP),z=G-A*2*g; -eB.push({x:z-g,y:A-M,G:x[G],JI:-1})}}eB.sort(function(iz,d2){return d2.G-iz.G});var ek=new Int32Array(g*M),b_=[]; -for(var G=0;G>2]=f2+1}if(q)console.log(Date.now()-i,"copied back"); -i=Date.now();s.WO.xS(bb,b2,E,null,1e3);if(q)console.log(Date.now()-i,"poisson smooth");i=Date.now(); -s.hX(bb,E,Z,c);return 0};s.U_.oP=function(h,e,$,Z,c,q){return s.U_.Ul(h+c.x,e+c.y,$,Z)&&q[(e+c.y)*$+(h+c.x)]==-1?0:1e9}; -s.U_.a3u=function(h,e,$,Z,top,c,q,E){var P=Date.now(),a=[-1,0,0,-1,1,0,0,1],j=1e99,L=[],H=[],_=2*(E*2*3+E*2),J=null,S=0,N=0,Y=0,U=1e99; -while(!0&&Date.now()1){if(h[G]==h[T]){var R=0; -R+=s.U_.KU(n+K.x,u+K.y,n+y.x,u+y.y,$,Z,e,c);R+=s.U_.KU(A+K.x,z+K.y,A+y.x,z+y.y,$,Z,e,c);L[i]=G;L[i+1]=T; -H[i]=R;H[i+1]=R;i+=2}else{var I=top[h[T]],r=Q,x=0,X=0,l=0;Q++;x+=s.U_.KU(n+K.x,u+K.y,n+y.x,u+y.y,$,Z,e,c); -x+=s.U_.KU(A+K.x,z+K.y,A+y.x,z+y.y,$,Z,e,c);X+=s.U_.KU(n+I.x,u+I.y,n+y.x,u+y.y,$,Z,e,c);X+=s.U_.KU(A+I.x,z+I.y,A+y.x,z+y.y,$,Z,e,c); -l+=s.U_.KU(n+I.x,u+I.y,n+K.x,u+K.y,$,Z,e,c);l+=s.U_.KU(A+I.x,z+I.y,A+K.x,z+K.y,$,Z,e,c);L[i]=G;L[i+1]=r; -H[i]=x;H[i+1]=x;i+=2;L[i]=T;L[i+1]=r;H[i]=X;H[i+1]=X;i+=2;L[i]=r;L[i+1]=E+1;H[i]=l;H[i+1]=0;i+=2}}}L[i]=E; -L[i+1]=G;H[i]=F;H[i+1]=0;i+=2;L[i]=G;L[i+1]=E+1;H[i]=b;H[i+1]=0;i+=2;m+=Math.min(F,b)}if(m>M)continue; -var hH=s.c6.lJ(Q,i,E,E+1,L,H,M);if(hH.iH=j){break}j=M; -h=g;if((Y&3)==0){if(M*1.03>=U)break;U=M}if((Y&3)==0){var gj=0*top.length;for(var G=0;Ggj; -G++){if(h.indexOf(G)!=-1)continue;top.splice(G,1);for(var T=0;TG)h[T]--;G--}}}return h}; -s.U_.a3f=function(h,e,$,Z,c,q){for(var G=0;G>1)};s.U_.a7P=function(h,e,$,Z,c,q){var top=[]; -for(var G=0;G<60;G++){var E=s.U_.kt(top,25,$,Z,c,h,e);if(E==null)break;else top.push(E)}if(top.length==0)return null; -var P=[];for(var G=0;G100){var E;E=s.U_.kt(top,0,$,Z,c,h,e,a,j); -if(E==null)return null;top.push(E);H=0}}P.push(L)}return{top:top,WA:P}};s.U_.KU=function(h,e,$,Z,c,q,E,P){if(h==$&&e==Z)return 0; -if(h<0||e<0||h>=c||e>=q||$<0||Z<0||$>=c||Z>=q||P[e*c+h]!=-1||P[Z*c+$]!=-1)return 1e7;var a=e*c+h<<2,j=Z*c+$<<2,L=E[a]-E[j],H=E[a+1]-E[j+1],_=E[a+2]-E[j+2]; -return 1+(L*L+H*H+_*_)};s.U_.Ul=function(h,e,$,Z){return h>=0&&h<$&&e>=0&&e=Z)return c+1}return c};s.U_.Ew=function(h,e,$,Z,c){var q=16,_=0;if(e-h<=q){$.push(99,h,e); -return}s.U_.Be(h,e,Z,c);var E=-1,P=-1;for(var G=4;G<24;G++){var a=c[2*G+1]-c[2*G];if(a>P){P=a;E=G}}var j=h+e>>1,L=s.U_.ag_(j,h,e,Z,E),H=-1; -for(var G=h;G<=e;G++)if(Z[24*G+E]==L){if(H==-1)H=G;_=G}if(h+8e-_)j=H;else if(_+1a)Z[(q<<1)+1]=E}}}; -s.U_.p_=function(h,e,$){var Z=0,G=0;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z; -G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z; -G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z; -G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z; -G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z; -G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z; -G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z; -G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z; -G++;Z=$[h+G];$[h+G]=$[e+G];$[e+G]=Z;G++};s.U_.zH=function(h,e,$,Z){var c=$+Z>>>1,q=h[24*c+e];while($<=Z){while(h[24*$+e]q)Z--;if($<=Z){if(h[24*$+e]!=h[24*Z+e])s.U_.p_($*24,Z*24,h);$++;Z--}}return $};s.U_.ag_=function(h,e,$,Z,c){var q=0; -while(e!=$){q=s.U_.zH(Z,c,e,$);if(h>1; -G>0;G>>=1,c--){for(q=0;q>c&1)!=0;if(E){h+=$+"["+q+"] = "+e+"["+(-G+q)+"] - "+e+"["+q+"]; "}else{h+=$+"["+q+"] = "+e+"["+(G+q)+"] + "+e+"["+q+"]; "}}Z=e; -e=$;$=Z;h+="\n"}console.log(h)};s.U_.ajE=function(t,h,e){var $=h,Z=e,c=$,q=0,G,P,a;while(t>>q!=2)q++; -var E=q;for(G=t>>1;G>0;G>>=1,q--){for(P=0;P>q&1)!=0;if(a)Z[P]=$[-G+P]-$[P];else Z[P]=$[G+P]+$[P]}c=$; -$=Z;Z=c}if((E&1)==1)for(G=0;G$)$=q;if(Ec)c=E}return[e,Z,$,c]};s.a85=function(h,e,$,Z,c){function q(v,hl,ht,ga){return Math.sqrt((v-ht)*(v-ht)+(hl-ga)*(hl-ga))}function E(v,hl){return v>=0&&v=0&&hl<$}function P(v){if(v<0)return 0; -if(v>=e)return e-1;return v}function a(v){if(v<0)return 0;if(v>=$)return $-1;return v}function j(G,v){var hl=v[3]*(1/255),ht=Z[G]+v[0]*hl; -if(ht>255)ht=255;Z[G]=ht;ht=Z[G+1]+v[1]*hl;if(ht>255)ht=255;Z[G+1]=ht;ht=Z[G+2]+v[2]*hl;if(ht>255)ht=255; -Z[G+2]=ht}function L(v,hl,ht){if(!r(v,hl))return;if(ht[3]<0)ht[3]=0;j((hl*e+v)*4,ht)}function H(v){var hl=v.slice(0,3); -hl[3]=0;return hl}var _=e/800;function J(v){return Math.round(v*_)}function S(){for(var G=0;G<=300;G++){X[G]=N(G)}}function N($){var v=.8,hl=.2,ht=v*hl,ga=$/60%2-1,eB=ht*(1-ga*ga),bP=hl-ht,ek; -if($<60){ek=[ht+bP,eB,0]}else if($<120){ek=[eB,ht,0]}else if($<180){ek=[0,ht,eB]}else if($<240){ek=[0,eB,ht]}else if($<300){ek=[eB,0,ht]}else{ek=[ht,0,eB]}return[(ek[0]+bP)*255,(ek[1]+bP)*255,(ek[2]+bP)*255]}function Y($){return X[~~$]}function U(v){return 1-g(v)}function g(v){return v-~~v}function M(v,hl,ht,ga){R(v,hl,ht,0,hl+1,1,ga)}function C(v,hl,ht,ga,eB,bP){R(v,hl,ht,0,ga,1,eB,bP)}function y(v){for(var G=0; -Ghl||a3<=hl-eB)break;var bm=(a3-hl+eB)/eB;bb[3]=b2-ga*(bP==1?bm:Math.pow(bm,bP));j((f2*e+hE)*4,bb)}eG=a(gf+e1); -for(var f2=eG;f2>dq;f2--){var a3=q(hE,f2,ca,gf);if(a3>hl||a3<=hl-eB)break;var bm=(a3-hl+eB)/eB;bb[3]=b2-ga*(bP==1?bm:Math.pow(bm,bP)); -j((f2*e+hE)*4,bb)}}if(ek>0){R(v,hl+ek,bb,bb[3],ek,1,0,0,!0)}if(b_>0){R(v,hl-eB,x(ht),-ht[3],b_,1,0,0,!0)}}function m(v,hl,ht,ga,eB,bP){R(v,hl,ht,ht[3],hl+1,1,ga,eB,bP)}function n(v,hl,ht,ga,eB){if(eB==null)eB=!1; -var bP=v.x,ek=v.y;ga*=hH;if(!eB){hl=I(hl);ht=I(ht)}var b_=P(bP-hl),fz=P(bP+hl);for(var ca=b_;cahl||hE<=hl-ht)break;var dS=(hl-hE)/ht,e1=Y(300*dS); -e1[3]=ga;j((ch*e+ca)*4,e1)}b2=a(ek+bb);for(var ch=b2;ch>dV;ch--){var hE=q(ca,ch,bP,ek);if(hE>hl||hE<=hl-ht)break; -var dS=(hl-hE)/ht,e1=Y(300*dS);e1[3]=ga;j((ch*e+ca)*4,e1)}}}function u(l,v){var hl=l.rO,ht=l.x5,ga=v.slice(0),eB=v[3]*hH,bP=Math.abs(ht.y-hl.y)>Math.abs(ht.x-hl.x); -if(bP){var ek=hl.x;hl.x=hl.y;hl.y=ek;ek=ht.x;ht.x=ht.y;ht.y=ek}if(hl.x>ht.x){var ek=hl;hl=ht;ht=ek}var b_=ht.x-hl.x,fz=ht.y-hl.y,ca=b_==0?1:fz/b_,gf=Math.round(hl.x),bb=hl.y+ca*(gf-hl.x),b2=U(hl.x+.5),dV=gf,ch=~~bb; -if(bP){ga[3]=eB*U(bb)*b2;L(ch,dV,ga);ga[3]=eB*g(bb)*b2;L(ch+1,dV,ga)}else{ga[3]=eB*U(bb)*b2;L(dV,ch,ga); -ga[3]=eB*g(bb)*b2;L(dV,ch+1,ga)}var hE=bb-ca;gf=Math.round(ht.x);bb=ht.y+ca*(gf-ht.x);b2=g(ht.x+.5); -var dS=gf,e1=~~bb;if(bP){ga[3]=eB*U(bb)*b2;L(e1,dS,ga);ga[3]=eB*g(bb)*b2;L(e1+1,dS,ga)}else{ga[3]=eB*U(bb)*b2; -L(dS,e1,ga);ga[3]=eB*g(bb)*b2;L(dS,e1+1,ga)}if(bP){for(var eG=dV+1;eG<=dS-1;eG++){ga[3]=eB*U(hE);L(~~hE,eG,ga); -ga[3]=eB*g(hE);L(~~hE+1,eG,ga);hE+=ca}}else{for(var eG=dV+1;eG<=dS-1;eG++){ga[3]=eB*U(hE);L(eG,~~hE,ga); -ga[3]=eB*g(hE);L(eG,~~hE+1,ga);hE+=ca}}}function K(v,hl,ht,ga){for(var G=0;G<4;G++){var eB=v.SR(hl+1.3*G,ht); -u(eB,ga,1)}}function eu(v,hl){this.x=Math.round(v);this.y=Math.round(hl)}var F=Math.PI/180;eu.prototype.SR=function(v,hl){v=v*F; -var ht=this.x+hl*Math.cos(v),ga=this.y+hl*Math.sin(v);return new b(this.x,this.y,ht,ga)};eu.prototype.a0J=function(v,hl){v=v*F; -var ht=this.Af+hl*Math.cos(v),ga=this.aft+hl*Math.sin(v);return new eu(ht,ga)};function b(v,hl,ht,ga){this.rO=new eu(v,hl); -this.x5=new eu(ht,ga)}b.prototype.cL=function(v){var hl=v*this.rO.x+(1-v)*this.x5.x,ht=v*this.rO.y+(1-v)*this.x5.y; -return new eu(hl,ht)};var d=i,W=m,A=M,z=C,T=n,R=Q,I=J,r=E,x=H,X=[];S();for(var G=0;Gq){c=G;q=Math.abs(h[G][Z])}s.FC.ad2(h,Z,c);for(var G=Z+1;G<$; -G++){if(h[Z][Z]==0)return 1;var E=h[G][Z]/h[Z][Z];for(var P=Z;P<$+1;P++)h[G][P]-=h[Z][P]*E}}for(var G=$-1; -G>=0;G--){if(h[G][G]==0)return 1;var a=h[G][$]/h[G][G];e[G]=a;for(var P=G-1;P>=0;P--){h[P][$]-=h[P][G]*a; -h[P][G]=0}}return 0};s.FC.ad2=function(h,e,$){var Z=h[e];h[e]=h[$];h[$]=Z};s.FC.ake=function(h){var e=h.length,$=s.FC.yU(e,e); -for(var G=0;G255?255:e};s.l2.transform=function(h,e,$){var Z=s.l2.UU,c=h.h.length;for(var G=0;G>1]=_;a[P+1]=E[L];E[L]=P+1;P+=4;a[P]=L;j[P+2>>1]=J;a[P+1]=E[H];E[H]=P+1;P+=4}return{ZH:a,ami:j,a2K:E}}; -s.c6.lJ=function(h,e,$,Z,c,q,E){var P=1,a=s.c6.nU(h,e,$,Z,c,q),j=a.ZH,L=a.ami,H=a.a2K,_=new Uint32Array(h),J=new s.c6.cS(h),N=1,C=0; -J.push($);J.push(Z);var S=new s.c6.cS(h),Y=new Uint8Array(h),U=new Uint32Array(h);Y[$]=1;Y[Z]=2;var g=new Uint32Array(h),M=new Uint32Array(h); -M[$]=M[Z]=0;g[$]=g[Z]=1;while(!0){var y=-1,F=0,A=1e30;while(!J.mr()&&y==-1){var i=J.top(),Q=Y[i],m=H[i]-1; -while(m!=-1){var n=j[m],u=Y[n],K=m^Q-1<<2;if(L[K+2>>1]!=0){if(u==0){s.c6.cC(i,m,n,Y,U,M,g);J.push(n)}else if(u==Q&&g[n]<=g[i]&&M[n]>M[i])s.c6.cC(i,m,n,Y,U,M,g); -else if(u!=Q){y=K}}m=j[m+1]-1}if(y!=-1)break;J.pop()}if(y==-1){break}N++;var b=y;while(b!=-1){_[F]=b; -F++;b=U[j[b^4]]-1}var d=F>>1;for(var G=0;G>1]);C+=A;if(C>=E)return{oL:null,iH:C};for(var G=0; -G>1]-=A;L[T+2>>1]+=A;if(L[z+2>>1]==0&&Y[i]==Y[n]){if(Y[i]==1){U[n]=0; -S.push(n)}if(Y[i]==2){U[i]=0;S.push(i)}}}while(!S.mr()){var i=S.pop(),Q=Y[i],m=H[i]-1,R=Q==1?4:0,I=0,r=0,x=1e9; -while(m!=-1){var n=j[m],X=m^4,K=m^R;if(Y[n]==Q&&L[K+2>>1]>0&&s.c6.a1_(n,$,Z,U,j,N,g,M)+1>1]>0){J.push(n)}if(U[n]==m+1){U[n]=0;S.push(n)}}m=j[m+1]-1}Y[i]=0;J.remove(i)}}var l=[]; -for(var G=0;G>1)}if(Y[n]==1&&Y[i]!=1){l.push(e+G>>1)}}return{oL:l,iH:C}}; -s.c6.cC=function(h,e,$,Z,c,q,E){Z[$]=Z[h];c[$]=e+1;q[$]=q[h]+1;E[$]=E[h]};s.c6.a1_=function(h,e,$,Z,c,q,E,P){var a=h,j=Z[h]-1,L=0; -while(j!=-1&&E[h]!=q){h=c[j^4];j=Z[h]-1;L++}if(j==-1&&h!=e&&h!=$)return 1e9;var H=P[h]+L;L=0;j=Z[a]-1; -while(a!=h){P[a]=H-L;L++;E[a]=q;a=c[j^4];j=Z[a]-1}return H};s.c6.ag8=function(h,e,$,Z,c,q){var E=s.c6.nU(h,e,$,Z,c,q),P=E.ZH,a=E.ami,j=E.a2K,L=0,H=0,_=new Uint32Array(h*2),J=new s.c6.M9(h),S=0; -while(!0){J.reset();J.push($);for(var G=0;G>1]>0&&S!=$){_[S<<1]=N+1;_[(S<<1)+1]=Y;J.push(S)}Y=P[Y+1]-1}if(_[Z<<1]!=0){break}}if(_[Z<<1]==0){break}var U=1e30; -S=Z;while(!0){var g=_[S<<1]-1;if(g==-1)break;var M=_[(S<<1)+1];U=Math.min(U,a[M+2>>1]);S=g}S=Z;while(!0){var g=_[S<<1]-1; -if(g==-1)break;var M=_[(S<<1)+1],C=M^4;a[M+2>>1]-=U;a[C+2>>1]+=U;S=g}L+=U}var y=[];for(var G=0;G>1)}if((_[S<<1]!=0||S==$)&&_[g<<1]==0&&g!=$){y.push(e+G>>1)}}return{oL:y,iH:L}}; -s.c6.M9=function(h){h|=h>>1;h|=h>>2;h|=h>>4;h|=h>>8;h|=h>>16;this.xF=new Uint32Array(h+1);this.kG=h; -this.KL=0;this.YN=0};s.c6.M9.prototype={push:function(h){var e=this.YN;this.xF[e]=h;this.YN=e+1&this.kG},pop:function(){var h=this.KL,e=this.xF[h]; -this.KL=h+1&this.kG;return e},mr:function(){return this.KL==this.YN},reset:function(){this.KL=0;this.YN=0}}; -s.c6.cS=function(h){h|=h>>1;h|=h>>2;h|=h>>4;h|=h>>8;h|=h>>16;this.xF=new Uint32Array(h+1);this.Qp=new Uint32Array(h+1); -this.kG=h;this.KL=0;this.YN=0};s.c6.cS.prototype={top:function(){return this.xF[this.KL]},alk:function(){return this.xF[this.YN]},push:function(h){if(this.Qp[h]!=0)return; -this.Qp[h]=this.YN+1;var e=this.YN;this.xF[e]=h;this.YN=e+1&this.kG},pop:function(){var h=this.KL,e=this.xF[h]; -this.Qp[e]=0;this.KL=h+1&this.kG;return e},mr:function(){return this.KL==this.YN},remove:function(h){var e=this.Qp[h]-1; -if(e==-1)return;this.Qp[h]=0;if(e==this.KL){this.pop();return}var $=this.pop();this.xF[e]=$;this.Qp[$]=e+1},Hk:function(G){return G+this.kG+1&this.kG}}; -s.c6._Y=function(h,e,$){var Z=s.c6.zH(h,e,$);if(e>>1]; -while(e<=$){while(h[e]Z)$--;if(e<=$){s.c6.p_(h,e,$);e++;$--}}return e};s.c6.p_=function(h,e,$){var Z=h[e]; -h[e]=h[$];h[$]=Z};s.as={};s.as.afV=function(h){for(var G=0;G.01){s.as.Kp(h,G); -continue}var H=s.as.ym(a);s.I.apply(e,H);s.as.m3(a,[Math.min(H[0],H[2]),Math.min(H[1],H[3]),Math.max(H[0],H[2]),Math.max(H[1],H[3])]); -if(L==2){var _=s.as.op(a),J=new i7(e[0],e[1],e[3],e[4],0,0);J.Ux();if(J.R==0){_.push(_.shift());J.rotate(Math.PI/2); -J.Ux()}if(J.R<0){var S=_[0];_[0]=_[1];_[1]=S;S=_[2];_[2]=_[3];_[3]=S}if(J.rU<0){var S=_[0];_[0]=_[3]; -_[3]=S;S=_[1];_[1]=_[2];_[2]=S}if(Z)for(var N=0;N<4;N++)_[N]=_[N]*E;s.as.Xj(a,_)}if(L==4){a.keyOriginLineWeight.v*=E; -var Y=s.as.qa(a);s.I.apply(e,Y);s.as.a61(a,Y)}}};s.as.qh=function(h,e){var $=e.b;for(var G=0;G=0}; -s.a.G9=function(h){var e={},$=null,Z=0,c={M:2,L:2,Q:4,C:6};for(var G=0;G5||x.type==0||x.type==3)continue;var X=x.LD.dz(x.D)||x.EH.dz(x.EH);if(!X){var F=x.LD.x*(x.D.y-x.EH.y)+x.D.x*(x.EH.y-x.LD.y)+x.EH.x*(x.LD.y-x.D.y); -if(Math.abs(F)<1e-6)X=!0}if(X)x.type--}return W};s.a.$o=function(){function h(Z,c,q,E){if(!E&&Z.EH.dz(Z.D)&&c.LD.dz(c.D)){q.H.push(c.D.x,c.D.y); -q.Z.push("L")}else{q.H.push(Z.EH.x,Z.EH.y,c.LD.x,c.LD.y,c.D.x,c.D.y);q.Z.push("C")}}function e(Z,c,G,q,E,P){var a=c[G]; -Z.H.push(a.D.x,a.D.y);Z.Z.push("M");for(var j=G;j5)continue;var E=Z[G].length;if(E==0)continue; -if(G==Z.length-1)break;var P=Z[G].type==3;e(q,Z,G+1,E,P,c);if(!P)q.Z.push("Z");G+=E}return q}return $}(); -s.a.afR=function(h){var e=h.H,$=[],Z,c=0;for(var G=0;G>>1}}return c_){_=N;H=G}}if(_=0},e=function(Z,c,q,E,P,a,j,L){var H=j-q,_=L-E,J=P-q,S=a-E,N=Z-q,Y=c-E,U=H*H+_*_,g=H*J+_*S,M=H*N+_*Y,C=J*J+S*S,y=J*N+S*Y,i=1/(U*C-g*g),Q=(C*M-g*y)*i,m=(U*y-g*M)*i; -return Q>=0&&m>=0&&Q+m<1},$=function(Z){var t=Z.length>>>1,G=0;if(t<3)return[];var c=[],q=[];for(var G=0; -G3){var P=q[(G+0)%E],a=q[(G+1)%E],j=q[(G+2)%E],L=Z[2*P],H=Z[2*P+1],_=Z[2*a],J=Z[2*a+1],S=Z[2*j],N=Z[2*j+1],Y=!1; -if(h(L,H,_,J,S,N)){Y=!0;for(var U=0;U3*E)break}c.push(q[0],q[1],q[2]); -return c};return $}();s.a.am3=function(h,e){var $={},Z={Z:[],H:[]};for(var G=0;G$){var q=$; -$=e;e=q}if(c[e+","+$])return;c[e+","+$]=!0;Z.Z.push("M","L");Z.H.push(h[e],h[e+1],h[$],h[$+1])};s.a.XZ=function(h,e){var $=[],Z=h.length; -for(var G=0;G=0;G--){var E=Math.pow(10,G);if(5*E*h<=q){Z=5*E; -c=10;break}if(2*E*h<=q){Z=2*E;c=4;break}if(1*E*h<=q){Z=1*E;c=10;break}}if(Z==0){Z=1;c=10}var P=Math.ceil(Z*h),a=s.m(P*s.IQ.uE*4); -s.Ut(a,4278190080|$);for(var G=0;G1||Z==1&&P>20)for(var G=1;G>16&255;h[e+1]=$>>8&255;h[e+2]=$&255}; -s.IQ.af4=function(h,e,$,Z,c){var q=h.qM.d,E=h.qM.v,P=s.IQ.uE,a=e&255,j=e>>8&255,L=e>>16&255,i,Q,m,n; -e=Math.round(a*.6)<<16|Math.round(j*.6)<<8|Math.round(L*.6);s.IQ.anM(Math.round(a*.8)<<16|Math.round(j*.8)<<8|Math.round(L*.8),$); -var H=this.abj(h.S,e,$),_=h.QX(0,0),J=h.QX(q,E),S=Math.floor(_.x/H.step)*H.step,N=Math.ceil(J.x/H.step)*H.step,Y=Math.floor(_.y/H.step)*H.step,U=Math.ceil(J.y/H.step)*H.step,g=h.ab(S,Y),M=h.ab(N,Y),C=H.step*h.S,y=Math.ceil(C); -i=h.h4.data;Q=new O(0,0,q,P);m=new O(0,0,y,P);n=new O(0,Math.round(P*.08),s.IQ.Zm,s.IQ.Zm);for(var G=0; -G<(N-S)/H.step;G++){m.x=Math.round(g.x+G*C);s.hX(H.bj,m,i,Q,m);var u=(S+G*H.step).toString(10);for(var K=0; -K>>24;S+=i;N+=i*(y>>>16&255);Y+=i*(y>>>8&255); -U+=i*(y&255)}if(S!=0){var Q=1/S;Z[_*c+J]=S/(g*M)<<24|N*Q<<16|Y*Q<<8|U*Q}else Z[_*c+J]=0}};s.N={};s.N.an_=function(h,e,$){var Z=128,G=0,c=$.d,q=$.v; -for(var E=0;E=Z&&(P==0||h[G-1]>>2]}}}; -s.N.a2V=function(h,e,$,Z,c,q){var E=$.d,P=$.v,a=0,j=0,L=E,H=P;if(Z){a=Z.x-$.x;j=Z.y-$.y;L=a+Z.d;H=j+Z.v}var _=new Uint8Array(e.buffer),J=new Uint32Array(e.buffer); -for(var S=j;S>>1<<24|255;else J[G]=255<<24|(Y<<16|Y<<8|Y)}}; -s.gV={};s.gV.yg=function(h,e,$){var Z,c;if($=="front"){Z=h.rect.clone();c=s.gV.a7O}if($=="union"){Z=h.rect.iJ(e.rect); -c=s.gV.iJ}if($=="difference"){Z=e.rect.clone();c=s.gV.afg}if($=="intersection"){Z=h.rect.jx(e.rect); -c=s.gV.jx}if($=="xor"){Z=h.rect.iJ(e.rect);c=s.gV.anr}if(Z.nK())return null;var q=s.m(Z.X());s.T7(e.channel,e.rect,q,Z); -var E=s.m(Z.X());s.T7(h.channel,h.rect,E,Z);c(E,q,q);var P=s.Hd(q,Z);if(P.nK())return null;if(!P.dz(Z)){var a=s.m(P.X()); -s.T7(q,Z,a,P);q=a;Z=P}return{channel:q,rect:Z}};s.gV.a7O=function(h,e,$){for(var G=0;Gc+Z)break}}; -s.l_.prototype.a1n=function(h,e,$,Z){var c=Date.now(),q=1.96,P=0;if($==null)$=5e-5;if(Z==null)Z=1e9; -var E=1-q,t=this.rows,a=this.OH,j=this.W4,L=this.iv,H=this._v;while(!0){var _=0;for(var G=0;Gc+Z)break}};s.$e={};s.$e.cc=function(h,e,$){return{t:"Objc",v:{classID:"CrPt",Hrzn:{t:"doub",v:h},Vrtc:{t:"doub",v:e},Cnty:{t:"bool",v:$}}}}; -s.$e.J=function(h,e){for(var G=0;G=e[e.length-1])return $[e.length-1];var G=1;while(e[G]=e[e.length-1])return $[e.length-1]; -var G=1;while(e[G]100)c[1]=.4*c[1];if(c[2]>150)c[1]=.7*c[2]}return c};s.$e.bl=function(h,e){var $=new Uint8Array(h.length); -for(var G=0;GN){var U=Y;Y=N;N=U}e[G]=_+s.style.a3q(N,Y,J)}};s.style.a3q=function(h,e,$){return(.5-$)*h};s.style.IC=function(h,e,$,Z){if(Z==null){Z=!0; -for(var G=0;G=0;E--)s.style.Ox(e,h,$,G+E<<1,1)}for(var q=Z-2; -q>=0;q--){var G=q*$;for(var E=0;E<=$-1;E++)s.style.qu(e,h,$,G+E<<1,1);for(var E=1;E<=$-1;E++)s.style.Ox(e,h,$,G+E<<1,-1); -for(var E=$-2;E>=0;E--)s.style.Ox(e,h,$,G+E<<1,1)}};s.style.Ox=function(h,e,$,Z,c){var q=(Z>>>1)+c<<1,E=h[Z],P=h[Z+1],a=h[q]+c,j=h[q+1],L=a*a+j*j,H=E*E+P*P; -if(j!=16383&&(E==16383||Math.sqrt(L)+(.5-e[(Z>>>1)+j*$+a]*(1/255))>>1)+P*$+E]*(1/255)))){h[Z]=a; -h[Z+1]=j}};s.style.qu=function(h,e,$,Z,c){var q=(Z>>>1)+c*$<<1,E=h[Z],P=h[Z+1],a=h[q],j=h[q+1]+c,L=a*a+j*j,H=E*E+P*P; -if(a!=16383&&(E==16383||Math.sqrt(L)+(.5-e[(Z>>>1)+j*$+a]*(1/255))>>1)+P*$+E]*(1/255)))){h[Z]=a; -h[Z+1]=j}};s.style.a45=function(h,e,$,Z){var c=$*Z;for(var G=0;G=0;E--)s.style.NV(e,h,$,G+E<<1,1)}for(var q=Z-2;q>=0;q--){var G=q*$;for(var E=0;E<=$-1; -E++)s.style.Y5(e,h,$,G+E<<1,1);for(var E=1;E<=$-1;E++)s.style.NV(e,h,$,G+E<<1,-1);for(var E=$-2;E>=0; -E--)s.style.NV(e,h,$,G+E<<1,1)}};s.style.NV=function(h,e,$,Z,c){var q=(Z>>>1)+c<<1,E=h[Z],P=h[Z+1],a=h[q]+c,j=h[q+1],L=a*a+j*j,H=E*E+P*P; -if(j!=16383&&(E==16383||L>>1)+c*$<<1,E=h[Z],P=h[Z+1],a=h[q],j=h[q+1]+c,L=a*a+j*j,H=E*E+P*P; -if(a!=16383&&(E==16383||L=0;P--)e[P+q-$]=Math.min(e[P+q-$],e[P+q-$+1]);for(var a=Z-2;a>=0;a--){var G=a*$+$-1;e[G]=Math.min(e[G],Math.min(e[G+$]+1,e[G+$-1]+Math.SQRT2)); -for(var P=$-2;P>=1;P--){var j=e[--G],L=Math.min(e[G+1]+1,Math.min(e[G+$-1]+Math.SQRT2,Math.min(e[G+$]+1,e[G+$+1]+Math.SQRT2))); -if(L=0;a--){if(h[a*$+E]>c)P=0;else P++;q[a]=P}P=$+Z;for(var a=0; -ac)P=0;else P++;e[a*$+E]=P0)h[G]=Math.max(0,Math.min(255,Z+e*2*(s.style.f$(G)-128)))}else for(var G=0; -G0)h[G]=Math.max(0,Math.min(255,Z+Math.min(Z*3,e*2*(s.style.f$(G)-128))))}}; -s.style.f$=function(h){h=h^61^h>>16;h=h+(h<<3);h=h^h>>4;h=h*668265261;h=h^h>>15;return h&255};s.kA={}; -s.kA.Ps=function(h,e,$){var Z=h.canvas,c=D.M(),q=Math.floor;if(Z.width!=q(e*c)||Z.height!=q($*c))D.VR(Z,e,$,h)}; -s.kA.AB=function(h,e,$,Z,c,q){s.kA.Ps(h,e,$);if(q==null)q=!1;var E=c.channel,P=c.rect,a=!c.isEnabled; -e=Math.floor(e*D.M());$=Math.floor($*D.M());if(e*$==0)return;var j=h.createImageData(e,$),L=j.data,H=1/e,_=1/$; -for(var G=0;G<$;G++)for(var J=0;J=P.x+P.d||U=P.y+P.v)g=c.color;else g=E[(U-P.y)*P.d+(Y-P.x)];g=255*(255-c.Ks)+g*c.Ks>>>8; -if(q)g=170+Math.round(.4*(g-170));L[N]=g;L[N+1]=g;L[N+2]=g;L[N+3]=255}h.putImageData(j,0,0);if(a)s.kA.Q3(h,e,$)}; -s.kA.ZY=[];s.kA.amQ=function(h,e,$,Z){var c,q,E,P=D.M();e=Math.floor(P*e);$=Math.floor(P*$);c=Math.ceil(Math.max(e,$)*.35); -q=e-c;E=$-c;var a=s.kA.ZY[c];if(a==null){var j=D.w("canvas"),L=j.getContext("2d");j.width=j.height=c; -L.fillStyle="#eeeeee";L.fillRect(0,0,c,c);var H=Math.round(c*.27),_=L.lineWidth=Math.max(1,Math.round(c*.12)),J=_/2; -L.strokeRect(1+J,1+J,c-_-2,c-_-2);L.strokeRect(H+J,H+J,c-H-H-_,c-H-H-_);a=s.kA.ZY[c]=L.getImageData(0,0,c,c)}h.putImageData(a,q,E)}; -s.kA.Zz=[];s.kA.adz=function(h,e,$){var Z,c,q,E=D.M();e=Math.floor(E*e);$=Math.floor(E*$);Z=Math.ceil(Math.max(e,$)*.35); -c=e-Z;q=$-Z;var P=s.kA.Zz[Z];if(P==null){var a=D.w("canvas"),j=a.getContext("2d");a.width=a.height=Z; -j.fillStyle="#eeeeee";j.fillRect(0,0,Z,Z);j.lineWidth=1;j.strokeRect(2.5,2.5,Z-5,Z-5);var L=j.createImageData(3,3); -s.Ut(L.data,4278190080);L.data[4*4]=L.data[4*4+1]=L.data[4*4+2]=238;j.putImageData(L,1,1);j.putImageData(L,Z-4,1); -j.putImageData(L,1,Z-4);j.putImageData(L,Z-4,Z-4);P=s.kA.Zz[Z]=j.getImageData(0,0,Z,Z)}h.putImageData(P,c,q)}; -s.kA.a3S=function(h,e,$,Z,c){s.kA.Ps(h,e,$);e=Math.floor(e*D.M());$=Math.floor($*D.M());var q=e/Z.d; -if(e*$==0)return;h.fillStyle="#999999";h.setTransform(1,0,0,1,0,0);h.clearRect(0,0,e,$);var E=s.kA.kw; -if(E==null){E=s.kA.kw=JSON.parse(JSON.stringify(c3.oF.default));E.strokeEnabled.v=!0}E.strokeStyleLineWidth.v.val=1*D.M()/q; -h.fillStyle="#ffffff";h.scale(q,q);s.W.td(c.b,h,0,0);s.W.td(c.b,h,0,0,E)};s.kA.Du=null;s.kA.Pv=function(h,e,$,Z,c,q,E,P){s.kA.Ps(h,e,$); -e=Math.floor(e*D.M());$=Math.floor($*D.M());if(e*$==0)return;var a=Math.max(e,$),j=s.kA.Du;if(j==null||j.width=S||y=Y){L[M]=i;L[M+1]=i;L[M+2]=i;L[M+3]=255}else{var Q=(y-q.y)*q.d+(C-q.x)<<2,m=c[Q+3]*(1/255); -L[M]=c[Q+0]*m+i*(1-m);L[M+1]=c[Q+1]*m+i*(1-m);L[M+2]=c[Q+2]*m+i*(1-m);L[M+3]=255}}if(P!=null)for(var G=0; -G5||q.type==0||q.type==3)continue;if(e!=null&&e.indexOf(c)==-1)continue; -if($!=null&&$.indexOf(G)==-1)continue;Z.push(q.LD.x);Z.push(q.LD.y);Z.push(q.D.x);Z.push(q.D.y);Z.push(q.EH.x); -Z.push(q.EH.y)}return Z};s.W.ip=function(h,e,$,Z){var c=0,q=-1;for(var G=0;G5||E.type==0||E.type==3)continue;if($!=null&&$.indexOf(q)==-1)continue; -if(Z!=null&&Z.indexOf(G)==-1)continue;E.LD.su(h[c],h[c+1]);E.D.su(h[c+2],h[c+3]);E.EH.su(h[c+4],h[c+5]); -c+=6}};s.W.wD=function(h,e,$,Z){var c=s.W.qs(h,$,Z);s.a.J(c,e,c);s.W.ip(c,h,$,Z)};s.W.a6C=function(h,e,$,Z){var c=s.W.qs(h,$,Z); -s.I.apply(e,c);s.W.ip(c,h,$,Z)};s.W.aaW=function(h,e,$,Z){if($==null&&Z==null){var c=s.W.adl(h,40);for(var G=0; -G5){$.push(JSON.parse(JSON.stringify(Z)));continue}var c=s.W.afP(h,G+1,Z.length); -c=s.a.zb(c,e);var q=s.W.a5x(c);G+=Z.length;Z=JSON.parse(JSON.stringify(Z));Z.length=q.length;$.push(Z); -for(var E=0;E5)continue;var e=h[G].length;if(!(e==4||e==6||e==8)){G+=e; -continue}for(var $=0;$5)continue; -if((q.type==0||q.type==3)&&q.aN!=-1)Z++;if(e!=null&&e.indexOf(Z)==-1)continue;if(G==h.length-1)break; -var E=q.type==3,P=q.length,a=q.aN,j=s.W.adL(h,G+1,P,E);if($==null)$=j;else if(c){if(e!=null||a==0||a==-1||a==2)$=$.iJ(j); -else if(a==1)$=$;else if(a==3){$=j;c=!1}}else{if(e!=null||a==0||a==-1||a==1)$=$.iJ(j);else if(a==2)$=$; -else if(a==3)$=$.jx(j)}G+=P}if($==null||$.d<0||$.v<0)$=new O(0,0,0,0);return $};s.W.a47=new Float64Array(4); -s.W.adL=function(h,G,e,$){var Z=s.W.a47;Z[0]=1e30;Z[1]=1e30;Z[2]=-1e30;Z[3]=-1e30;var c=h[G+e-1];if(!$)s.W.jK(c.D.x,c.D.y,c.EH.x,c.EH.y,h[G].LD.x,h[G].LD.y,h[G].D.x,h[G].D.y,Z); -for(var q=G;qH)H=i;if(Q_)_=Q}if(ja[2])a[2]=H; -if(_>a[3])a[3]=_};s.W.v3=function(h,e){var $=h.length-3,Z=e%$,c=Math.floor(Z);if(e<0||c>=$)return null; -var q=h[3+c],E=h[3+(c+1)%$],P=q.D,a=q.EH,j=E.LD,L=E.D,H=Z-c,_=1-H,J=_*_*_*P.x+3*_*_*H*a.x+3*_*H*H*j.x+H*H*H*L.x,S=_*_*_*P.y+3*_*_*H*a.y+3*_*H*H*j.y+H*H*H*L.y; -return new eu(J,S)};s.W.dG=function(h){var e=2,$=s.W.H4(h),Z=!1;for(var G=2;G1)h=s.W.BL(h);var q=s.a.$o(h);return{ahD:Typr.U.pathToSVG({crds:q.H,cmds:q.Z},e),lD:Z?1:0}}; -s.W.BL=function(h){s.W.mU();var e,$=s.W.mK(h),Z=[];for(var G=0;G<$.length;G++){var c=$[G][0],q=$[G][1]; -if(Math.abs(c.area)<1e-5)Z.push(c);else if(e==null)e=c;else{e=e[q](c);e.remove()}}if(e==null)e=new paper.CompoundPath(Z); -else{if(e.segments)e=new paper.CompoundPath(e);for(var G=0;G=0;G--){var P=E[G][0],a=P.hitTest(q,c);if(a!=null)return{NS:G,s3:$?a.location.index:null}}return{NS:-1}}; -s.W.b6=function(h,e,$){var Z=[[],[],[]];for(var G=0;G5||c.type==0||c.type==3)continue; -var q=$==null?!0:$.indexOf(G)!=-1;if(e.B4(c.D))Z[0].push(G);if(e.B4(c.LD)&&q)Z[1].push(G);if(e.B4(c.EH)&&q)Z[2].push(G)}return Z}; -s.W.a0P=function(h,e,$){var Z=$.slice(0),c=[null,null],q=-1,P=null;for(var G=2;G=e)return Z; -Z++}return Z};s.W.kv=function(h,e){var $=-1,Z=0;for(var G=0;G180?360-S:S; -if(N5)continue; -var q=h[G].length,E;if(G==h.length-1)break;var P=h[G].type==3;if(G==2){if(!s.W.Sm(h))E="subtract";else E="unite"}else{if(h[G].aN==0)E="exclude"; -if(h[G].aN==1)E="unite";if(h[G].aN==2)E="subtract";if(h[G].aN==3)E="intersect"}if(h[G].aN!=-1){$=new paper.CompoundPath; -e.push([$,E]);$.fillRule="evenodd";$.fillColor=Z}var a=[];for(var j=0;js.W.zE){s.W.zE=c}var q=$.d,E=$.v;if(Z==null&&s.W.jN(h)){var P=!0; -for(var G=2;G0)E=!0}if(!q&&P<20)h=s.W.BL(h)}for(var G=0; -G5)continue;var j=h[G].length;if(j==0)continue;if(G==h.length-1)break;var L=h[G].type==3,a=h[G].aN; -if(a!=-1&&c==null){var H=["xor","source-over","destination-out","source-in"][a];e.globalCompositeOperation=H}if(h[G].aN!=-1){e.beginPath(); -if(c){var _=c.strokeStyleLineWidth.v.val,J=c.strokeStyleLineAlignment.v.strokeStyleLineAlignment,S=c.strokeStyleLineCapType.v.strokeStyleLineCapType,N=c.strokeStyleLineJoinType.v.strokeStyleLineJoinType,Y=c.strokeStyleMiterLimit.v,U=[],g=c.strokeStyleLineDashSet.v; -for(var M=0;M1||Math.abs(q[G*4]-q[G*4+E])>1)$=!0}return!$}else return h.warpValue.v==0&&h.warpPerspective.v==0&&h.warpPerspectiveOther.v==0}; -s.FO.m=function(h){var e={classID:"warp",warpStyle:{t:"enum",v:{warpStyle:"warpNone"}},warpValue:{t:"doub",v:0},warpPerspective:{t:"doub",v:0},warpPerspectiveOther:{t:"doub",v:0},warpRotate:{t:"enum",v:{Ornt:"Hrzn"}}}; -if(h){e.bounds={t:"Objc",v:{classID:"Rctn",Top:{t:"UntF",v:{type:"#Pxl",val:h.y}},Left:{t:"UntF",v:{type:"#Pxl",val:h.x}},Btom:{t:"UntF",v:{type:"#Pxl",val:h.y+h.v}},Rght:{t:"UntF",v:{type:"#Pxl",val:h.x+h.d}}}}; -e.uOrder={t:"long",v:4};e.vOrder={t:"long",v:4}}return e};s.FO.ao1=function(h,e,$,Z){for(var G=0;G0)L=L-A*L*Z; -else H=H+A*H*Z}else if(G==1||G==2)L=L-A*L*Z;else if(E==1||E==2)H=H+A*H*Z}if($=="warpTwist"){if((G==1||G==2)&&(E==1||E==2)){var z=Z*Math.PI/2,C=1+Math.abs(Z)*2,T=L*Math.cos(z)-H*Math.sin(z),R=L*Math.sin(z)+H*Math.cos(z); -L=T*C;H=R*C}}if($=="warpShellLower"||$=="warpShellUpper"){if($=="warpShellUpper"){G=3-G;H=-H}if(G>2||G==2&&(E==0||E==3)){if(Z>0){var I=Q+G/3*2*J; -L=Math.sin(i)*I;H=-M*_-J+Math.cos(i)*I;if(E==1||E==2){L=E==1?-F*I:F*I;H=-M*_-J+K*I}}else{if((E==1||E==2)&&G==3){L=E==1?-F*Q:F*Q; -H=M*_-K*Q+J}else if(G==2){H=J-J*(2/3)*Math.cos(i);L=L+J*(2/3)*Math.sin(i)}}}if($=="warpShellUpper"){G=3-G; -H=-H}}L+=_;H+=J}a=L,j=H;h[P]=a+e.x;h[P+1]=j+e.y}}};s.FO.a7C=function(h,e,$){var Z=[];for(var c=0;c<4; -c++)Z.push(1-$+c/3*2*$);var q=[];for(var c=0;c<4;c++)q.push(1-e+c/3*2*e);var E=[0,0,0,0],P=[0,0,0,0]; -for(var G=0;G<4;G++)for(var c=0;c<4;c++){var a=2*(4*G+c),j=h[a],L=h[a+1];E[c]+=j/4;P[c]+=L/4}for(var G=0; -G<4;G++)for(var c=0;c<4;c++){var H=Z[c],a=2*(4*G+c),j=h[a],L=h[a+1],_=E[c],J=P[c];h[a]=_+H*(j-_);h[a+1]=J+H*(L-J)}var S=h.slice(0); -for(var G=0;G<4;G++)for(var c=1;c<3;c++){var a=2*(4*G+c),j=h[a],L=h[a+1],N=a+(c==1?-2:2),Y=h[N],U=h[N+1]; -h[a]=j-Y;h[a+1]=L-U}var g=h[0],M=h[1],C=h[8],y=h[9],i=h[16],Q=h[17],m=h[24],n=h[25],u=h[6],K=h[7],F=h[14],b=h[15],d=h[22],W=h[23],A=h[30],z=h[31],T=u-g,R=K-M,I=F-C,r=b-y,x=d-i,X=W-Q,l=A-m,hH=z-n; -for(var G=0;G<4;G++){var hZ=2*G*4,gj=0,hO=0,d3=G==1?.33:.66,v=1-d3;if(G==0){gj=T;hO=R}if(G==1){gj=v*T+d3*-l; -hO=v*R+d3*-hH}if(G==2){gj=v*T+d3*-l;hO=v*R+d3*-hH}if(G==3){gj=-l;hO=-hH}h[hZ]=h[hZ]+gj/2;h[hZ+1]=h[hZ+1]+hO/2; -h[hZ+6]=h[hZ+6]-gj/2;h[hZ+7]=h[hZ+7]-hO/2}for(var G=0;G<4;G++)for(var c=1;c<3;c++){var a=2*(4*G+c),j=h[a],L=h[a+1],N=a+(c==1?-2:2),Y=h[N],U=h[N+1],H=2*G/3; -h[a]=Y+H*j;h[a+1]=U+H*L}for(var G=1;G<3;G++)for(var c=1;c<3;c++){var a=2*(4*G+c),j=h[a],L=h[a+1],hl=G==1?-8:-16,ht=G==1?16:8,ga=h[a+hl],eB=h[a+hl+1],bP=h[a+ht],ek=h[a+ht+1],H=G/3; -j=(1-H)*ga+H*bP;L=(1-H)*eB+H*ek;h[a]=j;h[a+1]=L}s.a.R6(S,h,h,e)};s.FO.ag5=function(h,e){return(4-h)*(1/3)}; -s.FO.a1V=function(h,e){return(1-h)*(3-h)/(3*e)};s.Bj={};s.Bj.amd=function(h,e,$,Z,c,q,E,P,a,j){for(var L=0; -L>>1; -h[e]=h[e+3]=h[$]=h[$+3]=E;h[e+1]=L;h[e+4]=P;h[$+1]=a;h[$+4]=L;h[e+2]=h[e+5]=h[$+2]=h[$+5]=j};s.Bj.afI=function(h,e,$,Z,c,q){var E=q*3; -for(var G=0;G>2;if(g==S)return P*3+q+E-a>>2;if(g==N)return q*3+P+E-c>>2;return j*3+Z+E-L>>2}; -s.Bj.oM=function(h,e,$,Z,c){if(he&&e>$)return~~(.5+Z+(c-Z)*(e-h)/($-h));else return(Z+c>>1)+(e+e-h-$>>2)}; -s.Bj.ZK=function(h,e,G,$){var Z=e[G-$-1],c=e[G-$+1],q=e[G],E=e[G+$-1],P=e[G+$+1],a=h[G-$-1],j=h[G-$+1],L=h[G],H=h[G+$-1],_=h[G+$+1],J=Math.abs(j-H)+Math.abs(h[G-$-$+2]-L)+Math.abs(L-h[G+$+$-2])+Math.abs(c-q)+Math.abs(q-E),S=Math.abs(a-_)+Math.abs(h[G-$-$-2]-L)+Math.abs(L-h[G+$+$+2])+Math.abs(Z-q)+Math.abs(q-P); -if(J>1<<1; -E+=L[1]>>1<<1}if(h.t50720){var H=h.t50720;P=q+H[0];a=E+H[1]}var _=P-q,J=a-E,S=new Float32Array(_*J*3); -if(h.t277[0]==1){var N=h.t33421;if(N==null){s.Bj.amd(c,e,$,S,q,E,_,J)}else if(N.length!=2||N[0]!=2||N[1]!=2){console.log("Unknown CFA pattern size",N); -s.Bj.rK(c,e,$,S,q,E,_,J,N[0],h.t33422)}else{var Y=h.t33422.join(","),U=0;if(Y=="0,1,1,2")U=0;else if(Y=="1,0,2,1")U=1; -else if(Y=="2,1,1,0")U=2;else if(Y=="1,2,0,1")U=3;else throw"Unknown CFA pattern "+Y;if((_&1)!=0||(J&1)!=0)throw"e"; -s.Bj.a3h(c,e,$,S,q,E,_,J,U)}}else{for(var g=0;g=.92){var C=Math.min(U,M);if(C==U){g=Math.max(g,H[0]*U); -M=Math.max(M,H[1]*U)}else{U=Math.max(U,H[4]*M);g=Math.max(g,H[5]*M)}}var y=a[0]*U+a[1]*g+a[2]*M,i=a[4]*U+a[5]*g+a[6]*M,Q=a[8]*U+a[9]*g+a[10]*M; -if(y<0)y=0;else if(y>1)y=1;if(i<0)i=0;else if(i>1)i=1;if(Q<0)Q=0;else if(Q>1)Q=1;y=_[~~(y*999)];i=_[~~(i*999)]; -Q=_[~~(Q*999)];e[N]=~~(.5+y*255);e[N+1]=~~(.5+i*255);e[N+2]=~~(.5+Q*255)}};s.raw.nC={a4F:function(h,e){var $=.5-.5*Math.cos(h*3.2),Z=0; -if(e>0){var c=h*.2;Z=c*h+(1-c)*$}else{var q=Math.pow(h,.33);Z=(1-q)*q+q*(h+(h-$)*.63)}var E=Math.abs(e); -return E*Z+(1-E)*h},adu:function(h,e){var $=0;if(e>0){var Z=h*1.47,c=Math.pow(h,2.4);$=Math.min(1,c*h+(1-c)*Z)}else{var Z=h*.68,c=Math.pow(h,3); -$=c*h*.5+(1-c)*Z}var q=Math.abs(e);return q*$+(1-q)*h},afY:function(h,e){var $=0;if(e>0){var Z=Math.pow(h,.3),c=h; -$=(1-h)*Z+h*c}else{var Z=Math.pow(h,2.5),q=h,c=h;$=Math.min(1,(1-q)*Z+q*c)}var E=Math.abs(e);return E*$+(1-E)*h}}; -s.raw.a5f=function(h){var e=h.width,$=h.height,Z=e*$*h.t277,c=new Uint16Array(Z),q=null,E=0;s.raw.ajO(h,c); -s.raw.Xy(1,h,c,e,$);if(h.t50712){q=h.t50712;E=q.length-1;if(q[E]>65535)throw"too big values"}var P=s.raw.PX(h),a=s.raw.Pw(h); -if(q==null)for(var G=0;GE)j=E; -j=q[j];c[G]=Math.max(0,j-P)}return c};s.raw.PX=function(h){var e=h.t50714,$=e?e[0]:0,Z=h.t50715,c=h.t50716; -if(Z)$+=Z[0][0]/Z[0][1];if(c)$+=c[0][0]/c[0][1];return Math.round($)};s.raw.Pw=function(h){var e=null,$=0; -if(h.t50712){e=h.t50712;$=e.length-1}var Z=h.t50717?h.t50717[0]:(1<>>3,L=Z[j]<<24|Z[j+1]<<16|Z[j+2]<<8|Z[j+3];if((a&7)==0){E=L>>>18; -P=L>>>4&16383}else{E=L>>>14&16383;P=L&16383}}else if(c==12){q=G+(G>>>1);E=Z[q]<<4|Z[q+1]>>4;P=(Z[q+1]&15)<<8|Z[q+2]}else if(c==10){var a=G*10,j=a>>>3; -if((a&7)==0){E=(Z[j]<<2|Z[j+1]>>6)&1023;P=(Z[j+1]<<4|Z[j+2]>>4)&1023}else{E=(Z[j]<<6|Z[j+1]>>2)&1023; -P=(Z[j+1]<<8|Z[j+2]>>0)&1023}}else if(c==8){q=G;E=Z[q];P=Z[q+1]}e[G]=E;e[G+1]=P}};s.raw.Xy=function(h,e,$,Z,c){var q=e["t"+[51008,51009,51022][h-1]],L=0; -if(q==null)return;var E=Z*c,P=k.n,a=k.bq,j=new Uint8Array(q),aw=k.n(j,L);L+=4;for(var H=0;H>1}else if(_==5&&h==1){var Y=L,b_=P(j,Y);Y+=4; -var fz=P(j,Y);Y+=4;var ca=P(j,Y);Y+=4;for(var G=0;G>1}}else if(_==7&&h==1){var Y=L,b2=k.RQ(j,Y);Y+=16;var dV=P(j,Y);Y+=4;var ch=P(j,Y); -Y+=4;var hE=P(j,Y),dS=P(j,Y+4);Y+=8;var e1=P(j,Y);Y+=4;var eG=new Uint16Array(e1);for(var G=0;G1e-7); -return $};s.raw.m$=function(h,e){var $=iH.e$(e),Z=s.raw.a36,c=h.t50778?h.t50778[0]:0,q=h.t50779?h.t50779[0]:0,E=Z(h.t50721,h.t50722,c,q,$.L7),P=Z(h.t50723,h.t50724,c,q,$.L7); -E=E||[1,0,0,0,1,0,0,0,1];P=P||[1,0,0,0,1,0,0,0,1];var a=h.t50727?[h.t50727[0],0,0,0,h.t50727[1],0,0,0,h.t50727[2]]:[1,0,0,0,1,0,0,0,1]; -return s.l2.multiply(s.l2.KS(a),s.l2.multiply(s.l2.KS(P),s.l2.KS(E)))};s.raw.a36=function(h,e,$,Z,c){if(!h&&!e){return null}else if(h&&!e){return h}else if(c<$){return h}else if(c>Z){return e}else{var q=(1/c-1/Z)/(1/$-1/Z),E=1-q,P=[]; -for(var G=0;G<9;G++)P[G]=h[G]*q+e[G]*E;return P}};var iH={};iH.a80={x:.34567,y:.3585};iH.uM=[{h:0,R8:.18006,o8:.26352,A2:-.24341},{h:10,R8:.18066,o8:.26589,A2:-.25479},{h:20,R8:.18133,o8:.26846,A2:-.26876},{h:30,R8:.18208,o8:.27119,A2:-.28539},{h:40,R8:.18293,o8:.27407,A2:-.3047},{h:50,R8:.18388,o8:.27709,A2:-.32675},{h:60,R8:.18494,o8:.28021,A2:-.35156},{h:70,R8:.18611,o8:.28342,A2:-.37915},{h:80,R8:.1874,o8:.28668,A2:-.40955},{h:90,R8:.1888,o8:.28997,A2:-.44278},{h:100,R8:.19032,o8:.29326,A2:-.47888},{h:125,R8:.19462,o8:.30141,A2:-.58204},{h:150,R8:.19962,o8:.30921,A2:-.70471},{h:175,R8:.20525,o8:.31647,A2:-.84901},{h:200,R8:.21142,o8:.32312,A2:-1.0182},{h:225,R8:.21807,o8:.32909,A2:-1.2168},{h:250,R8:.22511,o8:.33439,A2:-1.4512},{h:275,R8:.23247,o8:.33904,A2:-1.7298},{h:300,R8:.2401,o8:.34308,A2:-2.0637},{h:325,R8:.24792,o8:.34655,A2:-2.4681},{h:350,R8:.25591,o8:.34951,A2:-2.9641},{h:375,R8:.264,o8:.352,A2:-3.5814},{h:400,R8:.27218,o8:.35407,A2:-4.3633},{h:425,R8:.28039,o8:.35577,A2:-5.3762},{h:450,R8:.28863,o8:.35714,A2:-6.7262},{h:475,R8:.29685,o8:.35823,A2:-8.5955},{h:500,R8:.30505,o8:.35907,A2:-11.324},{h:525,R8:.3132,o8:.35968,A2:-15.628},{h:550,R8:.32129,o8:.36011,A2:-23.325},{h:575,R8:.32931,o8:.36038,A2:-40.77},{h:600,R8:.33724,o8:.36051,A2:-116.45}]; -iH.e$=function(h){var e=iH.uM,$=2*h.x/(1.5-h.x+6*h.y),Z=3*h.y/(1.5-h.x+6*h.y),c=0,q=0,E=0;for(;E<31; -E++){c=Z-e[E].o8-e[E].A2*($-e[E].R8);if(E>0&&c<0){break}q=c}while(E>=e.length)E--;c/=Math.sqrt(1+e[E].A2*e[E].A2); -q/=Math.sqrt(1+e[E-1].A2*e[E-1].A2);var P=q/(q-c),a=1e6/((e[E].h-e[E-1].h)*P+e[E-1].h),j=$-((e[E].R8-e[E-1].R8)*P+e[E-1].R8),L=Z-((e[E].o8-e[E-1].o8)*P+e[E-1].o8),H=Math.sqrt(1+e[E].A2*e[E].A2),_=1/H,J=e[E].A2/H,S=Math.sqrt(1+e[E-1].A2*e[E-1].A2),N=1/S,Y=e[E-1].A2/S,U=(_-N)*P+N,g=(J-Y)*P+Y,M=Math.sqrt(U*U+g*g); -U/=M;g/=M;var C=(j*U+L*g)*-3e3;return{L7:a,zx:C}};iH.am_=function(h,e){var $=iH.uM,Z=1e6/h,c=1;for(; -c<31;c++){if(Z<$[c].h){break}}var q=($[c].h-Z)/($[c].h-$[c-1].h),E=($[c-1].R8-$[c].R8)*q+$[c].R8,P=($[c-1].o8-$[c].o8)*q+$[c].o8,a=Math.sqrt(1+$[c].A2*$[c].A2),j=1/a,L=$[c].A2/a,H=Math.sqrt(1+$[c-1].A2*$[c-1].A2),_=1/H,J=$[c-1].A2/H,S=(_-j)*q+j,N=(J-L)*q+L,Y=Math.sqrt(S*S+N*N); -S/=Y;N/=Y;E+=S*e/-3e3;P+=N*e/-3e3;return{x:1.5*E/(E-4*P+2),y:P/(E-4*P+2)}};iH.a7b=function(h){var e=h[0]+h[1]+h[2]; -return{x:h[0]/e,y:h[1]/e}};iH.pk=function(h){return{x:h.x/h.y,y:1,Qc:(1-h.x-h.y)/h.y}};iH.abf=function(h,e){var $=s.l2.KS([.8951,.2664,-.1614,-.7502,1.7135,.0367,.0389,-.0685,1.0296]),Z=[h.x,h.y,h.Qc,0],c=[e.x,e.y,e.Qc,0]; -Z=s.l2.Cf($,Z);c=s.l2.Cf($,c);var q=c[0]/Z[0],E=c[1]/Z[1],P=c[2]/Z[2],a=s.l2.KS([q,0,0,0,E,0,0,0,P]),j=s.l2.vy($); -return s.l2.multiply(s.l2.multiply(j,a),$)};s.raw.Em={};s.raw.Bk=function(h){h*=8;var e=[8,10,12,14,16]; -for(var $ in s.raw.ix){var Z=s.raw.ix[$];if(Z.length==4)continue;var c=Z[4],q=Z[5];for(var G=0;G>>2;J[G+1]=N;if(N>4095)throw"e"}for(var G=0; -G<16385;G++)S[G]=G;for(var G=0;G<5;G++)for(var Y=J[G]+1;Y<=J[G+1];Y++)S[Y]=S[Y-1]+(1<>>2); -s.raw.ack(Q,m,y>>>2,i);var n=new Uint8Array(C+y);n.set(new Uint8Array(m.buffer),C);var u=[];UTIF._readIFD(H,n,C,u,0,!1); -var K=u.pop(),F=K.t29458;h.t50728=[F[1]/F[0],1,F[1]/F[3]];h.t50730=[.5];var b=K.t29891;h.t50829=[b[1],b[0],b[3],b[2]]}else if(q.makerNote&&q.makerNote.t8208){var M=q.makerNote,d=M.t8208,W=d.length,A=0,z=new Uint8Array(256); -for(var G=249;G<256;G++)z[G]=G;for(var G=0;G<249;G++)z[G*G*G%249]=G;for(var G=0;G>>2;h.t50714=[L,L,L,L];h.t50717=[a[3]>>>2]}}else if(h.t271[0].startsWith("Canon")){var e=h.data,T=e.slice(0),R=h.t50752,I=[],x=0; -if(R==null||R[0]==0&&R[1]==0)I.push(h.width);else{for(var G=0;G>1)*hZ*2; -for(var G=0;G>>1,gj=h.height-ch>>>1;h.t50829=[gj,x,gj+ch,x+dV]}if(M.t12){var dq=s.raw.VM(M.t12); -eG=[1/dq[0],1,1/dq[1]]}else if(M.t151){var f2=s.raw.amA(M,151),a3=f2[0],d6=f2[1],bm=f2[2];if(a3=="0100"&&d6>=80)throw"e"; -else if(a3=="0102"){var h2=[];for(var G=0;G<4;G++)h2.push(b_(bm,6+G*2));eG=[h2[1]/h2[0],1,h2[1]/h2[3]]}else if(a3=="0103"&&d6>=26){var h2=[]; -for(var G=0;G<4;G++)h2.push(b_(bm,16+G*2));eG=[h2[1]/h2[0],1,h2[3]/h2[2]]}else if(a3=="0204"&&d6>=564||a3=="0205"&&d6>=284){var C=a3=="0204"?6:14,h2=[]; -for(var G=0;G<4;G++)h2.push(b_(bm,C+G*2));eG=[h2[1]/h2[0],1,h2[1]/h2[3]]}else throw"e"}else console.log("no white balance info"); -if(E=="NIKON D1")eG=[1,1,1];if(eG)h.t50728=eG;var ag=M.t150?M.t150:M.t140;if(ag){var iz=ag[eU++],d2=ag[eU++],eI; -if(iz==73||d2==88)eU+=2110;eU+=8;var gP=1<1)eI=Math.floor(gP/(fa-1)); -if(iz==68&&d2==32&&eI>0){for(G=0;G>>0)*3125+1>>>0;c[3]=c[3]<<1|(c[0]^c[2])>>>31;for(var E=4;E<127; -E++)c[E]=(c[E-4]^c[E-2])<<1|(c[E-3]^c[E-1])>>>31;for(var E=0;E<127;E++)c[E]=k.n(q,E*4);for(;$>0;$--){c[E&127]=c[E+1&127]^c[E+1+64&127]; -var j=c[E&127],L=h[P];L^=j;e[a]=L;P++;a++;E++}};s.raw.ak_=function(h,e){var $=k.dd(e,0,4),Z=s.raw.akF; -for(var G=0;G>>(G<<3)&255;var P=e[c&255],a=$[E&255];return[P,a,96]};s.raw.amA=function(h,e){var $=h["t"+e],d6=$.length,Z=s.raw.ak_(e,$),c=k.dd($,0,4),q,E=Z[4]; -if(E==null)q=$.slice(4);else{q=new Uint8Array(d6-E);var P=s.raw.a7Y(h),a=P[0],j=P[1],L=P[2];for(var G=0; -G1)hi++;for(var d3=0;d3=250?ag:hZ)<<2;h2[eU]=e[d2];h2[eU+1]=e[d2+1]; -h2[eU+2]=e[d2+2]}s.Jk(a3,h2,3);if(L)console.log(Date.now()-j);j=Date.now();return h2};s.dy.iH=function(h,e,$,Z,c,q,E,P,a){var j=h>>>16,L=h&65535,H=j-($>>>16),_=L-($&65535),J=j-(c>>>16),S=L-(c&65535),N=Math.sqrt(H*H+_*_)*E,Y=Math.sqrt(J*J+S*S)*P; -if(N+Y>=a)return 1e9;var U=s.dy.aiQ(e,Z,q);return U+N+Y};s.dy.aiQ=function(h,e,$){var Z=h>>>16,c=h>>>8&255,q=h&255,E=e>>>16,P=e>>>8&255,a=e&255,j=$>>>16,L=$>>>8&255,H=$&255,_=s.dy.alpha(h,e,$),J=Z-(_*E+(1-_)*j),S=c-(_*P+(1-_)*L),N=q-(_*a+(1-_)*H); -return Math.sqrt(J*J+S*S+N*N)};s.dy.alpha=function(h,e,$){var Z=h>>>16,c=h>>>8&255,q=h&255,E=e>>>16,P=e>>>8&255,a=e&255,j=$>>>16,L=$>>>8&255,H=$&255,_=E-j,J=P-L,S=a-H,N=Z-j,Y=c-L,U=q-H,g=_*_+J*J+S*S,M=g==0?.5:(N*_+Y*J+U*S)/g; -return Math.max(0,Math.min(1,M))};s.dy.ak2=function(h){};s.dy.hr=function(h,e,$,Z,c){var q=[],E=e-1,P=$-1; -for(var a=1;a>>2;console.log(H,S);_=s.m(H.X()); -s.z0(L.Hl,_,0);s.Jk(e,j,0);L=s.$I(j,$);L=s.$I(L.Hl,L.rect);J=s.m(H.X());s.z0(L.Hl,J,0);var N=s.gy.ak6(_,J,H,S,c),Y=N[0],U=N[1],g=new O(0,0,H.d*2,H.v*2); -Y=a(Y,H,g,!0);Y=a(Y,g,$,!0);U=a(U,H,g,!0);U=a(U,g,$,!0);var M=s.m(P);for(var G=0;G>>2,E>>>2);S=Z>>>2;_=s.gy.a9V(h,q,E);J=s.gy.a6v(e,q,E);if(L)console.log(Date.now()-j); -j=Date.now();var N=s.gy.a4q(_,J,H,S,c),Y=N[0],U=N[1],g=N[2],M=N[3];if(L)console.log(Date.now()-j);j=Date.now(); -var C=s.m(P);for(var y=0;y>>2)*(q>>>2)+(i>>>2),m=G<<2,n=Y[Q]*e[m]+U[Q]*e[m+1]+g[Q]*e[m+2]+M[Q]*255; -C[G]=Math.max(0,Math.min(255,~~(.5+n)))}if(L)console.log(Date.now()-j);j=Date.now();return C};s.gy.a9V=function(h,e,$){var Z=e>>>2,c=$>>>2,q=s.m(e*$); -for(var E=0;E>>2,c=$>>>2,q=s.m(e*$*4); -for(var E=0;Ee-P-1||L>$-P-1){var G=L*e+H,_=G<<2,J=0;if(Le-P-1)J=8;a[J]+=h[_];a[J+1]+=h[_+1];a[J+2]+=h[_+2];a[J+3]++;c[G]=255}}for(var G=0;G<12;G+=4)for(var S=0; -S<3;S++)j[G+S]=a[G+S]/a[G+3];var N=new Float32Array(Z);for(var G=0;G>>1,E=$>>>1,u=1/Math.sqrt(n*n+E*E); -for(var L=0;L<$;L++)for(var H=0;H=0;E--)s.Sj.JT(c*q-c+E,1,h,e,$,Z);for(var P=q-2;P>=0;P--){s.Sj.JT(P*c+c-1,c,h,e,$,Z);for(var E=c-2; -E>=0;E--){var G=P*c+E;s.Sj.JT(G,1,h,e,$,Z);s.Sj.JT(G,c,h,e,$,Z)}}};s.Sj.JT=function(G,h,e,$,Z,c){var q=G+h,E=e[G],P=$[q],a=Z[q]; -if(P0){var H=a;a=j;j=H}var _=q[j+"-"+a],J=q[a+"-"+P],S=q[P+"-"+j],N=[j,_,E,null],Y=[a,J,E,N],U=[P,S,E,Y]; -N[3]=U;if(_)_[1]=N;if(J)J[1]=Y;if(S)S[1]=U;q[j+"-"+P]=U;q[P+"-"+a]=Y;q[a+"-"+j]=N;$[P]=Y;c[G]=Y;$[a]=N; -c[G+1]=N;$[j]=U;c[G+2]=U;Z[E]=Y}return{L2:$,wJ:Z,r2:c}};s.$q.aoq=function(h){var e=[],$=h.wJ;for(var G=0; -G<$.length;G++){var Z=$[G];e.push(Z[0]);Z=Z[3];e.push(Z[0]);Z=Z[3];e.push(Z[0])}return e};s.$q.a3w=function(h,e,$,Z){var c=h[e*2],q=h[e*2+1],E=h[$*2],P=h[$*2+1],a=h[Z*2],j=h[Z*2+1],L=E-c,H=P-q,_=a-c,J=j-q,S=L*(c+E)+H*(q+P),N=_*(c+a)+J*(q+j),Y=2*(L*(j-P)-H*(a-E)); -if(Math.abs(Y)<1e-5){var U=Math.min(c,E,a),g=Math.min(q,P,j),M=(Math.max(c,E,a)-U)*.5,C=(Math.max(q,P,j)-g)*.5; -return[U+M,g+C,M*M+C*C,1]}var y=(J*S-H*N)/Y,i=(L*N-_*S)/Y,M=y-c,C=i-q;return[y,i,M*M+C*C,0]};s.$q.aaR=function(h,e,$){var Z=$[1],c=$[3],q=c[3],E=Z[3],P=E[3],a=$[2],j=Z[2],L=$[0],H=Z[0],_=c[0],J=E[0],S=s.$q.a3w(h,H,J,_),N=h[L*2]-S[0],Y=h[L*2+1]-S[1],U=N*N+Y*Y>S[2]&&S[3]==0&&s.$q.qn(h,J,L,_)<0&&s.$q.qn(h,_,H,J)<0; -if(U){$[0]=_;Z[0]=J;$[3]=q;q[3]=E;E[3]=$;Z[3]=P;P[3]=c;c[3]=Z;c[2]=j;E[2]=a;e.wJ[j]=P;e.wJ[a]=q;e.L2[H]=E; -e.L2[L]=c}return U};s.$q.cU=function(h,e,$){var Z=h[e*2]-h[$*2],c=h[e*2+1]-h[$*2+1];return Math.sqrt(Z*Z+c*c)}; -s.$q.ag0=function(h,e,$){var Z=$[1],c=$[3],q=c[3],E,P,a=$[2],j,L=$[0],H=q[0],_=c[0],J;if(Z){E=Z[3];P=E[3]; -j=Z[2];J=E[0]}var S=h.length>>>1;h[2*S]=(h[2*H]+h[2*L])*.5;h[2*S+1]=(h[2*H+1]+h[2*L+1])*.5;if(!0){var N=a,Y=$,U=e.wJ.length,g=[S,null,N,Y],M=[_,g,U,q]; -g[1]=M;var C=[S,null,U,M];c[3]=g;q[3]=C;q[2]=U;e.wJ[N]=c;e.wJ[U]=C;e.L2[L]=c;e.L2[_]=q;e.r2.push(g,M,C)}if(Z){var y=j,i=Z,Q=U+1; -C[1]=i,i[1]=C;var m=[S,null,y,i],n=[J,m,Q,P];m[1]=n;var u=[S,Y,Q,n];Y[1]=u;E[3]=m;P[3]=u;P[2]=Q;e.wJ[y]=E; -e.wJ[Q]=P;e.L2[H]=E;e.L2[J]=P;e.r2.push(m,n,u)}e.L2[S]=Y};s.$q.lG=function(h,e){var $=0;while(!0){var Z=$; -for(var G=0;GE){q=a;E=j}}if(E>$){s.$q.ag0(h,e,q); -c++}}return c!=0};s.$q.akp=function(h,e){var $=[],_=0;for(var G=0;G>>1,S=e.L2[J],Z=S,N=!0; -do{if(Z[1]==null){N=!1;break}Z=Z[1][3]}while(Z!=S);if(N){var Y=.02;h[G]+=Y*$[G];h[G+1]+=Y*$[G+1];_+=Y*($[G]*$[G]+$[G+1]*$[G+1])}}return _}; -s.$q.a0i=function(h,e,$){var Z=s.a.Be(h),c=s.$q.Wy(h,e);s.$q.lG(h,c);for(var q=0;q<300;q++){var E=!1,P=!1; -E=s.$q.a5o(h,c,$,5);if(E)P=s.$q.lG(h,c);var a=s.$q.akp(h,c);if(!E&&!P&&a<1e-4){break}}return s.$q.aoq(c)}; -s.M0={};s.M0.Qz=function(h){var e=h.T1,$=h.N6,Z=h.MW,c=h.mt,q=h.Iv,E=h.WF,P=h.dN,a=s.FC.P3,g,M,C=0;function j(t){var ga=new Array(t); -for(var G=0;G>>1,H=j(e.f1*2),_=j(e.f1),J=j(e.f1),S=Date.now(); -for(var G=0;GQ)continue;var u=$[i*2],K=$[i*2+1],F=$[Q*2],b=$[Q*2+1],d=c[i*2],W=c[i*2+1],A=c[Q*2],z=c[Q*2+1],T=c[m*2],R=c[m*2+1],I=c[n*2],r=c[n*2+1],x=[d,W,A,z,T,R]; -if(y[1])x.push(I,r);var X=a(e.a2E[C],x),hH=X[0],hZ=X[1],gj=1/Math.sqrt(hH*hH+hZ*hZ);hH*=gj;hZ*=gj;var hO=F-u,v=b-K; -_[C]=hH*hO+hZ*v;J[C]=-hZ*hO+hH*v;C++}var hl=new Array(L),ht=new Array(L);for(var G=0;G>>1,a=0,S=0,hZ=1e3; -for(var G=0;GM)continue; -var i=e[g*2],Q=e[g*2+1],m=e[M*2],n=e[M*2+1],u=e[C*2],K=e[C*2+1],F=e[y*2],b=e[y*2+1],d=[[i,Q,1,0],[Q,-i,0,1],[m,n,1,0],[n,-m,0,1],[u,K,1,0],[K,-u,0,1]]; -if(U[1])d.push([F,b,1,0],[b,-F,0,1]);var W=s.FC.JR(d),A=c(linear.invert(c(W,d)),W);A.pop();A.pop();L.push(A); -var z=m-i,T=n-Q,R=J[U[1]?1:0];R=s.FC.MR(R,c([[z,T],[T,-z]],A));var I=[g*2,g*2+1,M*2,M*2+1,C*2,C*2+1,y*2,y*2+1],r=U[1]?8:6,x=[]; -for(var X=0;X>>1,E=new Array(q); -if($.length==0){E.fill(0);return E}var P=new Array(q),a=new Array(q);for(var G=0;G=0&&x>=0&&r+x<=1){var X=1-r-x,l=g*X+M*r+C*x,hH=y*X+i*r+Q*x; -s.I.LB(l,hH,q,P,a,H);s.M0.anR(H,E,z*P+T<<2)}}};s.M0.anR=function(h,e,$){var Z=e[$],c=e[$+1],q=e[$+2],E=e[$+3],P=1-h[3]*(1/255); -e[$]=~~(.5+h[0]+Z*P);e[$+1]=~~(.5+h[1]+c*P);e[$+2]=~~(.5+h[2]+q*P);e[$+3]=~~(.5+h[3]+E*P)};s.M0.jY=function(){var h=function($,Z,c,q){var E=q[0],P=q[1],a=q[2],j=$[E+0],L=$[E+1],H=$[P+0],_=$[P+1],J=$[a+0],S=$[a+1],N=H-j,Y=_-L,U=J-j,g=S-L,M=Z-j,C=c-L,y=N*g-U*Y,i=1/(y+1e-9),Q=(M*g-U*C)*i,m=(N*C-M*Y)*i; -if(Q>=0&&m>=0&&Q+m<=1){q[3]=1-Q-m;q[4]=Q;q[5]=m;return 1}return 0},e=function($,Z,c,q){var E=[0,0,0,0,0,0]; -for(var G=0;G=0;H--){var Y=H*e;for(var L=0;L=2){var G=Y+_,m=C[y+_-1]+g(y+_-1,G-1),n=C[y+_-2]+g(y+_-1,G-2)+g(y+_-2,G-1); -if(C[y+_]==m){M[G-e]=1;_-=1}else{M[G-e]=0;M[G-e-1]=2;_-=2}}var G=Y;if(_==0){M[G-e]=1}else{if(C[y+1]==i){M[G+1-e]=1; -M[G-e]=1}else{M[G+1-e]=0;M[G-e]=2}}Y+=P;y+=P}s.$p.agc(H,e,M,q,J,S,!0,c)}if(Z){console.log(Date.now()-c,"Matching"); -c=Date.now()}var u=q;return[UZIP.adler(h,0,h.length),h,e,$,E,j,a,J,S,M,u]};s.$p.bz=function(h,e,$,Z){var c=h.slice(0),q=c.shift(),E=c.shift(),P=c.shift(),a=c.shift(),j=c.shift(),L=c.shift(),H=c.shift(),_=c.shift(),J=c.shift().slice(0),S=c.shift(),N=c.shift(),Y=Date.now(),U=Math.abs(P-e),g=Math.floor(U/j),M=new Uint32Array(j),y=0,i=1e9,m=0,n=0,u=0; -for(var C=0;C=65280){N[G+I]--;Q++;R(T*e+Q,T*P+I)}}}}if(Z){console.log(Date.now()-Y,"Shifting image pixels"); -Y=Date.now()}};s.$p.agc=function(h,e,$,Z,c,q){var E=0,G=h*e;while(EZ*Z||i<0||Q<0||i>=g||Q>=g)continue; -var m=U[Q*g+i];S+=y*m;N+=C*m}J.w0=Math.atan2(N,S)}}function a(L,H,_,J,S){var N=~~(L+.5),Y=~~(H+.5);return $(_,J,N-c,N+c,Y-c,Y+c)}function j(L,H,_,J,S){h=J; -e=S;if(E.length==0){var N=new s.p.nD(16200817),M=8,C=0;function Y(hl){var u=hl[0]-hl[2],K=hl[1]-hl[3]; -return u*u+K*K}function U(){var hl=0,ht=0;while(hl===0)hl=N.get();while(ht===0)ht=N.get();return Math.sqrt(-2*Math.log(hl))*Math.cos(2*Math.PI*ht)}var g=U,y=[]; -while(C!=q){var i=Math.max(-Z,Math.min(Z,g()*M)),Q=Math.max(-Z,Math.min(Z,g()*M)),m=Math.max(-Z,Math.min(Z,g()*M)),n=Math.max(-Z,Math.min(Z,g()*M)),u=i-m,K=Q-n,F=Math.sqrt(u*u+K*K); -if(F<3||F>12)continue;E.push(i,Q,m,n);C++}}var b=20;for(var d=0;d>>3); -W.TJ=X;for(var G=0;G>>3]|=(d3>>1,M=g>>>1,C=Math.round(U/3); -if(C!=U/3)throw"e";var y=1/(U*U),i=1.2*(U/9);for(var m=g+1;m=I||N[G+Q]>=I)continue;if(N[G-T-Q]>=I||N[G-T]>=I||N[G-T+Q]>=I)continue;if(N[G+T-Q]>=I||N[G+T]>=I||N[G+T+Q]>=I)continue; -j.push({x:~~(n*H.fn+.5),y:~~(m*H.fn+.5),alM:n,abn:m,Bf:L,G:I,ac7:Y[G],Zp:i})}}if(E!=null){j.sort(function(hO,d3){return d3.G-hO.G}); -j=j.slice(0,E)}return j;var r=[];for(var G=0;GX.G&&(hH.Bf==X.Bf+1||hH.Bf==X.Bf-1)){var hZ=X.x-hH.x,gj=X.y-hH.y;if(hZ*hZ+gj*gj<5){x=!1; -break}}}if(x)r.push(X)}console.log(j.length,r.length);return r}return{a2r:c}}();s.X1={};s.X1.akU=function(h){var e=h.length,$=s.X1.eR(h,!1),c=0,q=1; -throw"e";var Z=[];for(var G=0;G>>1);if(L.length<10)return null;var H=s.X1.amM(q[G],q[P],L,2);j.push([G,P,L,H])}j.sort(function(n,u){return u[2].length-n[2].length}); -if(Z)console.log("Matches found",Date.now()-c);c=Date.now();var _=[],J=new UnionFind($);for(var G=0; -G>>1][1]}var m=s.I.vy(U[e]); -for(var G=0;G<$;G++)U[G]=s.I.n_(U[G],m);if(Z)console.log("Transforms reordered",Date.now()-c);c=Date.now(); -return U};s.X1.eR=function(h,e,$){var Z=[],c=!1;for(var G=0;GE||d==E&&W>>1;N=Y-1}else{N=Y=Z>>>1}for(var G=0;G>>1;else e[G]=(G&3)==3?S[Z-1]:S[Z-1]-S[0]}}else console.log($)};s.G0={}; -s.G0.aln=function(h,e,$,Z,c){var q=s.G0.bX(h.buffer,e,$).J3,E=Date.now(),P=new Uint32Array(q.length); -for(var G=0;G>2]=g.ind}return{MW:L,J3:a[1]}};s.G0.bX=function(h,e,$){var Z=[],c={},q=e-1,E=$-1,P=0,a=new Uint32Array(h),j=[-e-1,-e,-e+1,-1,1,e-1,e,e+1,e+e,2,-e-e,-2,e+e-1,e+e+1,e+2,-e+2,-e-e+1,-e-e-1,-e-2,e-2,e+e+2,-e-e+2-e-e-2,e+e-2]; -for(var L=1;L>1,y=G+((M&1)==0?1:e),i=J.find(G),Q=J.find(y),m=Math.min(S[i]+U/Math.sqrt(N[i]),S[Q]+U/Math.sqrt(N[Q])); -if(i!=Q&&C<=m){J.link(G,y);Y--;var n=J.find(G);N[n]=N[i]+N[Q];S[n]=C}}var u=[],K={},F=new Uint16Array(c); -for(var G=0;G>2};s.G0.Mk=function(){function h(U,g,M,C,y,i){var Q=[],m=i,n=i,u=i>>>2;for(var K=0; -K>>1;if(K>65535)throw K;var F=[];for(var G=0; -G<1e3+M;G++)F.push([]);var b=[0,1,0,-1,-1,0,1,0],A=Math.min(m,5),z=new Uint32Array(K*6);for(var T=0; -T>>W)}var l=Math.min(M,R*y);if(T+A>=m)l=M;while(c!=0){E(F);var hH=F[Z].pop(),hZ=F[Z].pop(),gj=hZ>>>16,hO=hZ&65535,G=gj*g+hO; -if(n[G]==65535){var d3=hH*6,v=G<<2;n[G]=hH;z[d3]+=U[v];z[d3+1]+=U[v+1];z[d3+2]+=U[v+2];z[d3+3]+=hO;z[d3+4]+=gj; -z[d3+5]++;var hl=gj>>>W;if(gj!=l-1&&n[G+g]==65535)q(F,gj+1<<16|hO,hH,a(U,g,i,hO,gj+1,z,d3)+hl);if(gj!=0&&n[G-g]==65535)q(F,gj-1<<16|hO,hH,a(U,g,i,hO,gj-1,z,d3)+hl); -if(hO!=0&&n[G-1]==65535)q(F,gj<<16|hO-1,hH,a(U,g,i,hO-1,gj,z,d3)+hl);if(hO!=g-1&&n[G+1]==65535)q(F,gj<<16|hO+1,hH,a(U,g,i,hO+1,gj,z,d3)+hl)}}if(l!=gj){var ht=(T+A)*Q; -z.fill(0,ht*6,(ht+Q)*6);for(var gj=(T+A-2)*y;gj=ht){n[G]=65535}}}}return{MW:n,el:K,sQ:z}}s.G0.SX=function(U,g,M,C,y){var i=U.el,Q=g*M,m=U.sQ,n=U.MW,u=J(C,n,i,Q),K=new UnionFind(i),z=0; -for(var F=1;F>>7);y[n]=Q=y[n]|u}}return Q!=3};function a(U,g,M,C,y,i,Q){var m=(y*g+C)*4,n=i[Q+5],u=1/n,K=U[m]*n-i[Q],F=U[m+1]*n-i[Q+1],b=U[m+2]*n-i[Q+2],d=C*n-i[Q+3],W=y*n-i[Q+4],A=Math.sqrt(K*K+F*F+b*b),z=Math.sqrt(d*d+W*W); -return~~((A+M*z)*u+.5)}function j(U,g,M,C){var y=1/U[M+5],i=1/U[C+5],Q=U[M]*y-U[C]*i,m=U[M+1]*y-U[C+1]*i,n=U[M+2]*y-U[C+2]*i,u=U[M+3]*y-U[C+3]*i,K=U[M+4]*y-U[C+4]*i,F=Math.sqrt(Q*Q+m*m+n*n),b=Math.sqrt(u*u+K*K); -return~~(F+g*b+.5)}function L(U,g,M){var C=s.hg(U,new O(0,0,g,M)),y=C.rect.d,i=C.rect.v,Q=P(C.Hl,y,i),m=Q.MW,n=Date.now(),u=new Uint16Array(g*M); -u.fill(65535);for(var K=0;K>>4,b=U[n+1]>>>4,d=U[n+2]>>>4; -i[u*4400+(F<<8|b<<4|d)]++;i[u*4400+4096]++;i[u*4400+4100+(F<<4|b)]++;i[u*4400+4360+F]++;if(m!=0&&(K=C[G-1])!=u&&H(e[u],K)==-1){e[u].push(K,0); -e[K].push(u,0)}if(Q!=0&&(K=C[G-g])!=u&&H(e[u],K)==-1){e[u].push(K,0);e[K].push(u,0)}}for(var G=0;G>>7)}return y}s.G0.a4V=function(U,g,M,C,y,i,Q){var m=g*M,n=Q[0],e=Q[1],u=new UnionFind(C),K=J(y,U,C,m),F=-1,b=!0,d=0; -for(var G=0;GM){M=i; -g=y}}return U[g]}function N(e,U,g,M){var C=e[g],y=e[M];_(C,H(C,M));_(y,H(y,g));for(var G=0;G0)return 1; -else if(m<0)return 0}return 0}function H(Q,S){var N=new h,Y=Q,U=S,m=0,n=1,u;N.color=c[S*q+Q];N.sign=a(Q,S,c,q)==N.color?"+":"-"; -while(1){N.vF.push(Y,U);if(Y>N.xE)N.xE=Y;if(YN.j6)N.j6=U;if(U>1),U+(n-m-1>>1),c,q)==N.color,F=a(Y+(m-n-1>>1),U+(n+m-1>>1),c,q)==N.color; -if(F&&!K){if(P.GR=="right"||P.GR=="black"&&N.sign=="+"||P.GR=="white"&&N.sign=="-"||P.GR=="majority"&&L(Y,U,N.color)||P.GR=="minority"&&!L(Y,U,N.color)){u=m; -m=-n;n=u}else{u=m;m=n;n=-u}}else if(F){u=m;m=-n;n=u}else if(!K){u=m;m=n;n=-u}}return N}var _=0,J=[]; -while(!0){var _=j(_);if(_==-1)break;var S=Math.floor(_/q),N=H(_-S*q,S);for(var G=0;GP.aag)J.push(N)}for(var G=0;G=0;y--){var i=J[y]; -if(C.zNi.xE||C.Gci.j6)continue;if(!gx.aeS(i.vF,C.vF[0]+.5,C.vF[1]+.5))continue; -C.parent=y;break}}return J}function Z(c,q){function E(m,n,u,K,F){this.x=m;this.y=n;this.Q$=u;this.zc=K; -this.B_=F}function P(m,t){return(t+m)%t}function a(m,n,u,K){return m*K-u*n}function j(m,n,u,K){return m*u+n*K}function L(m,n,u){if(m<=u)return m<=n&&n=0&&l<=1)return l;else if(hH>=0&&hH<=1)return hH; -else return-1}function U(Q){var G,m,n;Q.oW=Q.vF[0];Q.a86=Q.vF[1];Q.NC=[];var u=Q.NC;u.push(new E(0,0,0,0,0)); -for(G=0;G=0;G--){if(m[G<<1]!=m[v<<1]&&m[(G<<1)+1]!=m[(v<<1)+1])v=G+1;K[G]=v}for(G=t-1; -G>=0;G--){var hl=P(G+1,t)<<1;F[0]=F[1]=F[2]=F[3]=0;n=(3+3*(m[hl]-m[G<<1])+(m[hl+1]-m[(G<<1)+1]))/2;F[n]++; -b=0;d=0;W=0;A=0;v=K[G];hH=G;while(1){X=0;n=(3+3*Math.sign(m[v*2]-m[hH*2])+Math.sign(m[v*2+1]-m[hH*2+1]))/2; -F[n]++;if(F[0]&&F[1]&&F[2]&&F[3]){u[G]=hH;X=1;break}r=m[v*2]-m[G*2];x=m[v*2+1]-m[G*2+1];if(a(b,d,r,x)<0||a(W,A,r,x)>0){break}if(Math.abs(r)<=1&&Math.abs(x)<=1){}else{z=r+(x>=0&&(x>0||r<0)?1:-1); -T=x+(r<=0&&(r<0||x<0)?1:-1);if(a(b,d,z,T)>=0){b=z;d=T}z=r+(x<=0&&(x<0||r<0)?1:-1);T=x+(r>=0&&(r>0||x<0)?1:-1); -if(a(W,A,z,T)<=0){W=z;A=T}}hH=v;v=K[hH];if(!L(v,G,hH)){break}}if(X==0){R=Math.sign(m[v*2]-m[hH*2]);I=Math.sign(m[v*2+1]-m[hH*2+1]); -r=m[hH*2]-m[G*2];x=m[hH*2+1]-m[G*2+1];hZ=a(b,d,r,x);gj=a(b,d,R,I);hO=a(W,A,r,x);d3=a(W,A,R,I);l=1e7; -if(gj<0){l=Math.floor(hZ/-gj)}if(d3>0){l=Math.min(l,Math.floor(-hO/d3))}u[G]=P(hH+l,t)}}l=u[t-1];Q.M4[t-1]=l; -for(G=t-2;G>=0;G--){if(L(G+1,u[G],l)){l=u[G]}Q.M4[G]=l}for(G=t-1;L(P(G+1,t),l,Q.M4[G]);G--){Q.M4[G]=l}}function M(Q){function m(Q,G,n){var t=Q.NX,r=Q.vF,x=Q.NC,X,l,hH,hZ,gj,K,hO,d3,I,v,hl,ht,ga,eB,bP=0; -if(n>=t){n-=t;bP=1}if(bP==0){X=x[n+1].x-x[G].x;l=x[n+1].y-x[G].y;hZ=x[n+1].zc-x[G].zc;hH=x[n+1].Q$-x[G].Q$; -gj=x[n+1].B_-x[G].B_;K=n+1-G}else{X=x[n+1].x-x[G].x+x[t].x;l=x[n+1].y-x[G].y+x[t].y;hZ=x[n+1].zc-x[G].zc+x[t].zc; -hH=x[n+1].Q$-x[G].Q$+x[t].Q$;gj=x[n+1].B_-x[G].B_+x[t].B_;K=n+1-G+t}hl=(r[G<<1]+r[n<<1])/2-r[0];ht=(r[(G<<1)+1]+r[(n<<1)+1])/2-r[1]; -eB=r[n<<1]-r[G<<1];ga=-(r[(n<<1)+1]-r[(G<<1)+1]);hO=(hZ-2*X*hl)/K+hl*hl;d3=(hH-X*ht-l*hl)/K+hl*ht;I=(gj-2*l*ht)/K+ht*ht; -v=ga*ga*hO+2*ga*eB*d3+eB*eB*I;return Math.sqrt(v)}var G,n,u,K,t=Q.NX,F=new Array(t+1),b=new Array(t+1),d=new Array(t),W=new Array(t+1),A=new Array(t+1),z=new Array(t+1),T,R,I; -for(G=0;G0;n--){z[n]=G; -G=W[G]}z[0]=0;F[0]=0;for(n=1;n<=u;n++){for(G=z[n];G<=A[n];G++){R=-1;for(K=A[n-1];K>=W[G];K--){T=m(Q,K,G)+F[K]; -if(R<0||T0;n--){G=b[G];Q.agE[n]=G}}function C(Q){function m(Q,G,T,d,W,ek){var t=Q.NX,b_=Q.NC,fz=0,I; -while(T>=t){T-=t;fz+=1}while(G>=t){G-=t;fz-=1}while(T<0){T+=t;fz-=1}while(G<0){G+=t;fz+=1}var ca=b_[T+1].x-b_[G].x+fz*b_[t].x,gf=b_[T+1].y-b_[G].y+fz*b_[t].y,bb=b_[T+1].zc-b_[G].zc+fz*b_[t].zc,b2=b_[T+1].Q$-b_[G].Q$+fz*b_[t].Q$,dV=b_[T+1].B_-b_[G].B_+fz*b_[t].B_,R=T+1-G+fz*t; -d[ek]=ca/R;d[ek+1]=gf/R;var ch=(bb-ca*ca/R)/R,hE=(b2-ca*gf/R)/R,dS=(dV-gf*gf/R)/R,e1=(ch+dS+Math.sqrt((ch-dS)*(ch-dS)+4*hE*hE))/2; -ch-=e1;dS-=e1;if(Math.abs(ch)>=Math.abs(dS)){I=Math.sqrt(ch*ch+hE*hE);if(I!=0){W[ek]=-hE/I;W[ek+1]=ch/I}}else{I=Math.sqrt(dS*dS+hE*hE); -if(I!=0){W[ek]=-dS/I;W[ek+1]=hE/I}}if(I==0){W[ek]=W[ek+1]=0}}var n=Q.zC,u=Q.agE,t=Q.NX,K=Q.vF,F=Q.oW,b=Q.a86,d=new Array(n*2),W=new Array(n*2),A=new Array(n),z=new Array(3),G,T,R,I,l,hH,hZ,gj,hO,d3,v; -Q.ay=new e(n);for(G=0;GX[4]){z[0]=-X[1];z[1]=X[0]}else if(X[4]){z[0]=-X[4];z[1]=X[3]}else{z[0]=1; -z[1]=0}var r=z[0]*z[0]+z[1]*z[1],x=1/r;z[2]=-z[1]*ht-z[0]*hl;for(I=0;I<3;I++){X[I*3+0]+=z[I]*z[0]*x; -X[I*3+1]+=z[I]*z[1]*x;X[I*3+2]+=z[I]*z[2]*x}}l=Math.abs(ga-hl);hH=Math.abs(eB-ht);if(l<=.5&&hH<=.5){Q.ay.gQ[G<<1]=ga+F; -Q.ay.gQ[(G<<1)+1]=eB+b;continue}hZ=H(X,hl,ht);hO=hl;d3=ht;if(X[0]!=0){for(v=0;v<2;v++){eB=ht-.5+v;ga=-(X[1]*eB+X[2])/X[0]; -l=Math.abs(ga-hl);gj=H(X,ga,eB);if(l<=.5&&gj1?1-1/F:0;d=d*(1/.75)}else{d=4/3}n.wZ[u]=d; -var hZ=3*u<<1;if(d>=q.aas){n.S4[u]=0;n.Ma[hZ+0]=n.Ma[hZ+1]=0;n.Ma[hZ+2]=x;n.Ma[hZ+3]=X;n.Ma[hZ+4]=l; -n.Ma[hZ+5]=hH}else{if(d<.55){d=.55}else if(d>1){d=1}var gj=.5+.5*d;n.S4[u]=1;n.Ma[hZ]=_(gj,T,x);n.Ma[hZ+1]=_(gj,R,X); -n.Ma[hZ+2]=_(gj,I,x);n.Ma[hZ+3]=_(gj,r,X);n.Ma[hZ+4]=l;n.Ma[hZ+5]=hH}n.alpha[u]=d;n.U6[u]=.5}n.ai4=1}function i(Q){function m(){this.vP=0; -this.lN=0;this.RZ=0;this.tV=0;this.GP=0;this.A2=0;this.Zp=0;this.alpha=0}function n(Q,G,T,dq,f2,hO,d3){var K=Q.ay.aJ,a3=Q.ay.Ma,bm=Q.ay.gQ; -if(G==T)return 1;var h2=G,x=P(G+1,K),ag=P(h2+1,K),b2=bm[G<<1],dV=bm[(G<<1)+1],eU=bm[x<<1],iz=bm[(x<<1)+1],d2=hO[ag]; -if(d2==0)return 1;var gP=S(b2-eU,dV-iz);for(h2=ag;h2!=T;h2=ag){var ag=P(h2+1,K),fa=P(h2+2,K),eI=bm[ag<<1],it=bm[(ag<<1)+1],ic=bm[fa<<1],iK=bm[(fa<<1)+1]; -if(hO[ag]!=d2)return 1;if(Math.sign(a(eU-b2,iz-dV,ic-eI,iK-it))!=d2)return 1;if(j(eU-b2,iz-dV,ic-eI,iK-it)=T){X+=d3[K]}var iy=gO-ek,er=cX-b_,h$=bh-ek,dN=bi-b_,dQ=dM-ek,cL=ik-b_,ge=a(iy,er,h$,dN),ds=a(iy,er,dQ,cL),dH=a(h$,dN,dQ,cL),hs=ge+dH-ds; -if(ds==ge)return 1;var gj=dH/(dH-hs),hZ=ds/(ds-ge),cb=ds*gj/2;if(cb==0)return 1;var fe=X/cb,l=2-Math.sqrt(4-fe/.3); -dq.lN=_(gj*l,ek,gO);dq.RZ=_(gj*l,b_,cX);dq.tV=_(hZ*l,dM,bh);dq.GP=_(hZ*l,ik,bi);dq.alpha=l;dq.A2=gj; -dq.Zp=hZ;gO=dq.lN;cX=dq.RZ;bh=dq.tV;bi=dq.GP;dq.vP=0;for(h2=P(G+1,K);h2!=T;h2=ag){ag=P(h2+1,K);var ej=bm[h2<<1],gd=bm[(h2<<1)+1],eI=bm[ag<<1],it=bm[(ag<<1)+1]; -gj=Y(gO-ek,cX-b_,bh-gO,bi-cX,dM-bh,ik-bi,eI-ej,it-gd);if(gj<-.5)return 1;var cs=N(gj,ek,gO,bh,dM),hc=N(gj,b_,cX,bi,ik),gP=S(eI-ej,it-gd); -if(gP==0)return 1;var c5=a(eI-ej,it-gd,cs-ej,hc-gd)/gP;if(Math.abs(c5)>f2)return 1;if(j(eI-ej,it-gd,cs-ej,hc-gd)<0||j(ej-eI,gd-it,cs-eI,hc-it)<0){return 1}dq.vP+=c5*c5}for(h2=G; -h2!=T;h2=ag){ag=P(h2+1,K);var fA=h2*3+2<<1,iB=ag*3+2<<1,eO=a3[fA],hF=a3[fA+1],i4=a3[iB],dO=a3[iB+1]; -gj=Y(gO-ek,cX-b_,bh-gO,bi-cX,dM-bh,ik-bi,i4-eO,dO-hF);if(gj<-.5)return 1;var cs=N(gj,ek,gO,bh,dM),hc=N(gj,b_,cX,bi,ik),gP=S(i4-eO,dO-hF); -if(gP==0)return 1;var c5=a(i4-eO,dO-hF,cs-eO,hc-hF)/gP,g0=a(i4-eO,dO-hF,bm[ag<<1]-eO,bm[(ag<<1)+1]-hF)/gP; -g0*=.75*Q.ay.alpha[ag];if(g0<0){c5=-c5;g0=-g0}if(c5=0;G--){R=n(Q,G,P(T,K),I,q.a31,hO,d3); -if(R){break}if(W[T]>W[G]+1||W[T]==W[G]+1&&d[T]>d[G]+I.vP){b[T]=G;d[T]=d[G]+I.vP;W[T]=W[G]+1;A[T]=I;I=new m}}}z=W[K]; -hH=new e(z);hZ=new Array(z);gj=new Array(z);T=K;for(G=z-1;G>=0;G--){var dS=P(T,K),e1=G*3+0<<1,eG=dS*3+0<<1; -if(b[T]==T-1){hH.S4[G]=u.S4[dS];hH.Ma[e1]=u.Ma[eG];hH.Ma[e1+1]=u.Ma[eG+1];hH.Ma[e1+2]=u.Ma[eG+2];hH.Ma[e1+3]=u.Ma[eG+3]; -hH.Ma[e1+4]=u.Ma[eG+4];hH.Ma[e1+5]=u.Ma[eG+5];hH.gQ[G<<1]=u.gQ[dS<<1];hH.gQ[(G<<1)+1]=u.gQ[(dS<<1)+1]; -hH.alpha[G]=u.alpha[dS];hH.wZ[G]=u.wZ[dS];hH.U6[G]=u.U6[dS];hZ[G]=gj[G]=1}else{hH.S4[G]="CURVE";hH.Ma[e1]=A[T].lN; -hH.Ma[e1+1]=A[T].RZ;hH.Ma[e1+2]=A[T].tV;hH.Ma[e1+3]=A[T].GP;hH.Ma[e1+4]=u.Ma[eG+4];hH.Ma[e1+5]=u.Ma[eG+5]; -hH.gQ[G<<1]=_(A[T].Zp,u.Ma[eG+4],F[dS<<1]);hH.gQ[(G<<1)+1]=_(A[T].Zp,u.Ma[eG+5],F[(dS<<1)+1]);hH.alpha[G]=A[T].alpha; -hH.wZ[G]=A[T].alpha;hZ[G]=A[T].Zp;gj[G]=A[T].A2}T=b[T]}for(G=0;G"; -for(var G=0;G>>24&255)==0)continue;a+=">0&255,_=j>>8&255,J=j>>16&255,j="rgb("+H+","+_+","+J+")";a+="\" fill=\""+j+"\" fill-rule=\"evenodd\"/>"}a+=""; -return a};gx.aeS=function(h,e,$){var t=h.length>>1,Z,c=h[2*t-3]-$,q=h[2*t-2]-e,E=h[2*t-1]-$,P=E>c,a=0; -for(var G=0;Gc}for(var G=0;G0&&E>0)continue;if(Z<0&&q<0)continue;if(c==E&&Math.min(Z,q)<=0)return!0; -if(c==E)continue;var j=Z+(q-Z)*-c/(E-c);if(j==0)return!0;if(j>0)a++;if(c==0&&P&&E>c)a--;if(c==0&&!P&&Ec}return(a&1)==1};gx.fill=function(h,e,$,Z){var c=e[h],q=[h],E=0;while(Ee.getParameter(e.MAX_TEXTURE_SIZE)){V.Yv=!1;alert("Disabling WebGL")}}; -V.WM=function(h,e){return new Float32Array([(h.x-e.x)/e.d,(h.y-e.y)/e.v,h.d/e.d,h.v/e.v])};V.st=function(){return this.p$}; -V.wo=function(h,e){var $=V.s0;$.bindFramebuffer($.FRAMEBUFFER,V.OQ);$.framebufferTexture2D($.FRAMEBUFFER,$.COLOR_ATTACHMENT0,$.TEXTURE_2D,h.jg,0); -$.viewport(0,0,h.d,h.v);if(e){$.enable($.SCISSOR_TEST);$.scissor(e.x,e.y,e.d,e.v)}else $.disable($.SCISSOR_TEST)}; -V.iz=function(h,e,$){if($)throw"error";var Z=V.s0;Z.disable(Z.SCISSOR_TEST);Z.bindFramebuffer(Z.FRAMEBUFFER,null); -Z.viewport(0,0,h,e);if($){Z.enable(Z.SCISSOR_TEST);Z.scissor($.x,$.y,Math.round($.d),Math.round($.v))}else Z.disable(Z.SCISSOR_TEST)}; -V.clear=function(){var h=V.s0;h.clearColor(0,0,0,0);h.clear(h.COLOR_BUFFER_BIT)};V.ZI=function(h,e){if(e==null)e=0; -var $=(e>>>0&255)==0,Z=(e>>>8&255)==0,c=(e>>>16&255)==0,q=(e>>>24&255)==0,E=(h>>>0&255)*(1/255),P=(h>>>8&255)*(1/255),a=(h>>>16&255)*(1/255),j=(h>>>24&255)*(1/255),L=V.s0; -L.colorMask($,Z,c,q);L.clearColor(E,P,a,j);L.clear(L.COLOR_BUFFER_BIT);L.colorMask(!0,!0,!0,!0)};V.wU=function(h,e,$,Z,c){var q=e.jx(Z); -if(c)q=q.jx(c);if(q.nK())return;var E=V.s0;V.wo(h);E.bindTexture(E.TEXTURE_2D,$.jg);E.copyTexSubImage2D(E.TEXTURE_2D,0,q.x-Z.x,q.y-Z.y,q.x-e.x,q.y-e.y,q.d,q.v)}; -V.p5=function(G,h,e){var $=V.tx[G];if($==null||$.d!=h||$.v!=e){if($)$.delete();$=new V.EI(h,e)}V.tx[G]=$; -return $};V.tx=[];V.PG=function(){this.XM=null;this.oK=null};V.PG.N2=null;V.PG.prototype.gC=function(h){if(this.oK)return; -this.oK={};var e=V.s0,$=this.XM,Z=this.oK;for(var G=0;G>>1); -e.activeTexture(e["TEXTURE"+(G>>>1)]);e.bindTexture(e.TEXTURE_2D,h[G+1])}e.activeTexture(e.TEXTURE0)}; -V.PG.prototype.Py=function(h,e){var $=V.s0,Z=$.createShader($.FRAGMENT_SHADER);$.shaderSource(Z,h);$.compileShader(Z); -if(!$.getShaderParameter(Z,$.COMPILE_STATUS))console.log($.getShaderInfoLog(Z));var c=$.createShader($.VERTEX_SHADER); -$.shaderSource(c,e);$.compileShader(c);if(!$.getShaderParameter(c,$.COMPILE_STATUS))console.log($.getShaderInfoLog(c)); -var q=$.createProgram();$.attachShader(q,c);$.attachShader(q,Z);$.linkProgram(q);if(!$.getProgramParameter(q,$.LINK_STATUS))console.log("Could not initialise shaders"); -this.XM=q};V.PG.prototype.xl=function(){if(V.PG.N2!=this){V.s0.useProgram(this.XM);V.PG.N2=this}};V.ow=function(h,e){V.EX++; -V.U2+=h*e;if(V._R)console.log("GL.Channels instances: "+V.EX+", memory: "+V.U2);var $=V.s0;this.d=h; -this.v=e;this.jg=$.createTexture();this.Jw=null;this.tq(this.jg,h,e)};V.ow.prototype.tq=function(h,e,$){var Z=V.s0; -Z.bindTexture(Z.TEXTURE_2D,h);Z.texParameteri(Z.TEXTURE_2D,Z.TEXTURE_MIN_FILTER,Z.NEAREST);Z.texParameteri(Z.TEXTURE_2D,Z.TEXTURE_MAG_FILTER,Z.NEAREST); -Z.texParameteri(Z.TEXTURE_2D,Z.TEXTURE_WRAP_S,Z.CLAMP_TO_EDGE);Z.texParameteri(Z.TEXTURE_2D,Z.TEXTURE_WRAP_T,Z.CLAMP_TO_EDGE); -Z.texImage2D(Z.TEXTURE_2D,0,Z.ALPHA,e,$,0,Z.ALPHA,Z.UNSIGNED_BYTE,null)};V.ow.prototype.set=function(h){var e=V.s0; -e.bindTexture(e.TEXTURE_2D,this.jg);e.pixelStorei(e.UNPACK_ALIGNMENT,1);e.texImage2D(e.TEXTURE_2D,0,e.ALPHA,this.d,this.v,0,e.ALPHA,e.UNSIGNED_BYTE,h); -e.pixelStorei(e.UNPACK_ALIGNMENT,4)};V.ow.prototype.delete=function(){var h=V.s0;if(this.jg){h.deleteTexture(this.jg); -V.EX--;V.U2-=this.d*this.v}if(V._R)if(V._R)console.log("GL.Channels instances: "+V.EX+", memory: "+V.U2*4)}; -V.EX=0;V.EI=function(h,e,$){if($==null)$=!1;V.EX++;V.U2+=h*e*4;if(V._R)console.log("GL.Channels instances: "+V.EX+", memory: "+V.U2); -var Z=V.s0;this.a6m=$;this.d=h;this.v=e;this.jg=Z.createTexture();this.Jw=null;this.tq(this.jg,h,e)}; -V.EI.prototype.set=function(h,e){var $=V.s0;$.disable($.SCISSOR_TEST);$.bindTexture($.TEXTURE_2D,this.jg); -if(h==null||h instanceof Uint8Array){var Z=this.d*this.v;if(e==null||e.X()*10>Z)$.texImage2D($.TEXTURE_2D,0,$.RGBA,this.d,this.v,0,$.RGBA,$.UNSIGNED_BYTE,h); -else{var c=s.m(e.X()*4);s.hX(h,new O(0,0,this.d,this.v),c,e);$.texSubImage2D($.TEXTURE_2D,0,e.x,e.y,e.d,e.v,$.RGBA,$.UNSIGNED_BYTE,c)}}else $.texImage2D($.TEXTURE_2D,0,$.RGBA,$.RGBA,$.UNSIGNED_BYTE,h)}; -V.EI.prototype.get=function(h){var e=V.s0;V.wo(this);e.readPixels(0,0,this.d,this.v,e.RGBA,e.UNSIGNED_BYTE,h)}; -V.EI.prototype.D1=function(h){if(h.nK())return;var e=V.s0;if(this.Jw==null){this.Jw=e.createTexture(); -this.tq(this.Jw,this.d,this.v);V.EX++;V.U2+=this.d*this.v*4}e.bindFramebuffer(e.FRAMEBUFFER,V.OQ);e.bindTexture(e.TEXTURE_2D,this.Jw); -if(h){var $=Math.max(h.x,0),Z=Math.max(h.y,0);e.copyTexSubImage2D(e.TEXTURE_2D,0,$,Z,$,Z,h.d,h.v)}else e.copyTexImage2D(e.TEXTURE_2D,0,e.RGBA,0,0,this.d,this.v,0)}; -V.EI.prototype.tq=function(h,e,$){var Z=V.s0;Z.bindTexture(Z.TEXTURE_2D,h);Z.texParameteri(Z.TEXTURE_2D,Z.TEXTURE_MIN_FILTER,this.a6m?Z.LINEAR:Z.NEAREST); -Z.texParameteri(Z.TEXTURE_2D,Z.TEXTURE_MAG_FILTER,Z.NEAREST);Z.texParameteri(Z.TEXTURE_2D,Z.TEXTURE_WRAP_S,Z.CLAMP_TO_EDGE); -Z.texParameteri(Z.TEXTURE_2D,Z.TEXTURE_WRAP_T,Z.CLAMP_TO_EDGE);Z.texImage2D(Z.TEXTURE_2D,0,Z.RGBA,e,$,0,Z.RGBA,Z.UNSIGNED_BYTE,null)}; -V.EI.prototype.delete=function(){var h=V.s0;if(this.jg){h.deleteTexture(this.jg);V.EX--;V.U2-=this.d*this.v*4}if(this.Jw){h.deleteTexture(this.Jw); -V.EX--;V.U2-=this.d*this.v*4}if(V._R)if(V._R)console.log("GL.Channels instances: "+V.EX+", memory: "+V.U2)}; -V.EI.prototype.clone=function(){var h=V.s0,e=new V.EI(this.d,this.v);V.wo(this);h.bindTexture(h.TEXTURE_2D,e.jg); -h.copyTexImage2D(h.TEXTURE_2D,0,h.RGBA,0,0,this.d,this.v,0);return e};V.yD={ahP:" vec3 ocbrn(vec3 a, vec3 b, float f) { vec3 d = (a*vec3(f)+ONE3-vec3(f)); return mix(ONE3 - min(ONE3,(ONE3-b)/d), ZERO3, vec3(vec3(greaterThan(vec3(0.001),d))) ); } ",alr:" vec3 ocddg(vec3 a, vec3 b, float f) { return mix( min(ONE3, b/(ONE3 - a*f)) , ONE3 , vec3(equal(a*f,ONE3 )) ); } ",bK:"const vec3 ZERO3 = vec3(0.0,0.0,0.0) ;\t\t\tconst vec3 QUAR3 = vec3(0.25,0.25,0.25) ;\t\t\tconst vec3 HALF3 = vec3(0.5,0.5,0.5) ;\t\t\tconst vec3 ONE3 = vec3(1.0,1.0,1.0) ;",$K:" float hueDiff(float shue, float hue) { \t\t\t\tfloat df = hue-shue, adf=abs(df), df0 = df-1.0, df1 = df+1.0; \t\t\t\tif(abs(df0) < adf) df = df0; \t\t\t\telse if(abs(df1) < adf) df = df1; \t\t\t\treturn df; \t\t\t}",Ve:" float hueCF(float hueS, float hue0) { \t\t\t\tfloat df = hueDiff(hue0, hueS)*6.0; \t\t\t\treturn max(0.0, min(1.0, (df<0.0) ? 1.0+df : 1.0-df )); } ",vD:"float sat(vec3 c) { return max(c.x,max(c.y,c.z)) - min(c.x,min(c.y,c.z)); }",GE:"float lum(vec3 c) { return dot(c, vec3(0.3,0.59,0.11)); } ",ob:"vec3 D (vec3 x) { return mix( sqrt(x), ((16.0*x-12.0)*x+4.0)*x , vec3(lessThanEqual(x,QUAR3)) ); }",a4_:"float midSat (vec3 v, float s) { return ((v.y-v.z)*s)/(v.x-v.z); }",RX:"vec3 setSat (vec3 c, float s) \t\t\t{\t\t\t\tvec3 o;\t\t\t\tif(c.r==c.g && c.g==c.b) o = ZERO3;\t\t\t\telse if(c.r>c.g) {\t\t\t\t\tif(c.r>c.b) {\t\t\t\t\t\tif(c.g>c.b)\to = vec3(s, midSat(c.rgb,s), 0.0); \t\t\t\t\t\telse\to = vec3(s, 0.0, midSat(c.rbg,s)); \t\t\t\t\t}\t\t\t\t\telse\t\to = vec3(midSat(c.brg,s), 0.0, s); \t\t\t\t} else {\t\t\t\t\tif(c.rc.b)\to = vec3(0.0, s, midSat(c.gbr,s)); \t\t\t\t\t\telse\t o = vec3(0.0, midSat(c.bgr,s), s); \t\t\t\t\t}\t\t\t\t\telse\t\t o = vec3(midSat(c.grb,s), s, 0.0);\t\t\t\t}\t\t\t\treturn o;\t\t\t}",amY:"vec3 clipCol(vec3 c) \t\t\t{ \t\t\t\tvec3 o = c; float l = lum(c); \t\t\t\tfloat n = min(c.r,min(c.g,c.b)); \t\t\t\tfloat x = max(c.r,max(c.g,c.b)); \t\t\t\tif(n<0.0) o = l + (o-l)*(l/(l-n));\t\t\t\tif(x>1.0) o = l + (o-l)*(1.0-l)/(x-l);\t\t\t\treturn o;\t\t\t}",up:"vec3 setLum (vec3 c, float l) { return clipCol(c+l-lum(c)); } ",xA:"bool in01(vec2 c) { return (0.0<=c.x) && (c.x<=1.0) && (0.0<=c.y) && (c.y<=1.0); }",hash:"float hash(vec2 v) { return fract(sin(dot(v ,vec2(12.9898,78.233))) * 43758.5453); }",fe:"vec3 rgbToHsl (vec3 rgb) {\t\t\t\tfloat r = rgb.r, g = rgb.g, b = rgb.b; \t\t\t\tfloat mx = max(r, max(g, b)), mn = min(r, min(g, b)); \t\t\t\tfloat h, s, l = (mx + mn) * 0.5;\t\t\t\t\t\t\t\tif(mx == mn) h = s = 0.0; \t\t\t\telse{ \t\t\t\t\tfloat d = mx - mn; \t\t\t\t\ts = l > 0.5 ? d / (2.0 - mx - mn) : d / (mx + mn); \t\t\t\t\t\t\t\t\t\tif(mx==r) h = (g - b) / d + (g < b ? 6.0 : 0.0); \t\t\t\t\telse if(mx==g) h = (b - r) / d + 2.0; \t\t\t\t\telse if(mx==b) h = (r - g) / d + 4.0; \t\t\t\t\t\t\t\t\t\th /= 6.0; \t\t\t\t} \t\t\t\treturn vec3(h,s,l); }",lR:"vec3 hslToRgb (float h, float s, float l){\t\t\t\tfloat r, g, b;\t\t\t\t\t\t\t\tif(s == 0.0) r = g = b = l; \t\t\t\telse{ \t\t\t\t\tfloat q = l < 0.5 ? l * (1.0 + s) : l + s - l * s; \t\t\t\t\tfloat p = 2.0 * l - q; \t\t\t\t\tr = hue2rgb(p, q, h + 1.0/3.0); \t\t\t\t\tg = hue2rgb(p, q, h); \t\t\t\t\tb = hue2rgb(p, q, h - 1.0/3.0); \t\t\t\t} \t\t\t\treturn vec3(r,g,b); } ",EA:"float hue2rgb(float p, float q, float t){ \t\t\t\tif(t < 0.0) t += 1.0;\t\t\t\tif(t > 1.0) t -= 1.0;\t\t\t\tif(t < 1.0/6.0) return p + (q - p) * 6.0 * t; \t\t\t\tif(t < 1.0/2.0) return q; \t\t\t\tif(t < 2.0/3.0) return p + (q - p) * (2.0/3.0 - t) * 6.0; \t\t\t\treturn p;\t}",TC:"vec3 rgbToHsv(vec3 rgb){\t\t\t\t\tfloat r = rgb.r, g = rgb.g, b = rgb.b; \t\t\t\tfloat mx = max(r, max(g, b)), mn = min(r, min(g, b)); \t\t\t\tfloat h, s, v = mx; \t\t\t\t\t\t\t\tfloat d = mx - mn; \t\t\t\ts = mx == 0.0 ? 0.0 : d / mx; \t\t\t\t\t\t\t\tif(mx == mn) h = 0.0; \t\t\t\telse if(mx==r) h = (g - b) / d + (g < b ? 6.0 : 0.0); \t\t\t\telse if(mx==g) h = (b - r) / d + 2.0; \t\t\t\telse if(mx==b) h = (r - g) / d + 4.0; \t\t\t\t\t\t\t\th /= 6.0; \t\t\t\treturn vec3(h,s,v); }",g7:"vec3 hsvToRgb(float h, float s, float v) { \t\t\t\tfloat r, g, b, f, p, q, t, i; \t\t\t\ti = floor(h * 6.0); \t\t\t\tf = h * 6.0 - i; \t\t\t\tp = v * (1.0 - s); \t\t\t\tq = v * (1.0 - f * s); \t\t\t\tt = v * (1.0 - (1.0 - f) * s); \t\t\t\t\t\t\t\tif (i==0.0) { r = v, g = t, b = p; }\t\t\t\telse if(i==1.0) { r = q, g = v, b = p; }\t\t\t\telse if(i==2.0) { r = p, g = v, b = t; }\t\t\t\telse if(i==3.0) { r = p, g = q, b = v; }\t\t\t\telse if(i==4.0) { r = t, g = p, b = v; }\t\t\t\telse if(i==5.0) { r = v, g = p, b = q; }\t\t\t\t\t\t\t\treturn vec3(r,g,b); }",Z1:"\t\tfloat srgbUngamma(float x) {\t\t\treturn (x<0.04045) ? (x / 12.92) : pow( ( x + 0.055 ) / 1.055, 2.4);\t\t}\t\tfloat xyzScale(float x) {\t\t\treturn (x>0.008856) ? pow(x,1.0/3.0) : (903.3*x+16.0)*(1.0/116.0); \t\t}\t\tvec3 rgbToLab(vec3 rgb) {\t\t\tbool ok = true;\t\t\trgb.r = srgbUngamma(rgb.r); \t\t\trgb.g = srgbUngamma(rgb.g); \t\t\trgb.b = srgbUngamma(rgb.b); \t\t\tok = ok && 0.0318<=rgb.r && rgb.r<=0.0319; \t\t\tok = ok && 0.127 <=rgb.g && rgb.g<=0.128 ; \t\t\tok = ok && 0.3047<=rgb.b && rgb.b<=0.305; \t\t\t\t\t\tmat3 srgb2xyz = mat3(0.4360747164307918, 0.222504478679176, 0.013932173981751634, 0.3850649153329662, 0.7168786002139355, 0.09710452396580642, 0.14308038098632878, 0.06061692340677909, 0.7141732835334675); \t\t\t\t\t\tvec3 xyz = srgb2xyz*rgb; \t\t\tok = ok && 0.106<=xyz[0] && xyz[0]<=0.107; \t\t\t\t\t\txyz=xyz*vec3(100.0/96.72, 100.0/100.0, 100.0/81.427); \t\t\txyz.x = xyzScale(xyz.x); \t\t\txyz.y = xyzScale(xyz.y); \t\t\txyz.z = xyzScale(xyz.z); \t\t\t\t\t\treturn vec3(116.0*xyz.y-16.0, 500.0*(xyz.x-xyz.y), 200.0*(xyz.y-xyz.z)); \t\t} \t\tfloat labSimilar(vec3 lab, vec3 mnm, vec3 mxm, float lim) {\t\t\tfloat L=lab.x, a=lab.y, b=lab.z; \t\t\tfloat dl = ((L1.0?1.0:mi);\t\t}"}; -V.As={az:{},Lb:"\t\t\tattribute vec2 verPos;\t\t\tvarying vec2 sCoord;\t\t\tvoid main(void) {\t\t\t\tsCoord = verPos;\t\t\t\tgl_Position = vec4(vec2(-1.0,-1.0) + 2.0*verPos, 0.0, 1.0);\t\t\t}"}; -V.As.BO=function(h,e){var $=es.GG,Z=[$.D5,$.iw,$.nb,$.d3,$.Hi,$.o4,$.Zd,$.LL].indexOf(h.type),c=V.As.az[h.type]; -if(c==null)c=V.As.az[h.type]=new V.az[Z];c.xl();c.m_(e,h);V.s0.drawArrays(V.s0.TRIANGLES,0,6)};V.az=[]; -V.az[0]=function(){V.PG.call(this);this.lZ={};var h="\t\t\tprecision mediump float;\t\t\t"+V.yD.GE+"\t\t\t"+V.yD.bK+"\t\t\tuniform sampler2D source;\t\t\tuniform sampler2D map;\t\t\tuniform float toGray;\t\t\tuniform float presLum;\t\t\t\t\t\tvarying vec2 sCoord;\t\t\t\t\t\tvoid main(void) {\t\t\t\tvec4 src = texture2D(source, sCoord); \t\t\t\tfloat olum = lum(src.rgb); \t\t\t\tsrc.rgb = toGray * vec3(olum) + (1.0-toGray)*src.rgb; \t\t\t\tfloat r = texture2D(map, vec2(src.r, 0)).r;\t\t\t\tfloat g = texture2D(map, vec2(src.g, 0)).g;\t\t\t\tfloat b = texture2D(map, vec2(src.b, 0)).b;\t\t\t\tvec3 col = vec3(r,g,b); \t\t\t\tif(presLum==1.0) { \t\t\t\t\tfloat nlum = lum(col); \t\t\t\t\tif(olum>nlum) col += (olum-nlum)/(1.0-nlum)*(ONE3-col); \t\t\t\t\telse if(nlum==0.0) col = ZERO3; \t\t\t\t\telse col = (olum/nlum) * col; \t\t\t\t}\t\t\t\tgl_FragColor = vec4(col,src.w);\t\t\t\t\t\t\t}"; -this.Py(h,V.As.Lb)};V.az[0].prototype=new V.PG;V.az[0].prototype.m_=function(h,e){var $={h:e.k$,l:e.q0,O:e.Uz,R:s.m(e.k$.length)},Z=$.h.length; -if(this.lZ["m"+Z]==null){this.lZ["m"+Z]={ae9:new V.EI(Z,1),Hl:s.m(Z*4)}}var c=this.lZ["m"+Z];s.cl($,c.Hl,0); -var q=c.ae9;q.set(c.Hl);this.gC(["source","map","toGray","presLum"]);var E=V.s0,P=this.oK;E.uniform1f(P.toGray,e.wY?1:0); -E.uniform1f(P.presLum,e.Su?1:0);this.J0([P.source,h,P.map,q.jg])};V.az[1]=function(){V.PG.call(this); -this.a0_=new V.EI(256,1);this.adS=s.m(256*4);var h="\t\t\t\tprecision mediump float;\t\t\t\t"+V.yD.EA+"\t\t\t\t"+V.yD.fe+"\t\t\t\t"+V.yD.lR+"\t\t\t\t\t\t\t\tuniform sampler2D source;\t\t\t\tuniform sampler2D map;\t\t\t\tuniform float cfa; \t\t\t\tuniform float cfb; \t\t\t\tuniform int colorize; \t\t\t\t\t\t\t\tvarying vec2 sCoord;\t\t\t\t\t\t\t\tvoid main(void) { \t\t\t\t\tvec4 src = texture2D(source, sCoord);\t\t\t\t\tvec3 rgb = src.rgb;\t\t\t\t\tfloat mn=min(rgb.r,min(rgb.g,rgb.b)), mx = max(rgb.r,max(rgb.g,rgb.b));\t\t\t\t\t\t\t\t\t\tvec3 hsl = rgbToHsl(rgb); \t\t\t\t\tfloat h = hsl.r, s = hsl.g, l = hsl.b; \t\t\t\t\t\t\t\t\t\tvec4 mapv = texture2D(map, vec2(h, 0));\t\t\t\t\tfloat nh = mapv.r; \t\t\t\t\tfloat sc = mapv.g*2.0-1.0; \t\t\t\t\tfloat lc = mapv.b*2.0-1.0; \t\t\t\t\t\t\t\t\t\tfloat cf = -lc, tv=mn;\t\t\t\t\tif(0.00.0) sc = pow(tan((3.14159265359/2.0)*sc),1.3);\t\t\t\t\t\tns = min(s * (1.0 + sc), 1.0); \t\t\t\t\t} \t\t\t\t\t\t\t\t\t\tgl_FragColor = vec4(hslToRgb(nh,ns,l),src.w); \t\t\t\t\t\t\t\t\t}"; -this.Py(h,V.As.Lb)};V.az[1].prototype=new V.PG;V.az[1].prototype.m_=function(h,e){s.cl({h:e.ac1,l:e.A$,O:e.aaI,R:s.m(256)},this.adS); -this.a0_.set(this.adS);this.gC(["source","map","cfa","cfb","colorize"]);var $=V.s0,Z=this.oK;$.uniform1f(Z.cfa,e.agz); -$.uniform1f(Z.cfb,e.b4);$.uniform1i(Z.colorize,e.a7F);this.J0([Z.source,h,Z.map,this.a0_.jg])};V.az[2]=function(){V.PG.call(this); -var h="\t\t\tprecision mediump float;\t\t\t"+V.yD.EA+"\t\t\t"+V.yD.TC+"\t\t\t"+V.yD.g7+"\t\t\t"+V.yD.fe+"\t\t\t"+V.yD.lR+"\t\t\t\t\t\tuniform sampler2D source;\t\t\tuniform float vib; \t\t\tuniform float sat; \t\t\tconst float PI = 3.141592653; \t\t\t\t\t\tvarying vec2 sCoord;\t\t\t\t\t\tvoid main(void) { \t\t\t\tvec4 src = texture2D(source, sCoord); \t\t\t\tvec3 hsl = rgbToHsv(src.rgb); \t\t\t\tfloat h=hsl.r, s=hsl.g, l=hsl.b; \t\t\t\t\t\t\t\tfloat sk0 = 0.0, sk1 = 45.0/360.0; \t\t\t\tfloat skin = (h2OI;5g7:@5nVPLIGeVMX`|njge-'&-$V&)/$BbHB4D%GNx`KSI=_f_menp%E+%vwKB4&'XQY``edhootpjxp&%*'vhxY{#>5HINMDXX]YnVW",WR:0,S0:1,H8:2,dX:3}; -V.filter.BO=function(h,e){var $=V.filter,Z=[$.WR,$.S0,$.H8,$.dX].indexOf(h.type),c=V.filter.ew[h.type]; -if(c==null)c=V.filter.ew[h.type]=new V.ew[Z];c.xl();c.m_(e,h);V.s0.drawArrays(V.s0.TRIANGLES,0,6)};V.ew=[0,0,0,0,0,0,0]; -V.ew[3]=function(){V.PG.call(this);var h="1%* !*709;O@;=ETOUgQZ`Uk5rnllx~|2)y)/.*:\\qPGFOOCH!^ZXXdjh}wij<-y+~T2.,,8>{wuu\"(&;5'(ZJ<@=JtRNLLX^\\qbYo2!tvv'@N,(&&286K<3IkZNPP`z(fThremi%~pqC4+]-06+d/?BBXEM2TTdugYZ.|v,\" qrF5)X,#=OAWACCSlkYoY[[k&!6pfx||{0!w2D-$>P<\\J`HhWioTKewc$s(o0|14JNDEJX>:,-_OE7G@qi[MN!pdo&|vhi<, ,>42$%WG=/H*8FySLTp\\g{&))4:;7CC;$0CSRPXZ_cg]Wd]quw~$}'-/50=wm $$#7-~8y(6L\\RRiYLP^}gZfo.z/Dr{\"v-;1#)d/3AH?cORDJ$UUygY_~>45:6,*{|O?6;6f5>D9O]T[$yz ~ubjb?66;Iw$*B$-3(>LIob).\"|^$(>C72s(+,\"rzrOFFKK+3+e77[PuiRDJehh0gY_'!gvx\"y\",~W&28P2;A6LZV}p7<0+k26LQE@!6KCBGC9'06+AO6NuTiKSK&WW{o6*rdj&)(P(y GA(79B:BL?wIImiU]Bddt&wij>5s,B3H2$*T[\\a]`c]DSU^V^h[4rde9(nz$Q, 6599/^sZIHQQEJsja4cfla+ykl>7u.D5GK.?3Vk:CI>TbIM)PTh obft4my#A.BW&/5*@N3K?wmnvpMYb!h$,-7>2nz$B~EMNTWS0>CC /#KO,8A_G?=]kcM\\Pyi[\\/'9384Iw!'{2@49>iW6:t@DRYPj-p{~^bpwn6os;D|!/6-PJgP[:>y|rsx+~ %2#ae1ko}%{?H $KNc2;A6LZAX!ww||chm7ry0En&L(-(H]'>S04}M?H'VV\\b0i\\hq=#"; -this.Py(D.YO(h),D.YO(V.filter.Lb))};V.ew[3].prototype=new V.PG;V.ew[3].prototype.m_=function(h,e){this.gC("source iwh tdep rrad spec nois poly0 poly1".split(" ")); -var $=V.s0,Z=this.oK;$.uniform2fv(Z.iwh,e.KO);$.uniform1f(Z.tdep,e.a7A);$.uniform1f(Z.rrad,e.a9q);$.uniform2fv(Z.spec,e.a8d); -$.uniform3fv(Z.nois,e.akD);$.uniformMatrix4fv(Z.poly0,!1,e.ab6);$.uniformMatrix4fv(Z.poly1,!1,e.a8W); -this.J0([Z.source,h]);var c=$.LINEAR;$.activeTexture($.TEXTURE0);$.texParameteri($.TEXTURE_2D,$.TEXTURE_MIN_FILTER,c); -$.texParameteri($.TEXTURE_2D,$.TEXTURE_MAG_FILTER,c);$.activeTexture($.TEXTURE0)};V.ew[0]=function(){V.PG.call(this); -var h="1%* !*709;O@;=ETOUgQZ`Uk5|uqoo{\" 5,|,21-=_tSJIRRFK$kd`^^jpn$}opB3 1%ZB;755AGEZTFGyiYT.unjhhtzx.w!'{2@7/3;5mUO=Q[NVRmgYZ,|sFux~sM5~(.#9G23E'?;AOZm_QR$th$}|$mv|q(62M?_E=1GFJJ@o%kZYbbV[%{o-{mn@9AHHMLCVW\\X\\?PDgo\\#jT]cXn|x5&F,$w.-11'VkRA@II=BkbVsbTU' z//43*=>C?C&7+NVCiQ;DJ?Uc`zl-rj^tswwm=R9('00$)RI=ZI;^DWXd\\S;Sn_ epe!~n)$9!zlm@0\"6V<.286-;;O=bTFGyqyTk(#`x31(8r*DA~7ROF.E_\\:Rlgj g]Seiih|drz1xs>$AV>?D>:75SD;FNj\\XUSztszdmsh~-({6V5g7:@5\\`QEzbc"; -this.Py(D.YO(h),D.YO(V.filter.Lb))};V.ew[0].prototype=new V.PG;V.ew[0].prototype.m_=function(h,e){this.gC(["source","iwh","ld","shine"]); -var $=V.s0,Z=this.oK;$.uniform2fv(Z.iwh,e.KO);$.uniform3fv(Z.ld,e.af5);$.uniform1f(Z.shine,e.ak9);this.J0([Z.source,h,Z.tang,e.R9])}; -V.ew[1]=function(){V.PG.call(this);var h="1%* !*709;O@;=ETOUgQZ`Uk5|uqoo{\" 5,|,21-=_tSJIRRFK$kd`^^jpn$}opB3 1%ZB;755AGEZDMSH^lYfY4{tpnnz!~4}'-\"8F,?9FJEAya[I]gZb^ysef8) R\"%+ YA+4:/ES?;PHjLU[Pfths*!jsyn%3'3E?>E/8>3IWM?X:HVl-ribj'r}2PpV@IORXp\\w-tn`a3$u|]0P6*I.3`H2;A6LZQqt$]V^z'**/+@(\"stF7}M@`F-LlRLXf^DWQ^b]Yv$|hdyq4r\")@,L:MQ>^a_:IPgSsbtxe&)$9!vl~##\"6,0,7OP\\\\acjhmi~fglfb_]{lcnv3%!}{C=& qrF5{++AaG?3IHLLBq'm\\[ddX]'}tGvy t?D>:75SD;FNj\\XUSztszdmsh~-x+S-&'0'S?89B9u]GPVKaofmx9~338F.(yzN=494IiOG;QPTTJy/udcll`e/&|O~\"(|DYA;-._P:GYy_tsxuvfZpossi9N5%t%!H?6h8;A6]eSWmZLM~w#$.(/0:14I1+|}O@(FfL6CpXBNTlQYbp]4*8 lB;G/{@CD>=D>01bSGYy_V)X[aV0wams,mv|q(6,YOPUcKAmfgjmns\"i_z}~xw~xjk=.~x7W=RQVSTD8NMQQGv,rbRb^&|p,4\"&<)z{MFQR\\V]^h_bw_LLpP^f|e_*e-C:;@<65<-'bU93lTUZB`!fWQ+rfx'<\"rl5w)|R:$-3(>LGRrXSDKLP_uc|2ypup&4I/*?-!76::0_t[JIRRFKtk_z0wnu,A~E-yy>,Z\\+=QK1D:9Fx`afN*|Yf4{|\"ltjT$u~]--39IiOFKFefrrwyah|2yz"; -this.Py(D.YO(h),D.YO(V.filter.Lb))};V.ew[2].prototype=new V.PG;V.ew[2].prototype.m_=function(h,e){this.gC(["source","tang","iwh","sigma","expo"]); -var $=V.s0,Z=this.oK;$.uniform2fv(Z.iwh,e.KO);$.uniform1f(Z.sigma,e.ajy);$.uniform1f(Z.expo,e.a5v);this.J0([Z.source,h,Z.tang,e.R9]); -var c=$.LINEAR;$.activeTexture($.TEXTURE0);$.texParameteri($.TEXTURE_2D,$.TEXTURE_MIN_FILTER,c);$.texParameteri($.TEXTURE_2D,$.TEXTURE_MAG_FILTER,c); -$.activeTexture($.TEXTURE0)};V.p={};V.p.Mi={};V.p.PS=null;V.p.Yq=null;V.p.pb=null;V.p.xr=function(h,e,$,Z,c,q,E,P){if(P==null)P=hn.Wn(); -if("idiv,lbrn,div ,lddg,vLit,lLit,hMix,diff".split(",").indexOf(h)==-1){E=E*P.fill;P.fill=1;P.style=!1}var a=h+(P.Zo?"1":""); -if(V.p.Mi[a]==null)V.p.Mi[a]=new V.p.Qx(h,P.Zo!=null);var j=V.p.Mi[a],L=$.jx(c).jx(q);L.offset(-c.x,-c.y); -if(L.nK())return;var H=V.s0;V.wo(Z,L);Z.D1(L);j.xl();j.m_(e.jg,Z.Jw,V.WM($,c),E,P.fill,P.style?1:0,P.Eq?1:0,P.Zo?new Float32Array(P.Zo):null); -H.drawArrays(H.TRIANGLES,0,6)};V.p.Il=function(h,e,$,Z,c,q,E,P,a,j,L){if(V.p.PS==null)V.p.PS=new V.p.cw(!0,!0); -if(V.p.Yq==null)V.p.Yq=new V.p.cw(!0,!1);if(V.p.pb==null)V.p.pb=new V.p.cw(!1,!0);var H=j?1:0,_=h?c?V.p.PS:V.p.Yq:V.p.pb,J=new Float32Array(L?[L[0],L[1],L[2],1]:[1,1,1,1]),S=e?e.jx(Z).jx(P):Z.jx(P); -if(S.nK())return;S.offset(-Z.x,-Z.y);var N=V.s0;V.wo($,S);$.D1(S);_.xl();if(h==null)_.m_(null,$.Jw,c.jg,V.WM(Z,Z),V.WM(q,Z),E/255,a,H,J); -else if(c)_.m_(h.jg,$.Jw,c.jg,V.WM(e,Z),V.WM(q,Z),E/255,a,H,J);else _.m_(h.jg,$.Jw,null,V.WM(e,Z),null,E/255,a,H,J); -N.drawArrays(N.TRIANGLES,0,6)};V.p.aj3=function(h,e,$){if(V.p.ajL==null)V.p.ajL=new V.p.r9;var Z=V.p.ajL,c=new O(0,0,h.d,h.v),q=V.s0; -V.wo(e);e.D1(c);Z.xl();Z.m_(c,h.jg,e.Jw,$.jg);q.drawArrays(q.TRIANGLES,0,6)};V.p.nC={norm:"return a;",diss:"return a;",dark:"return min(a,b);","mul ":"return a*b;",idiv:" vec3 d = (a*vec3(f)+ONE3-vec3(f)); return mix(mix(ONE3-((ONE3-b)/max(d,vec3(1e-6))), ZERO3, vec3(greaterThanEqual(ONE3-b,d)) ), ONE3 , vec3(equal(b,ONE3) )); ",lbrn:"return max(ZERO3, a*f+b-f);",dkCl:"return ( lum(a)lum(b) ? a : b );",over:"return mix( a+(2.0*b -1.0)-a*(2.0*b-1.0) , 2.0*b*a , step(-HALF3,-b) );",sLit:"return mix( b+(2.0*a -1.0)*(D(b)-b) , b-(1.0-2.0*a)*b*(1.0-b) , step(-HALF3,-a) );",hLit:"return mix( b+(2.0*a -1.0)-b*(2.0*a-1.0) , 2.0*a*b , step(-HALF3,-a) );",vLit:" return mix( ocddg(2.0*a-1.0,b,f) , ocbrn(2.0*a,b,f) , vec3(greaterThanEqual(HALF3,a))); ",lLit:"return mix( min(ONE3, (2.0*a-1.0)*f+b) , max(ZERO3, 2.0*a*f+b-f) , step(-HALF3,-a));",pLit:"return mix( max(2.0*a-1.0,b) , min(2.0*a, b) , step(-HALF3,-a) );",hMix:"if(f>0.99) return vec3(greaterThanEqual(a+b,ONE3)); return min( ONE3, max(ZERO3, (b+a*f-f)/(1.0-f+1e-6) )) ; ",diff:"return abs(a*f-b);",smud:"return a+b-2.0*a*b;",fsub:"return max(b-a, ZERO3);",fdiv:"return min(b/a, ONE3);","hue ":"return setLum( setSat(a, sat(b)) , lum(b) ); ","sat ":"return setLum( setSat(b, sat(a)) , lum(b) ); ",colr:"return setLum( a, lum(b) ); ","lum ":"return setLum( b, lum(a) ); "}; -V.p.Qx=function(h,e){V.PG.call(this);var $="\t\t\tprecision mediump float;\t\t\t"+V.yD.bK+"\t\t\t\t\t\tuniform sampler2D source;\t\t\tuniform sampler2D target;\t\t\tuniform float alpha;\t\t\tuniform float fill;\t\t\tuniform float style;\t\t\tuniform float keepBGA;\t\t\t"+(e?"uniform vec4 blIf[10];":"")+"\t\t\t\t\t\tvarying vec2 tCoord;\t\t\tvarying vec2 sCoord;\t\t\t\t\t\t\t\t\t"+V.yD.vD+"\t\t\t"+V.yD.GE+"\t\t\t"+V.yD.ob+"\t\t\t"+V.yD.ahP+"\t\t\t"+V.yD.alr+"\t\t\t"+V.yD.a4_+"\t\t\t"+V.yD.RX+"\t\t\t"+V.yD.amY+"\t\t\t"+V.yD.up+"\t\t\t"+V.yD.hash+"\t\t\t"+(e?V.yD.Z4:"")+"\t\t\t\t\t\tvec3 BB(vec3 a, vec3 b, float f) { "+V.p.nC[h]+" } \t\t\t\t\t\tvoid main(void) {\t\t\t\tvec4 tgt = texture2D(target, tCoord);\t\t\t\tvec4 src = texture2D(source, sCoord);",Z="\t\t\tattribute vec2 verPos;\t\t\tuniform vec4 srct;\t\t\tvarying vec2 tCoord;\t\t\tvarying vec2 sCoord;\t\t\tvoid main(void) {\t\t\t\ttCoord = verPos;\t\t\t\tsCoord = (verPos-srct.xy)/srct.zw;\t\t\t\tgl_Position = vec4(vec2(-1.0,-1.0) + 2.0*verPos, 0.0, 1.0);\t\t\t}"; -if(h=="diss")$+="\t\t\t\t\tgl_FragColor = (hash(tCoord) >= (keepBGA + (1.0-keepBGA)*src.w)*alpha ? tgt : vec4(src.xyz, keepBGA*tgt.w + (1.0-keepBGA))); }"; -else $+=" \t\t\t\t\tfloat as = (keepBGA + (1.0-keepBGA)*src.w) * alpha, at = keepBGA + (1.0-keepBGA)*tgt.w; \t\t\t\t\t"+(e?" as*=blendIf(src,tgt,blIf); ":"")+"\t\t\t\t\tfloat ats = at * (1.0-as), ao = as + ats, iao = (ao==0.0) ? 0.0 : (1.0/ao); \t\t\t\t\tfloat ccf = (style==1.0) ? 1.0 : as; \t\t\t\t\tvec3 ncl = ( (1.0-at)*as*src.xyz + (1.0-ccf)*at*tgt.xyz + ccf*at*BB(src.xyz, tgt.xyz, (1.0+as-ccf)*fill) ) * iao;\t\t\t\t\tgl_FragColor = vec4(ncl, keepBGA*tgt.w + (1.0-keepBGA)*(as*fill + at*(1.0-as*fill)));\t\t\t\t\t\t\t}"; -this.Py($,Z)};V.p.Qx.prototype=new V.PG;V.p.Qx.prototype.m_=function(h,e,$,Z,c,q,E,P){this.gC("srct alpha source target fill style keepBGA blIf".split(" ")); -var a=V.s0,j=this.oK;a.uniform4fv(j.srct,$);a.uniform1f(j.alpha,Z);a.uniform1f(j.fill,c);a.uniform1f(j.style,q); -a.uniform1f(j.keepBGA,E);if(P)a.uniform4fv(j.blIf,P);this.J0([j.source,h,j.target,e])};V.p.cw=function(h,e){V.PG.call(this); -this.abg=h;this.Ln=e;var $="\t\t\tprecision mediump float;\t\t\t\t\t\tuniform sampler2D source;\t\t\tuniform sampler2D target;\t\t\tuniform sampler2D weight;\t\t\tuniform vec4 cswitch;\t\t\tuniform float wcolor;\t\t\tuniform float awg; /* additional weight */\t\t\tuniform float dissv;\t\t\t\t\t\tvarying vec2 tCoord;\t\t\tvarying vec2 sCoord;\t\t\tvarying vec2 wCoord;\t\t\t\t\t\t"+V.yD.xA+"\t\t\t"+V.yD.hash+"\t\t\t\t\t\tvoid main(void) {\t\t\t\tvec4 tgt = texture2D(target, tCoord);\t\t\t\tvec4 src = "+(h?"texture2D(source, sCoord)":"vec4(0.0)")+"; \t\t\t\tfloat wg = awg "+(e?"* (in01(wCoord) ? texture2D(weight, wCoord).w : wcolor)":"")+";\t\t\t\t"+(h?"":"wg = 1.0-wg;")+"\t\t\t\tfloat hwg = hash(tCoord)>=wg ? 0.0 : 1.0; wg = dissv*hwg + (1.0-dissv)*wg; \t\t\t\tfloat as = wg*src.w, at = (1.0-wg)*tgt.w, ao = as+at;\t\t\t\t\t\t\t\tvec4 nc = vec4( (as*src.xyz + at*tgt.xyz)/ao, ao ); \t\t\t\tgl_FragColor = "+(e?"nc":"cswitch*nc + (1.0- cswitch)*tgt")+"; \t\t\t}",Z="\t\t\tattribute vec2 verPos;\t\t\tvarying vec2 tCoord;\t\t\tvarying vec2 sCoord;\t\t\tvarying vec2 wCoord;\t\t\t\t\t\tuniform vec4 srct;\t\t\tuniform vec4 wrct;\t\t\tvoid main(void) {\t\t\t\ttCoord = verPos;\t\t\t\tsCoord = (verPos-srct.xy)/srct.zw;\t\t\t\twCoord = (verPos-wrct.xy)/wrct.zw;\t\t\t\tgl_Position = vec4(vec2(-1.0,-1.0) + 2.0*verPos, 0.0, 1.0);\t\t\t}"; -this.Py($,Z)};V.p.cw.prototype=new V.PG;V.p.cw.prototype.m_=function(h,e,$,Z,c,q,E,P,a){if(this.Ln)this.gC("srct wrct wcolor awg dissv source target weight cswitch".split(" ")); -else this.gC("srct awg dissv source target cswitch".split(" "));var j=V.s0,L=this.oK;j.uniform4fv(L.srct,Z); -if(this.Ln){j.uniform4fv(L.wrct,c);j.uniform1f(L.wcolor,q)}else{j.uniform4fv(L.cswitch,a)}j.uniform1f(L.awg,E); -j.uniform1f(L.dissv,P);var H=[L.source,h,L.target,e];if(this.Ln)H.push(L.weight,$);this.J0(H)};V.p.r9=function(){V.PG.call(this); -var h="\t\t\tprecision mediump float;\t\t\t\t\t\tuniform sampler2D prev;\t\t\tuniform sampler2D next;\t\t\tuniform sampler2D alpha;\t\t\t\t\t\tvarying vec2 coord;\t\t\t\t\t\t\t\t\tvoid main(void) {\t\t\t\tvec3 or = texture2D(prev , coord).rgb;\t\t\t\tvec3 ir = texture2D(next , coord).rgb; \t\t\t\tfloat al = texture2D(alpha, coord).w; \t\t\t\tgl_FragColor = vec4( (ir-(1.0-al)*or)*(1.0/al) ,1.0 ); \t\t\t}",e="\t\t\tattribute vec2 verPos;\t\t\tvarying vec2 coord;\t\t\t\t\t\tuniform vec4 rct;\t\t\tvoid main(void) {\t\t\t\tcoord = verPos;\t\t\t\tgl_Position = vec4(vec2(-1.0,-1.0) + 2.0*verPos, 0.0, 1.0);\t\t\t}"; -this.Py(h,e)};V.p.r9.prototype=new V.PG;V.p.r9.prototype.m_=function(h,e,$,Z){this.gC(["rct","prev","next","alpha"]); -var c=V.s0,q=this.oK;c.uniform4fv(q.rct,[0,0,1,1]);this.J0([q.prev,e,q.next,$,q.alpha,Z])};var f={}; -f.ar=function(h,e,$){this.name=h;this.id=e;this.a3=null;if($!=null)this.dC=$};f.ar.prototype.a1=function(h,e,$,Z,c){}; -f.ar.prototype.enable=function(h,e,$,Z,c,q){var E=new B(D.E.P,!0);E.data={e:D.U.Qd,Hz:"default"};e.f(E)}; -f.ar.prototype.disable=function(h,e,$,Z,c){};f.ar.prototype.I_=function(h,e,$,Z,c){return!1};f.ar.prototype.yj=function(h,e,$,Z,c){}; -f.ar.prototype.p8=function(h,e,$,Z,c){};f.ar.prototype.oX=function(h,e,$,Z,c){};f.ar.prototype.f0=function(h,e,$,Z,c){}; -f.ar.prototype.d1=function(h,e,$,Z,c){};f.ar.prototype.WI=function(h,e,$,Z){};f.ar.prototype.yY=function(h,e,$,Z){}; -f.ar.prototype.t4=function(h,e){};f.ar.prototype.yc=function(h,e){};f.ar.prototype.cd=function(h,e,$,Z,c){}; -f.ar.prototype.if=function(h,e){};f.ar.prototype.Jr=function(h,e){return!1};f.ar.prototype.s4=function(h,e){return!1}; -f.ar.prototype.Mm=function(){return!1};f.ar.prototype.NO=function(h,e){return!0};f.ar.prototype._3=function(){return null}; -f.ar.prototype.xc=function(h,e,$){};f.ar.prototype.Nl=function(){return!1};f.ar.prototype.IZ=function(h,e,$,Z){}; -f.ar.prototype.track=function(h){var e=new B(D.E.Kz,!0);e.data=h;h.FJ=!0;this.a3.f(e)};f.ar.Ia=function(h,e,$,Z,c){f.ar.cA(h,e,[e_.get([12,41]).charAt(0)+": "+s.IQ.MB($.d,Z.Ay,c,Z.d,!0),e_.get([12,42]).charAt(0)+": "+s.IQ.MB($.v,Z.Ay,c,Z.v,!0)],Z)}; -f.ar.cA=function(h,e,$,Z){var c=14,q=130,E=$.length*17+8,P=new O(h,e-E,q,E),a=f.ar.Y4;if(a==null)a=f.ar.Y4=document.createElement("canvas"); -a.width=q;a.height=E;var j=a.getContext("2d");j.fillStyle="rgba(0,0,1,1)";j.fillRect(0,0,q,E);j.font=c+"px monospace"; -j.fillStyle="rgba(255,255,255,1)";for(var G=0;G<$.length;G++)j.fillText($[G],6,(G+1)*17);Z.K.Yr=[[j.getImageData(0,0,q,E).data,P.clone()]]}; -f.ar.Y4=null;f.OA="0";f.$r="1";f.a6J="2";f.aic="3";f.V7="5";f.a99="6";f.ain="7";f.ee="8";f.et="9";f.ZT="10"; -f.KH="11";f.Ou="12";f.n$="13";f.Ql="14";f.acl="16";f.G3="18";f.xt="19";f.mV="20";f.YK="21";f.PE="22"; -f.XP="23";f.VF="24";f.Cz="25";f.cb="27";f.d7="31";f.ag3="32";f.aor="34";f.acY="35";f.Uq="36";f.Fh="37"; -f.Eh="38";f.s5="39";f.Hh="40";f.ME="41";f.iE="42";f.zl="43";f.kE="47";f.hO="51";f.f6="52";f.lO="54"; -f.Jy="55";f.AL="56";f.hx="57";f.QQ="58";f.vc="59";f.ak4="60";f.dc="61";f.Fk="100";f.MG="101";f.or="102"; -f.Bi="120";f.Qi="230";f.alC="231";f.C_="232";f.S$="233";f.aQ="234";f.HP="235";f.zI="236";f.Kn=function(h){var e=f.YH,$=null; -for(var Z in e)if(e[Z][1].indexOf(h[1].classID)!=-1)$=Z;return $};f.YH={};f.YH[f.XP]=["tools/brush",["PbTl"]]; -f.YH[f.VF]=["tools/pencil",["PcTl"]];f.YH[f.d7]=["tools/eraser",["ErTl"]];f.rz=function(h,e,$){f.ar.call(this,h,e,$); -this.KY={brush:h?cC.Zn():null,bmode:"norm",opacity:1,flow:1,smth:0,samp:0,prsr:[!1,!0],emode:0,wconf:[40,!0,!0],algnd:!1,sfrom:0,alt:[!1],expo:.5,rng:1,strn:.5,pdetail:!0,smode:1,qsmode:0,setop:"front",patch:0}; -this.D0=null;this.Gg=null;this.s$=null;this.DP=null;this.Fu=null;this.Iy=null;this.SI=null;this.tC=null; -this.B0=null;this.KQ=null;this.Je=null;this.KA=null;this.HC=null;this.sn=1;this.Wq=!1;this._a=null;this.caller=null}; -f.rz.prototype=new f.ar;f.rz.prototype.s4=function(h,e){return h.xo&&e.q(p.ai)};f.rz.prototype.p8=function(h,e,$,Z,c){if(Z.q(p.ys)){this.Iy=new eu(c.x,c.y); -var q=this.KY.brush.Brsh.v,E=q.Dmtr.v.val,P=q.Hrdn!=null?q.Hrdn.v.val:-1;this.SI=[E,P,!0,JSON.parse(JSON.stringify(this.KY.brush)),c]; -this.qd($)}};f.rz.prototype.s2=function(h,e,$){var Z=this.SI,c=h.z.S,q=$.x-Z[4].x,E=$.y-Z[4].y,P=Z[0],a=Z[1],j=Math.abs(q)>Math.abs(E); -if(j&&Z[2]){var L=Math.round(2*q/c);P+=L;$.x-=q-.5*L*c}if(!j&&!Z[2]&&a!=-1){var L=Math.round(.25*E); -a+=L;$.y-=E-4*L}P=Math.max(1,P);a=Z[1]==-1?-1:Math.max(0,Math.min(100,a));var H=Z[3];H.Brsh.v.Dmtr.v.val=P; -if(a!=-1)H.Brsh.v.Hrdn.v.val=a;this.SI=[P,a,j,H,$];var _=ec.MO(H,e.Ck.nM,c),J=_[1];J.x=Math.round(this.Iy.x-J.d/2); -J.y=Math.round(this.Iy.y-J.v/2);h.K.Vh=[_];var S=h.z.QX(this.Iy.x,this.Iy.y);h.K.Q2={u2:[],ZS:[S.x-P/2,S.y,S.x+P/2,S.y]}; -if(a!=-1)h.K.Q2.ZS.push(S.x+50/c,S.y-a/2,S.x+50/c,S.y+a/2);h.IL=!0};f.rz.prototype.d1=function(h,e,$,Z,c){if(this.id==f.mV)return; -if(this.Iy){this.Iy=null;this.c9(JSON.parse(JSON.stringify(this.SI[3])));h.K.Vh=[];h.K.Q2=null;h.IL=!0; -return}var q=new B(D.E.P,!0);q.data={e:D.U.UR,F:this.id,amx:"showBrushOpts",NY:new eu(c.aS+4,c.gh)}; -e.f(q)};f.rz.prototype.c9=function(h){var e=new B(D.E.P,!0);e.data={e:D.U.Ov,Av:iM.bT,oH:h};this.caller.f(e)}; -f.rz.GC=function(h,e,$,Z){if(h==null)h="FrgC";if(e==null)e="norm";if($==null)$=1;var c={classID:"Fl",Usng:{t:"enum",v:{FlCn:h}},Opct:{t:"UntF",v:{type:"#Prc",val:Math.round($*100)}},Md:{t:"enum",v:{BlnM:eN.ve(e)}}}; -if(h=="Clr")c.Clr={t:"Objc",v:Z};if(h=="contentAware")c.contentAwareColorAdaptationFill={t:"bool",v:!0}; -return{Lw:"fill",TJ:c}};f.rz.prototype.a1=function(h,e,$,Z,c){this.a3=e;var q=$.vw.length;if(q==0&&!$.Jh())return; -var E=q!=0?-1-$.vw[0]:$.C[0],P=$.t[E];if(h.e=="fromAction"){var a=h.W_,j=a.TJ;if(a.Lw=="fill"){var L=(j.Opct?j.Opct.v.val:100)/100,H=j.Md?eN.Tj(j.Md.v.BlnM):"norm",_=j.Usng.v.FlCn,J; -if(_=="contentAware"){if($.N==null){alert("Select an area to heal first.");return}if(!$.Jh())return; -this.In($);this.hB($,0);var S=$.N,N=s.m(S.rect.X()*4);s.Jk(S.channel,N,3);this.JY($,"sheal",N,S.rect,S.rect); -this.s($,S.rect);this.finish($,S.rect)}else{if(_=="FrgC")J=c.oV;else if(_=="BckC")J=c.XK;else if(_=="Blck")J=0; -else if(_=="Wht")J=16777215;else if(_=="Gry")J=8421504;else if(_=="Clr"){var Y=s.Y.LX(j.Clr.v);J=Y.h<<16|Y.l<<8|Y.O}var U=J>>16&255,g=J>>8&255,M=J>>0&255; -this.TW($,P,$.N,U,g,M,Math.round(255*L),H,[2,3])}}else if(a.Lw=="delete"){var C=E<0?1:P.jw,S=$.N,n;if(S==null)return; -var y=E<0?$.Qe[-E-1]:C<=0?null:C==1?P.kV():P.wV($).r,i=C<=0?P.rect:y.rect,Q=C<=0?S.rect.jx(i):S.rect.clone(); -if(Q.nK())return;var m=Q.X();if(C<=0){n=s.m(m*4);s.hX(P.buffer,P.rect,n,Q)}else{n=s.m(m);y.extend(Q); -s.T7(y.channel,y.rect,n,Q)}if(0<=E&&P.Ae($,S)){if(C<=0){s.Ut(n,0);s.hX(P.cj.Ny,P.cj.m0,n,Q)}else{n.fill(255); -s.T7(P.cj.Ny,P.cj.m0,n,Q)}}else{if(C<=0){var u=s.m(n.length>>2);s.z0(n,u,3);s.p.Y6(s.qm(S.rect.X()),S.rect,u,Q,S.channel,Q,1); -s.Jk(u,n,3)}else{var K=s.m(S.rect.X()),U=c.XK>>>16&255,g=c.XK>>8&255,M=c.XK>>0&255;K.fill(Math.round(s.jv(U,g,M))); -s.p.Y6(K,S.rect,n,Q,S.channel,Q,1)}}this.$x($,!0,[2,2],E,C,Q,n)}}if(h.e=="stroke"){var F=h.a4i,S=$.N; -if(S==null){S={rect:P.rect.clone(),channel:s.m(P.rect.X())};s.z0(P.buffer,S.channel,3)}var b=hn.gc(F),d=f.LV.gJ(S,Math.ceil(b[0]),Math.ceil(b[1])),J=s.Y.LX(F.Clr.v),U=Math.round(J.h),g=Math.round(J.l),M=Math.round(J.O); -this.TW($,P,d,U,g,M,Math.round(255*F.Opct.v.val/100),eN.Tj(F.Md.v.BlnM),[14,9])}if(h.e=="fillBMP"){this.SB($,P,$.N,h.He,h.Uz,h.cJ)}if(h.e=="draw"){var W=h.Fp,A=W.rect; -this.In($);var z=$.t[$.C[0]];if(h.acj&&z&&z.jw<=0&&$.vw.length==0){A=bn.Od.jH(W,$);z.buffer=W.buffer.slice(0); -z.rect=A.clone()}else{var T=this.KY.bmode;this.KY.bmode="norm";this.JY($,"draw",W.buffer,A,A.jx(new O(0,0,$.d,$.v))); -this.KY.bmode=T}this.s($,A);$.uu=!0;this.finish($,A,h.cJ,h.acj)}};f.rz.prototype.TW=function(h,e,$,Z,c,q,E,P,a){var j=$==null?new O(0,0,h.d,h.v):$.rect,L=E<<24|q<<16|c<<8|Z<<0,H=s.m(j.X()*4); -s.Ut(H,L);this.SB(h,e,$,H,P,a)};f.rz.prototype.SB=function(h,e,$,Z,c,q){var E=h.vw.length!=0?-1-h.vw[0]:h.C[0],P=E<0?1:e.jw,a=E<0?h.Qe[-1-E]:P<=0?null:P==1?e.kV():e.wV(h).r,j=P<=0?e.rect:a.rect,L=$==null?new O(0,0,h.d,h.v):$.rect,H=$==null?s.Bh(h.d*h.v):$.channel,_=L.X(),J,S=null; -if(P<=0){J=s.m(_*4);s.hX(e.buffer,e.rect,J,L)}else{J=s.m(_);a.extend(L);s.T7(a.channel,a.rect,J,L)}if($!=null)s.FE(H,Z); -if(P>0){S=s.m(_);s.yh(Z,S)}if(0<=E&&$&&e.Ae(h,$)){var N=e.cj.KE,Y=e.cj.KE.slice(0);if(P<=0)s.i7(Z,Y); -else s.i7(S,Y);var U=new fW([2,3],this);U.data={e:"drawtemp",$:h.C[0],Md:P,a21:N,als:Y};h.eG(U);this.t4(U.data,h)}else{if(P<=0){var g; -if(e.ra(0)){g=s.m(L.X());s.z0(J,g,3)}s.p.Jn(c,Z,L,J,L,L,1);if(e.ra(0))s.Jk(g,J,3)}else s.p.Y6(S,L,J,L,H,L,1); -this.$x(h,!0,q,E,P,L,J)}};f.rz.prototype.Jr=function(h){if(p.rG.indexOf(h)!=-1)return!0;return!1};f.rz.prototype.WI=function(h,e,$,Z){var c=this.KY.brush,q=Z.q(p.ys),E=q!=this.Wq,P=f.rz.fF(c,Z); -if(P!=null)this.c9(P);if(!Z.q(p.tm)&&Z.sC()!=-1){var a=D.Ec(Math.round(this.KY.opacity*100),Z.sC())/100; -this.Ng({opacity:a},e)}if(this.id==f.ee&&E&&h!=null){var j=this.KY.qsmode;if(j==2)j=h.N==null?0:1;else j=2; -this.Ng({qsmode:j},e)}this.Wq=q;if(E){if(h)this.sn=h.z.S;this.qd($,Z)}};f.rz.fF=function(h,e){var $=h.Brsh.v.Dmtr.v.val,Z=h.Brsh.v.Hrdn!=null?h.Brsh.v.Hrdn.v.val:-1,c=$,q=Z,E=e.q(p.ai); -if(e.q(p.IA)){if(E)Z=25*Math.floor((Z-1)/25);else{if($<=10)$--;else if($<=50)$=5*Math.floor(($-1)/5); -else if($<=100)$=10*Math.floor(($-1)/10);else if($<=200)$=25*Math.floor(($-1)/25);else if($<=400)$=50*Math.floor(($-1)/50); -else $=100*Math.floor(($-1)/100)}}if(e.q(p.QI)){if(E)Z=25*Math.ceil((Z+1)/25);else{if($<10)$++;else if($<50)$=5*Math.ceil(($+1)/5); -else if($<100)$=10*Math.ceil(($+1)/10);else if($<200)$=25*Math.ceil(($+1)/25);else if($<400)$=50*Math.ceil(($+1)/50); -else $=100*Math.ceil(($+1)/100)}}$=Math.max(1,$);Z=Math.max(0,Math.min(100,Z));if(q==-1)Z=-1;if($!=c||Z!=q){var P=JSON.parse(JSON.stringify(h)); -P.Brsh.v.Dmtr.v.val=$;if(q!=-1)P.Brsh.v.Hrdn.v.val=Z;return P}return null};f.rz.prototype.qd=function(h,e,$,Z){if(h.Ck.list.length==0)return; -var c=this.id,q;if((c==f.cb||c==f.xt||c==f.XP||c==f.VF)&&(e!=null&&e.q(p.ys)||this.KY.alt[0]))q="crosshair"; -else{var E=this.sn,P=this.KY.brush;if((c==f.cb||c==f.xt)&&$&&this.KA&&this.KA.length==this.Je.X()*4){var a=$.z.QX(Z.x,Z.y),j=this.ak(a),L=this.KA,H=this.Je,_=new O(H.x+j.x,H.y+j.y,H.d,H.v),J=ec.MO(P,h.Ck.nM,E),S=J[0],N=J[1],Y=Math.ceil(N.d/E),U=new O(Math.round(a.x-Y/2),Math.round(a.y-Y/2),Y,Y),g=s.m(U.X()*4),M,C; -s.hX(L,_,g,U);if(E==1){M=g;C=U}else{var y=new i7(E,0,0,E,0,0),i=f.o.D8([g,U],y,!0);C=N.clone();C.x=i.rect.x; -C.y=i.rect.y;if(C.dz(i.rect))M=i.buffer;else{M=s.m(C.X()*4);s.hX(i.buffer,i.rect,M,C)}}var Q=this.KY.opacity/255; -for(var G=0;G>>1,L=new O(Math.round(P.x)-j,Math.round(P.y)-j,a,a),H=s.m(L.X()*4); -s.Ut(16777215);for(var G=0;G0){j=s.m(q.X()*4);f.rz.Hw(E,q,0,j,q)}var L=new fW($,this);L.data=[{$:Z,Md:c,_:q,Yu:j}];if(P)L.data.Jz=[h.N,null]; -if(a)L.data.Jz=[this.HC,h.N];h.eG(L);if(e)this.t4(L.data,h);else if(P)h.N=null;bn.wk.cM(h,L.data)};f.rz.prototype.yc=function(h,e){this.UB(h,e,!1)}; -f.rz.prototype.t4=function(h,e){this.UB(h,e,!0)};f.rz.prototype.UB=function(h,e,$){if(h.e=="drawtemp"){var Z=$?h.als:h.a21,c=e.t[h.$]; -c.cj.KE=Z;c.NP(e,0,0,e.N);c.s();e.uu=!0}else{bn.wk.Qr(e,h);if(h.Jz){e.N=h.Jz[$?1:0];e.al=!0}}e.s()}; -f.rz.prototype.sI=function(h){this.JY(h,this._a,this.Gg.os(),this.Gg._A(),this.Gg.vX());this.s(h)};f.rz.prototype.JY=function(h,e,$,Z,c){var q=this.KY,E=h.t[h.C[0]],P=h.vw.length!=0?h.Qe[h.vw[0]]:E.jw<=0?null:E.jw==1?E.kV():E.wV(h).r,a=s.m(c.X()*4),j,L=E.ra(0); -if(P==null){if(this.id==f.YK&&e=="heal")s.hX(E.buffer,E.rect,a,c);else s.hX(this.KQ,this.B0,a,c);if(L){j=s.m(c.X()); -s.z0(a,j,3)}}else{f.rz.Hw(this.KQ,this.B0,P.color,a,c)}if(h.N&&e!="qselect"){var H=c.jx(h.N.rect),_=s.m(H.X()*4); -if(e=="copy"){var J=s.m(H.X());s.T7(h.N.channel,h.N.rect,J,H);s.hX(a,c,_,H);s.p.cZ($,Z,_,H,J,H,0,H,1,!1)}else{s.hX($,Z,_,H); -s.w2(h.N.channel,h.N.rect,_,H)}$=_;Z=H}function S(U,fz){var gf=Math.max(fz.x,Math.min(fz.x+fz.d-1,U.x)),bb=Math.max(fz.y,Math.min(fz.y+fz.v-1,U.y)); -return new eu(gf,bb)}if(e=="idraw"||e=="ierase"){if(this.tC==null)this.tC=s.m(this.B0.X());var N=this.KY.samp,Y=this.D0.XK,U=S(this.s$,c),g=N==0?U:this.DP,M=g.x,C=g.y,y=f.oz.kz(this.KQ,this.B0,[g,new eu(M-2,C),new eu(M+2,C),new eu(M,C-2),new eu(M,C+2)]); -if(N==2)y=[[Y>>>16&255,Y>>>8&255,Y>>>0&255,255]];var i=f.oz.ia(a,c,U,y,this.KY.wconf),Q=s.m(c.X());s.T7(this.tC,this.B0,Q,c); -s.gV.iJ(i,Q,Q);s.T7(Q,c,this.tC,this.B0);s.w2(Q,c,$,Z);e=e.slice(1)}if(e=="erase"&&(bn.wk.zL(h)!=16777215||P))e="draw"; -if(e=="draw")s.p.Jn(q.bmode,$,Z,a,c,c,q.opacity);else if(e=="erase"){var m=s.m(c.X()*4);s.hX($,Z,m,c); -if(P==null){var n=s.m(c.X());s.z0(m,n,3);s.vI(n,q.opacity);s.vy(n);s.w2(n,c,a,c)}else{s.Ut(m,0,4278190080); -s.p.Jn("norm",m,c,a,c,c,q.opacity)}}else if(e=="clone"||e=="heal"){var u=this.cP(),K=this.Je.clone(); -K.offset(u.x,u.y);var F=c.clone();F.P5(1,1);var b=s.m(F.X()*4),d=s.m(F.X());s.hX($,Z,b,F);s.z0(b,d,3); -s.Ut(b,0);if(P==null){s.hX(this.KA,K,b,F);var W=s.m(F.X());s.z0(b,W,3);s.J9(W,d)}else f.rz.Hw(this.KA,K,P.color,b,F); -if(e=="clone"){s.Jk(d,b,3);s.p.Jn(q.bmode,b,F,a,c,c,q.opacity)}if(e=="heal"){var A=d.slice(0);s.round(A,20); -var z=s.m(F.X()*4);if(P==null)s.hX(this.KQ,this.B0,z,F);else f.rz.Hw(this.KQ,this.B0,P.color,z,F);s.p.cZ(b,F,z,F,A,F,0,F,1,!1); -s.WO.xS(z,A,F);s.p.cZ(z,F,a,c,d,F,0,c,1,!1)}}else if(e=="dodge"||e=="burn"){var b=s.m(c.X()*4),I=1,r=0,x=0,X=0; -s.hX($,Z,b,c);var T=c.X()*4,R=f.rz.Ld;if(this.Wq){if(e=="dodge")e="burn";else e="dodge"}var l=q.rng; -if(e=="dodge"){r=[1-I/2,1,1+I][l];x=[1,1/(1+I),1][l];X=[I/2,0,0][l]}if(e=="burn"){r=[1/(1-I/2),1,1-I/2][l]; -x=[1,1+I,1][l];X=[-(I/2)/(1-I/2),0,0][l]}for(var G=0;G>>1)*ga]=d[(eB>>>1)*ga+ga-1]=0;f.Fw.Gi(b_,!0);h.N={rect:ht,channel:b_.N.slice(0)};h.al=!0}if(P==null){if(L)s.Jk(j,a,3); -s.hX(a,c,E.buffer,E.rect)}else f.rz.cx(a,c,P)};f.rz.cP=function(){return null};f.rz.Ld=function(h,e,$,Z,c){var q=h*(1/255),E=Z+e*Math.pow(q,$),P=Math.round(E*c+q*(255-c)); -return Math.max(0,Math.min(255,P))};f.rz.Hw=function(h,e,$,Z,c){var q=s.m(c.X());q.fill($);s.T7(h,e,q,c); -Z.fill(255);s.Kh(q,Z)};f.rz.cx=function(h,e,$){var Z=s.m(e.X());s.yh(h,Z);s.T7(Z,e,$.channel,$.rect)}; -f.LV=function(h,e,$){f.ar.call(this,h,e,$);this.KY={H6:"front",gE:0,_z:{A2:0,x:3,y:2},hZ:[16,!0,!0]}; -this.ag=new eu(-1,-1);this.X_=new eu(-1,-1);this.eu="default";this.a3=null;this.adR=!0;this.yO=!1;this.$G=!1; -this.Wq=!1;this.zS=0;this.zg=0;this.rH=!1;this.rC=null;this.CQ=null;this.QG=!1};f.LV.prototype=new f.ar; -f.LV.prototype.a4u=function(){var h=this.KY,e=[{front:0,union:1,difference:2,intersection:3}[h.H6],h.gE]; -if(this.id==f.et)e.push(h.hZ);return e};f.LV.prototype.aa0=function(h,e,$){var Z=this.KY;Z.H6=["front","union","difference","intersection"][h[0]]; -Z.gE=h[1];Z.hZ=h[2];var c=new B(D.E.P,!0);c.data={e:D.U.UR,F:this.id,Oi:Z};$.f(c)};f.LV.Gd={key:""}; -f.LV.jG=function(h,e){var $={Lw:h,TJ:{classID:"setd",null:{t:"obj ",v:[{t:"prop",v:{classID:"Chnl",keyID:"fsel"}}]}}}; -if(e)$.TJ.T=e;return $};f.LV.n5=function(h,e){return f.LV.jG("set",{t:"Objc",v:{classID:h,Top:{t:"UntF",v:{type:"#Pxl",val:e.y}},Left:{t:"UntF",v:{type:"#Pxl",val:e.x}},Btom:{t:"UntF",v:{type:"#Pxl",val:e.y+e.v}},Rght:{t:"UntF",v:{type:"#Pxl",val:e.x+e.d}}}})}; -f.LV.UL=function(h,e){var $=[],Z=[],q="set";for(var G=0;G>>1)),T=n.y-K.y,R=T+n.v-1,I=Math.max(T,Math.min(R,T+R>>>1)),r=Math.max(W,0),x=Math.min(A,b),X=Math.max(T,0),l=Math.min(R,d); -F.fill(128);if(0<=T)for(var hH=r;hH>>2);s.z0(a3,bm,3);E={channel:bm,rect:f2.clone()}}else{if(dq.r==null)dq.ZB($);var h2=bP==1?dq.kV():dq.r; -E=f.LV.B5(h2,a)}this.track(f.LV.Ea(Q,["Trsp","Msk"][bP],dq.getName()))}else if(q=="frompath"){var ag=$.U9(),eU=ag[1],ag=ag[0]; -if(eG==null)if(ag.length==0||eU.length==0)return;var iz=ag[eU[0]];if(eG!=null)for(var G=0;G1||this.zg>1?e:null; -var Z=this.ag,c=this.X_;if($){Z.x=Math.max(0,Math.min(h.d,Z.x));Z.y=Math.max(0,Math.min(h.v,Z.y));c.x=Math.max(0,Math.min(h.d,c.x)); -c.y=Math.max(0,Math.min(h.v,c.y))}var q=f.vA.Px(Z,c,e,!0,this.KY._z),E=q[0].x,P=q[0].y;return new O(E,P,q[1].x-E,q[1].y-P)}; -f.LV.prototype.yj=function(h,e,$,Z,c){if(this.ho())return;this.a3=e;this.yO=!1;this.$G=Z.q(p.ai);this.Wq=Z.q(p.ys); -this.zS=this.$G?0:1;this.zg=this.Wq?0:1;this.ag=h.z.QX(c.x,c.y);this.ag=f.fQ.cX(h,this.ag,$);if(this.Yi(h,this.ag,Z)){this.rH=!0; -this.rC=h.N.rect.clone();return}this.Aw(h,$,Z,c);h.z.og=new O};f.LV.prototype.Yi=function(h,e,$){var Z=$.q(p.ai),c=$.q(p.ys); -if(h.N&&!Z&&!c&&this.KY.H6=="front")return s.mI(e,h.N.channel,h.N.rect);return!1};f.LV.prototype.oX=function(h,e,$,Z,c){this.a3=e; -if(this.QG)return;var q=h.z.QX(c.x,c.y);if(eu.nj(this.ag,q)*h.z.S>5)this.yO=!0;if(Z.q(p.P2)){if(this.CQ==null)this.CQ=new eu(q.x-this.ag.x,q.y-this.ag.y); -this.ag.x=q.x-this.CQ.x;this.ag.y=q.y-this.CQ.y}else this.CQ=null;this.X_=q;if(!this.rH)this.X_=f.fQ.cX(h,this.X_,$); -if(this.Yi(h,this.X_,Z))this.nq(e,"move");else this.nq(e,this.eu);if(this.rH){var E=this.rC.clone(); -E.x+=this.X_.x-this.ag.x;E.y+=this.X_.y-this.ag.y;var P=f.fQ.OM(h,E,$);h.N.rect.x=Math.round(this.X_.x-this.ag.x+this.rC.x+P[0]); -h.N.rect.y=Math.round(this.X_.y-this.ag.y+this.rC.y+P[1]);h.al=!0;f.fQ.CY(h,E,P);return}this.AT(h,$,Z,c); -if(h.z.og)h.z.og=this._A(h,Z)};f.LV.prototype.ho=function(){return!1};f.LV.prototype.f0=function(h,e,$,Z,c){h.z.og=null; -this.X_=h.z.QX(c.x,c.y);this.X_=f.fQ.cX(h,this.X_,$);if(this.rH){this.rH=!1;if(this.X_.dz(this.ag)&&this.tR()=="front"){this.Gu(e,D.E.Kz,f.LV.ss()); -return}this.hn(h,this.rC,h.N.rect.clone());if(h!=null&&h.K.yu){h.K.yu=null;h.IL=!0}return}this.IB(h,$,Z,c); -f.LV.nt(e,$)};f.LV.prototype.hn=function(h,e,$){var Z=h.fX();if(Z!=null&&Z.F==this&&Z.data.e=="movesel"){}else{Z=new fW([7,7],this); -Z.data={e:"movesel",Y$:e};h.eG(Z)}Z.data.Ga=$;this.t4(Z.data,h)};f.LV.prototype.p8=function(h,e,$,Z,c){this.QG=!0}; -f.LV.prototype.d1=function(h,e,$,Z,c){var q=new B(D.E.P,!0);q.data={e:D.U.UR,F:this.id,BQ:c,im:h,pq:$}; -e.f(q);this.QG=!1};f.LV.prototype.WI=function(h,e,$,Z){var c=Z.q(p.ai),q=Z.q(p.ys);if(this.yO){if(this.zS==0&&!c)this.zS++; -if(this.zS==1&&c)this.zS++;if(this.zg==0&&!q)this.zg++;if(this.zg==1&&q)this.zg++}if(h!=null&&h.N!=null){var E=Z.cy(); -if(E.x!=0||E.y!=0){var P=h.N.rect.clone();P.x+=E.x;P.y+=E.y;this.hn(h,h.N.rect.clone(),P)}}var a=f.LV.z6(this.KY.H6,c,q),j=new B(D.E.P,!0); -j.data={e:D.U.UR,F:this.id,H6:a};e.f(j)};f.LV.prototype.finish=function(h,e,$,Z){var c=h.N,q=this.getSelection(h,e,$,Z); -if(q==null)q=f.LV.ss();else{var E=this.KY.gE,P=this.tR();if(E!=0)q.TJ.Fthr={t:"UntF",v:{type:"#Pxl",val:E}}; -if(P!="front"&&P!="xor")q.Lw={union:"addTo",difference:"subtractFrom",intersection:"interfaceWhite"}[P]}this.Gu(this.a3,D.E.Kz,q); -this.ag.su(-1,-1);this.X_.su(-1,-1)};f.LV.prototype.tR=function(){return f.LV.z6(this.KY.H6,this.$G,this.Wq)}; -f.LV.z6=function(h,e,$){if(e)h="union";if($)h="difference";if(e&&$)h="intersection";return h};f.LV.prototype.getSelection=function(h,e,$,Z){return null}; -f.LV.prototype.Aw=function(h,e,$,Z){};f.LV.prototype.AT=function(h,e,$,Z){};f.LV.prototype.IB=function(h,e,$,Z){}; -f.LV.prototype.yc=function(h,e){var $=h.e;if($=="changesel")e.N=h.HC;if($=="movesel")e.N.rect=h.Y$;if(h.M3){if(h.akv){e.vw=[e.Qe.length]; -e.Qe.push(h.akv)}else{e.Qe.pop();e.vw=[]}}if(h.yP){e.fV=JSON.parse(h.yP[0]);e.mG=JSON.parse(h.yP[1])}e.al=!0}; -f.LV.prototype.t4=function(h,e){var $=h.e;if($=="changesel")e.N=h.A9;if($=="movesel")e.N.rect=h.Ga;if(h.M3){if(h.adb){e.vw=[e.Qe.length]; -e.Qe.push(h.adb)}else{e.Qe.pop();e.vw=[]}}if(h.yP){e.fV=JSON.parse(h.akk[0]);e.mG=JSON.parse(h.akk[1])}e.al=!0}; -f.LV.prototype.cd=function(h){this.KY=h};f.LV.prototype.yp=function(h){var e=s.a.pl(h.H);if(e.nK())return null; -var $=D.w("canvas","");$.width=e.d;$.height=e.v;var Z=$.getContext("2d");Z.beginPath();Z.translate(-e.x,-e.y); -Typr.U.pathToContext({cmds:h.Z,crds:h.H},Z);Z.closePath();Z.fill();var c=s.m(e.X()),q=Z.getImageData(0,0,$.width,$.height); -s.z0(q.data,c,3);return{rect:e,channel:c}};f.LV.PB=function(h,e,$,Z,c){if($)e=Math.round(e*.7);var q=Math.ceil(2.6*e),E=h.rect.clone(); -E.P5(q,q);if(Z&&!c)E=E.jx(Z);var P=s.m(E.X()),a=s.m(P.length);s.T7(h.channel,h.rect,a,E);s.Nw.ec(a,P,E,e); -if($){var j=P.length;for(var G=0;G1e-9||!H||q||P)_=this.OC(h,e,!0,L,1,Z);var S=new fW(this.name,this),N=new O(0,0,h.d,h.v); -S.data={Y$:N,Ga:c,Tp:_,Q9:L,Kv:h.z.i.clone(),xn:f.u4.jo(h,c,N,!1)};h.eG(S);this.t4(S.data,h);this.track(f.u4.GL([Z.x,Z.y,Z.d,Z.v]))}; -f.u4.prototype.aiV=function(h,e){var $=s.I.w1(e),Z=s.I.t0($),c=s.I.hQ($),q=c.zq,E=c.nL,P=Math.atan2(c.O,c.R); -c.rotate(P);var a=new O(q,E,c.R,c.rU);if(!Z){function j(M,G,C){var y=M[G]-M[C],i=M[G+1]-M[C+1];return Math.sqrt(y*y+i*i)}var L=j(e,0,2),H=j(e,4,6),_=Math.max(L,H),J=j(e,2,4),S=j(e,6,0),N=Math.max(J,S),Y=f.u4.a0O(e,h.d/2,h.v/2),U,g; -if(isNaN(Y)||Y==Infinity||Y==-Infinity||Math.min(Y,1/Y)<.1)Y=(L+H)/(J+S);if(_/N>Y){U=_*1;g=U/Y}else{g=N*1; -U=g*Y}a.d=U;a.v=g}a.x=Math.round(a.x);a.y=Math.round(a.y);a.d=Math.round(a.d);a.v=Math.round(a.v);return a}; -f.u4.a0O=function(h,e,$){var Z=h[0]-e,c=h[1]-$,q=h[2]-e,E=h[3]-$,P=h[6]-e,a=h[7]-$,j=h[4]-e,L=h[5]-$,H=((c-L)*P-(Z-j)*a+Z*L-c*j)/((E-L)*P-(q-j)*a+q*L-E*j),_=((c-L)*q-(Z-j)*E+Z*L-c*j)/((a-L)*q-(P-j)*E+P*L-a*j),J=-((_*a-c)*(H*E-c)+(_*P-Z)*(H*q-Z))/((_-1)*(H-1)); -function S(Y){return Y*Y}var N=Math.sqrt((S(H-1)+S(H*E-c)/J+S(H*q-Z)/J)/(S(_-1)+S(_*a-c)/J+S(_*P-Z)/J)); -if(H==1&&_==1)N=Math.sqrt((S(E-c)+S(q-Z))/(S(a-c)+S(P-Z)));return N};f.u4.prototype.disable=function(h,e,$,Z){if(h==null)return; -if(this.YJ)this.YJ.clear(h);this.YJ=null;this.Gu(e,D.E.P,{e:D.U.UR,F:this.id,Uu:!1})};f.u4.prototype.Gu=function(h,e,$,Z){var c=new B(e,!0); -c.data=$;if(Z)c.F=Z;h.f(c)};f.GS=function(){f.u4.call(this,[10,2],f.ZT,"tools/rcrop")};f.GS.prototype=new f.u4; -f.UX=function(){f.u4.call(this,[10,39],f.KH,"tools/pcrop")};f.UX.prototype=new f.u4;f.K6=function(){f.rz.call(this,[10,21],f.s5,"tools/dodge"); -this._a="dodge"};f.K6.prototype=new f.rz;f.K6.prototype.yj=function(h,e,$,Z,c){this.x3(h,$,Z,c,this.KY.expo/Math.PI); -if(this.Gg==null)return;this.sI(h)};f.K6.prototype.oX=function(h,e,$,Z,c){this.f2(h,e,$);if(this.Iy)this.s2(h,$,c); -if(this.Gg==null)return;if(!c.xo)return;this.eI(h,$,Z,c);this.sI(h)};f.jE=function(){f.rz.call(this,[10,3],f.d7,"tools/eraser"); -this._a="erase"};f.jE.prototype=new f.rz;f.jE.prototype.yj=function(h,e,$,Z,c){this.x3(h,$,Z,c,this.KY.flow); -if(this.Gg==null)return;this.sI(h)};f.jE.prototype.oX=function(h,e,$,Z,c){this.f2(h,e,$);if(this.Iy)this.s2(h,$,c); -if(this.Gg==null)return;if(!c.xo)return;var q=this.eI(h,$,Z,c);this.sI(h)};f.bu=function(){f.rz.call(this,[10,45],f.ag3,"tools/beraser"); -this._a="ierase"};f.bu.prototype=new f.rz;f.bu.prototype.yj=function(h,e,$,Z,c){if(this.xX(Z,e,c))return; -this.x3(h,$,Z,c,this.KY.flow);if(this.Gg==null)return;this.sI(h)};f.bu.prototype.oX=function(h,e,$,Z,c){this.f2(h,e,$); -if(this.Iy)this.s2(h,$,c);if(this.Gg==null)return;if(!c.xo)return;this.eI(h,$,Z,c);this.sI(h)};f.bk=function(){f.LV.call(this,[10,15],f.$r,"tools/rselect"); -this.eu="crosshair"};f.bk.prototype=new f.LV;f.bk.prototype.AT=function(h,e,$,Z){if(!Z.xo||!this.yO)return; -var c=this._A(h,$,!0);h.K.sV=s.a.Kf(c);h.IL=!0;f.ar.Ia(Z.x+10,Z.y-10,c,h,e)};f.bk.prototype.IB=function(h,e,$,Z){h.K.sV=null; -h.K.Yr=[];h.IL=!0;this.finish(h,e,$,Z)};f.bk.prototype.getSelection=function(h,e,$,Z){if(this.ag.dz(this.X_)||!this.yO)return null; -var c=this._A(h,$,!0);if(c.nK())return null;return f.LV.n5("Rctn",c)};f.nz=function(){f.LV.call(this,[10,4],f.a6J,"tools/eselect"); -this.eu="crosshair"};f.nz.prototype=new f.LV;f.nz.prototype.AT=function(h,e,$,Z){if(!Z.xo||!this.yO)return; -var c=this._A(h,$);h.K.sV=f.nz.Bm(c);h.IL=!0;f.ar.Ia(Z.x+10,Z.y-10,c,h,e)};f.nz.prototype.IB=function(h,e,$,Z){h.K.sV=null; -h.K.Yr=[];h.IL=!0;this.finish(h,e,$,Z)};f.nz.prototype.getSelection=function(h,e,$,Z){if(this.ag.dz(this.X_)||!this.yO)return null; -var c=this._A(h,$);if(!c.k3(new O(0,0,h.d,h.v)))return null;return f.LV.n5("Elps",c)};f.nz.Bm=function(h){var e=h.x,$=h.y,Z=h.x+h.d,c=h.y+h.v,q=(e+Z)/2,E=($+c)/2,P=(e-Z)/2,a=($-c)/2,j=.5522848,L={H:[q,E-a],Z:["M","C","C","C","C"]}; -L.H.push(q+j*P,E-a,q+P,E-j*a,q+P,E);L.H.push(q+P,E+j*a,q+j*P,E+a,q,E+a);L.H.push(q-j*P,E+a,q-P,E+j*a,q-P,E); -L.H.push(q-P,E-j*a,q-j*P,E-a,q,E-a);return L};f.CG=function(){f.ar.call(this,[10,5],f.Ql,"tools/eyedropper"); -this.kb=!1;this.Kd=1};f.CG.prototype=new f.ar;f.CG.prototype.s4=function(h){return h.xo};f.CG.prototype.a1=function(h,e,$,Z,c){if(h.e=="pickhere")this.Cx($,e,c,Z,h.a1b)}; -f.CG.prototype.yj=function(h,e,$,Z,c){this.kb=!0;this.Cx(h,e,$,Z,c)};f.CG.prototype.oX=function(h,e,$,Z,c){if(this.kb)this.Cx(h,e,$,Z,c)}; -f.CG.prototype.f0=function(h,e,$,Z,c){this.kb=!1};f.CG.prototype.Cx=function(h,e,$,Z,c){var q=f.CG.lx(h,c,this.Kd),E=new B(D.E.P); -E.data={e:D.U.Ov,Av:iM.JD,oD:0,G:q};e.f(E)};f.CG.lx=function(h,e,$){var Z=h.z.QX(e.x,e.y),c=Math.floor(Z.x),q=Math.floor(Z.y),E=($-1)/2,P=Math.max(0,c-E),a=Math.max(0,q-E),j=Math.min(h.d,c+E+1),L=Math.min(h.v,q+E+1),H=(j-P)*(L-a),_=h.v2(),J=0,S=0,N=0; -for(var c=P;c2){var J;if(h.N)J=h.N.rect;else J=new O(0,0,h.d,h.v);var S=s.m(J.X()*4),N=this.KY,Y=N.R_;if(Y!="Lnr"){L*=2; -a=this.oo}s.Y.Ne(N.Y,S,J,[_*1/L,H*1/L,-H*1/L,_*1/L],a.x,a.y,N.O4,c3.Y.types.indexOf(Y),$.oV,$.XK,null,N.ajG); -var U=Math.round(N.lV*256),g=S.length;if(U!=256)for(var G=0;G>>8;var M=new B(D.E.A); -M.F=f.d7;M.data={e:"fillBMP",He:S,Uz:N.abQ,cJ:this.name};e.f(M)}h.K.sV=null;h.K.wf=[];h.IL=!0;this.kR=!1}; -f.mT.W1=function(h,e){if(h.dz(e))return h;var $=e.x-h.x,Z=e.y-h.y,c=Math.abs($),q=Math.abs(Z);if(c>q)q=c/2>q?0:c; -if(q>c)c=q/2>c?0:q;c=$>0?c:-c;q=Z>0?q:-q;var E=Math.sqrt($*$+Z*Z)/Math.sqrt(c*c+q*q);return new eu(h.x+c*E,h.y+q*E)}; -f.mT.TD=function(h,e,$,Z,c,q,E){if(E==null)E=D.w("canvas","");var P=E.getContext("2d");E.width=e;E.height=$; -var a=new O(0,0,e,$),j=s.m(e*$*4);s.Om(j,e,$,4);var L=Math.sin(Z),H=Math.cos(Z),_=s.m(e*$*4);s.Y.Ne(h,_,a,[H*1/e,L*1/e,-L*1/$,H*1/$],e/2,$/2,!1,0,c,q); -s.p.Jn("norm",_,a,j,a,a,1);var J=P.getImageData(0,0,e,$);s.i7(j,J.data);P.putImageData(J,0,0);return E.toDataURL()}; -f.mT.afS=function(h,e,$){var Z=JSON.parse(JSON.stringify(h));for(var G=0;G>16&255,l:E>>8&255,O:E&255})}}return Z}; -f.EE=function(){f.ar.call(this,[10,7],f.vc,"tools/hand");this.$u=new eu(0,0);this.Lg=null};f.EE.prototype=new f.ar; -f.EE.prototype.a1=function(h,e,$,Z,c){var q=h.e;if(q=="setcls"){$.z.RI=h.RI;$.IL=!0;$.qk=!0}if(q=="scroll"&&!Z.q(p.ys)){if(Z.q(p.tm))f.EE.RY($,$.z.i.x-h.SL.y,$.z.i.y-h.SL.x); -else f.EE.RY($,$.z.i.x-h.SL.x,$.z.i.y-h.SL.y)}};f.EE.prototype.enable=function(h,e,$,Z){this.Lg=null; -var c=new B(D.E.P,!0);c.data={e:D.U.Qd,Hz:"grab"};e.f(c)};f.EE.prototype.yj=function(h,e,$,Z,c){this.Lg=h.z.i.clone(); -this.$u.su(c.x,c.y)};f.EE.prototype.oX=function(h,e,$,Z,c){if(!c.xo)return;if(this.Lg==null)this.yj(h,e,$,Z,c); -f.EE.RY(h,this.Lg.x+(c.x-this.$u.x),this.Lg.y+(c.y-this.$u.y))};f.EE.prototype.f0=function(h,e,$,Z,c){this.Lg=null}; -f.EE.RY=function(h,e,$){var Z=h.z.S;if(h.d*Z=0;G--){var $=h.t[G];if($.add.TySh&&$.rect.B4(e)&&h.k7(G)){var Z=$.ra(2)||$.ra(31); -return Z?-2:G}}return-1};f.dE.prototype.yj=function(h,e,$,Z,c){this.q4=h;this.pq=$;this.caller=e;var q=h.z.QX(c.x,c.y),E=this._J==null; -if(E){var P=f.dE._X(h,q);if(P==-2){alert(e_.get([6,57,0]));return}if(P>=0){if(!cg.BF(h.t[P].add.TySh,$.R0)){alert("Fonts not loaded yet"); -return}this.ez(h,e,$,[P])}else{this.nZ=!0;this.Pi=c;return}}var a=E?-1:gK.De(this._J.add.TySh.Kx),j=this.Xm?this.Xm:this.YJ; -if(j&&j.yj(h,$,Z,q)&&s.FO.en(this._J.add.TySh.$F)||!E&&s.a.DH(q,this._J.rect)>20/h.z.S&&(a==0||a==1)){this.Cw=!0; -this.cT=q;this.aa2=this._J.add.TySh.J.clone();if(this.cn==-1&&this.vZ==-1)this.cn=this.vZ=this.dF(q)}else{if(this.bN==null){alert("Fonts not loaded yet"); -return}this.eO=!0;this.cn=this.vZ=this.dF(q);var L=Date.now();if(L-this.a8I>300)this.Db=0;this.Db++; -this.a8I=L;if(this.Db==2)this.a1R();if(this.Db==3)this.a2i();if(this.Db>1){this.eO=!1}}this.T0();this.Jo(h)}; -f.dE.prototype.ez=function(h,e,$,Z){var c=h.t[Z[0]];this._J=c;this.Gu(e,D.E.P,{e:D.U.UR,F:this.id,Bg:"showactive"}); -this.dv=Z;h.C=Z.slice(0);h.Kw();h.j3=!0;this.M$=this.yS(h,Z);this.jB(c.add.TySh);this.Gf(h,$)};f.dE.prototype.jB=function(h){if(gK.De(h.Kx)!=1)return; -var e=gK.r1(h.Kx);e=new O(0,0,e[2]-e[0],e[3]-e[1]);var $=[e.x,e.y,e.x+e.d,e.y,e.x+e.d,e.y+e.v,e.x,e.y+e.v]; -s.a.J($,h.J,$);this.YJ=new cy($,!1,!1,!1,!0)};f.dE.prototype.a1R=function(){var h=gK.N8(this._J.add.TySh.Kx); -this.cn=this.ye(h,this.cn);this.vZ=this.SF(h,this.cn)};f.dE.prototype.ye=function(h,e){var $=" \t\n,.?!_-+=@#$%^&*'\"(){}[]\\/<>:;|",Z=[]; -for(var G=0;G<$.length;G++)Z.push($.charAt(G));var c=Z.indexOf(h[e])==-1?!0:!1;for(var G=e-1;G>=0;G--)if(Z.indexOf(h.charAt(G))!=-1==c)return G+1; -return 0};f.dE.prototype.SF=function(h,e){var $=" \t\n,.?!_-+=@#$%^&*'\"(){}[]\\/<>:;|",Z=[];for(var G=0; -G<$.length;G++)Z.push($.charAt(G));var c=Z.indexOf(h[e])==-1?!0:!1;for(var G=e+1;G20/h.z.S)P="move";else if(f.dE._X(h,q)>=0)P="text"; -if(P!=this.gg){this.gg=P;this.qd(e)}}var H=this.Pi;if(this.nZ&&Math.min(c.x-H.x,c.y-H.y)>4/h.z.S){this.nZ=!1; -this.pB(h,e,$,Z,c);E=this._J;this.Cw=!0;this.YJ=new cy(null,!1,!1,!1,!0);var _=h.z.QX(this.Pi.x,this.Pi.y); -_.x=Math.round(_.x);_.y=Math.round(_.y);this.YJ.yj(h,$,Z,_)}if(this.Cw){var J=E.add.TySh;if(this.Xm){this.Xm.oX(h,$,Z,q); -var S=s.I.hQ(s.I.w1(this.Xm.k5(),this.aam));J.J=S;this.Gf(h,$);gK.iU(J)}else if(this.YJ){this.YJ.oX(h,$,Z,q); -var N=J.J.clone(),Y=Math.atan2(N.O,N.R);N.rotate(Y);var S=s.I.hQ(s.I.w1(this.YJ.k5())),U=Math.atan2(S.O,S.R); -S.rotate(U);if(!isNaN(S.R)&&S.R*S.rU-S.O*S.Ma!=0){var g=new O(0,0,S.R/N.R,S.rU/N.rU),M=Math.round(g.d),C=Math.round(g.v),y=J.Kx.Curve; -if(y){var i=gK.r1(J.Kx),Q=new i7(M/i[2],0,0,C/i[3],0,0);s.a.J(y.Points,Q,y.Points);gK.iU(J)}gK.IE(J.Kx,[0,0,M,C]); -J.J=s.I.hQ(s.I.w1(this.YJ.k5(),g));this.Gf(h,$);gK.iU(J)}}else{var m=q.x-this.cT.x,n=q.y-this.cT.y;J.J=this.aa2.clone(); -var u=new eu(J.J.zq+m,J.J.nL+n);u=f.fQ.cX(h,u,$);J.J.zq=u.x;J.J.nL=u.y;this.Gf(h,$)}}if(this.eO)this.vZ=this.dF(q); -if(this.Cw||this.eO)this.Jo(h)};f.dE.prototype.pB=function(h,e,$,Z,c){var q=h.U9(),E=q[0],P=q[1],a=h.by(); -a.add.lnsr="rend";var j=h.t.slice(0);a.aq("Text layer "+j.length);this._J=a;var L=h.C.length==0?h.t.length-1:h.C[h.C.length-1],H=L+1; -if(j[L].add.lsct==hJ.sE)H--;this.M$={UW:j.slice(0),HC:h.C.slice(0)};j.splice(H,0,a);h.C=[H];this.cn=this.vZ=0; -h.a4(j);this.M$.T5=j.slice(0);this.M$.A9=h.C.slice(0);this.Gu(e,D.E.P,{e:D.U.UR,F:this.id,Bg:"showactive"}); -var _=h.z.QX(c.x,c.y);a.add.TySh=gK.Zh(_.x,_.y,$.wM);var J=a.add.TySh,S=J.Kx;gK.mM(J,this.$Y);if(c.xo)gK.gq(S,1); -else{gK.gq(S,0);var N=E[P.pop()],Y=N?N.add.vmsk:null;if(Y){Y=Y.clone();var U=Y.b,M,C;for(var G=0;G0&&Z.charAt(this.cn-1)!=c.charAt(this.cn-1))this.cn--}var P=Z.substring(0,this.cn),a=Z.substring(this.vZ,Z.length),j=c.substring(this.cn,c.length-a.length); -gK._5($.Kx,this.cn,this.vZ);gK.Ja($.Kx,this.cn,j);var L=this.JQ(this.pq,$),_=-1,J=Array.from(j);for(var G=0; -G128&&L.By.Font!=null){var S=L.Kr[L.By.Font].Name,N=this.pq.R0.XJ(_,S,L.Kr); -if(S!=N){gK.P0(L,N);H=!0}}if(this.MI!=null&&j==this.MI){var Y=JSON.parse(this.a77);L.By=Y.By;L.Kr=Y.Kr; -H=!0}gK.sq($.Kx,this.cn,this.cn+j.length-1,L);this.cn=this.vZ=P.length+j.length;var U=this.q4,g=this.Gf(U,this.pq,!0); -if(g)this.Jo(U,!0);if(H)this.T0()};f.dE.prototype.a2Z=function(h){if(this._J==null||this.zf)return;if(this._J==null)return; -var e=p,$=0,Z=0,U=!1;if(e.VG(h.code,e.Ns))$=1;if(e.VG(h.code,e.V8))$=-1;if(e.VG(h.code,e.wi))Z=-1;if(e.VG(h.code,e.Xs))Z=1; -var c=h.ctrlKey||h.metaKey,q=e.VG(h.code,p.alF),E=e.VG(h.code,p.aeE);if(e.VG(h.code,p.Gr)&&c){this.Qf(this.q4,this.caller); -return}if(e.VG(h.code,p.EB)){h.preventDefault();var P=this.OV,a=P.value,j=P.selectionStart,L=P.selectionEnd; -P.value=a.substring(0,j)+"\t"+a.substring(L);P.selectionStart=P.selectionEnd=j+1;this.C1(null);return}if((e.VG(h.code,e.ok)||e.VG(h.code,e.Af))&&c){var H=this.cn,_=this.vZ; -if(H>_){var J=H;H=_;_=J}var S=this._J.add.TySh,N=gK.N8(S.Kx);if(H!=_){this.MI=N.slice(H,_);this.a77=JSON.stringify(this.pq.wM)}}var Y=gK.N8(this._J.add.TySh.Kx); -if($!=0||Z!=0||q||E){h.preventDefault();var g=this.cn;if($!=0){if(c&&$==-1)g=this.ye(Y,this.cn-1);else if(c&&$==1)g=this.SF(Y,this.cn); -else{var P=this.OV,a=P.value;g=this.cn+$;if(g!=0&&a.codePointAt(g-1)>65535)g+=$}}else if(Z!=0){var M=this.bN.e_(this.cn); -if(Z==-1&&M.vv==0)g=0;else if(Z==1&&M.vv==this.bN.abW()-1)g=99999999999;else g=this.bN.j2(new eu(M._.x+M._.d/2,0),M.vv+Z)}else if(q){var C=this.cn-1; -while(C>0&&Y.charCodeAt(C)!=10)C--;g=C==0?0:C+1}else if(E){var C=this.cn;while(C1&&$.q(p.ys)){c.H.pop();c.H.pop();c.H.push(this.X_.x,this.X_.y); -h.K.sV=c;h.IL=!0}return}c.Z.push("L");c.H.push(this.X_.x,this.X_.y);this.JH=this.X_;if(this.yO){h.K.sV=c; -h.IL=!0}};f.Sb.prototype.Mm=function(){return this.kk!=null};f.Sb.prototype.ho=function(){return this.kk!=null}; -f.Sb.prototype.WI=function(h,e,$,Z){f.LV.prototype.WI.call(this,h,e,$,Z);if(this.kk&&this.zg>1&&this.cT&&!this.cT.xo&&!Z.q(p.ys))this.PZ(h,$,Z)}; -f.Sb.prototype.IB=function(h,e,$,Z){this.cT=Z;var c=this.kk;if(c==null)return;if(this.zg>1&&$.q(p.ys)){c.Z.push("L"); -c.H.push(this.X_.x,this.X_.y);return}this.PZ(h,e,$)};f.Sb.prototype.PZ=function(h,e,$){this.finish(h,e,$,this.cT); -this.kk=null;h.K.sV=null;h.IL=!0};f.Sb.prototype.getSelection=function(h,e,$,Z){if(this.ag.dz(this.X_)||!this.yO)return null; -return f.LV.UL(this.kk.H)};f.fQ=function(){f.ar.call(this,[10,11],f.OA,"tools/move");this.Gx=new eu(0,0); -this.Xo=new eu(0,0);this.Wo=null;this.Fu=null;this.R1=new eu(0,0);this.GY=null;this.D0=null;this.a3=null; -this.J6=0;this.dj=null;this.fI=[];this.g2=null;this.kR=!1;this.e=0;this.gP=null;this.$w=null;this.RT=null; -this.Ty=!1;this.KY={EV:!1,HO:!1,Q2:!1};this.a1I=!1;this.a2a=!1;this.YJ=null;this.fo=null;this.ahp=null; -var h=[];for(var G=0;G_?[23,3]:[23,4];if(_==0)L=[11,15,0]}else if(q=="gidsFromLayer"){var J=[[],[]];for(var G=0; -G<$.C.length;G++){var S=$.t[$.C[G]].rect;if(S.nK())continue;J[0].push(S.x,S.x+S.d);J[1].push(S.y,S.y+S.v)}L=[11,15,1]; -j=JSON.parse(JSON.stringify($._D));f.fQ.K9(j,J)}if(JSON.stringify(a)==JSON.stringify(j))return;var q=new fW(L,this); -q.data={e:2,$w:a,LS:j};$.eG(q);this.t4(q.data,$)}else if(q=="algn"){var N=h.G;if($==null)return;if($.C.length<2&&!($.N!=null&&N!=3&&N!=7)){alert(e_.get([15,7,5])); -return}var Y=$.N;$.N=null;var S=Y?Y.rect:f.o._A($);this.uJ($,e,Z,c,!1);if(!this.kR)return;var U=this.dj,g={},M=[],C=[],y=[]; -for(var G=0;G")i++;var Q=$.root.fH(i),m=Q; -while(Q.parent!=null){Q=Q.parent;if(U.indexOf(Q.index)!=-1)m=Q}var n=C.indexOf(m.index);if(n==-1){n=C.length; -C.push(m.index)}M[G]=n}var u=[],K=[],F=[];for(var G=0;Gc.y)q.push(a,c.y,a,Z.y); -if(Pc.x)q.push(c.x,j,Z.x,j);if(E128}if(!a&&(!this.Ty&&this.KY.EV||this.Ty&&this.KY.EV&&($.q(p.ai)||h.C.length<2))){var Y=this.aml(h,P,$); -if(!Y){h.C=[];h.mG=null;h.uu=h.Oc=!0;this.e=3;this.gP=new O;this.kR=!0;return}}if($.q(p.ys)&&!a){var _=new B(D.E.A); -_.F=f.S$;_.data={e:o.pA,a7r:!0};e.f(_)}}if(h.vw.length!=0){this.e=4;this.g2=h.Qe[h.vw[0]].rect.clone(); -this.kR=!0;return}this.dj=h.wR(q==null,q,null,!0);for(var G=0;G>2);s.z0(g.cj.KE,Q,3)}else Q=h.N.channel.slice(0); -var m={rect:g.cj.lD.clone(),channel:Q};this.RT=new fW(M?[12,53]:[12,54],this);this.RT.data={e:1,$:h.C[0],cj:g.cj,JL:y,iA:i,HC:h.N,A9:m,rU:new eu(0,0)}; -h.eG(this.RT);h.N=m;h.al=!0}}this.kR=!0;this.g2=f.o._A(h)};f.fQ.prototype.aml=function(h,e,$){var Z=h.root.mI(new eu(Math.floor(e.x),Math.floor(e.y))); -if(Z){if(Z.$.add.vmsk)h.IL=!0;var c=h.t.indexOf(Z.$);if($.q(p.ai)){var q=h.C.indexOf(c);if(q==-1)h.C.push(c); -else if(h.C.length>1)h.C.splice(q,1)}else if(h.C.indexOf(c)==-1){this.E$(h,c)}}return Z!=null};f.fQ.prototype.E$=function(h,e){h.t[e].jw=0; -h.C=[e];h.mG=null;h.Kw();h.j3=!0;h.uu=!0};f.fQ.prototype.oX=function(h,e,$,Z,c){this.Wo=c;var q=h.z.QX(c.x,c.y),_,J; -if(this.Fu&&this.e<2)q=this.Fu.MS(q,Z);if(!this.kR){if($.y7&&$.cz._D){var E=this.bW(h,q),P="default"; -if(E)P=["col-resize","row-resize"][E[0]];else if(this.YJ){var a=this.YJ.vR(q,h.z.S);if(a)P=a}this.qd(P,e)}this.tP(h,q); -return}var j=this.Xo,L=Math.round(q.x-j.x)-this.R1.x,H=Math.round(q.y-j.y)-this.R1.y;if(this.g2){if(this.e==2){q=f.fQ.cX(h,q,$,[!1,h.N?h.N.rect:this.g2,!0])}else{J=this.g2.clone(); -J.offset(this.R1.x+L,this.R1.y+H);_=f.fQ.OM(h,J,$);L+=Math.round(_[0]);H+=Math.round(_[1])}}this.R1.x+=L; -this.R1.y+=H;this.fd(h,L,H,q,null,Z.q(p.ai));this.tP(h,q);if(_)f.fQ.CY(h,J,_)};f.fQ.prototype.bW=function(h,e){e=[e.x,e.y]; -for(var G=0;G<2;G++)for(var $=0;$0){var g=j.add.GdFl;if(g==null)g=j.add.PtFl;if(j.SV()&&!j.m5()&&j.add.vmsk!=null&&s.W.Sm(j.add.vmsk.b)&&j.add.vmsk.Ks==255&&(g==null||g.Algn&&g.Algn.v)){j.rect.offset(P,a)}else j.ZB(h); -var M=h.root.oY(j.TX(h),h,e[G]);q=q.iJ(M);M.offset(-P,-a);q=q.iJ(M);if(j.add.SoCo||j.add.GdFl||j.add.PtFl||es.get(j.add)!=null)q=q.iJ(E); -j.c1()}}h.s(q)};f.fQ.a9e=function(h,e){var $=[];for(var G=0;G>>q),e.x+e.d],[e.y,e.y+(e.v>>>q),e.y+e.v]],$,Z); -return E};f.fQ.Gv=function(h,e,$,Z){if(Z==null)Z=[!0,null,!0];var c=[0,0,1e9,1e9];if(!$.uR)return c; -var q=JSON.parse(JSON.stringify(e));for(var E=0;E<2;E++){var P=1e9,a=e[E],j=0;for(var L=0;L>>1; -if(Math.abs(_.x-e)>>1; -if(Math.abs(_.y-e)>>1),_.y+(N>>>1),_.x+J,_.y+N]; -for(var G=0;G<6;G+=2)if(Math.abs(m[G+Z]-e)>>1,N>>>1,J,N]; -for(var G=0;G<6;G+=2)if(Math.abs(m[G+Z]-e)h.d||e.y<0||e.y>h.v)return null; -var E=new O(0,0,h.d,h.v);if(c==null&&E.dz(Z.rect))q=Z.buffer;else{q=s.m(E.X()*4);if(c==null)s.hX(Z.buffer,Z.rect,q,E); -else f.rz.Hw(c.channel,c.rect,c.color,q,E)}var P=f.oz.ia(q,E,e,null,$),a=s.Hd(P,E),j=s.m(a.X());s.T7(P,E,j,a); -return{rect:a,channel:j}};f.oz.kz=function(h,e,$){var Z=e.d,c=e.v,E=0,P=0,a=0,j=0;h=new Uint32Array(h.buffer); -var q=[],L=$.length;for(var G=0;G>8&255,N>>16&255,N>>>24])}return q}; -f.oz.ia=function(h,e,$,Z,c){h=new Uint32Array(h.buffer);var q=e.d,E=e.v,P=q*E;if(Z==null)Z=f.oz.kz(h,e,[$]); -var a=Math.round($.x-.5-e.x),j=Math.round($.y-.5-e.y),L=j*q+a,H=Date.now(),_=s.m(q*E),J=c[0],S=1/J,N=c[1]&&J>0?255:0; -if(c[2]){var Y=s.m(_.length),U=new Uint32Array(P),g=1;U[0]=a<<16|j;Y[L]=1;while(g>0){var M=U[g-1];g--; -var C=M>>>16,y=M&65535,G=y*q+C,i=f.oz.bi(h[G],Z);if(i>J){var Q=N*(1-Math.max(0,Math.min(1,(i-J)*S))); -_[G]=~~Q}else{_[G]=255;if(y!=E-1&&Y[G+q]==0){U[g++]=C<<16|y+1;Y[G+q]=1}if(y!=0&&Y[G-q]==0){U[g++]=C<<16|y-1; -Y[G-q]=1}if(C!=q-1&&Y[G+1]==0){U[g++]=C+1<<16|y;Y[G+1]=1}if(C!=0&&Y[G-1]==0){U[g++]=C-1<<16|y;Y[G-1]=1}}}}else{for(var G=0; -G0&&(_[G-1]==255||y>0&&_[G-q-1]==255||y0&&_[G-q+1]==255||y0&&_[G-q]==255||y>>8&255,c=h>>>16&255,q=h>>>24&255;if(e[3]==0)return q<5?0:255; -var E=Math.max(Math.abs($-e[0]),Math.max(Math.abs(Z-e[1]),Math.abs(c-e[2])));return q==0?255:E};f.RW=function(h,e){if(e)f.rz.call(this); -else if(h)f.rz.call(this,[10,49],f.YK,"tools/camove");else f.rz.call(this,[10,26],f.mV,"tools/patch"); -this.JH=null;this.kk=null;this.i=null;this.t6=null;this.UT=new eu;this.aA=null;this.ht=null};f.RW.prototype=new f.rz; -f.RW.prototype.yj=function(h,e,$,Z,c){var q=h.z.QX(c.x,c.y);if(h.N&&s.mI(q,h.N.channel,h.N.rect)){var E=new O(0,0,h.d,h.v),P=E.jx(h.N.rect); -if(!h.Jh()||P.nK())return;if(!0){var a=s.m(P.X());s.T7(h.N.channel,h.N.rect,a,P);h.N={channel:a,rect:P}}this.In(h); -this.hB(h);this.t6=q;this.UT=new eu(q.x-h.N.rect.x,q.y-h.N.rect.y);this.ht=s.m(h.N.rect.X()*4);this.ht.fill(255); -if(this.KY.patch==1){var j=h.t[h.C[0]];j.ke(h,h.N,!0);if(j.cj==null)this.t6=null}this.aA=h.N.rect.clone()}else{this.kk={H:[q.x,q.y],Z:["M"]}; -this.JH=q}};f.RW.prototype.oX=function(h,e,$,Z,c){var q=h.z.QX(c.x,c.y);if(this.t6){if(this.KY.patch==1){if(h.vw.length==0){var E=h.t[h.C[0]].cj,P=q.x-this.UT.x,a=q.y-this.UT.y; -f.fQ.IV(h,h.C[0],Math.round(P-E.lD.x),Math.round(a-E.lD.y))}}else this.ZJ(h,q,"clone")}if(this.JH){this.kk.Z.push("L"); -this.kk.H.push(q.x,q.y);this.JH=q;h.K.sV=this.kk;h.IL=!0}};f.RW.prototype.f0=function(h,e,$,Z,c){var q=h.z.QX(c.x,c.y); -if(this.t6){var E=h.N.rect.clone();if(this.id==f.YK){var P=h.t[h.C[0]];P.zJ(h,P.cj);h.N.rect=this.aA.clone(); -var a=s.m(h.N.rect.X()*4);s.Jk(h.N.channel,a,3);this.JY(h,"sheal",a,h.N.rect,h.N.rect);h.N.rect=E;E=E.iJ(this.aA)}this.ZJ(h,q,"heal"); -this.finish(h,E,null,null,!0);h.s(E);this.t6=null}if(this.JH){var j=f.LV.z6(this.KY.setop,Z.q(p.ai),Z.q(p.ys)),L=new B(D.E.Kz,!0); -if(this.kk.H.length<=4)L.data=f.LV.ss();else L.data=f.LV.UL(this.kk.H,j);e.f(L);this.JH=null;h.K.sV=null; -h.IL=!0}};f.RW.prototype.cP=function(){return this.i};f.RW.prototype.cd=function(h,e,$,Z,c){f.rz.prototype.cd.call(this,h,e,$,Z,c); -this.qd(c,Z)};f.RW.prototype.qd=function(h,e){var $="auto;";if(e!=null&&e.q(p.ai)&&!e.q(p.ys)||this.KY.setop=="union")$="copy"; -var Z=new B(D.E.P,!0);Z.data={e:D.U.Qd,Hz:$};if(this.caller)this.caller.f(Z)};f.RW.prototype.ZJ=function(h,e,$){var Z=new eu(Math.round(this.t6.x-e.x),Math.round(this.t6.y-e.y)); -if(this.KY.patch==1)Z.su(-Z.x,-Z.y);this.i=Z;this.JY(h,$,this.ht,h.N.rect,h.N.rect);this.s(h,h.N.rect)}; -f.uS=function(){f.RW.call(this,!0);this.KY.patch=1};f.uS.prototype=new f.RW(!0,!0);f.Pc=function(){f.rz.call(this,[10,13],f.acY,"tools/pbucket")}; -f.Pc.prototype=new f.rz;f.Pc.prototype.enable=function(h,e,$,Z){var c=new B(D.E.P,!0);c.data={e:D.U.Qd,Hz:"default"}; -e.f(c)};f.Pc.prototype.if=function(h,e){};f.Pc.prototype.f0=function(h,e,$,Z,c){if(this.xX(Z,e,c))return; -if(!h.Jh())return;var q=h.z.QX(c.x,c.y),E=f.oz.N_(h,q,this.KY.wconf);if(E==null)return;var P=s.m(E.rect.X()*4); -s.Ut(P,($.oV&255)<<16|($.oV>>8&255)<<8|($.oV>>16&255)<<0);s.Jk(E.channel,P,3);this.In(h);this.JY(h,"draw",P,E.rect,E.rect); -this.s(h,E.rect);this.finish(h,E.rect)};f.D$=function(){f.LV.call(this,[10,14],f.a99,"tools/plasso"); -this.eu="crosshair";this.ZL=[];this.Fj=null;this.kk=null;this.a1g=0};f.D$.prototype=new f.LV;f.D$.prototype.disable=function(h,e,$,Z){this.df(h)}; -f.D$.prototype.Aw=function(h,e,$,Z){this.ZL=[p.PA,p.iC]};f.D$.prototype.Jr=function(h){return this.ZL.indexOf(h)!=-1}; -f.D$.prototype.s4=function(h){return this.kk!=null};f.D$.prototype.ho=function(){return this.kk!=null}; -f.D$.prototype.Mm=function(){return this.kk!=null};f.D$.prototype.AT=function(h,e,$,Z){if(this.kk==null)return; -var c=this.kk,q=c.H,E=q.length-2,P=this.X_;if(this.zg>1&&$.q(p.ys)&&Z.xo){q.push(0,0);c.Z.push("L"); -E+=2}else if($.q(p.ai))P=f.mT.W1(new eu(q[E-2],q[E-1]),P);q[E]=P.x;q[E+1]=P.y;h.K.sV=c;h.IL=!0};f.D$.prototype.IB=function(h,e,$,Z){var c=Date.now(); -if(this.kk==null)this.kk={H:[this.X_.x,this.X_.y,this.X_.x,this.X_.y],Z:["M","L"]};else{this.AT(h,e,$,Z); -if(c-this.a1g<250||eu.nj(this.X_,new eu(this.kk.H[0],this.kk.H[1]))<5*D.M()/h.z.S){this.Fj=this.kk;this.finish(h,e,$,Z); -this.df(h);return}this.kk.Z.push("L");this.kk.H.push(this.X_.x,this.X_.y)}this.a1g=c;h.K.sV=this.kk}; -f.D$.prototype.df=function(h){this.kk=null;this.ZL=[];if(h!=null){h.K.sV=null;h.IL=!0}};f.D$.prototype.WI=function(h,e,$,Z){f.LV.prototype.WI.call(this,h,e,$,Z); -if(Z.q(p.fp)&&this.kk==null&&this.Fj&&h.N!=null){var c=new B(D.E.A);c.F=f.C_;c.data={e:"h_stepbck"}; -e.f(c);this.Aw(h,$,Z,null);this.kk=this.Fj;return}if(this.kk==null)return;if(Z.q(p.PA)||Z.q(p.iC)){this.kk.H.pop(); -this.kk.H.pop();this.kk.Z.pop();this.AT(h,$,Z)}if(Z.q(p.Gr)){if(this.kk.H.length>4){this.Fj=this.kk; -this.finish(h,$,Z)}this.kk=null}if(Z.q(p.fp)){this.kk=null}h.K.sV=this.kk;h.IL=!0};f.D$.prototype.getSelection=function(h,e,$,Z){return f.LV.UL(this.kk.H)}; -f.WY=function(){f.LV.call(this,[10,10],f.ain,"tools/mlasso");this.eu="crosshair";this.ZL=[];this.b=[]; -this.sA=[];this.KF=[];this.vn=null;this.qH=null;this.Y1=null;this.J6=0;this.Nf=0};f.WY.prototype=new f.LV; -f.WY.prototype.disable=function(h,e,$,Z){this.clear(h)};f.WY.prototype.s4=function(h){return this.b.length!=0}; -f.WY.prototype.Mm=function(){return this.b.length!=0};f.WY.prototype.Jr=function(h){return this.ZL.indexOf(h)!=-1}; -f.WY.prototype.Aw=function(h,e,$,Z){this.ZL=[p.PA,p.iC];var c=this.yf(this.ag,h);if(this.b.length!=0&&(eu.nj(c,this.b[0])<4*D.M()/h.z.S||Date.now()-this.J6<300)){this.o7(h,this.b[0]); -this.finish(h,e,$);this.clear(h);return}this.J6=Date.now();if(this.b.length!=0)c=this.ap(c,h);else{var q=h.d,E=h.v,P=s.m(q*E),a=h.v2(),j=q*E*4; -for(var G=0;G>>2]=~~(.5+s.jv(a[G],a[G+1],a[G+2])*(a[G+3]*(1/255)));this.vn=s.h_.a5R(P,q,E); -this.Y1=new Uint16Array(P.length)}this.o7(h,c);this.Nf=$.q(p.ys)?1:0;this.VS(h)};f.WY.prototype.o7=function(h,e){var $=this.b; -this.sA[$.length]=this.KF.length;if($.length!=0){s.h_.$W(this.qH,e.y*h.d+e.x);var Z=this.QA(h,e);Z.reverse(); -var c=f.WY.Wu(h,Z);this.KF=this.KF.concat(c)}$.push(e);this.AS(h)};f.WY.prototype.AS=function(h){var e=this.b[this.b.length-1],$=e.y*h.d+e.x; -this.qH=s.h_.ahI(this.vn.sf,this.vn.a9,$);this.Y1.fill(0)};f.WY.prototype.yf=function(h,e){return new eu(Math.floor(Math.max(0,Math.min(e.d-1,h.x))),Math.floor(Math.max(0,Math.min(e.v-1,h.y))))}; -f.WY.prototype.clear=function(h){this.KF=[];this.b=[];this.sA=[];this.vn=null;this.qH=null;this.Y1=null; -if(h!=null){h.K.sV=null;h.K.wf=[];h.IL=!0}this.ZL=[]};f.WY.prototype.AT=function(h,e,$,Z){var c=this.b,q=c.length; -if(q==0)return;var E=this.ap(this.yf(this.X_,h),h),P=this.QA(h,E);for(var G=0;G30&&eu.nj(j,c[q-1])>20){this.o7(h,j);return}this.Y1[a]++}if(this.Nf==1&&Z.xo)this.o7(h,E); -this.VS(h)};f.WY.prototype.VS=function(h){var e=this.b;if(e.length!=0){var $=this.ap(this.yf(this.X_,h),h),Z=this.QA(h,$); -Z.reverse();var c=f.WY.Wu(h,Z),q=this.KF.concat(c),E=h.K.sV={H:q,Z:["M"]};for(var G=2;G5e3){console.log(q); -throw"e"}}return q};f.WY.Wu=function(h,e){var $=[],Z=h.d;for(var G=0;G=$||L<0||L>=Z)continue; -s.h_.$W(this.qH,L*$+j);if(this.qH.iH[L*$+j]$||e*c*1/2>Z)c*=1/2;if(h*c*2/3>$||e*c*2/3>Z)c*=1/2;else if(h*c>$||e*c>Z)c*=2/3; -return c};f.LZ.fZ=function(h,e){var $=f.LZ.Z3(h);if(e&&$==0)return h;if(!e&&$==f.LZ.Ak.length-1)return h; -return f.LZ.Ak[e?$-1:$+1]};f.LZ.Z3=function(h){var e=0;while(f.LZ.Ak[e]>h)e++;return e};f.LZ.y0=function(h,e,$,Z){var c=h.q4; -if(Z==0||Z==null){Z=f.LZ.fZ(h.S,$);if(Z==h.S)return}var q=h.QX(e.x,e.y);if(c.d*Z<=h.qM.d&&c.v*Z<=h.qM.v){h.i.su(0,0); -h.S=Z}else{var E=h.EO(),P=h.S/Z;E.translate(-q.x,-q.y);E.scale(P,P);E.translate(q.x,q.y);h.xz(E)}};f.LZ.prototype.a1=function(h,e,$,Z,c){if(h.e=="pzoom"){if(typeof h.G=="string")return; -h={e:"zoom",S:h.G/100}}var q=0,E=!1,P=null;if(h.e=="adapt"){var a=0;if(h.G=="pixel")a=1;if(h.G=="fitscr"){var a=0,j=$.z.qM.d,L=$.z.qM.v; -a=Math.min((j-14)/$.d,(L-14)/$.v)}P=new eu(Math.round($.z.qM.d/2),Math.round($.z.qM.v/2));q=a;f.LZ.y0($.z,P,E,q); -$.qk=!0}if(h.e.startsWith("multi")){function H(n){var u=n[0].x-n[1].x,K=n[0].y-n[1].y;return Math.sqrt(u*u+K*K)}function _(n){return new eu((n[0].x+n[1].x)/2,(n[0].y+n[1].y)/2)}var J=h.Hn,S=_(J); -if(h.e=="multidown"){this.rm=[J,$.z.S,$.z.QX(S.x,S.y)]}else{q=this.rm[1]*H(J)/H(this.rm[0]);if(q>=1)q=Math.min(32,Math.round(q)); -else{var N=0,Y=1e9,U=f.LZ.Ak;for(var G=0;Gi){E=!1; -this.XX=Math.min(this.XX-i,i-1)}else return;f.LZ.y0($.z,P,E,q);$.qk=!0}if(h.e=="zoom"){P=h.Wo?h.Wo:new eu(Math.round($.z.qM.d/2),Math.round($.z.qM.v/2)); -if(h.S!=null)q=h.S;else E=h.L1;f.LZ.y0($.z,P,E,q);$.qk=!0}if(h.e=="mskView"){var Q=$.t[$.C[0]],m=Q.jw==3?Q.wV($).r:Q.kV(); -if(h.G==0){$.z.RI=[1,1,1];m.rV=!1}if(h.G==1){$.z.RI=[1,1,1];m.rV=!0}if(h.G==2){$.z.RI=[0,0,0];m.rV=!0}for(var G=0; -G<$.Qe.length;G++)$.Qe[G].rV=!1;$.vw=[];$.IL=!0}};f.LZ.prototype.WI=function(h,e,$,Z){if(this.vy!=Z.q(p.ys)){this.vy=Z.q(p.ys); -var c={e:D.U.UR,F:this.id,vy:this.vy},q=new B(D.E.P,!0);q.data=c;e.f(q);this.HM(e,Z)}};f.LZ.prototype.HM=function(h,e){var $=new B(D.E.P,!0),Z=this.tw(e); -$.data={e:D.U.Qd,Hz:Z?"zoom-in":"zoom-out"};h.f($)};f.LZ.prototype.cd=function(h,e,$,Z){this.L1=h.L1; -this.HM(e,Z)};f.LZ.prototype.tw=function(h){var e=this.L1;if(h.q(p.P2)&&h.q(p.tm))e=!0;if(this.vy)e=!e; -return e};f.LZ.ot=function(h,e){if(h.q(p.MY)||h.q(p.aao)){e.F=f.dc;e.data={e:"zoom",L1:!0}}if(h.q(p.Lj)){e.F=f.dc; -e.data={e:"zoom",L1:!1}}if(h.q(p.ik)){e.F=f.dc;e.data={e:"adapt",G:"fitscr"}}if(h.q(p.s7)){e.F=f.dc; -e.data={e:"adapt",G:"pixel"}}};f.XT=function(h,e,$){f.ar.call(this,h,e,$);this.j_=null;this.D0=null; -this.a3=null;this.aeh=0};f.XT.prototype=new f.ar;f.XT.prototype.enable=function(h,e,$,Z,c){this.D0=$; -var q=new B(D.E.P,!0);q.data={e:D.U.Qd,Hz:"default"};e.f(q)};f.XT.prototype.d1=function(h,e,$,Z,c){if(h.U9()[0].length==0)return; -var q=new B(D.E.P,!0);q.data={e:D.U.UR,F:this.id,BQ:c,im:h,pq:$};e.f(q)};f.XT.prototype.Bz=function(h,e){var $=new B(D.E.P,!0); -$.data={e:D.U.Ov,Av:iM.GN};if(!e.y7)h.f($);$.data={e:D.U.Ov,Av:iM.ly};if(!e.cz.DZ)h.f($)};f.XT.prototype.yY=function(h,e,$,Z){if($.$P!=this.id)return; -if(h.C.length==0)return;var c=h.t[h.C[0]],q=c.add.vmsk,E=c.add.vstk,P=f.XT.d4(h,h.C[0]);this.j_=h;this.a3=e; -if(c.SV()&&q!=null&&(JSON.stringify(E)!=JSON.stringify($.eY)||JSON.stringify(P)!=JSON.stringify($.gj))){this.aeh=Date.now(); -var a=new B(D.E.P,!0);a.data={e:D.U.Ov,Av:iM.EL,G:P};e.f(a);a.data={e:D.U.Ov,Av:iM.H9,G:E};e.f(a)}}; -f.XT.prototype.if=function(h,e){if(this.j_==null)return;if(e==iM.uG||e==iM.EL||e==iM.H9){if(Date.now()-this.aeh<50)return; -var $=e==iM.EL,Z=this.j_,c=$?h.gj:h.eY,q=[];for(var G=0;G>>16&255,l:h>>>8&255,O:h>>>0&255}); -this.a3.f(e)}};f.XT.prototype.a1=function(h,e,$,Z,c){this.a3=e;if(h.e=="newfill"){if(h.wx==0){var q=new B(D.E.P,!0); -q.data={e:D.U.tr,yq:"colorpicker",Nr:c.oV,Nb:this.a4W.bind(this)};e.f(q)}}else if(h.e=="pathedit"){var E=h.oD,P="",a=$.DZ.slice(0),j=$.fV.slice(0),L=$.DZ.slice(0),H=$.fV.slice(0); -if(E=="rnm"){var _=-1-h.NS,J=a[_],S=c9.Bd(h.name,J.add);if(_!=0)L[_]=S;else{H=[L.length];L.push(S);L[0]=c9.Bd("Work Path")}P="Rename"}else if(E=="new"){L.push(c9.Bd("Path "+a.length)); -H=[L.length-1];P="New"}else if(E=="del"){if(H.length==0)return;H.sort(function(n,z){return n-z});if(H[0]==0){L[0]=c9.Bd(a[0].name); -H=H.slice(1)}var N=0;while(H.length!=0){L.splice(H[0]-N,1);H=H.slice(1);N++}P="Delete"}else if(E=="fromsel"){var Y=L[0]=c9.Bd("Work Path"); -H=[0];if($.N==null)return;var U=$.N.channel.slice(0);for(var G=0;G128?2:1;var g=$.N.rect.clone(); -g.P5(1,1);var M=s.m(g.X());s.T7(U,$.N.rect,M,g);var C=gx.YD(M,g.d,g.v,Math.round(g.X()*5e-4)),y=gx.U9(C),i=new i7(1,0,0,1,-1+$.N.rect.x,-1+$.N.rect.y); -for(var G=0;G0){var q=["SoCo","GdFl","PtFl"][c-1];for(var G=0;G<3;G++)delete h.add[["SoCo","GdFl","PtFl"][G]]; -h.add[q]=e.mQ}};f.vA=function(h,e,$,Z){f.XT.call(this,h,e,$);this.KY={tmode:1,shape:bS.X3(),pshape:0,binop:0,crad:0,irad:40,length:4,sides:5,width:5,tolr:5,tsiz:300,cstr:{A2:0}}; -this.a2p=Z;this.dO=null;this.Kc=null;this.y6=null};f.vA.prototype=new f.XT;f.vA.prototype.s4=function(h){return h.xo&&this.id!=f.zl}; -f.vA.prototype.enable=function(h,e,$,Z,c){this.D0=$;var q=new B(D.E.P,!0);q.data={e:D.U.Qd,Hz:"crosshair"}; -e.f(q)};f.vA.prototype.Or=function(h,e,$,Z){};f.vA.prototype.yj=function(h,e,$,Z,c){var q=this.KY.tmode; -if(q!=2)this.Bz(e,$);if(q==2&&!h.Jh())return;var E=h.z.QX(c.x,c.y);E=f.fQ.cX(h,E,$);this.y6=[E.x,E.y]; -this.dO=E;this.Kc=new eu(0,0)};f.vA.prototype.Zc=function(h,e,$){var Z=[this.dO.clone(),e.clone()];if(this.a2p)Z=f.vA.Px(Z[0],Z[1],$,!0,this.KY.cstr); -if(h)h.z.og=new O(Z[0].x,Z[0].y,Z[1].x-Z[0].x,Z[1].y-Z[0].y);return this.Or(Z[0],Z[1],$.q(p.ai),this.y6)}; -f.vA.prototype.ON=function(h,e,$){var Z=h.z.QX(e.x,e.y),c=this.KY.cstr;if(c.A2==2){var q=new O(Z.x-c.x,Z.y-c.y,c.x,c.y),E=f.fQ.OM(h,q,$); -Z.x+=E[0];Z.y+=E[1];f.fQ.CY(h,q,E)}else Z=f.fQ.cX(h,Z,$);return Z};f.vA.prototype.oX=function(h,e,$,Z,c){if(this.dO==null)return; -var q=this.y6,E=q.length,P=c?this.ON(h,c,$):new eu(q[E-2],q[E-1]);if(Z.q(p.P2))this.dO=P.MR(this.Kc); -else this.Kc=P.MR(this.dO);q.push(P.x,P.y);if(this.KY.shape==null)this.KY.shape=$.bY[0];var a=this.Zc(h,P,Z)[0],j=s.a.$o(a); -h.K.sV=j;if(this.id!=f.zl&&this.id!=f.AL&&this.id!=f.hx)f.ar.Ia(c.x+10,c.y-10,h.z.og,h,$);h.IL=!0};f.vA.prototype.af2=function(h,e,$,Z){var c=h[4].clone(); -if(Z){c.x-=e/2;c.y-=$/2}var q=this.Or(c,new eu(c.x+e,c.y+$),!1,this.y6);this.Yh(h[0],h[1],h[2],q)};f.vA.prototype.Yh=function(h,e,$,Z){var c=new B(D.E.Kz,!0); -c.data=f.vA.X4(Z[1],$);e.f(c);if(Z[1].v.classID=="customShape"&&Z[1].v.Nm.v.startsWith("--")){var q=h.U9(),E=q[0],P=q[1],a=E[P.pop()],j=a.add.vmsk,L=a.add.vogk,H=j.clone(); -H.b=Z[0];this.Fg(h,a.NS,H,L)}};f.vA.prototype.f0=function(h,e,$,Z,c){if(this.dO==null)return;var q=this.ON(h,c,$),E=this.KY.binop,P=this.KY.tmode,a=this.y6,j=a.length; -if(this.id==f.zl&&j<=4){}else if(j<=4){q.x=Math.round(q.x);q.y=Math.round(q.y);var L=new B(D.E.P);L.data={e:D.U.tr,yq:"createshape",anU:this.af2.bind(this),a0h:this.name,ads:[h,e,$,Z,q]}; -e.f(L)}else if(j!=2){var H=this.Zc(h,q,Z),_=H[0];if(P==0&&_.length>2){_[2].aN=[1,2,3,0][E];var J=h.U9(!0),S=J[0],N=J[1],Y=S[N.pop()],U=Y.add.vmsk,g=Y.add.vogk,M=U.clone(),C=U.clone(),y=JSON.stringify(g); -C.b=C.b.concat(_.slice(2));C.C=[s.W.H4(C.b)-1];var i=s.as.oy(H[1]);g.push(i?i:s.as.qm());this.Fg(h,Y.NS,C,g); -this.$h(h,this.name,Y.NS,M,C,null,y,JSON.stringify(g))}else if(P==1){this.Yh(h,e,$,H)}else if(P==2){var C=new o.MM; -C.b=C.b.concat(_.slice(2));var Q=C.kV(),m=s.m(Q.rect.X()*4);s.Ut(m,($.oV&255)<<16|($.oV>>8&255)<<8|($.oV>>16&255)<<0); -s.Jk(Q.channel,m,3);var n=new B(D.E.A,!0);n.F=f.XP;n.data={e:"draw",Fp:{buffer:m,rect:Q.rect.clone()},cJ:this.name}; -e.f(n)}}this.dO=null;h.K.sV=null;h.K.yu=null;h.K.Yr=[];h.z.og=null;h.IL=!0};f.vA.prototype.cd=function(h,e,$,Z,c){for(var $ in h)this.KY[$]=h[$]}; -f.vA.Px=function(h,e,$,Z,c){var q=h.x,E=h.y,P=e.x,a=e.y;if(c&&c.A2==2){if(Z){P=Math.round(P);a=Math.round(a)}q=P-c.x; -E=a-c.y}else{var j=0;if(c&&c.A2==1)j=c.y/c.x;else if($&&$.q(p.ai))j=1;if(j!=0){if(Z){if(qq?q+_:q-_;a=a>E?E+_*j:E-_*j}if($&&$.q(p.ys)){q-=P-q;E-=a-E}}var h=new eu(q,E),e=new eu(P,a); -if(Z)f.vA.ajF(h,e);return[h,e]};f.vA.ajF=function(h,e){if(h.x>e.x){var $=h.x;h.x=e.x;e.x=$}if(h.y>e.y){var $=h.y; -h.y=e.y;e.y=$}h.x=Math.floor(h.x);h.y=Math.floor(h.y);e.x=Math.ceil(e.x);e.y=Math.ceil(e.y)};f.vA.a1w=function(){return{classID:"Mk",null:{t:"obj ",v:[{t:"Clss",v:{classID:"contentLayer"}}]},Usng:{t:"Objc",v:{classID:"contentLayer",Type:{t:"Objc",v:{}}}}}}; -f.vA.GC=function(h,e){var $=f.vA.a1w();if(e==null)e=JSON.parse(JSON.stringify(c3.nf[h]));bn.Od.Ww(e,$.Usng.v.Type.v,h); -return{Lw:"make",TJ:$}};f.vA.X4=function(h,e){var $=e.gj,Z=JSON.parse(JSON.stringify(e.eY));if($.cp==0)Z.fillEnabled.v=!1; -var c=f.vA.GC(Math.max(0,$.cp-1),$.mQ);c.TJ.Usng.v.Shp=h;c.TJ.Usng.v.strokeStyle={t:"Objc",v:Z};return c}; -f.fr=function(){f.XT.call(this,[10,29],f.iE,"tools/pen");this.t$=null;this.wb=null;this.XY=1;this.abN=0; -this.dp=null;this.kp=!1;this.Uw=!1;this.Im=!1};f.fr.prototype=new f.XT;f.fr.prototype.s4=function(h){return this.t$!=null}; -f.fr.prototype.WI=function(h,e,$,Z){f.XT.prototype.WI.call(this,h,e,$,Z);if(!Z.q(p.ys))this.Im=!1};f.fr.prototype.yj=function(h,e,$,Z,c){this.Bz(e,$); -var q=h.z.QX(c.x,c.y),J,S;q.x=Math.round(q.x);q.y=Math.round(q.y);var E=f.fQ.cX(h,q,$),P=h.U9(this.XY==0),a=P[0],j=P[1],L=a[j.pop()],H=L?L.add.vmsk:null,_=4*D.M()/h.z.S; -if(H)J=s.W.mI(H.b,q,!0,_);var N=Z.q(p.ys);if(this.XY==1&&(H==null||H.pc.length==0&&J.NS==-1)){var Y=new B(D.E.Kz,!0),U=s.as.Ho("customShape",[0,0,1,1],null,null,null,"--"); -Y.data=f.vA.X4(U,$);e.f(Y);P=h.U9(!0);a=P[0];j=P[1];L=a[j.pop()];H=L.add.vmsk;H.b=H.b.slice(0,2)}var g=L.add.vogk; -this.t$=H.clone();this.wb=JSON.stringify(g);var M=H.b,C=s.W.H4(M);S=s.W.b6(H.b,new O(q.x-_,q.y-_,_*2,_*2),H.pc); -J=s.W.mI(H.b,q,!0,_);var y=S[0].length+S[1].length+S[2].length;if(J.NS!=-1&&S[0].length==0){var i=s.W.jb(M,J.NS); -while(M[i].length<=J.s3){J.s3-=M[i].length;i+=M[i].length+1}M[i].length++;M.splice(i+2+J.s3,0,{type:4,LD:E.clone(),D:E.clone(),EH:E.clone()}); -H.pc=[i+2+J.s3]}else if(y!=0&&N){var Q=0;for(var G=0;G<3;G++)if(S[G].length!=0){Q=S[G][0];this.Uw=G==1; -break}if(S[0].length!=0){var m=H.b.length-1,n=H.b[Q];n.EH=n.D.clone();var u=n.type>=3?3:0;if(Q!=m){n.LD=n.D.clone(); -n.type=u+1;this.Im=!0}else n.type=u+2}H.pc=[Q]}else if(S[0].length==1&&M[S[0][0]-1]&&M[S[0][0]-1].aN==null){var Q=S[0][0],i=s.W.LC(M,Q); -i=s.W.jb(M,i);var K=i+M[i].length;if(Q!=K){M[i].length--;M.splice(Q,1);K--}H.pc=[K]}else{var F=0;if(H.pc.length!=1){H.C=[C]; -M.push({type:3,length:1,aN:[1,2,3,0][this.abN],pg:0,Bs:0,W7:0});F=M.length;g.push(s.as.qm())}else{var b=H.pc[0],d=s.W.LC(M,b),i=s.W.jb(M,d); -b=i+M[i].length;if(eu.nj(q,M[i+1].D)<_){M[i].type=0;H.pc=[i+1];this.dp=E;this.kp=!0;this.Fg(h,L.NS,H,g); -h.IL=!0;return}M[i].length++;F=b+1;if(b==i+1&&M[i].length!=2)F=i+1}if(Z.q(p.ai)&&M[F-1]&&M[F-1].D)E=f.mT.W1(M[F-1].D,E); -M.splice(F,0,{type:4,LD:E.clone(),D:E.clone(),EH:E.clone()});H.pc=[F];this.dp=E}this.Fg(h,L.NS,H,g); -h.IL=!0};f.fr.prototype.oX=function(h,e,$,Z,c){if(this.t$==null)return;var q=h.z.QX(c.x,c.y),E=f.fQ.cX(h,q,$),P=h.U9(this.XY==0),a=P[0],j=P[1],L=a[j.pop()],H=L.add.vmsk,_=H.b,J=_[H.pc[0]]; -if(Z.q(p.P2)){if(Z.q(p.ai))E=f.mT.W1(this.dp,E);var S=J.D.MR(J.EH),N=J.LD.MR(J.D);J.EH=E;J.D=E.add(S); -J.LD=J.D.add(N)}else{if(Z.q(p.ai))E=f.mT.W1(J.D,E);if(this.Uw){var Y=J.LD;J.LD=J.EH;J.EH=Y}if(this.kp){var U=eu.nj(J.D,E),g=U==0?0:eu.nj(J.D,J.EH)/U; -J.EH.x=J.D.x+g*(E.x-J.D.x);J.EH.y=J.D.y+g*(E.y-J.D.y)}else J.EH=E;if(Z.q(p.ys)&&!this.Im)J.type=5;else{J.type=4; -J.LD=J.D.add(J.D.MR(E))}this.dp=E;if(this.Uw){var Y=J.LD;J.LD=J.EH;J.EH=Y}}this.Fg(h,L.NS,H,L.add.vogk); -h.IL=!0};f.fr.prototype.f0=function(h,e,$,Z,c){if(this.t$==null)return;var q=h.U9(this.XY==0),E=q[0],P=q[1],a=E[P.pop()],j=a.add.vmsk,L=a.add.vogk; -if(this.kp){j.pc=[];this.Fg(h,a.NS,j,a.add.vogk)}this.$h(h,this.kp?"Close Path":"Add Anchor Point",a.NS,this.t$,j.clone(),null,this.wb,JSON.stringify(L)); -this.kp=!1;this.Uw=!1;this.Im=!1;this.t$=null};f.fr.prototype.cd=function(h,e,$,Z,c){this.XY=h.tmode; -this.abN=h.binop};f.WU=function(){f.vA.call(this,[10,30],f.zl,"tools/fpen",!1)};f.WU.prototype=new f.vA; -f.WU.prototype.Or=function(h,e,$,Z){return[s.W.SX(Z,this.KY.tolr),s.as.Ho("customShape",[0,0,1,1],null,null,null,"--")]}; -f.f9=function(){f.XT.call(this,[10,27],f.hO,"tools/pselect");this.Y8=null;this._9=!1;this.kk=null;this.t$=null; -this._o=null;this.wb=null;this.mf=null;this.g2=null;this.WN=null;this.Fu=null};f.f9.prototype=new f.XT; -f.f9.prototype.s4=function(h){return h.xo};f.f9.prototype.yj=function(h,e,$,Z,c){var q=h.z.QX(c.x,c.y),E=h.U9(),P=E[0],a=E[1],j,L; -for(var G=0;G0}else{var Y=this.g2.clone(),U=Y.x,g=Y.y;Y.offset(q.x-this.Y8.x,q.y-this.Y8.y); -Y.x=Math.round(Y.x);Y.y=Math.round(Y.y);var M=f.fQ.OM(h,Y,$),C=new i7(1,0,0,1,Y.x-U+M[0],Y.y-g+M[1]); -s.W.wD(P.b,C,P.C);s.as.J(a,s.I.dW(C),P.C);f.fQ.CY(h,Y,M)}this.Fg(h,E.NS,P,a)}else{var y=this.Y8;h.K.sV=s.a.Kf(new O(y.x,y.y,q.x-y.x,q.y-y.y)); -h.IL=!0}};f.f9.prototype.f0=function(h,e,$,Z,c){if(this.Y8==null)return;var q=h.z.QX(c.x,c.y),E=this.kk,P=E?E.add.vmsk:null; -if(this._9){var a=JSON.stringify(E.add.vogk);if(!this.Y8.dz(q))this.$h(h,"Move Paths",E.NS,this.t$,P,null,this.wb,a); -if(h!=null&&h.K.yu){h.K.yu=null;h.IL=!0}}else{if(P){var j=this.Y8,L=new O(j.x,j.y,q.x-j.x,q.y-j.y),H=s.W.a0E(P.b,L); -if(Z.q(p.ai)){for(var G=0;Gj+L)q[J]+=H}this.Ff(Z,c);Z.pc=[]}this.Fg(this.j_,this.kk.NS,Z,c); -if(h=="cancel")this.df()};f.Vp.prototype.disable=function(h,e,$,Z){this.jQ(h)};f.Vp.prototype.yj=function(h,e,$,Z,c){this.jQ(h); -var q=h.z.QX(c.x,c.y),H,_,J;this.ES=q.clone();var E=h.U9(),P=E[0],a=E[1];if(a.length==0)return;var j=4*D.M()/h.z.S,L=new O(q.x-j,q.y-j,j*2,j*2); -for(var S=0;S>>1);h.K.Op.push(u.x,u.y); -h.IL=!0}}}};f.Vp.prototype.jQ=function(h){if(h&&h.K.Op.length!=0){h.K.Op=[];h.K.TZ=[];h.IL=!0}};f.Vp.prototype.f0=function(h,e,$,Z,c){var q=h.z.QX(c.x,c.y),E=this.kk,P=E?E.add.vmsk:null,a=E?E.add.vogk:null; -if(this.Ij!=-1){if(Date.now()-this.J6<300){var j=P.b[this.Ij],L=this.E6,H=null;if(L==0){var _=j.LD.dz(j.D),J=j.EH.dz(j.D); -if(!_&&!J){H="Anchor Type";if(j.type==1||j.type==4)j.type++;else{j.type--;j.EH=j.D.add(j.D.MR(j.LD))}}else{H="Add Handles"; -if(_&&J){j.LD.x-=30;j.EH.x+=30}else if(_)j.LD=j.D.add(j.D.MR(j.EH));else if(J)j.EH=j.D.add(j.D.MR(j.LD))}}else{H="Remove Handle"; -if(L==1)j.LD.tE(j.D);else j.EH.tE(j.D)}this.Ff(P,a);this.Fg(h,E.NS,P,a);this.$h(h,H,E.NS,this.t$,P,null,this.wb,JSON.stringify(a))}else if(!this.ES.dz(q)){this.$h(h,"Drag Anchors",E.NS,this.t$,P,null,this.wb,JSON.stringify(a))}this.J6=Date.now()}else if(this.Y8!=null){var S=this.Y8,N=new O(S.x,S.y,q.x-S.x,q.y-S.y); -if(N.d<0)N.x+=N.d;if(N.v<0)N.y+=N.v;N.d=Math.abs(N.d);N.v=Math.abs(N.v);var Y=s.W.b6(P.b,N);P.pc=Y[0].concat(Z.q(p.ai)?P.pc:[]); -h.K.sV=null}this.df();h.IL=!0};f.Vp.prototype.df=function(){this.kk=null;this.t$=null;this.Y8=null;this.Ij=this.E6=-1; -this.Fu=null};f.Vp.prototype.Ff=function(h,e){for(var G=0;G=N){J.C.splice(G,1); -G--}J.pc=[];this.Fg(h,P.NS,J,j);this.$h(h,"Delete Anchors",P.NS,_,J.clone(),!0,L,JSON.stringify(j))}}; -f.Vp.prototype.$h=function(h,e,$,Z,c,q,E,P){var a=h.fX();if(q&&a!=null&&a.F==this&&a.data.a6D&&a.data.vq==$&&JSON.stringify(a.data.uQ.pc)==JSON.stringify(Z.pc)){a.data.S_=c; -a.data.hu=P}else{var a=new fW(e,this);a.data={vq:$,uQ:Z,S_:c,a6D:q,acQ:E,hu:P};h.eG(a)}};f.Rect=function(){f.vA.call(this,[10,32],f.lO,"tools/rect",!0)}; -f.Rect.prototype=new f.vA;f.Rect.prototype.Or=function(h,e,$){var Z=this.KY.crad,c=e.x-h.x,q=e.y-h.y; -return[s.W.d5.Rect(h.x,h.y,c,q,Z),s.as.Ho("Rctn",[h.x,h.y,e.x,e.y],[Z,Z,Z,Z])]};f.eX=function(){f.vA.call(this,[10,33],f.Jy,"tools/ellipse",!0)}; -f.eX.prototype=new f.vA;f.eX.prototype.Or=function(h,e,$){var Z=e.x-h.x,c=e.y-h.y;return[s.W.d5.eX(h.x,h.y,Z,c),s.as.Ho("Elps",[h.x,h.y,e.x,e.y])]}; -f.Cr=function(){f.vA.call(this,[10,34],f.AL,"tools/pshape",!1)};f.Cr.prototype=new f.vA;f.Cr.prototype.Or=function(h,e,$){var Z=this.KY.pshape,c=this.KY.crad,q=this.KY.irad/100,E=this.KY.sides,P=this.KY.width,a=this.KY.tsiz,j=this.KY.length,Y; -e=e.clone();if($){if(Math.abs(e.x-h.x)2)Z.push(-1-h.fV[G]); -var c=[],q=h.z.RI;if(q[0]+q[1]+q[2]==3)if($!=null||Z.length==0||h.mG!=null&&h.mG.length!=0)c=h.wR(e,$,null,!0); -c=c.concat(Z);for(var G=0;G=0&&!E.rect.nK()){this.LG=1;this.HC=h.N; -this.JL=E.cj;this.iA=!1;if(!E.Ae(h,h.N)){this.iA=!0;E.ke(h,h.N,!1)}this.sr={Yu:E.cj.KE,_:E.cj.lD}}else{this.LG=0; -this.bc=f.o.xT(h,this.t,null,$);for(var G=0;G=0)Z=h.N.rect.clone();else for(var G=0;G=0){E=h.t[q];P=E.iR(h,$,Z)}else if(q>-1e3){E=h.DZ[-1-q]; -P=[2]}else{c.push([null,null,null,null,null,null,null,h.Qe[-1e3-q].clone()]);continue}var a=[];if(P.indexOf(0)!=-1){var j={v$:[E.buffer.slice(0),E.rect.clone()]}; -a.push(j);if(E.fi()){var L=E.wV(h);j.a76=L.buffer.slice(0);j.aki=L.rect.clone()}}else a.push(null);if(P.indexOf(1)!=-1)a.push(E.kV().clone()); -else a.push(null);if(P.indexOf(2)!=-1)a.push({Qw:E.add.vmsk.clone(),oF:E.add.vstk?JSON.parse(JSON.stringify(E.add.vstk)):null,mQ:E.add.vstk?f.XT.d4(h,q):null,as:E.add.vogk?JSON.parse(JSON.stringify(E.add.vogk)):null}); -else a.push(null);if(E.add.TySh&&a[0]){gK._Z(E.add.TySh);a.push(E.add.TySh.J.clone())}else a.push(null); -if(E.add.SoLd&&a[0])a.push(JSON.parse(JSON.stringify(E.add.SoLd)));else a.push(null);if(P.indexOf(3)!=-1)a.push(E.wV(h).r.clone()); -else a.push(null);if(E.add.lmfx)a.push(JSON.stringify(E.add.lmfx));else a.push(null);c.push(a)}return c}; -f.o.U5=function(h,e,$){for(var G=0;G1; -if(m)Q=!1;var n=Q?i.C:null,u=m?i.pc:null;if(y){var K=s.FO.a8(E);s.I.apply(H,K);s.W.aaW(i.b,K,n,u)}else s.W.a6C(i.b,H,n,u); -if(N.add.vstk&&P){N.add.vstk.strokeStyleLineWidth.v.val=Y[2].oF.strokeStyleLineWidth.v.val*J;var F=Y[2].mQ; -if(F&&F.cp==3){F=JSON.parse(JSON.stringify(F));var b=F.mQ.phase.v;F.mQ.Scl.v.val=Math.round(F.mQ.Scl.v.val*J); -b.Hrzn.v=Math.round(b.Hrzn.v*J);b.Vrtc.v=Math.round(b.Vrtc.v*J);f.XT.Sf(N,F)}}if(N.add.vogk){N.add.vogk=JSON.parse(JSON.stringify(Y[2].as)); -if(y||m)s.as.afV(N.add.vogk);else s.as.J(N.add.vogk,H,$.length>1?[]:i.C,P)}i.gE*=J;N.add.vmsk=i;if(N.add.vogk)s.as.qh(N.add.vogk,N.add.vmsk)}if(Y[3]){var d=Y[3].clone(); -d.concat(_);N.add.TySh.J=d;gK.iU(N.add.TySh);var W=new br(N.add.TySh.Kx,e.R0),A=cg.Fx(W,N.add.TySh); -N.rect=A._;N.buffer=A.Hl}if(Y[4]){var z=N.add.SoLd,T=f.o.Pu(Y[4].nonAffineTransform);s.I.apply(H,T); -var R=s.a.pl(T);if(cy.Po(T)){if(E){var I=s.a.Be(s.FO.a8(Y[4].warp.v)),r=s.I.w1(T,I),x=s.a.Be(s.FO.a8(E)); -T=[x.x,x.y,x.x+x.d,x.y,x.x+x.d,x.y+x.v,x.x,x.y+x.v];s.I.apply(r,T);z.warp.v=E}var X=s.I.w1(T),l=T;if(!s.I.t0(X)){X[6]=X[7]=0; -l=[0,0,1,0,1,1,0,1];s.I.apply(X,l)}z.Trnf=f.o.h8(l);z.nonAffineTransform=f.o.h8(T);N.l3(h,c==0)}}if(Y[5])f.o.$l(h,Y[5],N.wV(h).r,c,H,E); -if(Y[7])f.o.$l(h,Y[7],N,c,H,E);if(0<=S){if(c!=0)N.V9();N.ZB(h);N.s()}}h.s()};f.o.D8=function(h,e,$,Z,c,q){if($==null)$=!1; -return f.o.Pf(h,$?0:1,s.I.dW(e),null,Z,c,q,$)};f.o.Pf=function(h,e,$,Z,c,q,E,P){if(P==null)P=!1;if(P&&E)throw"e"; -var a={},_=0,J=.3;if(Z&&!s.FO.en(Z)){var j=s.FO.a8(Z);s.I.apply($,j);a.rect=s.a.pl(j);a.buffer=s.m(a.rect.X()*4); -s.nS.drawImage(j,h[0],h[1].d,h[1].v,a.buffer,a.rect,e==0);return a}s.gt(h);var L=h[0],H=h[1],S=H.X()*f.o.rD(s.I.hQ($)); -if(P&&S>4e6)J=S>8e6?2.2:1.2;while(_+316&&s.I.t0($)&&f.o.rD(s.I.hQ($))1e5||a.rect.v>1e5||a.rect.X()>3e4*3e4)return null; -var y=a.rect.X()*4;if(c&&c.byteLength>=y&&y>=c.byteLength>>2){a.buffer=new Uint8Array(c)}else{a.buffer=s.m(y)}s.I.drawImage(M,L,H.d,H.v,a.buffer,a.rect,e==0,q,P); -if(e==2&&a.buffer){var i=a.rect.d,Q=a.rect.v,m;m=[0,-1,0,-1,16,-1,0,-1,0];m=s.V4.er(m);var n=a.buffer.slice(0); -s.V4.mz(n,a.buffer,i,Q,m,255,!1,!0)}if(a.buffer)return a};f.o.$l=function(h,e,$,Z,c,q){if(e.color==255)s.vy(e.channel); -var E=e.rect,P=s.m(E.X()*4);s.Jk(e.channel,P,3);var a=f.o.Pf([P,E],Z,c,q);if(a){$.rect=a.rect;$.channel=s.m(a.rect.X()); -s.z0(a.buffer,$.channel,3);$.w4=!0}if(e.color==255){s.vy(e.channel);if(a)s.vy($.channel)}};f.o.Pu=function(h){var e=[],$=h.v.length; -for(var G=0;G<$;G++)e.push(h.v[G].v);return e};f.o.h8=function(h){var e={t:"VlLs",v:[]},$=h.length;for(var G=0; -G<$;G++)e.v.push({t:"doub",v:h[G]});return e};f.o.prototype.acD=function(){var h=s.a.Be(s.FO.a8(this.qC.uP())),e=s.I.w1(this.YJ.k5(),this.Y$),$=[h.x,h.y,h.x+h.d,h.y,h.x+h.d,h.y+h.v,h.x,h.y+h.v]; -s.I.apply(e,$);this.YJ.ph($);this.Y$=h};f.o.prototype.aF=function(h,e,$,Z){var c=s.I.w1(this.YJ.k5(),this.Y$); -c=s.I.n_(c,s.I.vy(this.yZ));var q=this.qC?this.qC.uP():null;if(this.LG==0){var E=this.Xl=s.I.hQ(c);if(this.id==f.or){var P=this.bc[0][0],a=P.v$,j=a[1],L=~~(j.d*Math.max(0,E.R)),H=~~(j.v*Math.max(0,E.rU)),_=new O(Math.round(E.R*j.x+E.zq),Math.round(E.rU*j.y+E.nL),L,H),J=s.$p.J(this.fw,_),S=h.t[this.t[0]]; -S.buffer=J;S.rect=_;S.s();h.s()}else f.o.u8(h,e,this.t,this.bc,$,c,q,null,null,Z)}else if(this.LG==1){var N=h.t[this.t[0]],j=this.sr._; -if(N.jw<=0){var Y=this.sr.Yu,U=this.HC;if(q&&!s.FO.en(q)&&!U.rect.dz(j)){var J=s.m(U.rect.X()*4);s.hX(Y,j,J,U.rect); -Y=J;j=U.rect}var g=f.o.Pf([Y,j],$,c,q);if(g){N.cj.KE=g.buffer;N.cj.lD=g.rect;var M=s.m(g.rect.X());s.z0(N.cj.KE,M,3); -h.N={channel:M,rect:N.cj.lD.clone()}}}else{var C=s.m(j.X()*4);s.Jk(this.sr.Yu,C,3);var g=f.o.Pf([C,j],$,c,q); -if(g){N.cj.KE=s.m(g.rect.X());s.z0(g.buffer,N.cj.KE,3);N.cj.lD=g.rect}this.k9(h,$,c,q)}N.NP(h,0,0,h.N); -if($!=0){N.V9();s.V9(h.N)}h.al=!0;h.s()}else if(this.LG==2)this.k9(h,$,c,q)};f.o.prototype.k9=function(h,e,$,Z){var c=this.HC.rect,q=s.m(c.X()*4); -s.Jk(this.HC.channel,q,3);var E=f.o.Pf([q,c],e,$,Z),P=s.m(E.rect.X());s.z0(E.buffer,P,3);h.N={channel:P,rect:E.rect}; -h.al=!0};f.o.prototype.disable=function(h,e,$,Z){if(this.YJ)this.Qf(h,e,null,!0)};f.pD=function(){f.o.call(this,[10,16],f.Fk,"tools/transform")}; -f.pD.prototype=new f.o;f.ML=function(){f.o.call(this,[7,10],f.MG,"tools/transform")};f.ML.prototype=new f.o; -f.fv=function(){f.o.call(this,[10,48],f.or,"tools/transform")};f.fv.prototype=new f.o;f.kC=function(h,e,$){f.ar.call(this,[10,46],f.Bi,"tools/transform"); -this.RG=[1,1,2,!0];this.S4="rigidTransform";this.r$=null;this.a03=null;this.CX=null;this.FN=null;this.cT=null; -this.R2=null;this.ya=[]};f.kC.prototype=new f.ar;f.kC.prototype.Mm=function(){return!0};f.kC.nl=function(h){if(h==null)return!1; -if(h.C.length!=1)return!1;var e=h.t[h.C[0]];return e.add.SoLd||h.Jh(!1)};f.kC.prototype.NO=function(h,e){return f.kC.nl(h)}; -f.kC.prototype.enable=function(h,e,$,Z,c,q,E){this.a03=q.HX;var P=q.HX,a,N=null;if(P){var j=h.t[P.$]; -if(j.add.SoLd.filterFX!=null){var L=j.add.SoLd.filterFX.v.filterFXList.v;if(L[P.index])a=JSON.parse(JSON.stringify(L[P.index].v.Fltr.v))}}var H=a==null,j=h.t[h.C[0]],_=j.buffer,J=j.rect,S=j.add.SoLd; -if(S){var Y=S.nonAffineTransform.v;N=[];for(var G=0;G<4;G++)N.push(Y[G*2].v,Y[G*2+1].v);if(H)this.p0("edit",e); -var U=j.wV(h);_=U.buffer;J=U.rect}this.r$={buffer:_.slice(0),rect:J.clone(),a75:N};if(H)a=f.kC.UY(this.r$,this.RG); -this.CX=a;this.FN=f.kC.gM(this.CX,this.RG);this.W3();this.tP(h);if(H)this.rv(e);var g=new B(D.E.P,!0); -g.data={e:D.U.UR,F:this.id,Av:this.RG};e.f(g);g.data={e:D.U.Qd,Hz:"default"};e.f(g)};f.kC.prototype.disable=function(h,e,$,Z){if(this.FN)this.Qf(h,e,!0)}; -f.kC.prototype.W3=function(h){var e=this.FN;this.ya=[];for(var G=0;G>>1)+Z.C[c]);h.K.Op=h.K.Op.concat(Z.WF);if(this.RG[3])s.a.concat(h.K.sV,s.a.am3(Z.Iv,Z.MW))}h.IL=!0}; -f.kC.UY=function(h,e,$){var Z=h.buffer,c=h.rect,q=h.a75,E=dA.X3("rigidTransform");if(q)for(var G=0;G<4; -G++){E["PuX"+G].v=q[G*2];E["PuY"+G].v=q[G*2+1]}var P=E.puppetShapeList.v,a=s.M0.aoK(Z,c.d,c.v,e[1],e[2]),j=[]; -for(var L=0;L>>1)+g.C[M]); -for(var M=0;M=a[2]||a[1]>=a[3]){h.splice(G,1); -G--;continue}f.Al.Ju(h,G,a)}};f.Al.eO=function(h,e){var $=h.E1;for(var G=0;G1e6,E=new B(D.E.P,!0);E.data={e:D.U.Lt,$J:q};if(c)$.f(E);setTimeout(function(){var P=f.Fw.xL(h); -for(var a in P)e[a]=P[a];var E=new B(D.E.P,!0);E.data={e:D.U.WZ,$J:q};if(c)$.f(E)},30)}};f.Fw.Fo=function(h){var e=h.C[0],$=h.t[e],Z=$.rect,c=Z.d,q=Z.v,E=c*q,P=$.buffer; -return[e,Z.x,Z.y,c,q,P[0],P[1],P[2],P[3]].join(",")};f.Fw.xL=function(h){var e=h.C[0],$=h.t[e],Z=$.rect,c=Z.d,q=Z.v,E=c*q,P=$.buffer,a=Date.now(),j=s.m(E); -j.fill(128);var L=s.G0.Mk(P,c,q);console.log(Date.now()-a);var H={key:f.Fw.Fo(h),bx:P,rect:Z.clone(),EN:c,CD:q,wO:12,a9I:!1,C7:j,_W:L,N:s.m(E),J3:null,XO:null,Cm:null}; -f.Fw.Gi(H);return H};f.Fw.Gi=function(h,e){var $=h.EN,Z=h.CD,c=0,q=0,E=Date.now(),P=h.J3!=null&&s.G0.ai6(h._W.MW,h.J3.MW,h.J3.el,h.C7); -c=Date.now()-E;E=Date.now();if(!P&&!h.a9I){h.J3=s.G0.SX(h._W,$,Z,h.C7,h.wO);if(!s.G0.ai6(h._W.MW,h.J3.MW,h.J3.el,h.C7)){h.a9I=!0; -console.log("conflict")}h.XO=s.G0.ahC(h.bx,$,Z,h.J3.MW,h.J3.el);h.Cm=[h.XO[0].slice(0),[]];q=Date.now()-E; -E=Date.now()}var E=Date.now();if(e){h.Cm[0].set(h.XO[0]);var a=h.XO[1],j=h.Cm[1];for(var L=0;L=1)hO=(_.x-l)/hZ;if(Math.abs(gj)>=1)d3=(_.y-hH)/gj;if(c)hO=d3=(hO+d3)/2;var v=new i7; -v.translate(-l,-hH);v.scale(hO,d3);v.translate(l,hH);n=u.slice(0);s.a.J(n,v,n)}else{if(this._l()){_.x=Math.round(_.x); -_.y=Math.round(_.y)}var hl=[0,1,2,5,8,7,6,3],ht=hl[(hl.indexOf(j)+4)%8],ga=[];for(var G=0;G<3;G++)for(var F=0; -F<3;F++)ga.push(new eu(F/2,G/2));var M=this.CE,eB=this._C(_,u),bP=this._C(a,u),ek=q&&(this.sR==4||this.sR==9)?this._C(M,u):ga[ht],b_=new i7,fz=new i7,hO=(eB.x-ek.x)/(bP.x-ek.x); -if(hO==0)hO=1e-4;var d3=(eB.y-ek.y)/(bP.y-ek.y);if(d3==0)d3=1e-4;if(this.akl){hO=Math.max(hO,0);d3=Math.max(d3,0)}if(j==0||j==2||j==6||j==8){if(c||this.a0A)b_.scale(hO,hO); -else b_.scale(hO,d3)}if(j==1||j==3||j==5||j==7){var ca=this.a0A;if(j==1||j==7)b_.scale(ca?d3:1,d3);else b_.scale(hO,ca?hO:1); -if(this.afJ&&E){if(j==1||j==7)fz.Ma=(eB.x-ek.x)/(eB.y-ek.y);else fz.O=(eB.y-ek.y)/(eB.x-ek.x)}}var v=new i7; -v.translate(-ek.x,-ek.y);v.concat(b_);v.concat(fz);v.translate(ek.x,ek.y);n=[0,0,1,0,1,1,0,1];s.a.J(n,v,n); -var R=s.I.w1(u);s.I.apply(R,n)}if(cy.Po(n))this.v9=n}this.Fs(h,e);if(J)f.fQ.CY(h,S,J)};cy.jM=function(h,e,$,Z,c,q){var E=$-h,P=Z-e,a=c-h,j=q-e,L=E*E+P*P,H=a*E+j*P,_=H/L,J=h+_*E,S=e+_*P,N=c-J,Y=q-S; -return[J,S,Math.sqrt(N*N+Y*Y)]};cy.prototype._l=function(){var h=this.v9;return Math.abs(h[1]-h[3])<1e-6&&Math.abs(h[2]-h[4])<1e-6||Math.abs(h[0]-h[2])<1e-6&&Math.abs(h[3]-h[5])<1e-6}; -cy.Po=function(h){return s.a.iy(h)||s.a.iy([h[6],h[7],h[4],h[5],h[2],h[3],h[0],h[1]])};cy.prototype.f0=function(h,e,$,Z){this.BR=-1; -this.yR=null;h.K.yu=null;h.K.Yr=[];h.IL=!0};cy.prototype.WI=function(h,e,$){var Z=$.cy();if(Z.x||Z.y){var c=new i7(1,0,0,1,Z.x,Z.y); -s.a.J(this.v9,c,this.v9);this.Fs(h,e);return!0}return!1};cy.prototype.Cs=function(h){if(h==null)h=this.v9; -var e=h[6]-h[0],$=h[7]-h[1],Z=h[4]-h[2],c=h[5]-h[3],q=[h[0],h[1],h[2],h[3],h[0]+e/2,h[1]+$/2,h[2]+Z/2,h[3]+c/2,h[6],h[7],h[4],h[5]],E=[]; -for(var G=0;G<3;G++){var P=G*4,a=q[P+0],j=q[P+1],L=q[P+2],H=q[P+3];E.push(new eu(a,j));E.push(new eu(a+(L-a)/2,j+(H-j)/2)); -E.push(new eu(L,H))}return E};cy.prototype.Fs=function(h,e,$){if($==null)$=!1;var Z=this.Cs(),c=Z[0],q=Z[2],E=Z[6],P=Z[8]; -h.K.sV={Z:[],H:[]};h.K.sV.Z.push("M","L","L","L","Z");h.K.sV.H.push(c.x,c.y,q.x,q.y,P.x,P.y,E.x,E.y); -if(this.a3R){var a=q.MR(c),j=E.MR(c),L=P.MR(q),H=P.MR(E);for(var G=0;G<3;G++){h.K.sV.Z.push("M","L","M","L"); -var _=(G+1)*.25;h.K.sV.H.push(c.x+a.x*_,c.y+a.y*_,E.x+H.x*_,E.y+H.y*_);h.K.sV.H.push(c.x+j.x*_,c.y+j.y*_,q.x+L.x*_,q.y+L.y*_)}}h.z.og=new O(0,0,eu.nj(Z[0],Z[2]),eu.nj(Z[0],Z[6])); -if(this.BR!=-1&&this.BR<9&&this.yR){var J=h.z.ab(this.yR.x,this.yR.y);f.ar.Ia(J.x+10,J.y-10,h.z.og,h,e)}if(!$){h.K.wf=[]; -for(var G=0;Gh.index;G--)this.fG($);if(h.index>$.Nd)for(var G=$.Nd; -G1)$.C.splice(I,1);$.C.sort(function(a,bC){return a-bC});S.TJ.selectionModifier={t:"enum",v:{selectionModifierType:"addToSelection"}}; -R=E}else if(Z.q(p.ai)&&!Z.q(p.ys)&&h.Fy>0){q=h.Fy==1?o.HW:h.Fy==2?o.ps:o.l0;escape=!0}else if((Z.q(p.ai)||h.a3Y==1)&&$.C.length>0){var r=Math.min(E,$.C[0]),x=Math.max(E,$.C[$.C.length-1]); -$.C=[];for(var G=r;G<=x;G++)if($.t[G].add.lsct!=hJ.RS)$.C.push(G);S.TJ.selectionModifier={t:"enum",v:{selectionModifierType:"addToSelectionContinuous"}}; -R=E}else{R=E;var A=$.t[E];if(A&&A.vG()&&h.akP)A.add.lsct=hJ.sE;else if($.C.length==1&&$.C[0]==E&&h.Fy==A.jw){return}$.C=[E]; -$.Kw()}if(R!=null&&R<$.t.length){S.TJ.null={t:"obj ",v:[{t:"name",v:{classID:"Lyr",val:$.t[R].getName()}}]},this.track(S)}if(!escape){if($.C.length==1){var X=$.C[0]; -for(var G=0;G<$.t.length;G++){if(G==X)continue;var C=$.t[G];C.jw=0;C.Hy=!1}var P=$.t[X];if(h.Fy==2){P.Hy=!P.Hy; -$.fV=[]}else if(P){P.jw=h.Fy<=0?0:h.Fy;if(h.Fy==1||h.Fy==3){var l=h.Fy==3?P.wV($).r:P.kV();l.rV=!1}}}else for(var G=0; -G<$.t.length;G++){var C=$.t[G];C.jw=0;C.Hy=!1}$.mG=null;$.qk=!0}}if(q==o.HW||q==o.l0){var hH=q==o.HW,l=hH?P.kV():P.wV($).r; -if(l==null)return;var a=new fW(l.isEnabled?hH?[6,15]:[6,42]:hH?[6,14]:[6,41],this);a.data={e:q,$:E}; -$.eG(a);this.t4(a.data,$)}if(q==o.ps){var l=P.add.vmsk;if(l==null)return;var a=new fW(l.isEnabled?[6,17]:[6,16],this); -a.data={e:q,$:E};$.eG(a);this.t4(a.data,$)}if(q==o.PR){var hZ=P.add.lsct==hJ.sE?hJ.Y7:hJ.sE;if(Z.q(p.tm)){var gj=$.root.fH($.t.indexOf(P)).parent; -for(var G=0;G")gO++;this.track({Lw:"delete",TJ:{classID:"Dlt",null:bw.NQ("Lyr",!0)}}); -var a=new fW([6,31],this);a.data={e:o.wj,UW:$.t.slice(0),T5:dt,Ah:$.C.slice(0),p3:[gO]};$.eG(a);this.t4(a.data,$)}if(q==o.dq){var W=h.a9j?h.a9j:$.C,cX=0,dM=!1; -if(W.length==0)return;if(W.length==1&&$.t[W[0]].MX==0){alert(e_.get([15,7,5]));return}var bh=[];for(var G=0; -G<$.t.length;G++){var bi=$.t[G].MX;bh.push(bi);cX=Math.max(cX,bi)}var ik=-1,iW=-1;for(var G=0;G0){if(ds.add.lnk2==null)ds.add.lnk2=[]; -for(var G=0;G7;for(var dO=0;dO=0;G--)if(iz[G]>=dt.length)iz.splice(G,1);var a=new fW([6,40],this);a.data={e:o.wj,UW:$.t.slice(0),T5:dt,Ah:$.C.slice(0),p3:iz}; -$.eG(a);this.t4(a.data,$)}if(q==o.f_){var bK=$.C.length;if(bK<2){alert("Select two or more layers."); -return}if(!$.Nv())return;var hO=$.t[$.C[0]].clone(),dt=[];for(var G=0;G<$.t.length;G++)if($.C.indexOf(G)==-1)dt.push($.t[G]); -dt.splice($.C[0],0,hO);for(var G=1;G2e6){alert("Blended areas are too large."); -return}for(var G=1;G1&&bj!=-1){console.log("separating an open path into a new layer");A=A.clone();fd=A.add.vmsk; -b6=fd.b;var L=b6[bj].length,hz=A.clone();hz.add.lyid=$.ne();fd.b=b6.slice(0,2).concat(b6.slice(bj,bj+L+1)); -fd.C=[];A.ZB($);A.s();var bl=hz.add.vmsk.b;hz.add.vmsk.b=bl.slice(0,bj).concat(bl.slice(bj+L+1,bl.length)); -hz.add.vmsk.C=[];hz.ZB($);dt[G]=A;dt.splice(G+1,0,hz);for(var dO=0;dOG)ag[dO]++; -var dK=ag.indexOf(G);if(dK!=-1){ag.splice(dK+1,0,G+1)}}}}if(dt.length!=$.t.length){var a=new fW("Splitting open paths",this); -a.data={e:o.wj,UW:$.t.slice(0),T5:dt,Ah:$.C.slice(0),p3:ag};$.eG(a);this.t4(a.data,$)}}if(q==o.Vk){this.a1({e:o.YP},e,$,Z,c); -var eU=$.C.slice(0),hm=$.t.slice(0),ej=$.wR();if(ej.length==0)return;$.u7(ej,!1,h.gw);var a=new fW([6,36,0],this); -a.data={e:o.wj,UW:hm,T5:$.t.slice(),Ah:eU,p3:$.C.slice(0)};$.eG(a);this.t4(a.data,$)}if(q==o.iG){var b_=P.add.SoLd; -if(b_==null)return;var d2=b_.Idnt.v,cd=$.ig(d2);cd.v2(!1);var fN=cd.bH[0],hB=cd.bH[1];if(s.AC(fN)){alert("The smart object contains transparency."); -return}var gQ=cE.fy("jpg").pT([[fN.buffer]],hB.d,hB.v,[90]);this.a1({e:o.XI,q4:$,data:new Uint8Array(gQ),id:d2,gw:"jpg"},e,$,Z,c); -console.log($.add);return}if(q==o.XI){var cb=h.q4.ig(h.id),h$=cb.clone();h$.raw=h.data;if(h.gw){h$.B6=" "; -h$.cp=" ";h$.mD=h$.mD+"."+h.gw}else{h$.B6="8BIM";h$.cp="8BPB";h$.mD=h$.mD+".psd"}h$.v2(!1);cb.v2(!1); -var a=new fW([6,36,1],this);a.data={e:o.XI,id:h.id,U0:cb,Wd:h$};h.q4.eG(a);this.t4(a.data,h.q4)}if(q==o.G6){var a=new fW([6,36,4],this); -a.data={e:q,$:E,rs:P.add.SoLd.Impr.v.classID,El:h.El};$.eG(a);this.t4(a.data,$)}if(q==o.V6){var fK,b1; -if(h.mo){fK=h.q4;b1=h.mo}else{h.q4.Nq();h.q4.pL();h.q4.s();h.q4.cm();h.q4.v2();fK=cE.fy("PSD").pT(h.q4,0,0,[!0,!0]); -b1=h.q4.name}if(!(fK instanceof ArrayBuffer))throw"e";fK=new Uint8Array(fK);var I=h.xU!=null?h.xU:$.C[$.C.length-1]+1,d4=$.L4(fK,b1,0,0,!0),dt=$.t.slice(0); -dt.splice(I,0,d4);var a=new fW([6,36,2],this);a.data={e:o.wj,UW:$.t.slice(),T5:dt,Ah:$.C.slice(0),p3:[dt.indexOf(d4)]}; -$.eG(a);this.t4(a.data,$)}if(q==o.tG&&h.oD=="merge"){var cr=[],gJ=$.root.children,c0=0;for(var G=0;G=2)cr=bo;if(cr.length<2){alert("At least two animation folders needed (whose layers start with \"_a_\").",3500); -return}var eF=[];for(var G=0;G1){var gL=parseInt(ay.pop());if(!isNaN(gL)&&gL!=0)e$=gL}f2[0].push(A);f2[1].push(e$);f2[2]+=e$}}hF.sort(function(a,bC){return bC[2]-a[2]}); -var bO=hF[0],cl=bO[2];for(var io=1;io>>1;if(ae<17){var M=iE.length-1;if(G==0)iE[1]+=ae; -else if(G==iE.length-1)iE[M-1]+=ae;else{iE[G-1]+=fX;iE[G+1]+=ae-fX}iE.splice(G,1);G--}}var dv=[],a6=new O(0,0,$.d,$.v); -for(var G=0;G<$.t.length;G++){dv[G]=$.t[G].o6();$.t[G].QL(!1)}var fU=$.C.slice(0);$.C=cr;var hG=$.wR(); -hG.sort(function(a,bC){return a-bC});var dt=[];for(var G=0;G<$.t.length;G++){if(hG.indexOf(G)==-1)dt.push($.t[G])}hF.sort(function(a,bC){return a[3]-bC[3]}); -function bX(gU,fD){var G=0,fm=0;while(fm+gU[G]<=fD){fm+=gU[G];G++}return G}c0=0;dt.splice(hG[0],0,$.d_()); -for(var dT=0;dT.5}else if(h.target!=null){a1=h.target; -fr=!0;$.j3=!0}else{var ex=h.oD;fr=ex>1;if(ex==0){a1=$.t.length-1}if(ex==1){a1=h6[h6.length-1]+1;var L=$.dk(a1); -if(L.indexOf(a2)==-1)a1+=L.length-1}if(ex==2){a1=h6[0]-1;var L=$.dk(a1);if(L.indexOf(a2)==-1)a1-=L.length-1}if(ex==3){a1=0}if(a1<0||a1>$.t.length-1)return; -$.j3=!0}if(h6.indexOf(a1)!=-1&&!i8)return;var cq=$.t[a1],dt=[];if(i8)dt=$.t.slice(0);else for(var G=0; -G<$.t.length;G++)if(h6.indexOf(G)==-1)dt.push($.t[G]);var aJ=dt.indexOf(cq);if(q==o.T9&&cq.vG()&&cq.add.lsct==hJ.Y7&&h.yM>.8)aJ-=$.dk(a1).length-1; -var fG=[],gW=i8?$.xP(h8?null:a2):null;for(var G=0;G0){var gP=a.data.TJ={classID:"setd",null:bw.NQ("contentLayer",!0),T:{t:"Objc",v:{}}},bv=["SoCo","GdFl","PtFl"][ac.cp-1]; -bn.Od.Ww(ac.mQ,gP.T.v,ac.cp-1);this.track({Lw:"set",TJ:gP})}}if(h.gU&&ac.cp==3)$.x0(hn.lg(ac.mQ.Ptrn.v,c.Zl)); -if(!h.gU){var bE=ac.strokeStyleContent.v;if(bE.classID==c3.oF.$v[2])$.x0(hn.lg(bE.Ptrn.v,c.Zl))}this.t4(a.data,$)}}; -bn.Od.Ww=function(h,e,$){var Z=[c3.O7,c3.bv,c3.Tk][$];if(e.classID==null)e.classID=["solidColorLayer","gradientLayer","patternLayer"][$]; -for(var G=0;G=0?e.t[U]:e.DZ[-1-U];P.add.vogk=JSON.parse(Y[G+1]);s.as.qh(P.add.vogk,P.add.vmsk); -if(U>=0)P.ZB(e)}e.s()}if($==o.rb){Z.add.artb=JSON.parse(h.aiG);e.s()}if($==o.I7){e.N=h.HC;e.Qe=h.gb.slice(0); -e.vw=h.AU.slice(0);e.IL=e.qk=!0}if($==o.dq){var g=h.a9a;for(var G=0;G=0?e.t[U]:e.DZ[-1-U];P.add.vogk=JSON.parse(Y[G+1]);s.as.qh(P.add.vogk,P.add.vmsk); -if(U>=0)P.ZB(e)}e.s()}if($==o.rb){Z.add.artb=JSON.parse(h.o1);e.s()}if($==o.I7){e.N=h.A9;e.Qe=h.z4.slice(0); -e.vw=h.vK.slice(0);e.IL=e.qk=!0}if($==o.dq){var g=h.adU;for(var G=0;G>S;if((N&1)==1)N--; -else N++;J.capturedInfo.v=(N<255)j=255-Math.round((E-255)*255/(E-c))}return[Math.max(c,0),Math.min(E,255),a,j,100]};bn.wk.prototype.a1=function(h,e,$,Z,c){var q=h.e; -if(q=="auto"){var E=h.IG,P=bn.wk.getData($);for(var G=0;G>>2,E=s.CN($),P=.001*c; -if(Z==0||Z==2)q=[[0,255,0,255,100],bn.wk.cB(E[1],P,c,Z==2),bn.wk.cB(E[2],P,c,Z==2),bn.wk.cB(E[3],P,c,Z==2)]; -if(Z==1)q=[bn.wk.cB(E[0],P*.33,c,!1),[0,255,0,255,100],[0,255,0,255,100],[0,255,0,255,100]];var a=dA.X3("levl"); -for(var G=0;G<4;G++)fH.u1(a,G,q[G]);return a};bn.wk.prototype.Vd=function(h,e,$,Z){if(this.QB==null){if(h.S4=="aply")$.t[$.C[0]].extend(new O(0,0,$.d,$.v)); -this.QB=bn.wk.getData($,null,h.S4=="fade"?$.fX().data:null);if(h.S4=="aply")this.QB[0].bj=$.v2()}if(h.e=="edit"){this.N2=[h.S4,h.o8]; -var c=this.QB[0],q=bn.wk.akw(h.S4,h.o8,c.Yu),E=es.J8(h.S4,q);if(h.S4=="fade"||h.S4=="aply")E=h.o8;if(E!=null){for(var G=0; -G>>16,l:h>>>8&255,O:h&255}}; -bn.zd.prototype.aa8=function(h,e,$,Z){if(this.QB==null){var c=dA.uB(h.S4,h.o8);this.QB=bn.wk.getData($,c.x!=0||c.y!=0)}if(h.e=="edit"){var q=JSON.stringify(h.o8); -if((h.o8==null||q!=this.HV)&&h.zr!=!0)for(var G=0;G1)a=1+Math.tan(Math.PI/2*q/101);var j=(1-a)/2,L=s.l2.jI(P,P,P),H=[a,0,0,j,0,a,0,j,0,0,a,j,0,0,0,1],_=s.l2.multiply(L,H),J=new s.EI(256); -for(var G=0;G<256;G++)J.h[G]=G;s.l2.transform(J,J,_);Z={type:$.D5,k$:J.h,q0:J.h,Uz:J.h,wY:!1,Su:!1}}else{var S=1024,N=-30+60*(q+100)/200,Y=[]; -for(var G=0;G<4;G++)Y.push(s.$e.cc(G/3*255,G/3*255,!0));Y[1].v.Hrzn.v=64;Y[1].v.Vrtc.v=64-N;Y[2].v.Hrzn.v=128+64; -Y[2].v.Vrtc.v=128+64+N;Y.sort(function(bK,hB){return bK.v.Hrzn.v-hB.v.Hrzn.v});var U=s.$e.HL(Y,S);function g(bK,S){var Y=[],t=3; -for(var G=0;Gi&&Q>1)Q--;C[G]=Q*y}M=C}var m=new Uint8Array(S);for(var G=0; -G0){e=Math.max(ga/Math.E,e); -e=e*Math.exp(ga/1.75+ht/Math.PI);e=(1-bP)*e+bP*1}else{e=e*Math.exp(-ga*1.75+ht/Math.PI);e=e+-bP*1.14}e=Math.pow(e,1/eB); -e=Math.max(0,Math.min(1,e));m[G]=Math.round(e*255)}Z={type:$.D5,k$:m,q0:m,Uz:m,wY:!1,Su:!1}}if(h=="vibA"){Z={type:$.nb,Av:[e.vibrance?e.vibrance.v:0,e.Strt?e.Strt.v:0]}}if(h=="hue2"){var ek=[],b_=[],ca=[],gf=e.Clrz?e.Clrz.v:!1; -for(var G=0;G<256;G++){ek[G]=G/255;b_[G]=0;ca[G]=0}var bb=eb.aj(e,0),b2=es.MZ(bb[1]/100);if(gf){var dV=bb[0]/360; -for(var G=0;G<256;G++){ek[G]=dV;b_[G]=b2}}else{for(var G=0;G<256;G++){var ch=ek[G],hE=b_[G];ek[G]+=bb[0]/360; -for(var Q=0;Q<6;Q++){var dS=eb.aj(e,Q+1),e1=dS.eV,eG=dS.bR,bP=0;for(var dq=1;dq<4;dq++)if(eG[dq]1)eI--;if(eI<0)eI++;it=es.aiC(it);it=(1+it)*.5; -ic=(1+ic)*.5;d2[G]=Math.round(255*eI);gP[G]=Math.round(255*it);fa[G]=Math.round(255*ic)}var iK=bb[2]/100,fA=iK<0?-iK:iK,iB=iK<0?0:1; -Z={type:$.iw,ac1:d2,A$:gP,aaI:fa,agz:fA*iB,b4:1-fA,adY:bb[2]/100,a7F:gf?1:0}}if(h=="nvrt"){var m=new Uint8Array(256); -for(var G=0;G<256;G++)m[G]=255-G;Z={type:$.D5,k$:m,q0:m,Uz:m,wY:!1,Su:!1}}if(h=="post"){var hG=e.Lvls.v,m=new Uint8Array(256),bP=hG/255.001,dt=255/(hG-1); -for(var G=0;G<256;G++)m[G]=Math.floor(G*bP)*dt;Z={type:$.D5,k$:m,q0:m,Uz:m,wY:!1,Su:!1}}if(h=="grdm"){var gO=e.Grad.v,cX=e.Rvrs,bh=s.Y.Fz(gO.Clrs.v,0,0),S=1024,bi=s.Y.YL(gO,bh,S,cX?cX.v:!1),dM=s.m(S),ik=s.m(S),iW=s.m(S); -s.z0(bi,dM,0);s.z0(bi,ik,1);s.z0(bi,iW,2);Z={type:$.D5,k$:dM,q0:ik,Uz:iW,wY:!0,Su:!1}}if(h=="selc"){var et=new Float32Array(9*3*2),iy=e.BJ,er=e.Mthd?e.Mthd.v.CrcM=="Absl":!1; -for(var Q=0;Q<9;Q++){var h$=Q*6,dN=aS.aj(e,Q),dQ=dN[0]/100,cL=dN[1]/100,ge=dN[2]/100,ds=dN[3]/100;if(er){et[h$]=et[h$+1]=et[h$+2]=1; -et[h$+3]=dQ*(1+ds)+ds;et[h$+4]=cL*(1+ds)+ds;et[h$+5]=ge*(1+ds)+ds}else{et[h$+0]=(1+dQ)*(1+ds);et[h$+1]=(1+cL)*(1+ds); -et[h$+2]=(1+ge)*(1+ds)}}Z={type:$.o4,TO:et}}if(h=="blwh"){var dH="Rd Yllw Grn Cyn Bl Mgnt".split(" "),Z=[],gd=0,cs=0; -for(var G=0;G<6;G++)Z.push(e[dH[G]].v);Z.push(e.useTint.v,e.tintColor.v);var hs=[];for(var G=0;G<6;G++)hs.push((Z[G]-50)/50); -var cb=s.Y.LX(Z[7]);cb.h/=255;cb.l/=255;cb.O/=255;var fe=s.TC(cb.h,cb.l,cb.O),ic=s.GE(s.lR(fe.CD,1,.5)),ej=fe.Zp*fe.o8; -if(ic==.5)gd=cs=.5;else{gd=ej*(.5-ic)/(.5/ic-1);cs=1-ej*(.5-ic)-1/(2*(1-ic));cs/=1-1/(2*(1-ic))}Z={type:$.Zd,ajA:hs,zx:Z[6]?1:0,ajD:fe.CD,GE:ic,aky:ej,oW:gd,ajc:cs}}if(h=="blnc"){console.log(e); -var u=[],hc=["ShdL","MdtL","HghL"];for(var G=0;G<3;G++){if(e[hc[G]]==null){u[G]=[0,0,0];continue}var hG=e[hc[G]].v,c5=hG[0].v/100,eO=hG[1].v/100,hF=hG[2].v/100,i4=e.PrsL==null||e.PrsL.v?(Math.min(c5,eO,hF)+Math.max(c5,eO,hF))/2:0; -u[G]=[c5-i4,eO-i4,hF-i4]}var r=[s.m(256),s.m(256),s.m(256)];for(var Q=0;Q<3;Q++)for(var G=0;G<256;G++){var i=G*(1/255),dO=0,N=0,g0=0; -N=u[2][Q];g0=Math.abs(N);if(N<0)dO=Math.pow(i,Math.SQRT2);else dO=1.63*(Math.pow(i+.04,.5)-.2);i=g0*dO+(1-g0)*i; -N=u[1][Q];g0=Math.abs(N);if(N<0)dO=Math.pow(i,2);else dO=Math.min(2.35*(Math.pow(i+.09,.5)-.3),Math.pow(i,1/2)); -i=g0*dO+(1-g0)*i;N=u[0][Q];g0=Math.abs(N);if(N<0)dO=i<.4?0:Math.pow((i-.4)/.6,Math.SQRT2);else dO=Math.pow(i,Math.SQRT2/2); -i=g0*dO+(1-g0)*i;i=Math.max(0,Math.min(1,i));r[Q][G]=Math.round(i*255)}Z={type:$.D5,k$:r[0],q0:r[1],Uz:r[2],wY:!1,Su:!1}}if(h=="phfl"){var a6=s.Y.LX(e.Clr.v),ao=[a6.h/255,a6.l/255,a6.O/255],dv=e.Dnst.v/100,r=[s.m(256),s.m(256),s.m(256)]; -for(var Q=0;Q<3;Q++)for(var G=0;G<256;G++){var i=G*(1/255),en=i*ao[Q];en=Math.max(0,Math.min(1,en)); -i=dv*en+(1-dv)*i;r[Q][G]=Math.round(i*255)}Z={type:$.D5,k$:r[0],q0:r[1],Uz:r[2],wY:!1,Su:e.PrsL.v}}if(h=="thrs"){var m=s.m(256); -for(var G=e.Lvl.v;G<256;G++)m[G]=255;Z={type:$.D5,k$:m,q0:m,Uz:m,wY:!0,Su:!1}}if(h=="mixr"){var eg=es.Mz(e),_=[]; -for(var G=0;G300*300&&h.type!=c.D5&&h.type!=c.LL){Z=Z.clone();Z.x=Z.y=0;var E=V.p5(0,Z.d,Z.v);E.set(e); -V.wo(E,Z);E.D1(Z);es.BO(h,E.Jw,Z);E.get($);return}if(h.type==c.LL){var P=h.a68,a=h.sf;ICC.U.applyLUT(P,a,e,$)}if(h.type==c.d3)s.l2.i6(e,$,h.FC); -if(h.type==c.Zd){var j=h.aky,L=h.GE,H=h.oW,_=h.ajc,J=e.length;for(var G=0;G>>8&255)*(1/255),N=(l>>>16&255)*(1/255),hH=l>>>24,hZ=Math.min(Z,S,N),gj=Math.max(Z,S,N),hO=0,d3=0,v=0; -hO=s.fe(Z,S,N).CD;var hl=~~(hO*255+.5),ht=h.ac1[hl]*(1/255),ga=h.A$[hl]*(1/255)*2-1,eB=h.aaI[hl]*(1/255)*2-1,U=-eB,bP=hZ; -if(0.5?fz/(2-(gj+hZ)):fz/(gj+hZ)}var ca=ga; -if(h.a7F==0){ga=X[Math.floor((1+ga)*127.5)];ca=Math.min(d3*(1+ga),1)}var y=s.lR(ht,ca,v);Z=y.h;S=y.l; -N=y.O;x[G]=hH<<24|N*255<<16|S*255<<8|Z*255}}if(h.type==c.Hi){s.i7(e,$);var r=new Uint32Array(e.buffer),x=new Uint32Array($.buffer),J=r.length,gf=h.wO,bb=1/gf,b2={Hs:h.qO[0],R:h.qO[1],O:h.qO[2]},dV={Hs:h.XF[0],R:h.XF[1],O:h.XF[2]}; -for(var G=0;G>>8&255,dS=l>>>16&255,Z=ch*(1/255),S=hE*(1/255),N=dS*(1/255),hH=l>>>24,e1=s.Z1(ch,hE,dS),eG=s.Ku(e1,b2,dV,gf,bb); -if(eG==0)continue;var Y=s.fe(Z,S,N),ht=2+Y.CD+eG*h.shift[0];Y.CD=ht-~~ht;Y.Zp=Math.max(0,Math.min(1,Y.Zp+eG*h.shift[1])); -Y.a9=Math.max(0,Math.min(1,Y.a9+eG*h.shift[2]));var y=s.lR(Y.CD,Y.Zp,Y.a9);Z=y.h;S=y.l;N=y.O;x[G]=hH<<24|N*255<<16|S*255<<8|Z*255}}if(h.type==c.nb){var r=new Uint32Array(e.buffer),x=new Uint32Array($.buffer),J=r.length,dq=h.Av[0]/100,f2=h.Av[1]/100; -for(var G=0;G>>8&255)*(1/255),N=(l>>>16&255)*(1/255),hH=l>>>24,Y=s.TC(Z,S,N),hO=Y.CD,d3=Y.Zp,v=Y.o8,a3=0,bm=45/360,h2=hO16777215?k.aie(e):h.Fltr.v.classID};dA.wX=[{mQ:"GEfc"},{mQ:"LnCr"},{mQ:"LqFy",lv:!0},{yK:"3D",Ad:["lightFilterGradient"]},{yK:[24,2],Ad:"Avrg,Blr ,BlrM,boxblur,GsnB,Bokh,MtnB,RdlB,surfaceBlur".split(",")},{yK:[24,4],Ad:"Dspl,Pnch,Plr ,Rple,Shr ,Sphr,Twrl,Wave".split(",")},{yK:[24,6],Ad:["AdNs","Dspc","DstS","Mdn "]},{yK:[24,8],Ad:"ClrH,Crst,Frgm,Mztn,Msc ,Pntl".split(",")},{yK:[24,10],Ad:["Clds","DfrC","LnsF"]},{yK:[24,12],Ad:["Shrp","ShrE","ShrM","smartSharpen","UnsM"]},{yK:[24,14],Ad:"Dfs ,Embs,FndE,oilPaint,Slrz,TrcC,Wnd ".split(",")},{yK:[24,16],Ad:"HghP,Mxm ,Mnm ,Ofst,Rept,Ctoa".split(",")},{yK:"Fourier",Ad:["dDFT","iDFT"]}]; -dA.Fr={LqFy:"LqFy",Avrg:"Avrg","Blr ":"blurEvent",BlrM:"blurMethod",boxblur:"boxblur",GsnB:"gaussianBlur",MtnB:"motionBlur",RdlB:"radialBlur",surfaceBlur:"surfaceBlur",lightFilterGradient:"lightFilterGradient",adaptCorrect:"adaptCorrect",Pnch:"pinch","Plr ":"polar",Rple:"ripple","Shr ":"shear",Sphr:"spherize",Twrl:"twirl",Wave:"wave",AdNs:"addNoise",DstS:"dustAndScratches","Mdn ":"median",ClrH:"colorHalftone",Crst:"",Frgm:"",Mztn:"mezzotint","Msc ":"mosaic",Pntl:"",Clds:"clouds",DfrC:"differenceClouds",LnsF:"LnsF",Shrp:"sharpen",ShrM:"sharpenMore",smartSharpen:"smartSharpen",UnsM:"unsharpMask",FndE:"findEdges",oilPaint:"oilPaint",HghP:"highPass","Mxm ":"maximum","Mnm ":"minimum",Ofst:"offset"}; -dA.DR={AddNoise:"AdNs",Average:"Avrg",Blur:"Blr ",BlurMore:"BlrM",Clouds:"Clds",DifferenceClouds:"DfrC",DustAndScratches:"DstS",GaussianBlur:"GsnB",HighPass:"HghP",Maximum:"Mxm ",Minimum:"Mnm ",MotionBlur:"MtnB",Offset:"Ofst",Pinch:"Pnch",PolarCoordinates:"Plr ",Ripple:"Rple",Sharpen:"Shrp",SharpenMore:"ShrM",Twirl:"Twrl",UnsharpMask:"UnsM"}; -dA.Nh={rigidTransform:f.Bi};dA.names={lightFilterGradient:"Normal Map",rigidTransform:[10,46],LnCr:[24,1,1,0],LqFy:[24,1,0,0],GEfc:[24,0],Avrg:[24,3,0],"Blr ":[24,3,1],BlrM:[24,3,2],boxblur:[24,3,3],GsnB:[24,3,4],Bokh:[24,3,5],MtnB:[24,3,6],RdlB:[24,3,7],surfaceBlur:[24,3,10],Dspl:[24,5,0],Pnch:[24,5,1],"Plr ":[24,5,2],Rple:[24,5,3],"Shr ":[24,5,4],Sphr:[24,5,5],Twrl:[24,1,0,1,3],Wave:[24,5,6],AdNs:[24,7,0],Dspc:[24,7,1],DstS:[24,7,2],"Mdn ":[24,7,3],ClrH:[24,9,0],Crst:[24,9,1],Frgm:[24,9,3],Mztn:[24,9,4],"Msc ":[24,9,5],Pntl:[24,9,6],Clds:[24,11,0],DfrC:[24,11,1],LnsF:[24,11,2],Shrp:[24,13,0],ShrE:[24,13,1],ShrM:[24,13,2],smartSharpen:[24,13,3],UnsM:[24,13,4],"Dfs ":[24,15,0],Embs:[24,15,1],FndE:[24,15,3],oilPaint:[24,15,4],Slrz:"Solarize",TrcC:"Trace Contour","Wnd ":"Wind",HghP:[24,17,1],"Mxm ":[24,17,2],"Mnm ":[24,17,3],Ofst:[24,17,4],Rept:[24,17,5],Ctoa:"Color to Alpha",dDFT:"Fourier Transform",iDFT:"Inverse Fourier Transform",adaptCorrect:["VAR0/VAR1",[19,6,0],[19,6,2]]}; -dA.X3=function(h){var e=null;if(h=="GEfc")e={__name:"Filter Gallery",classID:"GEfc",GEfs:{t:"VlLs",v:[{t:"Objc",v:cc.X3("GlwE")}]}}; -if(h=="LqFy"){var $={EN:5,CD:5,map:new Float32Array(5*5*2)},Z=new Uint8Array(hd.XE($)),c=[];for(var G=0; -Ge.x)e.x=q.x; -if(q.y>e.y)e.y=q.y}return e};dA.uB=function(h,e){var $=0,Z=0;if(["GsnB","boxblur","smartSharpen","UnsM","HghP"].indexOf(h)!=-1){var c=e.Rds.v.val; -$=Z=c*2.57}if(h=="MtnB")$=Z=e.Dstn.v.val;if("Ofst,Rept,LqFy,Dspl,Pnch,Rple,Shr ,Sphr,Twrl,Wave,RdlB,Clds,DfrC,Plr ,LnCr,Wnd ,lightFilterGradient,rigidTransform,Frgm".split(",").indexOf(h)!=-1){$=Z=1e4}if(h=="GEfc")return cc.uB(e); -return new eu(Math.ceil($),Math.ceil(Z))};dA.WW=function(){return{t:"Objc",v:{classID:"filterFXStyle",enab:{t:"bool",v:!0},validAtPosition:{t:"bool",v:!0},filterMaskEnable:{t:"bool",v:!0},filterMaskLinked:{t:"bool",v:!0},filterMaskExtendWithWhite:{t:"bool",v:!0},filterFXList:{t:"VlLs",v:[]}}}}; -dA.fq=function(h,e){var $={h:e.oV>>16,l:e.oV>>8&255,O:e.oV&255},Z={h:e.XK>>16,l:e.XK>>8&255,O:e.XK&255},c=dA.names[h]; -if(c==null)c=es.names[h];var q=h;for(var E in es.VZ)if(es.VZ[E]==h)q=E;var P={t:"Objc",v:{classID:"filterFX",Nm:{t:"TEXT",v:e_.get(c)},blendOptions:{t:"Objc",v:{classID:"blendOptions",Opct:{t:"UntF",v:{type:"#Prc",val:100}},Md:{t:"enum",v:{BlnM:"Nrml"}}}},enab:{t:"bool",v:!0},hasoptions:{t:"bool",v:!0},FrgC:{t:"Objc",v:s.Y.lp($)},BckC:{t:"Objc",v:s.Y.lp(Z)},filterID:{t:"long",v:q.length==4?k.ae5(q):777}}},a=dA.X3(h); -if(a)P.v.Fltr={t:"Objc",v:a};return P};dA.PN=function(h,e,$,Z,c,q,E,P){var a=$*Z*4;s.zP.a6b(h,e,$,Z,c,q,E)}; -dA.cu=function(h,e,$,Z){s.o$($);if(h<1){var c=Math.round(h*5),q=[1,2,1,2,[40,26,13,6,4,2][c],2,1,2,1]; -q=s.V4.er(q);var E=$.slice(0);s.V4.mz(E,$,Z.d,Z.v,q,255)}else e($,Z,h);s.sS($)};dA.acV=function(h,e,$,Z){for(var G=0; -G>>1,q=16384,E=128,a=100;while(E>>1,q=16384,E=128;while(E=I&&b3=I)X[c2]=0}function hO(he,c2){var dY=x[he],b3=x[c2]; -if(dY>I&&b3<=I)X[c2]=0;if(dY<=I&&b3>I)X[he]=0}if(r)for(var b=1;bb2)bb[G]=255-bb[G];if(bb[G+1]>b2)bb[G+1]=255-bb[G+1];if(bb[G+2]>b2)bb[G+2]=255-bb[G+2]}}if(h=="Wnd "){var H=e.rect,_=H.d,J=H.v,dV=["Wnd","Blst","Stgr"],ch=$.WndM.v.WndM; -s.rE.yq(e.buffer,_,J,q.buffer,[dV.indexOf(ch),$.Drct.v.Drct!="Left"])}if(h=="Bokh"){var H=e.rect,_=H.d,J=H.v,S=_*J,N=S*4,hE=e.buffer.slice(0),dS=$.BkDi.v.BtDi,e1=$.BkDc,eG=$.BkDp.v/255; -if(dS=="BeIn")eG=0;var dq=57*(.3+.7*((_+J)/2)/1750)*($.BkIb.v/100)*(1+.2*Math.pow(eG,.1)),t=parseInt($.BkIs.v.BtIs.slice(3)),f2=-$.BkIr.v*Math.PI/180,a3=[]; -for(var G=0;G<8;G++){var bm=f2+G*(Math.PI*2/t),h2=f2+(G+1)*(Math.PI*2/t),ag=Math.cos(bm),eU=Math.sin(bm),iz=Math.cos(h2),d2=Math.sin(h2),gP=[0,0,0]; -s.FC.lJ([[ag,eU,1,0],[iz,d2,1,0],[1,1,1,1]],gP);if(gP[2]>0){gP[0]*=-1;gP[1]*=-1;gP[2]*=-1}a3.push(gP[0],gP[1],gP[2],0)}if(dS=="BeIn"){s.Ut(hE,0,16777215); -eG=1}else if(dS=="BeIt"&&e1.v.BtDc=="BeCt"){}else{var fa;if(dS=="BeIt"&&e1.v.BtDc=="BeCm")fa=E[1];else if(dS=="BeIa")fa=E[2][e1.v]; -if(fa==null){s.Ut(hE,0,16777215)}else{var eI;if(fa.rect.dz(H))eI=fa.channel;else eI=fa.tM(H);s.Jk(eI,hE,3)}}if(V.Yv){var it=hE,ic=_,iK=J,fA=1,iB=($.BkSb.v==0||$.BkSt.v==255)&&dS=="BeIn"; -if(!iB){var hG=0;for(var G=0;G2e3){alert("too large radius");return}}while(iB&&3*(dq/fA)*(dq/fA)*_*J>500*2e3*2e3){var gO=s.hg(hE,new O(0,0,ic,iK)); -hE=gO.Hl;ic=gO.rect.d;iK=gO.rect.v;fA*=2}var n=Date.now(),cX=V.p5(0,ic,iK);cX.set(hE);var bh=V.p5(1,_,J); -V.wo(bh);V.filter.BO({type:V.filter.dX,KO:new Float32Array([1/ic,1/iK]),a7A:eG,a9q:dq/fA,a8d:new Float32Array([$.BkSb.v/100,$.BkSt.v/255]),akD:new Float32Array([$.BkNa.v/100,$.BkNt.v.BtNt=="BeNu"?0:1,$.BkNm.v?1:0]),ab6:new Float32Array(a3.slice(0,16)),a8W:new Float32Array(a3.slice(16))},cX.jg); -bh.get(q.buffer);var bi=q.buffer;for(var G=0;G>>2,hs=cL.indexArray.v.length>>>2,cb=new Float32Array(dM(cL.originalVertexArray.v)); -for(var G=0;G>>1;dN+=~~(hs/3)}s.M0.Fx(cX,q.buffer,e.rect,iW,et,er,iy); -s.sS(q.buffer)}if(h=="lightFilterGradient"){function hF(fd){var dY=1/Math.sqrt(fd[0]*fd[0]+fd[1]*fd[1]+fd[2]*fd[2]); -fd[0]*=dY;fd[1]*=dY;fd[2]*=dY}var _=e.rect.d,J=e.rect.v,S=_*J,n=Date.now(),i4=s.m(S),b3=.3,bK=.7;s.yh(q.buffer,i4); -var dO=s.m(S);s.Nw.ec(i4,dO,q.rect,16);var g0=s.m(S);s.Nw.ec(i4,g0,q.rect,8);var a6=i4,m=new Float32Array(S),ao=$.Dtl.v,dv=ao[2].v,en=ao[1].v,eg=ao[0].v,hm=$.Scl.v*40*$.textureScale.v/(dv+en+eg); -dv*=hm;en*=hm;eg*=hm;for(var G=0;G>1;t|=t>>2;t|=t>>4;t|=t>>8;t|=t>>16;return t+1}var _=e.rect.d,J=e.rect.v,gQ=fN(Math.max(_,J)),fK=gQ>>>1,b1=new O(0,0,gQ,gQ),d4=new O(0,0,_,J); -d4.y=gQ-J>>>1;var cr=_>>>1,gJ=new O(0,d4.y,cr,J),hU=new s.EI(_*J);s.DC(e.buffer,hU);var gX=new Float64Array(gQ*gQ),bo=new Float64Array(gQ*gQ),eI=s.m(gQ*gQ); -FFT.init(gQ);var eF=[hU.h,hU.l,hU.O];for(var G=0;G<3;G++){var eQ=eF[G];eI.fill(0);if(h=="dDFT"){s.T7(eQ,d4,eI,b1); -dA.acV(eI,gQ,gX,bo);s.T7(eI,b1,eQ,d4,gJ);gJ.x+=cr;b1.x-=fK-cr;s.T7(eI,b1,eQ,d4,gJ);gJ.x-=cr;b1.x+=fK-cr}else{s.T7(eQ,d4,eI,b1,gJ); -gJ.x+=fK;d4.x+=fK-cr;s.T7(eQ,d4,eI,b1,gJ);gJ.x-=fK;d4.x-=fK-cr;dA.a0f(eI,gQ,gX,bo);s.T7(eI,b1,eQ,d4)}}s.cl(hU,q.buffer)}if(h=="Avrg"){var e$=0,ay=0,gL=0,bO=0,cl=1; -for(var G=0;G0)iR=Math.max(0,iR-cn);else iR=Math.min(0,iR+cn);q.buffer[G]=Math.max(0,Math.min(255,iE+iR))}}if(h=="HghP")for(var G=0; -Ga5?0:255}}}s.cl(hU,q.buffer)}if(h=="Msc "){var bF=$.ClSz.v.val,_=e.rect.d,J=e.rect.v,ea=Math.ceil(_/bF),hw=Math.ceil(J/bF),ax=s.m(ea*hw*4); -s.scale.hF(e.buffer,_,J,ax,ea,hw,1/bF);s.scale.hF(ax,ea,hw,q.buffer,_,J,bF)}if(h=="Clds"||h=="DfrC"){var _=q.rect.d,J=q.rect.v,S=_*J,d$=s.m(S); -if(h=="Clds")s.Ut(q.buffer,4278190080);var fC=s.m(256*4);for(var G=0;G<256;G++){var d3=G<<2,gh=G/255,gd=1-gh; -fC[d3]=Math.round(gh*Z.h+gd*c.h);fC[d3+1]=Math.round(gh*Z.l+gd*c.l);fC[d3+2]=Math.round(gh*Z.O+gd*c.O)}s.rE.ah8(e.buffer,_,J,d$); -var bv=q.buffer;for(var G=0;G1,_=e.rect.d,J=e.rect.v,hh=s.V4.aY[aO],c8=e.buffer.slice(0); -if(!bz)s.o$(c8);s.V4.mz(c8,q.buffer,_,J,hh,255,!1,bz);if(!bz)s.sS(q.buffer)}if(h=="MtnB"){var c4=-$.Angl.v*Math.PI/180,eX=$.Dstn.v.val/2,n=Date.now(),_=e.rect.d,J=e.rect.v,H=e.rect.clone(); -H.x=H.y=0;if(V.Yv){var n=Date.now(),fk=q.buffer;fk.set(e.buffer);s.o$(fk);var a2=V.p5(0,_,J);a2.set(fk); -var x=s.m(4);x[0]=Math.round(128+127*Math.cos(c4));x[1]=Math.round(128+127*Math.sin(c4));new Uint32Array(fk.buffer).fill(new Uint32Array(x.buffer)[0]); -var a1=V.p5(1,_,J);a1.set(fk);V.wo(a2,H);a2.D1(H);V.filter.BO({type:V.filter.H8,R9:a1.jg,KO:new Float32Array([1/_,1/J]),ajy:eX/2,a5v:1},a2.Jw); -a2.get(fk);s.sS(fk)}else{var gE=new i7;gE.rotate(c4);var ek=f.o.D8([e.buffer,e.rect],gE,!1,null,!0); -dA.cu(eX,s.Nw.wg,ek.buffer,ek.rect);gE.vy();ek=f.o.D8([ek.buffer,ek.rect],gE,!1,q.buffer.buffer,!0,q.rect)}console.log(Date.now()-n)}if(h=="RdlB"){var _=e.rect.d,J=e.rect.v,ht=$.Amnt.v,fr=$.BlrM.v.BlrM=="Zm",hK=$.Cntr.v,h8=hK.Hrzn.v,i8=hK.Vrtc.v,ga=Math.max(h8,1-h8)*_,eB=Math.max(i8,1-i8)*J,cO=Math.sqrt(ga*ga+eB*eB),h6=2*Math.PI*cO*1.5,ex=Math.round(h6),cq=Math.round(cO),gJ=new O(0,0,ex,cq),aJ=s.m(ex*cq*4),fG=fr?4:1,gW=fr?.6:8*((_+J)/2)/1400,fP=.1,fA=1,g$=1; -s.I.Lq(e.buffer,_,J,aJ,ex,cq,h8,i8,fG,fP,fA,g$);var cV=fr?s.m(ex*cq*4):null;if(fr){s.I.JR(aJ,cV,ex,cq); -var f8=cV;cV=aJ;aJ=f8;gJ.d=cq;gJ.v=ex}dA.cu(gW*ht,s.Nw.wg,aJ,gJ);if(fr){s.I.JR(aJ,cV,cq,ex);var f8=cV; -cV=aJ;aJ=f8;gJ.d=ex;gJ.v=cq}s.I.nv(aJ,ex,cq,q.buffer,_,J,h8,i8,fG,fP,fA,g$)}if(h=="Plr "){var _=e.rect.d,J=e.rect.v; -if($.Cnvr.v.Cnvr=="RctP")s.I.nv(e.buffer,_,J,q.buffer,_,J,.5,.5,1,0,2,_/J);else s.I.Lq(e.buffer,_,J,q.buffer,_,J,.5,.5,1,0,2,_/J)}if(h=="FndE"){var _=e.rect.d,J=e.rect.v; -s.V4.AP(e.buffer,q.buffer,_,J)}if(h=="oilPaint"){var v=$.LghD.v*Math.PI/180,eW=[Math.cos(v),Math.sin(v),.001],T=[$.stylization.v,$.cleanliness.v,$.brushScale.v,$.microBrush.v,$.lightingOn.v,$.specularity.v,eW],H=e.rect.clone(); -H.x=H.y=0;s.AV.filter(e.buffer,H,q.buffer,T)}if(h=="Ofst"){var _=e.rect.d,J=e.rect.v,cT=new Uint32Array(e.buffer.buffer),cD=new Uint32Array(q.buffer.buffer),dD=$.Hrzn.v,e8=$.Vrtc.v,b8=$.Fl.v.FlMd; -s.Ut(cD,0);if(b8=="Bckg"||b8=="Rpt"){var gJ=e.rect.clone();gJ.offset(dD,e8);s.hX(cT,gJ,cD,q.rect)}if(b8=="Rpt"){var ag,eU,iz,d2,g3; -dD=Math.max(-_,Math.min(_,dD));e8=Math.max(-J,Math.min(J,e8));ag=dD>0?dD:0;iz=dD>0?_:_+dD;eU=e8>0?0:e8+J; -d2=e8>0?e8:J;g3=e8>0?0:_*(J-1);for(var b=eU;b0?0:_+dD; -iz=dD>0?dD:_;eU=e8>0?e8:0;d2=e8>0?J:J+e8;g3=dD>0?0:_-1;for(var b=eU;b=0&&e8>=0){ag=0;iz=dD;eU=0;d2=e8;g3=0}if(dD>=0&&e8<0){ag=0;iz=dD;eU=J+e8;d2=J;g3=_*(J-1)}if(dD<0&&e8>=0){ag=_+dD; -iz=_;eU=0;d2=e8;g3=_-1}if(dD<0&&e8<0){ag=_+dD;iz=_;eU=J+e8;d2=J;g3=_*J-1}for(var b=eU;b0?e9/hP:hP/e9,g$=h8+fu*i9*ga,g1=i8+fu*i9*eB,G=b*ff.EN+F<<1; -ff.map[G]=g$-F;ff.map[G+1]=g1-b}}}else if(h=="Dspl"&&e5.length!=0){aQ=$.UndA.v.UndA=="WrpA"?2:1;var gM=$.DspF.v.pth,hW; -for(var G=0;G>>1,W=d==0?2:1;cc.pV(g.map,F,a,j,W);cc.eN(F,g.map,a,j,W); -if(d!=0){var A=cc.GJ.indexOf($.SDir.v.StrD),z=[1,1,1,0][A],T=[-1,0,1,1][A],R=2*d+1,I=1/R;for(var n=0; -n1)cc.cu(ht,ga,eB,P,d3-1);if(h=="PlsW"){var bb=new Uint8Array(ht.buffer);for(var G=0;G>>1,dq=j>>>1; -for(var G=0;G>>1,dH,[],0);s.V4.AP(gd,q.buffer,a,j);s.i7(q.buffer,gd); -s.vy(gd);s.Ut(gd,4278190080,16777215);dA.PN(gd,q.buffer,a,j,$.EdgW.v>>>1,s.zP.eQ,[],0);var cs=$.EdgB.v/10; -for(var G=0;G>>2]=~~(.5+(a6[G]+a6[G+1]+a6[G+2])*(1/3));var ao=g0.slice(0);s.Nw.cW(ao,g0,P,c5); -var dv=Math.PI/eO,en=new Float64Array(a),r=new Float64Array(a),eg=new Float64Array(2*a);for(var u=0; -u>>1))*dv;en[u]=cX*cX;r[u]=Math.cos(cX);var z=u<<1;eg[z]=Math.sin(z*(1/4.5));eg[z+1]=Math.sin((z+1)*(1/4.5))}for(var n=0; -n>>1))*dv,x=Math.cos(gO),hQ=gO*gO;for(var u=0;u46)s.round(g0); -cc.wr(g0,q.buffer,Z,c)}for(var G=0;G=$?$-1:J,N=(a*$+S)*2,Y=q[G];H+=Y*h[N];_+=Y*h[N+1]}e[L]=H; -e[L+1]=_}};cc.eN=function(h,e,$,Z,c){var q=cc.dl(c),E=6,P=13;for(var a=0;a=Z?Z-1:J,N=(S*$+j)*2,Y=q[G];H+=Y*h[N];_+=Y*h[N+1]}e[L]=H; -e[L+1]=_}};function eN(){}eN.$j=[2,5,5,7,4,4];eN.Pn="norm,diss,dark,mul ,idiv,lbrn,dkCl,lite,scrn,div ,lddg,lgCl,over,sLit,hLit,vLit,lLit,pLit,hMix,diff,smud,fsub,fdiv,hue ,sat ,colr,lum ".split(","); -eN.ie="Nrml Dslv Drkn Mltp CBrn linearBurn darkerColor Lghn Scrn CDdg linearDodge lighterColor Ovrl SftL HrdL vividLight linearLight pinLight hardMix Dfrn Xclu blendSubtraction blendDivide H Strt Clr Lmns".split(" "); -eN.sF=[[15,10,0],[15,10,1],[15,10,2],[15,10,3],[15,10,4],[15,10,5],[15,10,6],[15,10,7],[15,10,8],[15,10,9],[15,10,10],[15,10,11],[15,10,12],[15,10,13],[15,10,14],[15,10,15],[15,10,16],[15,10,17],[15,10,18],[15,10,19],[15,10,20],[15,10,21],[15,10,22],[15,10,23],[15,10,24],[15,10,25],[15,10,26]]; -eN.JX=["normal",null,"darken","multiply","color-burn",null,null,"lighten","screen","color-dodge",null,null,"overlay","soft-light","hard-light",null,null,null,null,"difference","exclusion",null,null,"hue","saturation","color","luminosity"]; -eN.Tj=function(h){if(h=="passThrough")return"pass";return eN.Pn[eN.ie.indexOf(h)]};eN.ve=function(h){if(h=="pass")return"passThrough"; -return eN.ie[eN.Pn.indexOf(h)]};eN.getName=function(h){return eN.sF[eN.Pn.indexOf(h)]};function o(){this.rect=null; -this.oG="norm";this.opacity=255;this._U=!1;this.GO=0;this.MX=0;this.q8=[];for(var G=0;G<10;G++)this.q8.push(0,0,255,255); -this.name=null;this.add={};this.buffer=null;this.mn=null;this.tD=null;this.r=null;this.MN=null;this.a3M=30; -this.Wb=o.te();this.alj=o.te();this.a7U=o.te();this.a18=o.te();this.jw=0;this.Hy=!1;this.cj=null;this.V=new o.lP}o.te=function(){var h=D.w("canvas"); -h.width=h.height=30;return h.getContext("2d")};o.lP=function(){this.Qa=!0;this.j9=!0;this.rJ=s.m(0); -this.a3k=s.m(0);this.ta=null;this.IP={};this.a4L=null;this.PC=null;this.fJ=null;this.bd=null;this.u5=null; -this.GM=null;this.iX=null;this.LJ=null;this.SD=null;this.XC=null;this.Vq=null;this.gI=null;this.wn=!1}; -o.lP.prototype.IJ=function(){this.Qa=!1;this.j9=!1;this.ta=null;this.wn=V.Yv};o.lP.prototype.a90=function(){hn.Ua(this.IP); -this.rJ=s.m(0);this.a3k=s.m(0);if(this.bd)this.bd.delete();if(this.u5)this.u5.delete();this.bd=null; -this.u5=null;var h=[this.GM,this.iX,this.LJ,this.SD,this.XC,this.Vq];for(var G=0;G<6;G++)if(h[G]!=null&&h[G]instanceof V.EI)h[G].delete(); -this.GM=null;this.iX=null;this.LJ=null;this.SD=null;this.XC=null;this.Vq=null};o.prototype.s=function(h){if(h==null)h=this.rect.clone(); -if(this.V.ta==null)this.V.ta=h;else this.V.ta=this.V.ta.iJ(h)};o.prototype.vG=function(){return this.add.lsct==hJ.sE||this.add.lsct==hJ.Y7}; -o.prototype.SV=function(){var h=this.add;return h.SoCo!=null||h.GdFl!=null||h.PtFl!=null};o.prototype.c1=function(){var h=this.add.lmfx; -if(h==null)return;var e=["GrFl","patternFill"];for(var G=0;G>2);s.z0(q.KE,P,3);if(!s.dz(e.channel,P))return!1; -var a=s.m(E.d*E.v*4);s.hX(q.Ny,q.m0,a,E);s.p.Jn("norm",q.KE,q.lD,a,E,E,1);return s.dz(a,this.buffer)}if(q.jw==1||q.jw==3){var j=q.jw==1?this.kV():this.wV(h).r; -if(!E.dz(j.rect))return!1;var L=s.m(E.X());L.fill(j.color);s.T7(q.Ny,q.m0,L,E);s.p.Y6(q.KE,q.lD,L,E,e.channel,E,1); -return s.dz(L,j.channel)}};o.prototype.NP=function(h,e,$,Z){var c=this.cj;c.lD.offset(e,$);var q=c.m0.iJ(c.lD); -if(c.jw<=0){var E=s.m(q.X()*4);s.hX(c.Ny,c.m0,E,q);s.p.Jn("norm",c.KE,c.lD,E,q,q,1);this.buffer=E;this.rect=q; -this.s()}else{var P=this.jw==1?this.kV():this.wV(h).r,a=s.m(q.X());a.fill(P.color);s.T7(c.Ny,c.m0,a,q); -s.p.Y6(c.KE,c.lD,a,q,Z.channel,q,1);P.channel=a;P.rect=q.clone();if(this.jw==1){P.w4=!0;this.ZB(h)}if(this.jw==3)this.s()}}; -o.prototype.jZ=function(){var h=[-1,0,1,2];if(this.r)h.push(-2);if(this.MN)h.push(-3);return h};o.prototype.getName=function(){return this.add.luni?this.add.luni:this.name}; -o.prototype.aq=function(t){this.add.luni=this.name=t};o.prototype.SY=function(h){var e=this.add.lnsr,$=this.add.TySh; -if(e=="rend"&&$)this.aq(gK.N8($.Kx).replace(/(?:\r\n|\r|\n)/g," ").slice(0,32))};o.prototype.o6=function(){return(this.GO&1<<1)==0}; -o.prototype.J7=function(){return(this.GO&1<<4)==0};o.prototype.Kl=function(){return(this.GO&1<<5)!=0}; -o.prototype.a0C=function(){var h=this;if(h.add.lnsr!="bgnd"){h.add.lnsr="bgnd";h.aq("Background");h.add.lspf=1<<2}}; -o.prototype.alL=function(){var h=this;if(h.add.lnsr=="bgnd"){delete h.add.lnsr;h.aq("Layer 0");h.add.lspf=0}}; -o.prototype.ra=function(h){var e=this.add.lspf;return e==null?!1:(e>>h&1)!=0};o.prototype.QL=function(h){if(h&&!this.o6())this.GO-=2; -if(!h&&this.o6())this.GO+=2};o.prototype.ll=function(){var h=this.add.lmfx;if(h==null)return!1;for(var e in h){if(e=="masterFXSwitch")continue; -if(e=="Scl")continue;if(e=="classID")continue;if(h[e].v.length>0)return!0}return!1};o.prototype.fi=function(){return this.add.SoLd!=null&&this.add.SoLd.filterFX!=null}; -o.prototype.xJ=function(){var h=this.add.lmfx;if(h==null)return!1;if(!h.masterFXSwitch.v)return!1;for(var e in h){if(e=="masterFXSwitch")continue; -if(e=="Scl")continue;if(e=="classID")continue;var $=h[e].v;for(var G=0;G<$.length;G++)if($[G].v.enab.v)return!0}return!1}; -o.prototype.TX=function(h,e,$,Z){var c=new O,q=this.iR(h,$,Z);if(q.indexOf(0)!=-1)c=c.iJ(this.rect); -if(q.indexOf(1)!=-1)c=c.iJ(this.kV()._A());if(q.indexOf(2)!=-1){var E=this.add.vmsk,P;if(e){if(E.pc.length>1){var a=s.W.qs(E.b,null,E.pc); -P=s.a.Be(a)}else P=s.W.v4(E.b,E.C.length!=0?E.C:null)}else P=s.W.v4(E.b);c=c.iJ(P)}if(q.indexOf(3)!=-1)c=c.iJ(this.wV(h).r._A()); -if(q.length==0&&this.SV())c=new O(0,0,h.d,h.v);return c};o.prototype.oC=function(){var h=this.add.artb,e=h.artboardBackgroundType.v,$=0; -if(e==1)$=4294967295;else if(e==2)$=4278190080;else if(e==3)$=0;else if(e==4){$=h.Clr.v;$=255<<24|$.Bl.v<<16|$.Grn.v<<8|$.Rd.v}else throw e; -return $};o.prototype.B2=function(){var h=this.add.artb.artboardRect.v,e=h.Btom.v,$=h.Left.v,Z=h.Rght.v,top=h.Top.v; -return new O($,top,Z-$,e-top)};o.prototype.$O=function(h){var e=o.dU(h);if(this.add.artb==null)this.add.artb={classID:"artboard",artboardRect:{t:"Objc",v:null},artboardBackgroundType:{t:"long",v:1}}; -this.add.artb.artboardRect.v=e};o.dU=function(h){var e={classID:"classFloatRect",Top:{t:"doub",v:0},Left:{t:"doub",v:0},Btom:{t:"doub",v:0},Rght:{t:"doub",v:0}}; -e.Btom.v=h.y+h.v;e.Left.v=h.x;e.Rght.v=h.x+h.d;e.Top.v=h.y;return e};o.prototype.iR=function(h,e,$){var Z=[],c=this,q=this.Hy; -if(!e&&c.Hy&&$){Z.push(2)}else if(c.jw<=0||e){if(c.J7())if(!this.rect.nK())Z.push(0);if(c.kV()&&!c.kV().rect.nK())if(c.kV().MV||e)Z.push(1); -if(c.add.vmsk)if(c.add.vmsk.MV||e)Z.push(2);if(c.fi()&&c.wV(h).r&&!c.wV(h).r.rect.nK())Z.push(3)}else if(c.jw==1){Z.push(1); -if(c.kV().MV&&!c.kV().rect.nK()){if(c.J7())if(!this.rect.nK())Z.push(0);if(c.add.vmsk)if(c.add.vmsk.MV)Z.push(2)}}else if(c.jw==3&&!c.wV(h).r.rect.nK())Z.push(3); -if(c.add.artb&&Z.indexOf(0)==-1)Z.push(0);Z.sort();return Z};o.prototype.kV=function(){var h=this;return h.MN?h.MN:h.add.vmsk&&h.add.vmsk.isEnabled?null:h.r}; -o.prototype.wV=function(h){var e=this.add.SoLd.placed.v,$=h.add.FEid;if($==null)return null;for(var G=0; -G<$.length;G++)if($[G].id==e)return $[G];return null};o.prototype.extend=function(h){s.a0p(this,h)}; -o.prototype.d2=function(h,e,$){var Z=h.clone();if(this.xJ()){var c=this.add.lmfx,q=e.root.fH(e.t.indexOf(this)),E=c.gradientFillMulti.v,P=!1; -for(var G=0;G3e4*3e4)e=new O(0,0,100,100); -if(h&&h[$].v[$]!="strokeStyleAlignInside"){var c=1;if(h[Z].v[Z]=="strokeStyleMiterJoin"){var q=s.W.a0T(this.b),E=q/2,P=Math.sin(E),a=Math.cos(E); -a/=P;P=1;var c=Math.sqrt(a*a+P*P);if(isNaN(c)||c<1)c=1}c*=h[$].v[$]=="strokeStyleAlignOutside"?1:.5; -var j=Math.ceil(h.strokeStyleLineWidth.v.val*c);j=Math.min(j,600);e.P5(j,j)}e=s.a.Lu(e);var L=new o.kq; -L.color=s.W.Sm(this.b)?0:255;L.MV=this.MV;L.isEnabled=this.isEnabled;L.FH=!0;L.rect=e;L.Ks=this.Ks;L.gE=this.gE; -L.channel=s.m(L.rect.X());if(!e.nK())s.W.acn(this.b,L.channel,L.rect,h);if(h==null){this.MN=L;this.w4=!1}return L}; -o.MM.prototype.clone=function(){var h=new o.MM;h.MV=this.MV;h.isEnabled=this.isEnabled;h.Ks=this.Ks; -h.gE=this.gE;h.b=o.MM.rP(this.b);h.v9=this.v9.slice(0);h.O4=this.O4;h.C=this.C.slice(0);h.pc=this.pc.slice(0); -return h};o.MM.prototype.concat=function(h){var e=h.b.slice(2);if(e.length==0)return;e[0].aN=3;this.b=this.b.concat(e)}; -o.MM.rP=function(h){var e=[];for(var G=0;G5||$.type==0||$.type==3)e.push(JSON.parse(JSON.stringify($))); -else e.push({type:$.type,LD:$.LD.clone(),D:$.D.clone(),EH:$.EH.clone()})}return e};o.MM.a8v=function(h,e,$){if(h.length!=e.length)return!1; -for(var G=2;Ge.o8.length)e.o8=h.slice(0); -if(this.depth!=0)h.pop()};dE.prototype.acM=function(){var h=0;if(this.$.vG()){for(var G=0;G=0;G--){var t=this.children[G],Z=t.mI(h,e);if(Z&&e==null)return Z}return null}else if($.add.TySh&&$.rect.B4(h)||s.a7h(h,$.buffer,$.rect)){if(e==null)return this; -else e.push(this.index)}return null};dE.prototype.akO=function(h){var e=this.$;if(!e.o6()||e.ra(2)||e.ra(31))return null; -var $=e.add.vmsk;if($&&$.isEnabled){var Z=s.W.mI($.b,h).NS;if(Z!=-1)return{a9K:this,a8Q:Z}}if(e.vG()){for(var G=this.children.length-1; -G>=0;G--){var t=this.children[G],c=t.akO(h);if(c)return c}return null}return null};dE.prototype.lQ=function(h,e){h.push(this.index); -if(this.$.vG()){h.push(this.IX);if(e)if(this.$.jw==1&&this.$.kV().MV==!1)return;for(var G=0;Ge.v){c=$;q=Math.floor($*(e.v/e.d))}else{c=Math.floor($*(e.d/e.v));q=$}if(Z.SV()&&Z.add.vmsk==null||Z.add.TySh)c=q=Math.max(q,16); -else{c=Math.max(c,6);q=Math.max(q,6)}var E=q,P=Z.SV()&&Z.add.vmsk;if(P){var a=Z.rect.clone(),H,_;if(a.nK())a=new O(0,0,20,20); -var j=a.d,L=a.v;if(j>L){H=$;_=Math.floor($*(L/j))}else{H=Math.floor($*(j/L));_=$}if(H*_==0)H=_=16;s.kA.Pv(Z.Wb,H,_,a,Z.buffer,Z.rect,!1); -s.kA.adz(Z.Wb,H,_);E=_}else if(Z.add.TySh){s.kA.alo(Z.Wb,E,E,Z.add.TySh)}else if(Z.add.SoCo){E=Math.max(16,Math.min(c,q)); -s.kA.aiq(Z.Wb,E,E,Z.add.SoCo)}else if(Z.add.GdFl){s.kA.aov(Z.Wb,E,E,Z.add.GdFl)}else if(Z.add.PtFl){s.kA.al3(Z.Wb,E,E,Z.add.PtFl,h)}else if(es.get(Z.add)!=null){s.kA.a9C(Z.Wb,E,E,Z.add)}else if(Z.add.SoLd){s.kA.Pv(Z.Wb,c,q,e,Z.buffer,Z.rect,!1); -s.kA.amQ(Z.Wb,c,q,Z.add.SoLd)}else if(Z.vG()){E=16}else{if(Z.J7())s.kA.Pv(Z.Wb,c,q,e,Z.buffer,Z.rect,!1); -else{s.kA.ae7(Z.Wb,E,E)}}var J=Z.kV();if(J)s.kA.AB(Z.alj,c,q,e,J);if(Z.fi()&&Z.wV(h)&&Z.wV(h).r){var S=Z.wV(h).r; -s.kA.AB(Z.a18,c,q,e,S)}if(!P&&Z.add.vmsk){s.kA.AB(Z.a7U,c,q,e,Z.add.vmsk.kV(),!0)}if(Z.add.vmsk||J)E=Math.max(E,q); -Z.a3M=Math.max(E,16);if(Z.vG()&&Z.add.lsct==hJ.sE)for(var G=0;G0||E.fill!=1||q.xJ())){this.ft(h,e,$,Z); -return}var a=q.vG()&&q.oG=="pass"&&(c.length>0||E.fill!=1||q.xJ()),j=q.rect,L=q.buffer;if(q.vG()){j=this._A(Z,!1); -var _=s.m(j.X()*4);H=s.m(j.X());this.ft(_,j,$,Z);s.z0(_,H,3)}else if(P){j=e.clone();H=s.m(j.X());H.fill(255)}else{j=q.rect; -H=s.m(j.X());s.z0(L,H,3)}if(q.m5()){var J=q.r.tM(j);s.J9(J,H)}if(q.xJ())S=hn.RU(q.add.lmfx,q.add.fxrp,H,j,Z); -if(q.xJ())hn._O(q.add.lmfx,S,j,h,e,$);if(q.vG()){L=s.m(j.X()*4);if(q.oG=="pass")s.hX(h,e,L,j);if(a){var _=s.m(j.X()*4); -this.ft(_,j,$,Z);var N=s.m(j.X());s.z0(_,N,3);s.w2(N,j,L,j)}this.ft(L,j,$,Z)}if(P){L=h.slice(0);s.Ut(L,4278190080,16777215); -var Y=es.get(q.add),U=es.J8(Y,q.add[Y]);es.Vv(U,L,L,j)}var g=L.slice(0);s.Ut(g,4278190080,16777215); -for(var G=0;Gy.Vs.d)y=C[G]; -var i=s.m(y.Vs.d*y.Vs.v*4);s.hX(h,e,i,y.Vs)}hn.K1(q.add.lmfx,S,j,h,e,$,M,i,y?y.Vs:null)}s.p.cZ(M,j,h,e,H,j,0,$,1,q.oG=="diss")}; -dE.prototype.ft=function(h,e,$,Z){var c=this.children;for(var G=0;Gq||!E&&q.indexOf(this.index)==-1)){return}var P=this.$,a=hn.BU(P),j=dE.oK,L=P.SV()?P.kV():P.r; -if(!P.o6())return;if(P.m5()&&L.rect.nK()){return}if(P.add.vstk==null&&this._A(Z,!1).nK()&&P.add.artb==null){return}var H=this._A(Z,!0).jx($); -if(!e.dz($)&&!$.k3(H)&&P.add.artb==null)return;if(P.vG()&&P.add.artb){var _=P.B2();$=$.jx(_);var J=P.oC(); -if(J!=0){if(V.Yv){V.wo(h,$);V.ZI(J);V.ZI(J)}else s.a6r(h,e,$,J)}}var S=dE.Na(P,c,a);if(!S){this.sZ(h,e,$,Z,c,q); -return}P.V.GM=j.wc(P.V.GM,H.d,H.v);j.T7(h,e,P.V.GM,H,$);this.sZ(P.V.GM,H,$,Z,c,q);j.cZ(P.V.GM,H,h,e,null,null,0,$,P.opacity/255,P.oG=="diss",a.Iz)}; -dE.Na=function(h,e,$){if($.Iz[0]*$.Iz[1]*$.Iz[2]==0)return!0;return h.opacity!=255&&(e.length!=0||h.vG()||h.xJ())}; -dE.a3n={V:{}};dE.prototype.sZ=function(h,e,$,Z,c,q){var E=this.$,P=hn.BU(E),a=es.get(E.add)!=null,j=dE.oK,L=dE.Na(E,c,P),H=L?1:E.opacity/255,_=E.SV()?E.kV():E.r,J=E.vG()&&E.oG=="pass"&&!(c.length>0||P.fill!=1||E.xJ()),S=!E.vG()&&!a&&!E.xJ()&&c.length==0,N=a&&!E.xJ()&&c.length==0,y=null,i=null,Q=null,K; -if(J||S||N){var Y=h,U=e;if(E.m5()){U=this._A(Z,!1);Y=E.V.SD=j.wc(E.V.SD,U.d,U.v);j.T7(h,e,E.V.SD,U)}if(J)this.NG(Y,U,$,Z,q); -if(S)j.Jn(E.oG,E.AE(Z),E.rect,Y,U,$,H,P);if(N){var g=E.m5()&&_.LX()==0?_._A().clone():U.clone(),M=E.V; -if(g.dz(new O(0,0,Z.d,Z.v)))M=dE.a3n;M.LJ=this._H(Y,U,M.LJ,g,E.add);P.Eq=!0;j.Jn(E.oG,M.LJ,g,Y,U,$,H,P)}if(E.m5())j.cZ(Y,U,h,e,E.u9(),_._A(),_.LX(),$,1,E.oG=="diss"); -E.V.IJ();return}var C=E.vG()&&E.oG=="pass"&&(c.length>0||P.fill!=1||E.xJ()),g=E.rect;if(E.vG()){g=this._A(Z,!1); -Q=E.V.LJ=j.wc(E.V.LJ,g.d,g.v);j.Ut(Q,0);this.NG(Q,g,g,Z,q);i=j.wc(E.V.iX,g.d,g.v);j.T7(Q,g,i,g)}else if(a){g=E.m5()&&_.LX()==0?_._A().clone():e.clone(); -i=j.wc(E.V.iX,g.d,g.v);j.Ut(i,4294967295)}else{g=E.rect;y=E.AE(Z);i=j.wc(E.V.iX,g.d,g.v);j.T7(y,g,i,g)}E.V.iX=i; -if(E.m5())j.aaf(E.u9(),_._A(),_.LX(),i,g);if(E.xJ())if(E.V.ta||E.V.j9||E.V.wn!=V.Yv||E.V.Qa||E.vG()){var m=s.m(g.d*g.v); -if(hn.qP(E.add.lmfx)){if(V.Yv){if(!E.vG()&&E.kV()==null&&E.rect.dz(g))s.z0(E.buffer,m,3);else{var n=s.m(g.d*g.v*4); -i.get(n);s.z0(n,m,3)}}else s.z0(i,m,3)}if(E.V.j9||E.V.wn!=V.Yv||!s.dz(m,E.V.rJ)){var u=null;if(E.SV()&&E.add.vmsk&&E.add.vmsk.isEnabled&&E.add.vmsk.kV().color==0)u=E.add.vmsk.kV().rect; -hn.acZ(E.V.IP,m,g,E.add.lmfx,E.add.fxrp,Z,u);E.V.rJ=m}}if(E.xJ())hn._O(E.add.lmfx,E.V.IP,g,h,e,$);if(E.vG()){y=j.wc(E.V.SD,g.d,g.v); -j.Ut(y,0);if(E.oG=="pass")j.T7(h,e,y,g);if(C)j.k2(Q,g,y,g);this.NG(y,g,$,Z,q);E.V.SD=y}if(a){y=E.V.SD=this._H(h,e,E.V.SD,g,E.add)}if(E.vG()||a)K=y; -else{K=j.wc(E.V.SD,g.d,g.v);j.T7(y,g,K,g,$);E.V.SD=K}j.Ut(K,4278190080,16777215);for(var G=0;Gd.Vs.d)d=b[G]; -E.V.Vq=j.wc(E.V.Vq,d.Vs.d,d.Vs.v);j.T7(h,e,E.V.Vq,d.Vs,$);E.V.gI=j.wc(E.V.gI,d.Vs.d,d.Vs.v)}hn.K1(E.add.lmfx,E.V.IP,g,h,e,$,F,E.V.Vq,E.V.gI,d?d.Vs:null)}if(!V.Yv){var W=s.m(g.X()); -s.z0(i,W,3);i=W}j.cZ(F,g,h,e,i,g,0,$,1,E.oG=="diss");E.V.IJ()};dE.prototype._H=function(h,e,$,Z,c){var q=es.get(c),E; -if(q)E=es.J8(q,c[q]);var P=dE.oK;$=P.wc($,Z.d,Z.v);if(!(V.Yv&&e.dz(Z)))P.T7(h,e,$,Z);if(E){if(V.Yv){var a=Z.clone(); -a.x=a.y=0;if(e.dz(Z)){V.wo($,a);es.BO(E,h.jg,a)}else{V.wo($,Z);$.D1(Z);es.BO(E,$.Jw,a)}}else es.Vv(E,$,$,Z)}return $}; -dE.prototype.NG=function(h,e,$,Z,c){var q=this.children;for(var G=0;G1.0001; -if(H){_.d=Math.round(_.d/J);_.v=Math.round(_.v/J);_.x=Math.round((this.d-_.d)/2);_.y=Math.round((this.v-_.v)/2)}else if(c&&cE.B3(h.buffer)=="pdf"&&this.Ay!=144){var J=144/this.Ay; -_.d=Math.round(_.d/J);_.v=Math.round(_.v/J);H=!0}L.buffer=s.m(L.rect.X()*4);if(!H)s.i7(a.bH[0],L.buffer)}L.add.SoLd={classID:"null",Idnt:{t:"TEXT",v:q},Impr:{t:"Objc",v:{__name:"None",classID:"none"}},placed:{t:"TEXT",v:j},PgNm:{t:"long",v:1},totalPages:{t:"long",v:1},frameStep:{t:"Objc",v:{classID:"null",numerator:{t:"long",v:0},denominator:{t:"long",v:600}}},duration:{t:"Objc",v:{classID:"null",numerator:{t:"long",v:0},denominator:{t:"long",v:600}}},frameCount:{t:"long",v:1},Annt:{t:"long",v:16},Type:{t:"long",v:2},Trnf:null,nonAffineTransform:null,warp:{t:"Objc",v:s.FO.m(L.rect)},Sz:{t:"Objc",v:{classID:"Pnt",Wdth:{t:"doub",v:L.rect.d},Hght:{t:"doub",v:L.rect.v}}},Rslt:{t:"UntF",v:{type:"#Rsl",val:72}}}; -var S=s.a.Kf(L.rect).H;L.add.SoLd.Trnf=f.o.h8(S);L.add.SoLd.nonAffineTransform=f.o.h8(S);if(H)L.l3(this,!1); -return L};c9.prototype.v2=function(h){if(h!=null){this.s();this.cm(h);var e=this.buffer;if(V.Yv)this.i8.get(e); -else e=e.slice(0);this.s();this.cm();return e}if(this.ta){this.cm();this.ta=null}if(V.Yv&&this.mJ){this.i8.get(this.buffer); -this.mJ=null;this.qk=!0}return this.buffer};c9.prototype.sb=function(){for(var G=0;G"); -e.add.lsct=hJ.RS;e.GO=24;return e};c9.prototype.Kq=function(){return this.Nd!=this.UH};c9.prototype.eG=function(h){while(this.history.length>this.Nd+1)this.history.pop(); -if(this.UH>this.Nd)this.UH=-1;if(h.F.id!=f.zI){this.Te=!0;if(this.Gs.lastAppliedComp){delete this.Gs.lastAppliedComp; -this.qk=!0}}this.history.push(h);this.Nd++;this.qk=!0;var e=e3.xK()?60:30,$=0;for(var G=this.history.length-1; -G>=0;G--){var Z=this.history[G];if(Z.Us)continue;$++;if($==e){this.Nd-=G;this.history=this.history.slice(G); -break}}};c9.prototype.fX=function(){if(this.Nd!=this.history.length-1)return null;return this.history[this.history.length-1]}; -c9.prototype.wR=function(h,e,$,Z){if(h==null)h=!1;var c=e!=null?[e]:this.C.slice(0);if(Z){var q=[];for(var G=0; -G2){var c=Z.DZ[0];c.NS=-1; -e.push(c);if(Z.fV.indexOf(0)!=-1)$.push(e.length-1)}var E=Z.mG==null;if(E)Z.mG=[];for(var G=Z.C.length-1; -G>=0;G--){var P=Z.t[Z.C[G]],a=P.add.TySh;if(P.add.vmsk!=null&&(P.Hy||P.SV())){var c=c9.Bd("\""+P.getName()+"\" Shape Path",P.add); -c.NS=Z.C[G];e.push(c);if(E)Z.mG.push(q);if(Z.mG.indexOf(q)!=-1)$.push(e.length-1);q++}if(h!=!0&&a&&a.add&&s.FO.en(a.$F)){var c=c9.Bd("\""+P.getName().slice(0,10)+"..\" Text Path",a.add); -c.NS=1e6+Z.C[G];e.push(c);$.push(e.length-1);q++}}if($.length==0&&h){Z.DZ[0].NS=-1;Z.fV=[0];$.push(e.length); -e.push(Z.DZ[0])}return[e,$]};c9.prototype.dk=function(G,h){var e=[],t=this.root.fH(G);if(t)t.lQ(e,h); -return e};c9.prototype.pL=function(){this.root.TD(this,new O(0,0,this.d,this.v),32)};c9.prototype.a4=function(h){for(var G=0; -G1e3){var e=this.root.children; -for(var G=0;G>>8&255)<<8|L>>>16;a.rect=new O(0,0,$,Z);a.buffer=s.m($*Z*4); -s.Ut(a.buffer,{Wht:4294967295,BckC:255<<24|L}[j])}P.buffer=s.m($*Z*4);return P};function hX(h){this.q4=h; -this.S=0;this.Wt=1;this.i=new eu(0,0);this.uY=new eu(0,0);this.uk=0;this.RI=[1,1,1];this.qM=new O(0,0,1,1); -this.a3j=new O(0,0,h.d,h.v);this.og=null;this.Dc=null;this.uo=new Uint32Array(0);this.h4=null;this.Xw=null; -this.Pl=s.m(0);this.Bb=null;this.SJ=null}hX.prototype.EO=function(h){var e=new i7,$=this.qM,Z=this.q4,c=h?this.Wt:this.S,q=h?this.uY:this.i,E=Math.round(($.d-Z.d*c)/2+q.x),P=Math.round(($.v-Z.v*c)/2+q.y); -e.translate(-E,-P);e.scale(1/c,1/c);var a=Z.d/2,j=Z.v/2;e.translate(-a,-j);e.rotate(this.uk);e.translate(a,j); -return e};hX.prototype.xz=function(h){var e=this.qM,$=this.q4,Z=Math.atan2(-h.O,h.R),c=$.d/2,q=$.v/2; -h.translate(-c,-q);h.rotate(-Z);h.translate(c,q);var E=1/h.rD();h.scale(E,E);var P=-h.zq,a=-h.nL,j=Math.round(P-(e.d-$.d*E)/2),L=Math.round(a-(e.v-$.v*E)/2); -if(Math.abs(E-Math.round(E))<1e-6)E=Math.round(E);this.uk=Z;this.S=E;this.i=new eu(j,L)};hX.prototype.QX=function(h,e){var $=this.EO(); -return $.tf(new eu(h,e))};hX.prototype.ab=function(h,e){var $=this.EO();$.vy();return $.tf(new eu(h,e))}; -function c3(){}c3.order="ebbl FrFX IrSh IrGl ChFX SoFi GrFl patternFill OrGl DrSh".split(" ");c3.qV="ebblMulti frameFXMulti innerShadowMulti IrGlMulti ChFXMulti solidFillMulti gradientFillMulti patternFillMulti OrGlMulti dropShadowMulti".split(" "); -c3.names=[[14,4],[14,9],[14,1],[14,3],[14,8],[14,5],[14,6],[14,7],[14,2],[14,0]];c3.OE=["DrSh","IrSh","SoFi","GrFl","FrFX"]; -c3.O7=["Clr"];c3.bv="Grad Rvrs Type Algn Angl Dthr Scl Ofst".split(" ");c3.Tk=["Ptrn","Scl","Algn","phase"]; -c3.zn={AJ:"{\"t\":\"Objc\",\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":255,\"t\":\"doub\"},\"Grn\":{\"v\":0,\"t\":\"doub\"},\"Bl\":{\"v\":0,\"t\":\"doub\"}}}",HR:"{\"t\":\"Objc\",\"v\":{\"classID\":\"Grdn\",\"Nm\":{\"v\":\"Two Color\",\"t\":\"TEXT\"},\"GrdF\":{\"v\":{\"GrdF\":\"CstS\"},\"t\":\"enum\"},\"Intr\":{\"v\":4096,\"t\":\"doub\"},\"Clrs\":{\"v\":[{\"v\":{\"classID\":\"Clrt\",\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":0,\"t\":\"doub\"},\"Grn\":{\"v\":0,\"t\":\"doub\"},\"Bl\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},\"Type\":{\"v\":{\"Clry\":\"UsrS\"},\"t\":\"enum\"},\"Lctn\":{\"v\":0,\"t\":\"long\"},\"Mdpn\":{\"v\":50,\"t\":\"long\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"Clrt\",\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":255,\"t\":\"doub\"},\"Grn\":{\"v\":255,\"t\":\"doub\"},\"Bl\":{\"v\":255,\"t\":\"doub\"}},\"t\":\"Objc\"},\"Type\":{\"v\":{\"Clry\":\"UsrS\"},\"t\":\"enum\"},\"Lctn\":{\"v\":4096,\"t\":\"long\"},\"Mdpn\":{\"v\":50,\"t\":\"long\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"},\"Trns\":{\"v\":[{\"v\":{\"classID\":\"TrnS\",\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},\"Lctn\":{\"v\":0,\"t\":\"long\"},\"Mdpn\":{\"v\":50,\"t\":\"long\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"TrnS\",\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},\"Lctn\":{\"v\":4096,\"t\":\"long\"},\"Mdpn\":{\"v\":50,\"t\":\"long\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"}}}",pF:"{\"t\":\"Objc\",\"v\":{\"classID\":\"Grdn\",\"Nm\":{\"v\":\"Foreground to Background\",\"t\":\"TEXT\"},\"GrdF\":{\"t\":\"enum\",\"v\":{\"GrdF\":\"CstS\"}},\"Intr\":{\"t\":\"doub\",\"v\":4096},\"Clrs\":{\"t\":\"VlLs\",\"v\":[{\"t\":\"Objc\",\"v\":{\"classID\":\"Clrt\",\"Type\":{\"t\":\"enum\",\"v\":{\"Clry\":\"FrgC\"}},\"Lctn\":{\"t\":\"long\",\"v\":0},\"Mdpn\":{\"t\":\"long\",\"v\":50}}},{\"t\":\"Objc\",\"v\":{\"classID\":\"Clrt\",\"Type\":{\"t\":\"enum\",\"v\":{\"Clry\":\"BckC\"}},\"Lctn\":{\"t\":\"long\",\"v\":4096},\"Mdpn\":{\"t\":\"long\",\"v\":50}}}]},\"Trns\":{\"t\":\"VlLs\",\"v\":[{\"t\":\"Objc\",\"v\":{\"classID\":\"TrnS\",\"Opct\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":100}},\"Lctn\":{\"t\":\"long\",\"v\":0},\"Mdpn\":{\"t\":\"long\",\"v\":50}}},{\"t\":\"Objc\",\"v\":{\"classID\":\"TrnS\",\"Opct\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":100}},\"Lctn\":{\"t\":\"long\",\"v\":4096},\"Mdpn\":{\"t\":\"long\",\"v\":50}}}]}}}",eF:"{\"t\":\"Objc\",\"v\":{\"classID\":\"Ptrn\",\"Nm\":{\"v\":\"orangeslices\",\"t\":\"TEXT\"},\"Idnt\":{\"v\":\"c7acb22a-47a6-11de-919a-bf574370eaaf\",\"t\":\"TEXT\"}}}"}; -c3.zn.AJ="\"Clr\": "+c3.zn.AJ;c3.zn.Y="\"Grad\":"+c3.zn.HR+",\"Rvrs\":{\"v\":false,\"t\":\"bool\"},\"Type\":{\"v\":{\"GrdT\":\"Lnr\"},\"t\":\"enum\"},\"Algn\":{\"v\":true,\"t\":\"bool\"},\"Angl\":{\"v\":{\"type\":\"#Ang\",\"val\":90},\"t\":\"UntF\"},\"Scl\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},\"Ofst\":{\"v\":{\"classID\":\"Pnt\",\"Hrzn\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"Vrtc\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"}},\"t\":\"Objc\"},\"Dthr\":{\"v\":false,\"t\":\"bool\"}"; -c3.zn.eF="\"Ptrn\":"+c3.zn.eF+",\"Scl\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},\"Algn\":{\"v\":true,\"t\":\"bool\"},\"phase\":{\"v\":{\"classID\":\"Pnt\",\"Hrzn\":{\"v\":0,\"t\":\"doub\"},\"Vrtc\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"}"; -c3.default="{ \"classID\": \"null\", \"Scl\": {\"t\": \"UntF\", \"v\": { \"type\": \"#Prc\",\"val\": 100} }, \"masterFXSwitch\": {\"t\": \"bool\",\"v\": true} }"; -c3.kD=["{\"classID\":\"ebbl\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"hglM\":{\"t\":\"enum\",\"v\":{\"BlnM\":\"Scrn\"}},\"hglC\":{\"t\":\"Objc\",\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"t\":\"doub\",\"v\":255},\"Grn\":{\"t\":\"doub\",\"v\":255},\"Bl\":{\"t\":\"doub\",\"v\":255}}},\"hglO\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":75}},\"sdwM\":{\"t\":\"enum\",\"v\":{\"BlnM\":\"Mltp\"}},\"sdwC\":{\"t\":\"Objc\",\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"t\":\"doub\",\"v\":0},\"Grn\":{\"t\":\"doub\",\"v\":0},\"Bl\":{\"t\":\"doub\",\"v\":0}}},\"sdwO\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":75}},\"bvlT\":{\"t\":\"enum\",\"v\":{\"bvlT\":\"SfBL\"}},\"bvlS\":{\"t\":\"enum\",\"v\":{\"BESl\":\"InrB\"}},\"uglg\":{\"t\":\"bool\",\"v\":true},\"lagl\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Ang\",\"val\":120}},\"Lald\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Ang\",\"val\":30}},\"srgR\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":100}},\"blur\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Pxl\",\"val\":5}},\"bvlD\":{\"t\":\"enum\",\"v\":{\"BESs\":\"In\"}},\"TrnS\":{\"t\":\"Objc\",\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"t\":\"TEXT\",\"v\":\"Linear\"},\"Crv\":{\"t\":\"VlLs\",\"v\":[{\"t\":\"Objc\",\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"t\":\"doub\",\"v\":0},\"Vrtc\":{\"t\":\"doub\",\"v\":0}}},{\"t\":\"Objc\",\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"t\":\"doub\",\"v\":255},\"Vrtc\":{\"t\":\"doub\",\"v\":255}}}]}}},\"antialiasGloss\":{\"t\":\"bool\",\"v\":false},\"Sftn\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Pxl\",\"val\":0}},\"useShape\":{\"t\":\"bool\",\"v\":false},\"MpgS\":{\"t\":\"Objc\",\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"t\":\"TEXT\",\"v\":\"Linear\"},\"Crv\":{\"t\":\"VlLs\",\"v\":[{\"t\":\"Objc\",\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"t\":\"doub\",\"v\":0},\"Vrtc\":{\"t\":\"doub\",\"v\":0}}},{\"t\":\"Objc\",\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"t\":\"doub\",\"v\":255},\"Vrtc\":{\"t\":\"doub\",\"v\":255}}}]}}},\"AntA\":{\"t\":\"bool\",\"v\":false},\"Inpr\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":28}},\"useTexture\":{\"t\":\"bool\",\"v\":false},\"InvT\":{\"t\":\"bool\",\"v\":false},\"Algn\":{\"t\":\"bool\",\"v\":true},\"Scl\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":100}},\"textureDepth\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":100}},\"Ptrn\":{\"t\":\"Objc\",\"v\":{\"classID\":\"Ptrn\",\"Nm\":{\"t\":\"TEXT\",\"v\":\"orangeslices\"},\"Idnt\":{\"t\":\"TEXT\",\"v\":\"c7acb22a-47a6-11de-919a-bf574370eaaf\"}}},\"phase\":{\"t\":\"Objc\",\"v\":{\"classID\":\"Pnt\",\"Hrzn\":{\"t\":\"doub\",\"v\":0},\"Vrtc\":{\"t\":\"doub\",\"v\":0}}}}","{\"classID\":\"FrFX\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Nrml\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},\"Styl\":{\"v\":{\"FStl\":\"OutF\"},\"t\":\"enum\"},\"PntT\":{\"v\":{\"FrFl\":\"SClr\"},\"t\":\"enum\"},\"Sz\":{\"v\":{\"type\":\"#Pxl\",\"val\":3},\"t\":\"UntF\"},"+c3.zn.AJ+","+c3.zn.Y+","+c3.zn.eF+"}","{\"classID\":\"IrSh\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Mltp\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\": 75},\"t\":\"UntF\"},\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":0,\"t\":\"doub\"},\"Grn\":{\"v\":0,\"t\":\"doub\"},\"Bl\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},\"uglg\":{\"v\":true,\"t\":\"bool\"},\"lagl\":{\"v\":{\"type\":\"#Ang\",\"val\":120},\"t\":\"UntF\"},\"Dstn\":{\"v\":{\"type\":\"#Pxl\",\"val\":5},\"t\":\"UntF\"},\"Ckmt\":{\"v\":{\"type\":\"#Pxl\",\"val\":0},\"t\":\"UntF\"},\"blur\":{\"v\":{\"type\":\"#Pxl\",\"val\":5},\"t\":\"UntF\"},\"Nose\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"AntA\":{\"v\":false,\"t\":\"bool\"},\"TrnS\":{\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"v\":\"Linear\",\"t\":\"TEXT\"},\"Crv\":{\"v\":[{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":0,\"t\":\"doub\"},\"Vrtc\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":255,\"t\":\"doub\"},\"Vrtc\":{\"v\":255,\"t\":\"doub\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"}},\"t\":\"Objc\"}}","{\"classID\":\"IrGl\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Scrn\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\": 75},\"t\":\"UntF\"},\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":255,\"t\":\"doub\"},\"Grn\":{\"v\":255,\"t\":\"doub\"},\"Bl\":{\"v\":189.99710083007812,\"t\":\"doub\"}},\"t\":\"Objc\"},\"GlwT\":{\"v\":{\"BETE\":\"SfBL\"},\"t\":\"enum\"},\"Ckmt\":{\"v\":{\"type\":\"#Pxl\",\"val\":0},\"t\":\"UntF\"},\"blur\":{\"v\":{\"type\":\"#Pxl\",\"val\":5},\"t\":\"UntF\"},\"ShdN\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"Nose\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"AntA\":{\"v\":false,\"t\":\"bool\"},\"glwS\":{\"v\":{\"IGSr\":\"SrcE\"},\"t\":\"enum\"},\"TrnS\":{\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"v\":\"Linear\",\"t\":\"TEXT\"},\"Crv\":{\"v\":[{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":0,\"t\":\"doub\"},\"Vrtc\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":255,\"t\":\"doub\"},\"Vrtc\":{\"v\":255,\"t\":\"doub\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"}},\"t\":\"Objc\"},\"Inpr\":{\"v\":{\"type\":\"#Prc\",\"val\":50},\"t\":\"UntF\"}}","{\"classID\":\"ChFX\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Mltp\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\": 50},\"t\":\"UntF\"},\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":0,\"t\":\"doub\"},\"Grn\":{\"v\":0,\"t\":\"doub\"},\"Bl\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},\"AntA\":{\"v\":false,\"t\":\"bool\"},\"Invr\":{\"v\":true,\"t\":\"bool\"},\"lagl\":{\"v\":{\"type\":\"#Ang\",\"val\":19},\"t\":\"UntF\"},\"Dstn\":{\"v\":{\"type\":\"#Pxl\",\"val\":11},\"t\":\"UntF\"},\"blur\":{\"v\":{\"type\":\"#Pxl\",\"val\":14},\"t\":\"UntF\"},\"MpgS\":{\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"v\":\"Gaussian\",\"t\":\"TEXT\"},\"Crv\":{\"v\":[{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":0,\"t\":\"doub\"},\"Vrtc\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":32,\"t\":\"doub\"},\"Vrtc\":{\"v\":7,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":64,\"t\":\"doub\"},\"Vrtc\":{\"v\":38,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":96,\"t\":\"doub\"},\"Vrtc\":{\"v\":101,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":128,\"t\":\"doub\"},\"Vrtc\":{\"v\":166,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":159,\"t\":\"doub\"},\"Vrtc\":{\"v\":209,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":191,\"t\":\"doub\"},\"Vrtc\":{\"v\":235,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":223,\"t\":\"doub\"},\"Vrtc\":{\"v\":248,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":255,\"t\":\"doub\"},\"Vrtc\":{\"v\":255,\"t\":\"doub\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"}},\"t\":\"Objc\"}}","{\"classID\":\"SoFi\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Nrml\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},"+c3.zn.AJ+"}","{\"classID\":\"GrFl\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Nrml\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},"+c3.zn.Y+"}","{\"classID\":\"patternFill\",\"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Nrml\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},"+c3.zn.eF+"}","{\"classID\":\"OrGl\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Scrn\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\": 75},\"t\":\"UntF\"},\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":255,\"t\":\"doub\"},\"Grn\":{\"v\":255,\"t\":\"doub\"},\"Bl\":{\"v\":189.99710083007812,\"t\":\"doub\"}},\"t\":\"Objc\"},\"GlwT\":{\"v\":{\"BETE\":\"SfBL\"},\"t\":\"enum\"},\"Ckmt\":{\"v\":{\"type\":\"#Pxl\",\"val\":0},\"t\":\"UntF\"},\"blur\":{\"v\":{\"type\":\"#Pxl\",\"val\":5},\"t\":\"UntF\"},\"Nose\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"ShdN\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"AntA\":{\"v\":false,\"t\":\"bool\"},\"TrnS\":{\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"v\":\"Linear\",\"t\":\"TEXT\"},\"Crv\":{\"v\":[{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":0,\"t\":\"doub\"},\"Vrtc\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":255,\"t\":\"doub\"},\"Vrtc\":{\"v\":255,\"t\":\"doub\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"}},\"t\":\"Objc\"},\"Inpr\":{\"v\":{\"type\":\"#Prc\",\"val\":50},\"t\":\"UntF\"}}","{\"classID\":\"DrSh\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Mltp\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\": 57},\"t\":\"UntF\"},\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":0,\"t\":\"doub\"},\"Grn\":{\"v\":0,\"t\":\"doub\"},\"Bl\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},\"uglg\":{\"v\":true,\"t\":\"bool\"},\"lagl\":{\"v\":{\"type\":\"#Ang\",\"val\":120},\"t\":\"UntF\"},\"Dstn\":{\"v\":{\"type\":\"#Pxl\",\"val\":27},\"t\":\"UntF\"},\"Ckmt\":{\"v\":{\"type\":\"#Pxl\",\"val\":0},\"t\":\"UntF\"},\"blur\":{\"v\":{\"type\":\"#Pxl\",\"val\":13},\"t\":\"UntF\"},\"Nose\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"AntA\":{\"v\":false,\"t\":\"bool\"},\"TrnS\":{\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"v\":\"Line\xE1rn\xED\",\"t\":\"TEXT\"},\"Crv\":{\"v\":[{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":0,\"t\":\"doub\"},\"Vrtc\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":255,\"t\":\"doub\"},\"Vrtc\":{\"v\":255,\"t\":\"doub\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"}},\"t\":\"Objc\"},\"layerConceals\":{\"v\":true,\"t\":\"bool\"}}"]; -c3.Y={types:"Lnr Rdl Angl Rflc Dmnd shapeburst".split(" "),names:[[19,0,0],[19,0,1],[19,0,2],[19,0,3],[19,0,4],[19,0,5]]}; -c3.stroke={types:["InsF","CtrF","OutF"],names:[[19,5,2],[19,5,1],[19,5,0]],YS:["SClr","GrFl","Ptrn"],a5c:[[13,0],[12,37],[12,62]]}; -c3._L={types:["SfBL","PrBL"],names:[[19,1,0],[19,1,1]],zA:["SrcC","SrcE"],a5H:[[19,5,1],[12,69]]};c3.m4={types:["OtrB","InrB","Embs","PlEb","strokeEmboss"],style:[[19,2,0],[19,2,1],[19,2,2],[19,2,3],[19,2,4]],JW:["SfBL","PrBL","Slmt"],abi:[[19,3,0],[19,3,1],[19,3,2]],dir:[[19,4,0],[19,4,1]]}; -c3.oF={kS:["strokeStyleButtCap","strokeStyleRoundCap","strokeStyleSquareCap"],ws:["strokeStyleAlignInside","strokeStyleAlignCenter","strokeStyleAlignOutside"],join:["strokeStyleMiterJoin","strokeStyleRoundJoin","strokeStyleBevelJoin"],$v:["solidColorLayer","gradientLayer","patternLayer"],default:{classID:"strokeStyle",strokeStyleVersion:{t:"long",v:2},strokeEnabled:{t:"bool",v:!1},fillEnabled:{t:"bool",v:!0},strokeStyleLineWidth:{t:"UntF",v:{type:"#Pnt",val:4.38}},strokeStyleLineDashOffset:{t:"UntF",v:{type:"#Pnt",val:0}},strokeStyleMiterLimit:{t:"doub",v:100},strokeStyleLineCapType:{t:"enum",v:{strokeStyleLineCapType:"strokeStyleButtCap"}},strokeStyleLineJoinType:{t:"enum",v:{strokeStyleLineJoinType:"strokeStyleMiterJoin"}},strokeStyleLineAlignment:{t:"enum",v:{strokeStyleLineAlignment:"strokeStyleAlignCenter"}},strokeStyleScaleLock:{t:"bool",v:!1},strokeStyleStrokeAdjust:{t:"bool",v:!1},strokeStyleLineDashSet:{t:"VlLs",v:[]},strokeStyleBlendMode:{t:"enum",v:{BlnM:"Nrml"}},strokeStyleOpacity:{t:"UntF",v:{type:"#Prc",val:100}},strokeStyleContent:{t:"Objc",v:JSON.parse("{\"classID\":\"solidColorLayer\","+c3.zn.AJ+"}")},strokeStyleResolution:{t:"doub",v:72}}}; -c3.nf=[{classID:"null",Clr:JSON.parse(c3.kD[5]).Clr},{classID:"null",Grad:JSON.parse(c3.kD[6]).Grad,Dthr:{t:"bool",v:!1},Rvrs:{t:"bool",v:!1},Angl:{t:"UntF",v:{type:"#Ang",val:60}},Type:{t:"enum",v:{GrdT:"Lnr"}},Algn:{t:"bool",v:!0},Scl:{t:"UntF",v:{type:"#Prc",val:100}},Ofst:{t:"Objc",v:{classID:"Pnt",Hrzn:{t:"UntF",v:{type:"#Prc",val:0}},Vrtc:{t:"UntF",v:{type:"#Prc",val:0}}}}},{classID:"null",Ptrn:JSON.parse(c3.kD[7]).Ptrn,Algn:{v:!0,t:"bool"},Scl:{v:{type:"#Prc",val:100},t:"UntF"},phase:{v:{classID:"Pnt",Hrzn:{v:0,t:"doub"},Vrtc:{v:0,t:"doub"}},t:"Objc"}}]; -var hn={};hn.aok=function(h,e,$){if(h.nK())return;var Z=s.W.agr(h.b);Z.x=Math.floor(Z.x*e);Z.d=Math.ceil(Z.d*e); -Z.y=Math.floor(Z.y*$);Z.v=Math.ceil(Z.v*$);h.rect=Z;h.channel=s.m(Z.X());s.BA.width=Z.d;s.BA.height=Z.v; -var c=s.qM;c.fillStyle="#ffffff";s.W.a7w(c,h.b,e,$,-Z.x,-Z.y);c.fill();var q=c.getImageData(0,0,Z.d,Z.v).data; -s.z0(q,h.channel,3)};hn.Ef=function(h,e){function $(h,_){if(h==null)return null;var J=h[_].v,S;if(J.length!=0){S=J[0].v; -if(!S.enab.v)S=null}return S}var Z=e.SoCo,c=e.GdFl,q=$(h,"solidFillMulti"),E=$(h,"gradientFillMulti"); -if(q==null&&E==null)return[Z,c];var P=hn.a52;if(Z&&q&&E==null){var a=JSON.parse(JSON.stringify(Z));a.Clr.v=P(q.Clr.v,Z.Clr.v,q); -return[a,null]}if(c&&q&&E==null){var j=JSON.parse(JSON.stringify(c)),L=j.Grad.v.Clrs.v;for(var G=0;G0&&_.blur.v.val>0)E=Math.max(E,Math.ceil(_.Ckmt.v.val*_.blur.v.val/100)); -if(a=="OrGl"&&_.enab.v&&_.Ckmt.v.val>0&&_.blur.v.val>0&&_.GlwT.v.BETE=="SfBL")E=Math.max(E,Math.ceil(_.Ckmt.v.val*_.blur.v.val/100)); -if(a=="OrGl"&&_.enab.v&&_.blur.v.val>0&&_.GlwT.v.BETE=="PrBL")E=Math.max(E,_.blur.v.val);if(a=="FrFX"&&_.enab.v&&_.Sz.v.val>0){if(_.Styl.v.FStl=="OutF")E=Math.max(E,_.Sz.v.val); -if(_.Styl.v.FStl=="CtrF")E=Math.max(E,Math.ceil(_.Sz.v.val/2));P=Math.max(P,hn.gc(_)[1])}}}var J=new hn.Ym($,Z,E,hn.qP(h)),S=-Z.x,N=-Z.y,Y={type:{},all:[]}; -for(var U=0;U=0;g--){var M=h[j].v[g].v;if(!M.enab.v)continue;var C=M.blur?M.blur.v.val:0,y=M.Ckmt?M.Ckmt.v.val/100:0,i=C*y; -if(a=="DrSh"){var Q=J.C0(i,C-i,!0),m=Q.mF,n=Q._;n.offset(S,N);hn.QJ(m,M,!1);hn.IO(n,M,c,0);var u=s.m(n.X()*4); -hn.cR(u,M.Clr.v);s.Jk(m,u,3);var K={Hl:u,XR:n,Uz:eN.Tj(M.Md.v.BlnM),H6:M.Opct.v.val/100,ajT:M.layerConceals.v}; -Y.type[a].push(K);Y.all.push(K)}if(a=="IrSh"){var Q=J.C0(i,C-i,!1);hn.IO(Q._,M,c,0);var n=J.rect().clone(),m=s.m(n.X()); -m.fill(255);s.T7(Q.mF,Q._,m,n);hn.QJ(m,M,!0);var u=s.m(n.X()*4);hn.cR(u,M.Clr.v);s.Jk(m,u,3);n.offset(S,N); -var K={Hl:u,XR:n,Uz:eN.Tj(M.Md.v.BlnM),H6:M.Opct.v.val/100};Y.type[a].push(K);Y.all.push(K)}if(a=="GrFl"){var u=s.m(J.rect().X()*4); -hn.Jl(M,u,J.rect(),c,null,q);var n=J.rect().clone();n.offset(S,N);var K={Hl:u,XR:n,Uz:eN.Tj(M.Md.v.BlnM),H6:M.Opct.v.val/100}; -Y.type[a].push(K);Y.all.push(K)}if(a=="SoFi"){var u=s.m(J.mF().length*4);hn.cR(u,M.Clr.v);var n=J.rect().clone(); -n.offset(S,N);var K={Hl:u,XR:n,Uz:eN.Tj(M.Md.v.BlnM),H6:M.Opct.v.val/100};Y.type[a].push(K);Y.all.push(K)}if(a=="ebbl"){var F=!1; -if(F)console.log(M);var b=Date.now(),d=M.bvlS.v.BESl;if(d=="strokeEmboss"){var W=h.frameFXMulti.v;if(W.length==0)continue; -W=W[0].v;if(!W.enab.v)continue;var A=W.Styl.v.FStl;if(A=="OutF")d="OtrB";if(A=="CtrF")d="Embs";if(A=="InsF")d="InrB"}var C=M.blur.v.val; -if(C==0)C=.7;if(d=="Embs"||d=="PlEb")C/=2;var z=["OtrB","InrB","Embs","PlEb","strokeEmboss"],T=["SfBL","PrBL","Slmt"],R=["In","Out"],I=M.bvlT.v.bvlT!="SfBL"?C:C*.45,r=Math.round(C),x=J.rect().clone(),X=x.clone(); -X.P5(r,r);var l=X.d,hH=X.v,hZ=l*hH,gj=s.m(hZ);s.T7(J.mF(),x,gj,X);var hO=new Float64Array(hZ),v=new Float64Array(hZ); -s.style.S7(gj,hO,l,hH);s.vy(gj);s.style.S7(gj,v,l,hH);if(F)console.log("distTransform computed",Date.now()-b); -for(var G=0;GI)v[G]=I}if(F)console.log("summing + cropping",Date.now()-b); -if(M.bvlT.v.bvlT=="SfBL"){var ht=Math.pow(C*.21,1.22);if(!0)ht=Math.max(ht,2);var ga=s.Nw.dx(ht,2);s.Nw.nd(v,hO,X,ga[0]>>>1); -s.Nw.nd(hO,v,X,ga[1]>>>1)}if(F)console.log("blurring",Date.now()-b);var eB=v,bP=eB.slice(0);if(M.useShape.v){var ek=Math.min(100,M.Inpr.v.val+1)/100; -if(d!="OtrB"&&d!="InrB")ek=1;var b_=s.$e.HL(M.MpgS.v.Crv.v,2e3),fz=Math.round(2e3/ek);b_=s.$e.ajX(b_,fz,d=="InrB"); -var ca=.5/I;for(var G=0;G0)bm[G]=hG;if(dt>0)h2[G]=dt}if(F)console.log("raycasting",Date.now()-b); -if(M.Sftn.v.val!=0){s.Nw.Yl(bm,hO,X,M.Sftn.v.val*.43);var gO=hO,hO=bm,bm=gO;if(ag){s.Nw.Yl(h2,hO,X,M.Sftn.v.val*.43); -var gO=hO,hO=h2,h2=gO}else s.i7(bm,h2)}if(F)console.log("softening",Date.now()-b);var b_=s.$e.HL(M.TrnS.v.Crv.v,1024); -for(var G=0;G0){var Q=J.C0(hm,0,!0);hQ=Q.mF;if(hQ.length0){var Q=J.C0(eg,0,!1);iD=s.m(n.X());iD.fill(255);s.T7(Q.mF,Q._,iD,n)}n.offset(S,N); -var u=s.m(n.X()*4),dy=M.PntT.v.FrFl;if(dy=="SClr")hn.cR(u,M.Clr.v);if(dy=="GrFl")hn.Jl(M,u,n,c,J.a93(eg,hm)); -if(dy=="Ptrn")hn.lm(M,u,n,c,e);var K={Hl:u,XR:n,Uz:eN.Tj(M.Md.v.BlnM),H6:M.Opct.v.val/100,QD:hQ,vT:iD}; -Y.type[a].push(K);Y.all.push(K)}}}return Y};hn.Em=function(h){var e=1/Math.sqrt(h.x*h.x+h.y*h.y+h.Qc*h.Qc); -h.x*=e;h.y*=e;h.Qc*=e};hn.Xn=function(h,e){return{x:h.y*e.Qc-h.Qc*e.y,y:h.Qc*e.x-h.x*e.Qc,Qc:h.x*e.y-h.y*e.x}}; -hn.a5w=function(h,e){return h.x*e.x+h.y*e.y+h.Qc*e.Qc};hn.f5=function(h,e){var $=e.Nose.v.val/100;if($>0)for(var G=0; -Gc){var q=s.$e.s_(e.TrnS.v.Crv.v,256,!0);s.FS(h,q)}if($!=null&&e.Nose.v.val>0)s.style.ul(h,e.Nose.v.val/100,$)}; -hn.cR=function(h,e,$){if($==null)$=255;var Z=s.Y.LX(e),c=$<<24|Z.O<<16|Z.l<<8|Z.h,q=new Uint32Array(h.buffer); -q.fill(c)};hn.IO=function(h,e,$,Z){var c=e.uglg&&e.uglg.v?$.ct():e.lagl.v.val;c=c*Math.PI/180+Z;var q=Math.cos(c)*e.Dstn.v.val,E=Math.sin(c)*e.Dstn.v.val; -h.x-=Math.round(q);h.y+=Math.round(E)};hn.tX=function(h){if(h==null)return null;var e=h.frameFXMulti.v; -if(e.length==0)return null;e=e[0].v;var $=JSON.parse(JSON.stringify(c3.oF.default));hn.pJ(e,$);return $}; -hn.pJ=function(h,e){var $=c3.stroke.YS.indexOf(h.PntT.v.FrFl),Z=[c3.O7,c3.bv,c3.Tk][$],c=e.strokeStyleContent.v={classID:c3.oF.$v[$]}; -for(var G=0;G=6)this.S6(this.mi(c))};ec.prototype.bL=function(h){if(h==null)h=1;h=Math.max(.05,Math.min(5,h)); -if(isNaN(h)){alert("Pressure is not a number");throw"e"}return h};ec.prototype.S6=function(h){this.Au=h; -this.BW=this.BW.iJ(h)};ec.prototype.finish=function(){var h=this.yt,e=h.length,$;if(e==4)$=this.ju(h[e-2],h[e-1],this.yk[(e>>1)-1],!0); -if(e>4)$=this.mi(e+2);if($)this.S6($)};ec.prototype.mi=function(h){var e=this.yt,$=this.yk,Z=e[h-6],c=e[h-5],q=e[h-4],E=e[h-3],P=$[(h>>1)-3],a=$[(h>>1)-2],j=new eu(0,0),L=new eu(0,0); -if(8<=h)j=ec.Hc(e[h-8],e[h-7],Z,c,q,E);if(h<=e.length)L=ec.Hc(e[h-2],e[h-1],q,E,Z,c);var H=Z+j.x,_=c+j.y,J=q+L.x,S=E+L.y,N=new O; -for(var G=0;G<10;G++){var Y=(G+1)*.1,U=1-Y,g=U*U*U*Z+3*Y*U*U*H+3*Y*Y*U*J+Y*Y*Y*q,M=U*U*U*c+3*Y*U*U*_+3*Y*Y*U*S+Y*Y*Y*E,C=this.ju(g,M,P+Y*(a-P)); -N=N.iJ(C)}return N};ec.Hc=function(h,e,$,Z,c,q){var E=h-$,P=e-Z,a=c-$,j=q-Z,L=Math.sqrt(E*E+P*P),H=Math.sqrt(a*a+j*j),_=Math.acos((E*a+P*j)/(L*H))/Math.PI,J=.35,S=.1; -_=S+_*(J-S);var N=c-h,Y=q-e,U=Math.sqrt(N*N+Y*Y),g=_*H/U;return new eu(N*g,Y*g)};ec.prototype.ju=function(h,e,$,Z){var c=new O,q=this.py.a8q; -if(q==null)q=0;if(q==0||Z){c=this.oh(h,e,$);return c}var E=this.X_,P=h-E.x,a=e-E.y,j=Math.sqrt(P*P+a*a); -P/=j;a/=j;if(j>q){var L=E.x+P*(j-q),H=E.y+a*(j-q);c=this.oh(L,H,$);this.X_.su(L,H)}return c};ec.prototype.oh=function(h,e,$){var Z=new O,c=new eu(h,e),q=this.O.Brsh.v.Dmtr.v.val,E=this.py.o_,P=c.MR(this.s$); -P.normalize(1);var a=eu.nj(this.s$,c),j=-this.a1G,L=this.s$.clone(),H=this.py.hS;while(!0){var _=this.Io+($-this.Io)*(Math.max(0,j)/a),J=this.wQ()*(H[1]?_:1),S=this.aaT()*(J+this.a9$)/2; -if(E==ec.Eh)S=1;if(j+S0?1:-1;var U=L.clone();U.y+=P.y>0?1:-1;if(eu.nj(Y,N)1)P.Zp=1-(P.Zp-1);P.o8=P.o8+E;if(P.o8<0)P.o8=-P.o8; -if(P.o8>1)P.o8=1-(P.o8-1);e=s.g7(P.CD,P.Zp,P.o8)}return e};ec.prototype.Em=function(h){return Math.max(0,Math.min(1,h))}; -ec.prototype.Dg=function(){this.ZW++;return ec.hash(this.ZW)};ec.vb=function(h){return{h:(h>>16&255)/255,l:(h>>8&255)/255,O:(h>>0&255)/255}}; -ec.hash=function(h){h=h^61^h>>16;h=h+(h<<3);h=h^h>>4;h=h*668265261;h=h^h>>15;return(h&16777215)/16777215}; -ec.J4=[];ec.afC=function(h,t){var e=h.rD(),$=t.rD();if(e<$){var Z=e;e=$;$=Z}var c=h.R-t.R,q=h.O-t.O,E=h.Ma-t.Ma,P=h.rU-t.rU; -return $!=0&&e-$<.025&&Math.max(c*c,q*q,E*E,P*P)<=.01};ec.prototype.amv=function(h,e){var $=null,q;for(var G=0; -G2500){q=P; -break}}var a=Math.round(this.O.Brsh.v.Dmtr.v.val);if(q){q.rect.x=Math.round(q.Y$.x-q.zC.zq+h.zq);q.rect.y=Math.round(q.Y$.y-q.zC.nL+h.nL); -if(c){q.rect.x=Math.round(e.x-q.rect.d/2);q.rect.y=Math.round(e.y-q.rect.v/2)}q.TT=Date.now()}else{var j; -if(c&&a<=3){j={buffer:s.m(a*a*4),rect:new O(Math.round(e.x-a/2),Math.round(e.y-a/2),a,a)};s.Ut(j.buffer,4278190080)}else if(h.R==1&&h.O==0&&h.Ma==0&&h.rU==1){j={buffer:this.Ez.P1,rect:this.Ez.fb.clone()}; -j.rect.x=Math.round(h.zq);j.rect.y=Math.round(h.nL)}else j=f.o.D8([this.Ez.P1,this.Ez.fb],h);if(c){for(var G=0; -G127?255:0}if(j==null)j={buffer:s.m(0),rect:new O};var L=h.zq-Math.floor(h.zq),H=h.nL-Math.floor(h.nL); -q={P1:j.buffer,C7:s.m(j.rect.X()),rect:j.rect,Y$:j.rect.clone(),zC:h,t6:ec.ZF(h.zq,h.nL),TT:Date.now()}; -s.z0(q.P1,q.C7,3);Z.push(q);$.X+=j.rect.X();if(Z.length>2e3||$.X>100*100*400){console.log("pruning",$.X,Z.length); -Z.sort(function(J,S){return S.TT-J.TT});while(Z.length>1e3||$.X>100*100*200){var _=Z.pop();$.X-=_.rect.X()}}}$.G_=Z; -$.TT=Date.now();ec.J4.push($);ec.J4.sort(function(J,S){return S.TT-J.TT});while(ec.J4.length>3)ec.J4.pop(); -return q};ec.ZF=function(h,e){return new eu(h-Math.floor(h),e-Math.floor(e))};ec.aou=function(h,e){var $=e.x,Z=e.y,c=Math.abs($-h.x),q=Math.abs(Z-h.y); -if(Math.abs($-1-h.x)>>1)+1); -for(var G=0;GE*2){var z=new O(c.x,c.y,Math.floor(c.d/2),Math.floor(c.v/2)),T=f.o.D8([Z,c],new i7(z.d/c.d,0,0,z.v/c.v,0,0)); -q*=z.d/c.d;c=T.rect;Z=T.buffer}return{acd:q,fb:c,P1:Z}};ec.Gt=[];ec.kz=function(h){if(ec.Gt[h])return ec.Gt[h]; -var e=Math.pow(h,.55),$=new Float64Array(8e3),Z=0,c=8e3;for(var G=0;G<8e3;G++){var q=ec.ajr(G*(1.55/4e3),e); -if(q>=1)Z=G;else if(q<=0&&c==8e3)c=G;$[G]=q}var E=[$,Z,c];ec.Gt[h]=E;return E};ec.ajr=function(h,e){var $=hH||i>_)&&M[Q+2]){Q+=2;C=M[Q];y=M[Q+1].d;i=M[Q+1].v}if(y*i!=0){var m=s.m(y*i*4); -s.Jk(C,m,3);var n=new ImageData(new Uint8ClampedArray(m.buffer),y,i);P.putImageData(n,Math.round((H-y)/2),Math.round((_-i)/2))}}else{}return E.toDataURL()}; -ec.MO=function(h,e,$,Z){if($==0)$=1;var c=h.Brsh.v,q=c.Dmtr.v.val,E=c.Dmtr.v.val=Math.min(Z!=null?Math.round(Z*2.6):3e3,q*$),P=c.Hrdn?c.Hrdn.v.val/100:1,a=Z!=null?Z:Math.round(E*(1+.55*(1-P)))+4,H; -a=Math.max(15,Math.min(a,3e3));var j=new O(0,0,a,a),L=new ec(h,e,null,{lV:1},16711712,0,j);c.Dmtr.v.val=q; -L.moveTo(j.d/2,j.v/2);var _=L.os(),J=L._A();if(j.dz(J))H=_;else{H=s.m(j.X()*4);s.hX(_,J,H,j)}return[H,j,E]}; -ec.b1=function(h,e,$,Z){var c=ec.MO(h,e,$),q=c[0].slice(0),E=c[1],P=c[2],a=E.X(),j=s.m(a);s.z0(q,j,3); -var L=s.m(a);s.N.an_(j,L,E);if(P<3||s.w_(L,0)||Z&&P>12){var H=E.d,_=H>>>1,J=L,S=255;for(var G=0;G<4; -G++){J[H*(_-6+G)+_]=S;J[H*_+_-6+G]=S;J[H*_+_+6-G]=S;J[H*(_+6-G)+_]=S}}var N=[1,2,1,2,8,2,1,2,1];N=s.V4.er(N); -s.V4.ud(L,j,E.d,E.v,N);s.Ut(q,4294967295);s.Jk(j,q,3);for(var G=0;G80?255:0;if(j==3)for(var G=0;G128?J:-1);if(j[S]==null){j[S]=1;if(e.bE(Z[H].Name,J)==null)a=!1}}L+=q[G]}return a}; -cg.af_=function(h,e,$){var Z=new i7;for(var G=0;G>>3,c=h.TextOnPathTRange,q=h.Reversed,L=0,H=0; -if(q){var E=e.slice(0);for(var G=0;G<$;G+=2){E[G]=e[$-2-G];E[G+1]=e[$-1-G]}e=E;c=[Z-c[1]%Z,Z-c[0]%Z]}var P=[],a=[0],j=[0]; -for(var G=0;G<$;G+=8){var _=e[G+6]-e[G+0],J=e[G+7]-e[G+1],S=Math.round(4*Math.sqrt(_*_+J*J));for(var N=0; -N>>3)+Y)}L=g; -H=M}}var C=j.length,y=j[C-1],i=br.uL(c[0],a),Q=br.uL(c[1]%Z,a),m=j[i%C],n=j[Q%C];if(m>=n)n+=y;return[P,a,j,y,m,n]}; -br.uL=function(h,e){var G=0;while(e[G]65535)q--;return q}for(var Y=0;YC+_/2||m==1&&h.x65535?2:1; -return i}}}}}};br.prototype.e_=function(h){var e={_:new O,vv:0},$=0;for(var Z=0;Zq)q=E}if(q>1424)c=br.afF(Z,e);return c};br.un=function(h,e,$,Z,c,q,E){this.dt=[]; -this.KF=[];this.t6=new eu(0,0);this.RK=null;this.dt=null;this.Tz=gK.ajH(h,Z);var P=this.Tz,H=0,S="",M=0,C=1,r=0; -if(Z!=0){var a=P.SpaceBefore;if(a!=null)q[0]+=a}var j=h.EngineDict.ParagraphRun.RunLengthArray,L=j[Z]; -for(var G=0;G0&&A[z-1].tb==N)z--; -$[H+n+N].Yk=m.length+(K?z:A.length-z-1)}for(var N=0;N>>1;for(var G=0;G=gj)hO=G;else if(hO!=-1&&Q2&&(T==6||!hH))this.a4a(hO,ht,R,eB,_,bP);else{var b_=bP;for(var G=hO; -G=h;G--)if($[G].T8||$[G]._b)q-=$[G]._.d;else break;if(Z==1)for(var G=h; -G=h;G--)if($[G].T8||$[G]._b){if($[G].T8){a--}}else break; -if(c==1)for(var G=h;G>>2);q[Y>>>2]=J==0?j:L;$.fribidi_get_bidi_types(N,S,U);$.fribidi_get_bracket_types(N,S,U,g); -$.fribidi_get_par_embedding_levels_ex(U,g,S,Y,M);var C=c.slice(M,M+S);$.free(N);return C};br.X8=2;var H=new B(D.E.P,!0); -H.data={e:D.U.Ov,HZ:"add",Av:iM.jV,Ep:null};bc.Az.f(H)})}Typr.U.initHB("code/external/hb.wasm",h);return!1}; -function gK(){}gK.OU=function(h){return JSON.parse(JSON.stringify(h))};gK.ts=function(h,e){for(var $ in e)h[$]=e[$]}; -gK.Zh=function(h,e,$){var Z=gK.wC();if($)gK.sq(Z,0,0,$);var c={J:new i7(1,0,0,1,Math.round(h),Math.round(e)),Kx:Z}; -c.jR=gK.eU();c.$F=s.FO.m();c._P=new O;return c};gK.YX=function(h){var e=["CharacterDirection",0];for(var G=0; -G=0?2:h.EngineDict.Rendered.Shapes.Children[0].ShapeType}; -gK.gq=function(h,e){var $=h.EngineDict.Rendered.Shapes.Children[0];$.ShapeType=e;var Z=$.Cookie.Photoshop; -Z.ShapeType=e;Z.Base.ShapeType=e;if(e==0){delete Z.BoxBounds;Z.PointBase=[0,0]}if(e==1){delete Z.PointBase; -Z.BoxBounds=[0,0,1,1]}};gK.r1=function(h){return h.EngineDict.Rendered.Shapes.Children[0].Cookie.Photoshop.BoxBounds}; -gK.IE=function(h,e){h.EngineDict.Rendered.Shapes.Children[0].Cookie.Photoshop.BoxBounds=e};gK.a9o=function(h,e){return gK.akh(h,gK.QW(h,e))}; -gK.QW=function(h,e){var $=h.EngineDict.StyleRun.RunLengthArray;return gK.rp($,e).Ry};gK.akh=function(h,e){var $=h.ResourceDict.StyleSheetSet[0].StyleSheetData,Z={}; -for(var c in $)Z[c]=$[c];var q=h.EngineDict.StyleRun.RunArray[e].StyleSheet.StyleSheetData;gK.ts(Z,q); -return Z};gK.ajH=function(h,e){var $=h.ResourceDict.ParagraphSheetSet[0].Properties,Z={};for(var c in $)Z[c]=$[c]; -var q=h.EngineDict.ParagraphRun.RunArray[e].ParagraphSheet.Properties;gK.ts(Z,q);var E=["StartIndent","EndIndent","FirstLineIndent"]; -for(var G=0;G<3;G++)if(Z[E[G]]==null)Z[E[G]]=0;return Z};gK.Ja=function(h,e,$){if($=="")return;var Z=gK.N8(h); -gK.Ba(h,Z.substring(0,e)+$+Z.substring(e,Z.length));var c=h.EngineDict.StyleRun,q=c.RunLengthArray,E=gK.rp(q,e-1); -q[E.Ry]+=$.length;var P=h.EngineDict.ParagraphRun,q=P.RunLengthArray,a=gK.rp(q,e),j=$.split("\n");if(j.length==1){q[a.Ry]+=$.length; -return}q.splice(a.Ry+1,0,q[a.Ry]-(e-a.k_));P.RunArray.splice(a.Ry+1,0,gK.OU(P.RunArray[a.Ry]));q[a.Ry]-=q[a.Ry+1]; -q[a.Ry]+=j[0].length+1;for(var G=1;G"},{_0:"i40",_1:"s\u201E",_2:"s\u201C",_3:"s\u201A",_4:"s\u2018"},{_0:"i41",_1:"s\xAB",_2:"s\xBB",_3:"s<",_4:"s>"},{_0:"i42",_1:"s\u201E",_2:"s\u201C",_3:"s\u201A",_4:"s\u2018"},{_0:"i43",_1:"s\u201C",_2:"s\u201D",_3:"s\u2018",_4:"s\u2019"},{_0:"i44",_1:"s\xAB",_2:"s\xBB",_3:"s\u2039",_4:"s\u203A"},{_0:"i45",_1:"s\u201C",_2:"s\u201D",_3:"s\u2018",_4:"s\u2019"}],_15:{_0:"sWinSoft"},_16:!1}; -var cU={};cU.aci=function(h){return cU.Z2(h,cU.Ji,0)};cU.aiI=function(h){return cU.sW(h,cU.Ji)};cU.Z2=function(h,e,$){var Z; -if(typeof h=="string")return h;if(h instanceof Array){Z=[];for(var G=0;G0)P.push("border-radius: "+Math.round(L)+"px")}else if(E){var H=E.Kx;if(gK.De(H)==1){var j=gK.r1(H); -P.push("width: "+Math.round(j[2])+"px");P.push("height: "+Math.round(j[3])+"px")}CSS.pu(P,gK.hT(H,0,0),E.J,!1,!1,a[0])}var _=[],J=q?q.dropShadowMulti.v:0; -for(var G=0;G>16&255,l:h>>8&255,O:h&255}};CSS.PU=function(h,e){return CSS.iP(s.Y.LX(h),e)}; -CSS.iP=function(h,e){if(e==null)e=1;var $=Math.round(h.h),Z=Math.round(h.l),c=Math.round(h.O),q=$<<16|Z<<8|c; -return e==1?"#"+s.jT(q):"rgba("+$+","+Z+","+c+","+e+")"};CSS.Cd=function(h){var e=h.Grad.v;if(e.Clrs==null)return""; -var $=e.Clrs.v.slice(0),Z=e.Trns.v.slice(0),c=h.Ofst.v,q=h.Type.v.GrdT=="Rdl"?1:0,E=(q==1?"radial":"linear")+"-gradient",P=q==0?Math.round(-h.Angl.v.val+90)+"deg":"circle at center",a=h.Rvrs.v; -if(a){$.reverse();Z.reverse()}for(var G=0;G<$.length;G++){var j=$[G].v,L=G")return h>e; -else if($=="==")return h==e;else if($=="<=")return h<=e;else if($==">=")return h>=e;else if($=="!=")return h!=e; -else if($=="!==")return h!==e;else if($=="<<")return h<>")return h>>e;else console.log($)}; -eA.yd=function(h,e){if(e=="-")return-h;else if(e=="!")return!h;else if(e=="~")return~h;else if(e=="+")return h; -else console.log(obj)};eA.uc=function(h,e,$){var Z=h.type;if(Z=="Identifier")return eA.a3P(h.name,e,$); -else return eA.eval(h,e,$)};eA.a3P=function(h,e,$){if(h=="undefined")return undefined;else if($.hasOwnProperty(h))return $[h]; -else if(h=="app")return{RI:"Application"};else if(h=="$")return{RI:"$"};else if(eA.BK.ab3.indexOf(h)!=-1)return eA.BK.l8({RI:"Application"},h,e,$); -else if(window[h]&&!eA.zo[h])return window[h];else{$[h]=null;return null}};eA.BK={};eA.BK.aeG=function(h,e,$,Z){var c; -if(h=="SolidColor")c={RI:h,G:[1,0,0,0]};if(h=="Window")c={RI:h,G:new cN(e[0],e[1],e[2])};if(h=="ExportOptionsSaveForWeb")c={RI:h,G:{gw:"png",SO:100}}; -if(h=="JPEGSaveOptions")c={RI:h,G:{gw:"jpg",SO:100}};if(h=="File")c={RI:h,G:e[0]};if(h=="ActionReference")c={RI:h,G:[]}; -if(h=="ActionDescriptor")c={RI:h,G:{}};if(h=="ActionList")c={RI:h,G:[]};if(h=="UnitValue")c={RI:h,G:e.length==0?0:parseFloat(e[0])}; -return c};eA.BK.ab3="activeDocument documents fonts preferences displayDialogs foregroundColor backgroundColor".split(" "); -eA.BK.agW=["charIDToTypeID","stringIDToTypeID","executeAction","executeActionGet","doAction"];eA.BK.l8=function(h,e,$,Z){var c=$.Ci,q=$.I2(); -if(!1){}else if(e=="typename"){if(h.RI=="Layer")return h.G.vG()?"LayerSet":"ArtLayer";else return h.RI}else if(["Document","Layer"].indexOf(h.RI)!=-1&&["layers","artLayers","layerSets"].indexOf(e)!=-1){var E=q.root,P={RI:"Layers",za:e,G:[]}; -if(h.RI=="Layer")E=q.root.fH(q.t.indexOf(h.G));if(E.children==null)return null;for(var G=0;G>>16&255)/255,(L>>>8&255)/255,(L>>>0&255)/255]}}else if(e=="UI")return{RI:"UI"}; -else console.log(h,e)}else if(h.RI=="Document"){var q=h.G;if(!1){}else if(e=="activeLayer"){var a=q.t[q.C[0]]; -return{RI:"Layer",G:a}}else if(e=="resolution")return q.Ay;else if(e=="width")return q.d;else if(e=="height")return q.v; -else if(e=="name")return q.name;else if(e=="saved")return!q.Kq();else if(e=="selection")return{RI:"Selection"}; -else if(e=="activeHistoryState")return{RI:"HistoryState",NS:q.Nd};else if(e=="source")return q.g5;else if(e=="historyStates"){var H=[]; -for(var G=0;G>>16&255)/255;h.G[2]=(F>>>8&255)/255;h.G[3]=(F>>>0&255)/255}else console.log(h,e)}else if(h.RI=="ExportOptionsSaveForWeb"){if(e=="format")h.G.gw=$; -else if(e=="PNG8"){}else if(e=="quality")h.G.SO=$;else throw"e"}else if(h.RI=="JPEGSaveOptions"){if(e=="quality")h.G.SO=Math.round(100*$/12)}else console.log(h,e,$); -if(q.data!=null)Z.f(q)};eA.BK.Ld=function(h,e,$,Z,c){var q=h.RI,E=null,P=new B(D.E.A,!0),a=new B(D.E.Kz,!0),j=new B(D.E.P,!0),L=Z.I2(),H=Z.hp; -if(!1){}else if(q=="Application"){if(!1){}else if(e=="charIDToTypeID"){var _=$[0].trim(),J={slct:"select",Dlt:"delete"}; -return J[_]?J[_]:_}else if(e=="stringIDToTypeID"){var S=$[0].trim(),J={red:"Rd",blue:"Bl",color:"Clr",RGBColor:"RGBC",type:"Type",using:"Usng"},N=J[S]; -return N==null?S:N}else if(e=="executeAction"){console.log($);var Y;if($[1]){Y=$[1].G;Y.classID=$[0]}var U={setd:"set"},g=U[$[0]]; -if(g==null)g=$[0];var M=es.VZ[$[0]];if(M&&es.Fr[M])g=es.Fr[M];a.data={Lw:g,TJ:Y}}else if(e=="executeActionGet"){return{RI:"ActionDescriptor",G:{classID:"null",null:{t:"obj ",v:$[0].G}}}}else if(e=="doAction"){j.data={e:D.U.xZ,py:[$[0],$[1]]}}else if(e=="open"){j.data={e:D.U.fu,Av:{url:$[0]}}; -if($[2]&&H.length!=0)j.data.Av.gf=H.indexOf(L)}else if(e=="echoToOE"){j.data={e:D.U.dI,Av:$[0]}}else console.log(e)}else if(q=="Document"){var L=h.G; -if(!1){}else if(e=="crop"){a.data=f.u4.GL($[0])}else if(e=="trim"){var C=[];for(var G=0;G<4;G++)C.push($[G+1]!=null?$[G+1]:!0); -a.data=f.u4.rB($[0]!=null?$[0]:0,C)}else if(e=="suspendHistory"){var y=acorn.parse($[1]);eA.eval(y,Z,c)}else if(e=="save"){j.data={e:D.U.rh}}else if(e=="saveToOE"){j.data={e:D.U.rh,a3E:$}}else if(e=="rotateCanvas"){a.data=f.o.hP(!0,$[0])}else if(e=="resizeImage"||e=="resizeCanvas"){var i=$[0],Q=$[1]; -if(typeof i!="number"){i=L.d*parseFloat(i.slice(0,i.length-1))/100;Q=L.v*parseFloat(Q.slice(0,Q.length-1))/100}if(e=="resizeCanvas")a.data=f.u4.fT(Math.round(i),Math.round(Q),$[2]); -else a.data=f.u4.Eu(Math.round(i),Math.round(Q),null,1)}else if(e=="paste"){j.data={e:D.U.d$,X0:$.length!=0&&$[0]}}else if(e=="close"){j.data={e:D.U.HA,SU:L}}else if(e=="exportDocument"||e=="saveAs"){var m=c.__fs,n=$[0].G.replace(":","").replace("~/",""),u=e=="exportDocument"?$[2].G:$[1].G,K=cE.JS(L,u.gw,null,null,[u.SO],Z.Ci); -m[n]=new Uint8Array(K)}else console.log(h,e,$)}else if(q=="Layer"){var F=h.G,b=L.t.indexOf(F);if(!1){}else if(e=="copy"){eA.BK.Th(L,Z,0); -j.data={e:D.U.$M,Rb:$[0],vq:b};Z.f(j);delete j.data;eA.BK.Th(L,Z,1)}else if(e=="clear"){eA.BK.Th(L,Z,0); -a.data={Lw:"delete"};Z.f(a);delete a.data;eA.BK.Th(L,Z,1)}else if(e=="duplicate"){if($.length==0){P.data={e:o.pA,$:b}; -P.F=f.S$;Z.f(P);P.data=null;E={RI:"Layer",G:L.t[L.C[0]]}}else if($[0].RI=="Document"){P.data={e:o.K4,t:L.xP(b),Br:L,g1:$[0].G}; -P.F=f.S$}}else if(e=="merge"||e=="remove"){P.data={e:e=="merge"?o.lb:o.Ml,$:b};P.F=f.S$;if(e!="remove")E={RI:"Layer",G:L.t[L.C[0]]}}else if(e=="move"){P.data={e:o.T9,source:b,target:L.t.indexOf($[0].G),yM:$[1]!=3?.6:.3}; -P.F=f.S$}else if(e=="rasterize"){a.data={Lw:"rasterizeLayer",TJ:{classID:"rasterizeLayer",null:bw.NQ("Lyr",!0)}}}else if(e=="rotate"){P.data={e:"rot",cJ:[2,5],G:-$[0]*Math.PI/180,An:$[1],$:b}; -P.F=f.Fk}else if(e=="resize"){P.data={e:"scl",cJ:[2,4],G:new eu($[0]/100,$[1]/100),An:$[2],$:b};P.F=f.Fk}else if(e=="translate"){var d=eA.BK.NH($); -P.data={e:"trsl",$:b,an1:d[0],a6P:d[1]};P.F=f.OA}else if(e=="link"){P.data={e:o.dq,a9j:[b,L.t.indexOf($[0].G)]}; -P.F=f.S$}else if(e=="invert"){P.F=f.Qi;P.data={e:"start",As:"nvrt"}}else if(e.startsWith("apply")&&dA.DR[e.slice(5)]){var d=eA.BK.NH($),W=dA.DR[e.slice(5)]; -a.data={Lw:dA.Fr[W]};var Y=dA.X3(W);if(Y){dA.yA["g"+W](Y,d);a.data.TJ=Y}}else console.log(h,e,$)}else if(q=="Documents"){if(e=="getByName"){for(var G=0; -G","","",""],$=dn.dT; -for(var Z in $){var c=h[Z],q=$[Z][2],E="Seq",P="";if(c==null||q==null)continue;if(q=="dc:title"||q=="dc:description"){E="Alt"; -P=" xml:lang=\"x-default\""}if(q=="dc:subject")E="Bag";e.push("\t<"+q+">");var a=q=="dc:subject"?c.split(";").join(",").split(","):[c]; -for(var G=0;G"+a[G].trim()+"");e.push("\t")}e.push("","","",""); -return e.join("\n")};dn.vu=function(h){var e=[];for(var G=0;G/g,">")}; -D.Qb=function(h,e){h.TQ(e_.get([12,41]).charAt(0)+":");e.TQ(e_.get([12,42]).charAt(0)+":")};D.w=function(h,e){var $=document.createElement(h); -if(e!=null)$.setAttribute("class",e);return $};D.LK=function(h){while(h.firstChild)h.removeChild(h.firstChild)}; -D.so=function(h,e){var $=h.getAttribute("class");if($==null)$="";$=$.split(" ");if($.indexOf(e)==-1)$.push(e); -h.setAttribute("class",$.join(" "))};D.ma=function(h,e){var $=h.getAttribute("class");if($==null)return; -$=$.split(" ");if($.indexOf(e)!=-1)$.splice($.indexOf(e),1);h.setAttribute("class",$.join(" "))};D.Nn=function(h){while(!0){if(h==document)return!0; -if(h==null)return!1;h=h.parentNode}};D.vV=function(h){h.appendChild(D.w("br"))};D.Uj=function(h){h.appendChild(D.w("hr"))}; -D.TH=document;D.Zk=function(h){var e=0;for(var G=0;G1e3){$=e==0?100:e*10}else{if(h%10!=0)h*=10; -$=(h+e)%100}D.CS=Date.now();return $};D.uh=function(h,e){if(window.PointerEvent){h.addEventListener("pointerdown",e,!1); -return}h.addEventListener("mousedown",e,!1);h.addEventListener("touchstart",e,!1)};D._s=function(h,e){if(window.PointerEvent){h.addEventListener("pointermove",e,!1); -return}h.addEventListener("mousemove",e,!1);h.addEventListener("touchmove",e,!1)};D.A4=function(h,e){if(window.PointerEvent){h.addEventListener("pointerup",e,!1); -return}h.addEventListener("mouseup",e,!1);h.addEventListener("touchend",e,!1)};D.aip=function(h,e){if(window.PointerEvent){h.removeEventListener("pointerdown",e,!1); -return}h.removeEventListener("mousedown",e,!1);h.removeEventListener("touchstart",e,!1)};D.xR=function(h,e){if(window.PointerEvent){h.removeEventListener("pointermove",e,!1); -return}h.removeEventListener("mousemove",e,!1);h.removeEventListener("touchmove",e,!1)};D.oT=function(h,e){if(window.PointerEvent){h.removeEventListener("pointerup",e,!1); -return}h.removeEventListener("mouseup",e,!1);h.removeEventListener("touchend",e,!1)};D.Sz=function(h){h.addEventListener("touchstart",D.LT,!1); -h.addEventListener("touchmove",D.LT,!1);h.addEventListener("touchend",D.LT,!1);h.addEventListener("gesturestart",D.LT,!1); -h.addEventListener("gesturechange",D.LT,!1);h.addEventListener("gestureend",D.LT,!1)};D.VR=function(h,e,$,Z){var c=D.M(); -h.width=Math.floor(e*c);h.height=Math.floor($*c);h.style.width=h.width/c+"px";h.style.height=h.height/c+"px"; -if(Z)Z.setTransform(c,0,0,c,0,0)};D.pH=function(h,e,$){h.setAttribute("style","width:"+e/D.M()+"px; height:"+$/D.M()+"px")}; -D.q6=function(h,e){if(e==null)e=h.currentTarget;var $=e.getBoundingClientRect();if(h.touches)h=h.touches.item(0); -return{x:h.clientX-$.left,y:h.clientY-$.top}};D.M=function(h){return window.devicePixelRatio||1};D.LT=function(h){h.preventDefault()}; -D.pt=function(h){h.stopPropagation();h.preventDefault()};D.H$=function(h,e,$){$=$?$:"";if(PIMG["__"+h]==null)$+=" gsicon"; -return"\""+(e?e:"")+"\""};D.SC=function(h,e,$,Z){var c=h.dataTransfer.getData("text/uri-list"); -if(c!=null&&c.startsWith("http")){var q=new B(D.E.P,!0);q.data={e:D.U.fu,Av:{url:c,vf:!0,gf:$,TG:Z}}; -e.f(q)}if(h.dataTransfer.files.length==0)return;if(window.showOpenFilePicker){var E=[],P=h.dataTransfer.items.length,a=h.dataTransfer.files; -for(var j of h.dataTransfer.items)j.getAsFileSystemHandle().then(function(L){E.push(L);if(E.length==P){var q=new B(D.E.P,!0); -q.data={e:D.U.ZZ,data:a,gf:$,TG:Z,aj4:E};e.f(q)}})}else{var q=new B(D.E.P,!0);q.data={e:D.U.ZZ,data:h.dataTransfer.files,gf:$,TG:Z}; -e.f(q)}};var B=function(h,e){if(!e)e=!1;this.type=h;this.target=null;this.currentTarget=null;this.bubbles=e; -this.F=null;this.Q1=!1};D.E={A:"0",P:"1",Kz:"1.5",L:"2",iF:"3",Vy:"4",Pt:"5"};D.U={Vo:"10",sH:"11",Is:"12",_x:"13",Qd:"14",M6:"14.1",fu:"15",e1:"16",Cu:"17",Tm:"18",rh:"19",Jb:"19.5",ac:"20",Xe:"21",$M:"22",d$:"23",$Z:"24",tr:"25",Dz:"26",YF:"27",nr:"28",JK:"29",ZZ:"30",kX:"31",Dn:"32",Fe:"33",UR:"34",Ov:"35",K7:"35.5",yI:"37",S8:"38",Lt:"39",WZ:"40",le:"41",dI:"41.5",wH:"42",B7:"43",Gk:"43.5",HA:"44",ng:"45",v_:"46",tS:"47",Mu:"48",xZ:"49",kN:"50"}; -if(D.Zk(27))D.TH=window;else D.TH=D.a1J;D.TH._cwY=D.TH[D.HE("clh]]c[",3)];var iG={};iG.gY=function(G){var h=iG.zO[G],e=document.documentElement.style,Z=20; -e.setProperty("--bg-color","#"+s.jT(h["--bg-color"]));e.setProperty("--bg-panel","#"+s.jT(h["--bg-panel"])); -e.setProperty("--bg-canvas","#"+s.jT(h["--bg-canvas"]));e.setProperty("--bg-input","#"+s.jT(h["--bg-input"])); -e.setProperty("--bg-bbtn","#"+s.jT(h["--bg-bbtn"]));e.setProperty("--bg-bbtnOver","#"+s.jT(h["--bg-bbtnOver"])); -e.setProperty("--brdr","#"+s.jT(h["--brdr"]));e.setProperty("--text-color","#"+s.jT(h["--text-color"])); -e.setProperty("--brdrLgt","rgba(255,255,255,"+h["--brdrLgt"]+")");e.setProperty("--brdrDrk","rgba( 0, 0, 0,"+h["--brdrDrk"]+")"); -e.setProperty("--alphaDark",""+h["--alphaDark"]);e.setProperty("--gs-invert",""+h["--gs-invert"]);var $=h["--sh-clr"]; -e.setProperty("--sh-clr","rgba("+($>>16)+","+($>>8&255)+","+($&255)+", 0.45)");e.setProperty("--sh-dy",""+h["--sh-dy"]+"px"); -if(1=0)h=Math.max(this.Cy,h);if(this.xb==0)h=Math.round(h);var Z=this.DX;this.iB.value=(this.xb!=0?h.toFixed(this.xb):h)+(this.aij&&Z?(Z.toLowerCase()==Z.toUpperCase()?"":" ")+Z:""); -var c=400*Math.pow((h-this.Cy)/(this.kB-this.Cy),1/2.7);this.Nx.value=this.wA?c:h;if(e)this.dn()};gA.prototype.u=function(){var h=parseFloat(this.iB.value); -if(isNaN(h))h=0;return h};gA.prototype.TN=function(){return this.DX};gA.prototype.AI=function(h){var e=0; -if(h.currentTarget==this.iB){var $=h.target.value,Z=0;while(Z<$.length&&($.charAt(Z)=="."||48<=$.charCodeAt(Z)&&$.charCodeAt(Z)<=57))Z++; -e=$==""?0:parseFloat($);if(isNaN(e))e=0;var c=$.slice(Z).trim();if(this.qD&&this.qD.indexOf(c)!=-1)this.DX=c}else{if(Date.now()-this.xy<10)return; -e=parseFloat(h.target.value);if(this.wA){e=this.Cy+Math.pow(e/400,2.7)*(this.kB-this.Cy);e=this.r4(e)}}this.T(e); -if(h.type=="input"&&this.a3p)return;this.dn()};gA.prototype.dn=function(){this.f(new B(D.E.L))};gA.prototype.r4=function(h){if(this.kB-this.Cy>50&&h>10)h=Math.round(h); -return h};gA.prototype.IM=function(h){var e=0;if(p.VG(h.code,p.wi))e=1;if(p.VG(h.code,p.Xs))e=-1;if(e!=0)this.SS(e,h.shiftKey)}; -gA.prototype.tH=function(h){this.SS(h.deltaY>0?-1:1,h.shiftKey)};gA.prototype.SS=function(h,e){var $=this.u(),Z=this.xb,c=h*(Z==null||Z==0||$>5?1:.1); -if(e)c*=10;var q=$+c;if(!this.wA&&this.kB!=this.Cy)q=Math.min(this.kB,q);this.T(q);this.dn()};gA.prototype.ahN=function(h){var e=Date.now()-this.xy; -this.xy=Date.now();if(e>300)return;var $=(this.kB+this.Cy)/2;if(this.Cy<0&&this.kB>0)$=0;else if(this.Cy<1&&this.kB>1&&this.kB<10)$=1; -this.T($);this.dn()};gA.prototype.a3t=function(h){D._s(document,this.a9_);D.A4(document,this.a63);this.VN=D.q6(h,document.body).x; -this.b7=this.u()};gA.prototype.a5e=function(h){D.pt(h);var e=this.Cy==this.kB,$=D.q6(h,document.body).x,Z=($-this.VN)*(e?1:1/120*(this.kB-this.Cy)),c=this.b7+Z; -if(e)c=Math.round(c);if(!e){if(!0){c=Math.max(this.Cy,c);if(c==this.Cy){this.VN=$;this.b7=this.Cy}}if(!this.wA){c=Math.min(this.kB,c); -if(c==this.kB){this.VN=$;this.b7=this.kB}}c=this.r4(c)}this.Id=!0;this.T(c);this.dn()};gA.prototype.a0V=function(h){if(!this.Id)this.iB.focus(); -this.Id=!1;D.xR(document,this.a9_);D.oT(document,this.a63)};gA.prototype.tI=function(){this.iB.select(); -this.iB.focus()};function dd(h,e){ev.call(this);this.fI=[];this.sP=-1;this.a25=h;this.AQ=e;this.oa=0; -this.FN=null;this.W6=new eu(0,0);if(e!=null){this.Ro=new dW([{name:[6,37]},{name:[5,4]}]);this.Ro.parent=this; -this.Ro.k("select",this.cD,this)}this.j=D.w("div","imageset scrollable");this.j.addEventListener("contextmenu",D.LT,!1)}dd.prototype=new ev; -dd.prototype.B=function(){if(this.Ro)this.Ro.B()};dd.prototype.cD=function(h){var G=this.Ro.XW()[0],e=new B(D.E.P,!0),$={e:D.U.Ov,Av:this.AQ,MW:[this.sP]}; -if(G==0){var Z=this.FN[1][this.sP];$.HZ="rnm";e.data={e:D.U.tr,yq:"namewindow",rs:Z,TB:{c:D.E.P,g:$}}}else{e.data=$; -$.HZ="del"}this.f(e)};dd.prototype.anE=function(){return this.oa};dd.prototype.Yn=function(h){this.oa=h; -if(this.FN)this.rv()};dd.prototype.Go=function(h,e,$,Z){this.FN=[h,e,$,Z];this.rv()};dd.prototype.rv=function(){var h=this.FN,e=h[0],$=h[1],Z=h[2],c=h[3]; -this.fI=[];this.j.innerHTML="";var q=this.hW.bind(this),E=this.oa;if(E==0)D.so(this.j,"imageset");else D.ma(this.j,"imageset"); -for(var G=0;G0)){q=E;c=G}}if(c==-1)return; -this.agZ=c;this.qU=h.altKey||e[(c>>>1)*2]!=e[(c>>>1)*2+1];D._s(window,this.at);D.A4(window,this.E7)}; -fO.prototype.AT=function(h){var e=this.Mg,$=this.agZ,Z=($>>>1)*2,c=Z+1,q=D.q6(h,this.p$),E=Math.round(Math.max(0,Math.min(255,q.x-8))); -e[$]=E;if(this.qU&&e[Z]>=e[c])this.qU=!1;if(!this.qU)e[Z]=e[c]=E;this.rv();this.f(new B(D.E.L,!1))}; -fO.prototype.IB=function(h){D.xR(window,this.at);D.oT(window,this.E7)};fO.prototype.rv=function(){var h=this.p$; -D.VR(h,255+16,16);var e=h.getContext("2d"),$=h.width,Z=h.height,c=Math.round(255*D.M()),q=Math.round(8*D.M()); -e.translate(q,0);var E=e.createLinearGradient(0,0,c,0);E.addColorStop(0,"black");E.addColorStop(1,"#"+["ffffff","ff0000","00ff00","0000ff"][this.Sg]); -e.fillStyle=E;e.fillRect(0,0,c,q);var P=this.a7$,a=e_.get(this.aaH)+":";P[0].textContent=a;for(var G=0; -G<4;G++){var j=this.Mg[G];P[1+G].textContent=j;var L=Math.round(j*D.M());e.beginPath();e.moveTo(L,q); -e.lineTo(L,q+q);e.lineTo(L+((G&1)==0?-1:1)*q,q+q);e.closePath();e.fillStyle="#cccccc";e.fill();e.strokeStyle="black"; -e.stroke()}};function fj(h){ev.call(this);this.w0=0;this.alt=0;var e="ai"+D.bo();this.j=D.w("span","fitem angleinput"); -if(h){this.WA=D.w("label","flabel");this.pO=h;this.j.appendChild(this.WA);this.WA.setAttribute("for",e)}this._k=20; -this.Mt=D.w("canvas","gsicon");this.J$=this.Mt.getContext("2d");D.VR(this.Mt,this._k*2+1,this._k*2+1,this.J$); -this.j.appendChild(this.Mt);D.uh(this.Mt,this.NK.bind(this));this.Xf=this.mq.bind(this);this.bU=this.i3.bind(this); -this.iB=D.w("input","");this.iB.setAttribute("type","text");this.j.appendChild(this.iB);this.iB.setAttribute("id",e); -this.iB.addEventListener("change",this.AI.bind(this),!1);this.ue=D.w("span","");this.ue.innerHTML="\xB0"; -this.j.appendChild(this.ue);this.T(this.w0,this.alt)}fj.prototype=new ev;fj.prototype.B=function(){this.WA.textContent=e_.get(this.pO)+":"}; -fj.prototype.TQ=function(h){this.WA.textContent=h};fj.prototype.u=function(){return{w0:this.w0,alt:this.alt}}; -fj.prototype.T=function(h,e,$){if(h!=null)this.w0=h;if(e!=null)this.alt=e;this.iB.value=this.w0;h=Math.PI*this.w0/180; -e=.9*this._k*(90-this.alt)/90;var Z=this._k+.5,c=this.J$;c.clearRect(0,0,100,100);c.strokeStyle="#000000"; -c.beginPath();c.arc(Z,Z,.9*this._k,0,2*Math.PI);c.moveTo(Z,Z);c.lineTo(Z+Math.cos(h)*this._k*.9,Z-Math.sin(h)*this._k*.9); -c.stroke();c.strokeStyle="#ff0000";c.beginPath();c.moveTo(Z+Math.cos(h)*e-3,Z-Math.sin(h)*e);c.lineTo(Z+Math.cos(h)*e+3,Z-Math.sin(h)*e); -c.moveTo(Z+Math.cos(h)*e,Z-Math.sin(h)*e-3);c.lineTo(Z+Math.cos(h)*e,Z-Math.sin(h)*e+3);c.stroke();if($)this.AI()}; -fj.prototype.AI=function(h){var e=parseInt(this.iB.value);e=e%360;this.T(e);this.f(new B(D.E.L,!1))}; -fj.prototype.NK=function(h){D._s(window,this.Xf);D.A4(window,this.bU);this.mq(h)};fj.prototype.mq=function(h){var e=D.q6(h,this.Mt),$=e.x-this._k,Z=e.y-this._k,c=180*Math.atan2(-Z,$)/Math.PI,q=90-90*Math.min(1,Math.sqrt($*$+Z*Z)/(.9*this._k)); -this.T(Math.round(c),Math.round(q));this.f(new B(D.E.L,!1))};fj.prototype.i3=function(h){this.f(new B(D.E.L,!1)); -D.xR(window,this.Xf);D.oT(window,this.bU)};function fc(h,e){ev.call(this);this.Mg=0;this.oS=e;this.j=D.w("span","fitem angleinput"); -if(h){this.WA=D.w("label","flabel");this.pO=h;this.j.appendChild(this.WA)}this.Mt=D.w("canvas","gsicon"); -this.J$=this.Mt.getContext("2d");D.VR(this.Mt,e,e);this.j.appendChild(this.Mt);D.uh(this.Mt,this.NK.bind(this)); -this.Xf=this.mq.bind(this);this.bU=this.i3.bind(this);this.T(0)}fc.prototype=new ev;fc.prototype.B=function(){if(this.pO)this.WA.textContent=e_.get(this.pO)+":"}; -fc.prototype.TQ=function(h){this.WA.textContent=h};fc.prototype.u=function(){return this.Mg};fc.prototype.T=function(h){this.Mg=h; -var e=this.Mt.width,$=Math.floor(h/3),Z=h-3*$,c=(Z+.5)*e/3,q=($+.5)*e/3,E=this.J$,P=[.5,Math.round(e/3)+.5,Math.round(2*e/3)+.5,e-.5]; -E.clearRect(0,0,e,e);var a=this.oS<30;E.setLineDash([]);E.strokeStyle=a?"rgba(0,0,0,0.5)":"#000000"; -E.beginPath();for(var G=0;G<4;G++){var j=P[G];E.moveTo(j,0);E.lineTo(j,e);E.moveTo(0,j);E.lineTo(e,j)}E.stroke(); -if(h==9)return;if(!a){E.setLineDash([1,2]);var L=e*.53,H=Math.max(0,Math.min(e-L,c-L/2)),_=Math.max(0,Math.min(e-L,q-L/2)); -E.strokeRect(Math.round(H)+.5,Math.round(_)+.5,Math.round(L),Math.round(L))}E.fillStyle="#000000";E.beginPath(); -E.arc(c,q,e/8,0,Math.PI*2);E.fill()};fc.prototype.NK=function(h){D._s(window,this.Xf);D.A4(window,this.bU); -this.mq(h)};fc.prototype.mq=function(h){var e=D.q6(h,this.Mt),$=Math.max(0,Math.min(2,Math.floor(e.x/(this.oS/3)))),Z=Math.max(0,Math.min(2,Math.floor(e.y/(this.oS/3)))); -this.T(Z*3+$)};fc.prototype.i3=function(h){this.f(new B(D.E.L,!1));D.xR(window,this.Xf);D.oT(window,this.bU)}; -function gg(h,e,$,Z){ev.call(this);this.j=D.w("button","fitem"+(e?" spread":"")+(Z?" bbtn":""));this.pO=h; -this.n9=$;this.B();this.j.addEventListener("click",this.hW.bind(this),!1)}gg.prototype=new ev;gg.prototype.B=function(){var h=this.j,e=this.pO,$=this.n9,Z=e_.get(e); -if(Z.startsWith(">16&255,l:h>>8&255,O:h&255};this.SG()};fx.prototype.T=function(h){this.EP=s.Y.LX(h); -this.SG()};fx.prototype.SG=function(){var h=this.EP,e=h.h,$=h.l,Z=h.O,c=e<<16|$<<8|Z;this.j.setAttribute("style","background-color:#"+s.jT(c))}; -function c_(){ev.call(this);this.Yy=!1;this.PM=20;this.aoA=10;this.OQ=0;this.Yy=!1;this.zv={h:255,l:0,O:0}; -this.qK={h:0,l:0,O:0};this.j=D.w("canvas");this.rv();D.Sz(this.j);D.uh(this.j,this.xj.bind(this))}c_.prototype=new ev; -c_.prototype.a6T=function(h){if(this.Yy==h)return;this.Yy=h;this.rv()};c_.prototype.B=function(){};c_.prototype.afz=function(h,e){function $(Z){return{h:Z>>16&255,l:Z>>8&255,O:Z&255}}if(h!=null)this.zv=$(h); -if(e!=null)this.qK=$(e);this.rv()};c_.prototype.xj=function(h){var e=D.q6(h,this.j),$=e.x*D.M(),Z=e.y*D.M(),c=this.PM,q=this.aoA,E=0; -if($c-q&&Z>c-q){E=1}else if($1)P.data={e:D.U.Ov,Av:iM.JD,oD:E}; -else{this.OQ=E;var a=E==0?this.zv:this.qK;P.data={e:D.U.tr,yq:"colorpicker",Nr:a.h<<16|a.l<<8|a.O,Nb:this.K3.bind(this)}}this.f(P)}; -c_.prototype.K3=function(h){var e=new B(D.E.P,!0);e.data={e:D.U.Ov,Av:iM.JD,oD:this.OQ,G:h};this.f(e)}; -c_.prototype.rv=function(){var h=this.j,e=h.getContext("2d"),$=D.M(),c="#aaaaaa",q=.65;D.VR(h,34,34); -h.setAttribute("style",h.getAttribute("style")+";cursor:pointer");var Z=this.PM=h.width,E=this.aoA=Math.round(Z*q); -function P(J,S){var N=J.h,Y=J.l,U=J.O;if(S)N=Y=U=Math.round(s.jv(N,Y,U));var g=N<<16|Y<<8|U;return"#"+s.jT(g)}function a(J,S,E,N,Y){e.fillStyle=Y?Y:"black"; -e.fillRect(J,S,E,E);e.fillStyle=N;e.fillRect(J+1,S+1,E-2,E-2)}a(Z-E,Z-E,E,P(this.qK,this.Yy));a(0,0,E,P(this.zv,this.Yy)); -var j=Z-E,L=Math.round(j*q);a(Z-L,j-L,L,"white",c);a(Z-j,0,L,"black",c);e.save();e.fillStyle=c;e.translate(0,Z); -e.rotate(-Math.PI/2);j=Z-E;var H=Math.round(j*.28),_=Math.round(j*.25);for(var G=0;G<2;G++){e.fillRect(H,H,j-H,1); -e.beginPath();e.moveTo(j-_,H+.5-_);e.lineTo(j,H+.5);e.lineTo(j-_,H+.5+_);e.closePath();e.fill();e.transform(0,1,1,0,0,0)}e.restore()}; -function iI(h){gI.call(this,h,!1,"brushbutton nopadding",16.6,10,iM.XP,!0);this.fP=new dm([12,14,0],1,1e3," px",0,!0); -this.fP.k(D.E.L,this.ks,this);this.Xv.appendChild(this.fP.j);this.gd=new dm([12,17],0,100,"%");this.gd.k(D.E.L,this.ks,this); -this.Xv.appendChild(this.gd.j)}iI.prototype=new gI;iI.prototype.Ev=function(){var h=["pencil","trees"]; -for(var G=0;G0&&Z.mQ==null)Z.mQ=JSON.parse(JSON.stringify(c3.nf[$-1]));if(this.us)this.T(this.GY,Z,this.us)}if(e==this.mk)this.Re.Dt(e.u()); -this.f(new B(D.E.L,!1))};gC.prototype.OW=function(h){var e=this.Mt.getBoundingClientRect(),$=new B(D.E.P,!0); -$.data={e:D.U.sH,yv:this.xN,x:e.left,y:e.top+e.height+4};this.f($);this.mk.T(this.Re.S1())};gC.prototype.T=function(h,e,$){this.us=$; -this.GY=h;var Z=[[13,1,0],[13,0],[12,37],[12,62]],c=this.abX,q=this.aaE,E=!1,L;for(var G=0;G<4;G++){var P={cp:G,mQ:$[G]},a=gC.Xb(P); -if(q[G]==a)continue;E=!0;var j=gC.zZ(null,P,this.D0,this.GY,22,22,!1);c[G]=""; -q[G]=a}if(E)this.Wv.uK(c,Z);this.Wv.T(e.cp);var a=gC.Xb(e);if(a!=this.abd)gC.zZ(this.J$,e,this.D0,this.GY,30,23,!0); -this.abd=a;var H=e.cp;if(H==0){L=this.akI}if(H==1){this.Re.T(e.mQ.Clr.v);L=this.gH}if(H==2){this.n1.update(h,e.mQ); -L=this.Le}if(H==3){this.H1.update(h,e.mQ);L=this.oR}if(L!=this.QK){if(this.QK!=null){this.xN.j.removeChild(this.QK)}this.xN.j.appendChild(L); -this.QK=L}};gC.prototype.u=function(){var h={cp:this.Wv.u()};if(h.cp==1){h.mQ=JSON.parse(JSON.stringify(c3.nf[0])); -h.mQ.Clr.v=this.Re.u()}if(h.cp==2){h.mQ=this.n1.u()}if(h.cp==3){h.mQ=this.H1.u()}return h};gC.Xb=function(h){var e=h.cp,$=h.mQ,Z="empty"; -if(e==1){Z=s.Y.LX($.Clr.v);Z=Z.h+","+Z.l+","+Z.O}if(e==2)Z=JSON.stringify($.Grad.v);if(e==3)Z=$.Ptrn.v.Idnt.v; -return Z};gC.zZ=function(h,e,$,Z,c,q,E){if(h==null)h=gC.J$;var P=Math.floor(c*D.M()),a=Math.floor(q*D.M()),j=h.canvas,L; -j.width=P;j.height=a;D.pH(j,P,a);var H=e.cp;if(H==0){h.fillStyle="#ffffff";h.fillRect(0,0,P,a);h.strokeStyle="#ff0000"; -h.lineWidth=2;h.moveTo(0,0);h.lineTo(P,a);h.moveTo(0,a);h.lineTo(P,0);h.stroke()}if(H==1){var _=e.mQ.Clr.v; -_=s.Y.LX(_);h.fillStyle="#"+s.jT(_.h<<16|_.l<<8|_.O);h.fillRect(0,0,P,a)}if(H==2){f.mT.TD(e.mQ.Grad.v,P,a,0,$.oV,$.XK,j)}if(H==3){var J=e.mQ.Ptrn.v,S; -if(Z!=null)S=hn.lg(J,Z.add.Patt);if(S==null)S=hn.lg(J,$.Zl);fp.TD(S,P,a,j)}if(E){h.beginPath();h.strokeStyle="#000000"; -h.fillStyle="#ffffff";h.lineWidth=2;var N=P*.7,Y=Math.floor(a*.7),U=7*D.M();h.moveTo(N,Y);h.lineTo(N+U,Y); -h.lineTo(N+U/2,Y+U/2);h.closePath();h.stroke();h.fill()}if(h==gC.J$)return j.toDataURL()};gC.J$=D.w("canvas").getContext("2d"); -function fp(h){gI.call(this,h,!1,"patternbutton",18,10,iM.Ub);this.Ch=null}fp.prototype=new gI;fp.prototype.qx=function(h){var e=this.ZM[this.Xu.u()]; -this.$L={classID:"Ptrn",Nm:{t:"TEXT",v:e.name},Idnt:{t:"TEXT",v:e.id}};this.f(new B(D.E.L));this.v5()}; -fp.WK=!1;fp.prototype.t9=function(){if(!this.ZE)return;var h=this.ZM;if(h==null||!fp.WK){var e=new B(D.E.P,!0); -e.data={e:D.U.fu,Av:{url:"rsrc/basic/basic.pat"}};this.f(e);fp.WK=!0;return}var $=Math.floor(34*D.M()),Z=Math.floor(34*D.M()),c=[],q=[]; -for(var G=0;G255||Z<0||Z>255)H=!1; -if(H&&q.indexOf(this.Oj)==-1)q.push(this.Oj);if(!H&&q.indexOf(this.Oj)!=-1&&q.length>2&&(!E||!a))q.splice(q.indexOf(this.Oj),1); -if(q[0].v.Hrzn.v==q[1].v.Hrzn.v)if(q[0].v.Hrzn.v==0)q[1].v.Hrzn.v=1;else q[0].v.Hrzn.v--;q.sort(function(U,g){return U.v.Hrzn.v-g.v.Hrzn.v})}else{$=Math.round($); -Z=Math.round(Z);$=Math.max(0,Math.min(255,$));Z=Math.max(0,Math.min(255,Z));var _=this.s$.x,J=$,S=this.s$.y,N=Z; -if($.002){this.a6A($.data,256,256,e.CD); -this.a1F=e.CD}this.J$.putImageData($,0,0);this.J$.strokeStyle="#000000";this.J$.beginPath();this.J$.arc(this.F$.x+1,this.F$.y+1,5,0,2*Math.PI); -this.J$.stroke();this.J$.strokeStyle="#ffffff";this.J$.beginPath();this.J$.arc(this.F$.x,this.F$.y,5,0,2*Math.PI); -this.J$.stroke();var $=this.a06;this.yy.putImageData($,0,0);this.yy.strokeStyle="#ffffff";this.yy.beginPath(); -this.yy.moveTo(0,this.CC.y);this.yy.lineTo(20,this.CC.y);this.yy.lineWidth=2;this.yy.stroke()};bg.prototype.a6A=function(h,e,$,Z){var c=1/e,q=1/$; -for(var E=0;E<$;E++)for(var P=0;P0)this.j.removeChild(this.LE.pop().j); -this.tj=h;for(var G=0;G>>1;c.width=c.height=Z;var P=[]; -for(var G=0;G"); -else P.push("")}cp.call(this,h,P,$)}a4.prototype=new cp; -a4.fA=D.w("canvas");function fs(h,e,$,Z){ev.call(this);if(!e)return;if($==null)$=!1;this.sP=0;this.a8b=$; -this.pO=h;this.hN=null;this.ak1=Z;var c="dd"+D.bo();this.j=D.w("span","fitem ddmenu");if(h&&!$){this.WA=D.w("label","flabel"); -this.j.appendChild(this.WA);this.WA.setAttribute("for",c)}this.ql=D.w("select","bbtn");this.ql.setAttribute("id",c); -this.j.appendChild(this.ql);this.ql.addEventListener("change",this.AI.bind(this),!1);this.LE=[];this.tj=null; -this.uK(e,Z);this.B()}fs.prototype=new ev;fs.prototype.TQ=function(h){this.pO=h;this.B()};fs.prototype.B=function(){if(this.pO!=null){var h=e_.get(this.pO); -if(this.a8b)this.ql.setAttribute("title",h);else this.WA.textContent=h+":"}if(this.tj)this.uK(this.tj,this.ak1); -this.T(this.sP)};fs.prototype.u=function(){return this.sP};fs.prototype.uK=function(h,e){D.LK(this.ql); -var $=[],Z=0;if(e){$.push(e[0]);for(var G=1;G"); -this.HY=new gg("");this.ea=new gg(""); -this._$=new gg("");this.iu=new gg(""); -this.Nt=new gg("");this.qQ=new gg(""); -this.c_=new gg("");var h=[this.QV,this.HY,this.ea,this._$,this.iu,this.Nt,this.qQ,this.c_]; -for(var G=0;G"); -this.vt=new gg("");this.Og=new gg(""); -this.ao7=new gg("");this.a5a=new gg(""); -this.a5U=new gg("");this.a1N=new gg(""); -this.T3=[this.e6,this.vt,this.Og,this.ao7,this.a5a,this.a5U,this.a1N];for(var G=0;G "); -this.jy=new hr($[0],-20,20,"px");this.jy.k(D.E.L,this.ce,this);this.jy.parent=this;this.o0=new hr($[1],-20,20,"px"); -this.o0.k(D.E.L,this.ce,this);this.o0.parent=this;this.sd=new hr($[2],-20,20,"px");this.sd.k(D.E.L,this.ce,this); -this.sd.parent=this;this.O9=new hr($[3],-20,20,"px");this.O9.k(D.E.L,this.ce,this);this.O9.parent=this; -this.ur=new hr($[4],-20,20,"px");this.ur.k(D.E.L,this.ce,this);this.ur.parent=this;this.Pb=new cp([12,33],["Abc ...","... \u0623\u064A \u0628\u064A"]); -this.Pb.k(D.E.L,this.ce,this);this.Pb.parent=this}af.prototype=new ev;af.prototype.B=function(){this.a5.B(); -this.O1.B();this.PK.B();this.zD.B();this.no.B();this.v1.B();this.Yt.B();this.Pb.B()};af.prototype.T=function(h,e,$){this.wM=JSON.parse(JSON.stringify(h)); -var Z=this.wM,c=Z.By,q=Z.Bp;this.QV.T(c.FauxBold!=null?c.FauxBold:!1);this.HY.T(c.FauxItalic!=null?c.FauxItalic:!1); -this.ea.T(c.FontCaps==2);this._$.T(c.FontCaps==1);this.Nt.T(c.FontBaseline==1);this.iu.T(c.FontBaseline==2); -this.qQ.T(c.Underline);this.c_.T(c.Strikethrough);this.a5.T(c.Font==null?null:Z.Kr[c.Font].Name,e,$); -var E=c.FontSize==null?20:c.FontSize;this.O1.T(E);var P=c.Tracking;this.zD.T(P==null?0:P);this.PK.T(c.Leading!=null?c.Leading:0); -this.lH.T(c.AutoLeading);this.v1.T((c.VerticalScale!=null?c.VerticalScale:0)*100);this.Yt.T((c.HorizontalScale!=null?c.HorizontalScale:0)*100); -this.no.T(c.BaselineShift!=null?c.BaselineShift:0);if(c.FillColor){var a=gK.LX(c);this.lX.Dt(Math.round(a.h)<<16|Math.round(a.l)<<8|Math.round(a.O))}else this.lX.Dt(0); -var j=q._Direction!=null?q._Direction:0,L=gK.Ge(q);for(var G=0;G>16&255)/255,(e>>8&255)/255,(e>>0&255)/255]}; -for(var G=0;G<4;G++)$.Values[G]=Math.round($.Values[G]*1e3)/1e3;this.wM.By.FillColor=$;this.Ta()};function hV(){ev.call(this); -this.j=D.w("span","fontinput");this.Vx=null;this.kl=null;this.U4=null;this.qJ="";this.fI={};this.Pr=[]; -this.a46={};this.vS=!1;this.jt=D.w("button","fitem");this.jt.setAttribute("style","width:9em;");this.jt.textContent="Family Name \u25BC"; -this.j.appendChild(this.jt);D.uh(this.jt,this.uy.bind(this));this.To=new ev;this.To.parent=this;this.To.j=D.w("div","floatcont"); -this.To.j.addEventListener("keyup",this.a3X.bind(this),!1);this.uF=new cI(6.8);this.To.j.appendChild(this.uF.ah3()); -this.uF.parent=this.To;this.uF.k(D.E.L,this.KT,this);var h=D.w("div","form");this.To.j.appendChild(h); -this.ro=new gg(D.H$("tools/cshape",null,"autoscale"),!1,"Show Favorites Only");this.ro.k("click",this.amq,this); -h.appendChild(this.ro.j);this.Sw=new a_([12,86],null,9);this.Sw.k("input",this.z1,this);h.appendChild(this.Sw.j); -var e=this.a4H=new gg([[23,6],[22,6,0]],!1,"Load OTF / TTF file from your computer",!0);e.k("click",this.alP,this); -e.j.style.marginLeft="1.5em";h.appendChild(e.j);this.xi=D.w("span","fitem imageset scrollable marged"); -this.xi.style.height="30em";this.To.j.appendChild(this.xi);this.eW=D.w("button","fitem");this.eW.setAttribute("style","width:7em;"); -this.eW.textContent="SubFamily Name \u25BC";this.j.appendChild(this.eW);D.uh(this.eW,this.uy.bind(this)); -this.cr=new ev;this.cr.parent=this;this.cr.j=D.w("div","floatcont");this.oi=D.w("span","fitem imageset scrollable marged"); -this.cr.j.appendChild(this.oi)}hV.prototype=new ev;hV.prototype.a3X=function(h){var e=0;if(p.VG(h.code,p.wi))e=-1; -if(p.VG(h.code,p.Xs))e=1;if(e!=0){var $=this.Pr,Z=$.length,c=this.Vx.Ht()[this.U4];if(c==null&&Z==0)return; -var q=$.indexOf(c[0]);if(q==-1)return;q=(q+e+Z)%Z;this.CR($[q],null)}};hV.prototype.alP=function(){var h=new B(D.E.P,!0); -h.data={e:D.U.e1,a0c:".otf,.ttf,.ttc"};this.f(h)};hV.prototype.B=function(){this.uF.B();this.a4H.B(); -this.ro.TQ(D.H$("tools/cshape",null,"autoscale"))};hV.prototype.amq=function(h){this.ro.T(!this.ro.ha()); -this.KT()};hV.prototype.z1=function(h){this.qJ=this.Sw.u().toLowerCase();this.KT()};hV.prototype.uy=function(h){D.pt(h); -var e=h.currentTarget,$=e.getBoundingClientRect(),Z=e==this.jt,c=Z?this.To:this.cr;if(D.Nn(c.j)){this.Ee(c); -return}if(!Z&&this.Vx.Ht()[this.U4]==null)return;var q=new B(D.E.P,!0);q.data={e:D.U.sH,yv:c,x:$.left,y:$.top+$.height}; -this.f(q);if(Z){this.KT();this.Sw.tI()}};hV.prototype.ald=function(h){var e=h.currentTarget.firstChild.nextSibling.textContent; -if(h.target.tagName.toLowerCase()=="button"){var $=this.kl.slice(0),Z=$.indexOf(e);if(Z==-1){$=$.slice(Math.max(0,$.length-29)); -$.push(e)}else $.splice(Z,1);var c=new B(D.E.P,!0);c.data={e:D.U.Ov,Av:iM.dQ,El:$};this.f(c);this.vS=!0; -this.KT()}else{this.CR(e,null);this.Sw.tI()}};hV.prototype.a8G=function(h){this.CR(null,h.currentTarget.firstChild.textContent)}; -hV.prototype.CR=function(h,e){var $=h==null?this.cr:this.To,Z=this.Vx;if(h==null)h=Z.Ht()[this.U4][0]; -else{var c=Z.I3(h),q=Z.Ht()[this.U4];e=bc.fR(c,q?q[1]:"regular")}var E=Z.hC(h,e)[2];this.T(E,Z);this.f(new B(D.E.L,!1)); -this.Ee($);this.KT()};hV.prototype.Ee=function(h){var e=new B(D.E.P,!0);e.data={e:D.U.Is,yv:h};this.f(e)}; -hV.prototype.u=function(){return this.U4};hV.prototype.T=function(h,e,$){var Z=this.Vx;if(h!=null)this.U4=h; -else h=this.U4;this.Vx=e;this.kl=$;if(h!=null){var c=e.Ht()[h],q,E;if(c==null){q="- "+h;E="-------"}else{q=c[0]; -E=c[1];var P=e.I3(q);P.sort(bc.amJ);var a=P.indexOf(E),j=this.a8G.bind(this);this.oi.textContent=""; -for(var G=0;G0&&P[0].toLowerCase().indexOf(this.qJ)==-1)j=!1; -else if(!this.uF.Pj(P))j=!1;else if(this.ro.ha()&&!a)j=!1;var L=this.fI[q];if(L==null){var L=this.yQ(P,q,c,!0); -this.fI[q]=L;this.xi.appendChild(L)}if(j)this.Pr.push(q);var H=j?"":"display:none; ",_="opacity: "+(a?"1":"0.2"); -if(h&&h[0]==q){H+="background-color:rgba(0,0,0,0.13);";$=L}if(this.a46[q]!=H+_){L.setAttribute("style",H); -L.firstChild.setAttribute("style",_);this.a46[q]=H+_}}if($&&!this.vS)this.xi.scrollTop=$.offsetTop-210; -this.vS=!1};hV.prototype.yQ=function(h,e,$,Z){var c=D.w("div","fontitem"),a="";c.addEventListener("click",$,!1); -if(Z)c.appendChild(D.w("button","star"));var q=D.w("span","label");q.setAttribute("title",e);q.textContent=e; -c.appendChild(q);var E=D.M(),P=1/E,j=bc.cI*P,L=bc.SA*P;if(1>>G&1)==1;this.xw[G]=$;e[G].T($)}};cI.prototype.ah3=function(){return this.WB}; -cI.prototype.B=function(){this.j.textContent=e_.get([25,1,0])+" \u25BC";this.AF.B();this.akM.B()};cI.prototype.a7m=function(h){var e=this.j.getBoundingClientRect(),$=new B(D.E.P,!0); -$.data={e:D.U.sH,yv:this.xN,x:e.left,y:e.top+e.height,Uv:!1};this.f($)};cI.prototype.Pj=function(h){if(this.Rk[h[4]]==0)return!1; -else for(var e=0;e>>e&1)==0)return!1;return!0};cI.prototype.afK=function(h){var e=h.target.u(),$=this.Aj,Z=this.Rk; -for(var G=0;G<$.length;G++){$[G].T(e);Z[G]=e?1:0}this.f(new B(D.E.L,!1))};cI.prototype.a0$=function(h){var e=h.target.u(),$=this.Ki,Z=this.xw; -for(var G=0;G<$.length;G++){$[G].T(e);Z[G]=e?1:0}this.f(new B(D.E.L,!1))};cI.prototype.a0j=function(h){var G=this.Aj.indexOf(h.target),e=this.wX[G].index; -this.Rk[e]=1-this.Rk[e];this.f(new B(D.E.L,!1))};cI.prototype.adr=function(h){var G=this.Ki.indexOf(h.target); -this.xw[G]=1-this.xw[G];this.f(new B(D.E.L,!1))};function fh(h,e,$){gI.call(this,e,!0,"gradientbutton",18,10,iM.xB); -this.oV=-1;this.XK=-1;this.a29=null;this.a0R=h;this.x9=$}fh.prototype=new gI;fh.prototype.qx=function(h){var e=this.ZM; -this.T(e[this.Xu.u()]);this.f(new B(D.E.L))};fh.prototype.i2=function(h){var e=new B(D.E.P,!0);e.data={e:D.U.tr,yq:"gradienteditor",Y:this.$L,Nb:this.a0w.bind(this),ii:this.x9}; -this.f(e)};fh.prototype.a0w=function(h){this.T(h);this.f(new B(D.E.L))};fh.prototype.t9=function(){if(!this.ZE)return; -var h=Math.floor(36*D.M()),e=Math.floor(36*D.M()),$=[],Z=[],c=this.ZM;for(var G=0;G",!1,[12,51]); -this.pG.k("click",this.zs,this);this.akB=new cZ("");if(e){this.j.appendChild(this.pG.j);this.j.appendChild(this.akB.j); -this.pG._j()}else this.j.appendChild(q.j);this.pZ=new hr("DPI",0,0,null,3,!1,!0,4);if(h&&Z==null){D.vV(this.j); -this.j.appendChild(this.pZ.j)}this.pZ.k(D.E.L,this.zs,this);this.Xg=new cw([12,23,1]);this.Xg.k(D.E.L,this.zs,this); -if($){D.vV(this.j);this.j.appendChild(this.Xg.j)}D.vV(this.j)}aY.prototype=new ev;aY.prototype.ajh=function(){this.ou=!1; -if(this.bC.u()==0){this.bC.T(3);this.zG()}};aY.prototype.aga=function(){this.ou=!0};aY.prototype.a2s=function(h){this.pG.T(h)}; -aY.prototype.B=function(){this.Oq.B();this.Rm.B();this.pZ.B();this.pG.B();this.Xg.B()};aY.prototype.a7i=function(h){var e=this.fD.x; -this.fD.x=this.fD.y;this.fD.y=e;this.zG();this.f(new B(D.E.L,!1))};aY.prototype.zs=function(h){if(h.target==this.bC&&!this.ou&&this.bC.u()==0)this.bC.T(3); -if(h.target==this.bC||h.target==this.Xg){this.zG();return}if(h.target==this.pG)h.target.T(!h.target.u()); -var e=this.f3,$=parseFloat(this.Oq.u());if(isNaN($))$=1;var Z=parseFloat(this.Rm.u());if(isNaN(Z))Z=1; -var c=this.bC.u();if(this.ou){var q=this.q2;if(c==1){$=this.f3.x*($/100);Z=this.f3.y*(Z/100)}var E=[1,1,25.4/q,1/q][c]; -$/=E;Z/=E;if(this.Xg.u()){$+=this.f3.x;Z+=this.f3.y}if(h.target==this.pZ){var P=this.pZ.u();if(!0){var a=P/q; -$*=a;Z*=a}q=P}if(this.pG.u()){if(h.target==this.Oq)Z=$*(e.y/e.x);else $=Z*(e.x/e.y)}$=Math.max(Math.abs($),1); -Z=Math.max(Math.abs(Z),1)}else{var q=this.$b;if(h.target==this.pZ)q=this.pZ.u();else{if(this.pG.u()){if(h.target==this.Oq)Z=$*(e.y/e.x); -else $=Z*(e.x/e.y)}var E=[1,1,25.4/q,1/q][c],j=$/(c==1?100:e.x*E);q=q/j}$=e.x;Z=e.y}this.fD=new eu(Math.round($),Math.round(Z)); -this.q2=q;this.zG();this.f(new B(D.E.L,!1))};aY.prototype.a4j=function(G){this.bC.T(G);this.zG()};aY.prototype.T=function(h,e,$){if($!=!0)this.f3=h.clone(); -this.fD=h.clone();if(e!=null){this.$b=e;this.q2=e}this.zG()};aY.prototype.zG=function(){var h=this.fD.x,e=this.fD.y,$=this.q2,Z=(h/e).toFixed(3); -while(Z.charAt(Z.length-1)=="0")Z=Z.substring(0,Z.length-1);if(Z.charAt(Z.length-1)==".")Z=Z.substring(0,Z.length-1); -var c=" "+Z+" : 1",q=function(L,H){while(H!=0){var _=H;H=L%H;L=_}return L},E=q(h,e);if(Math.min(h,e)/E<10)c=" "+Math.round(h/E)+" : "+Math.round(e/E); -this.akB.T(c);if(this.Xg.u()){h-=this.f3.x;e-=this.f3.y}var P=this.bC.u();if(P==1){if(this.ou){h=100*h/this.f3.x; -e=100*e/this.f3.y}else{h=e=100*this.$b/this.q2}}else{h=Math.round(h);e=Math.round(e)}var a=[1,1,25.4/$,1/$][P]; -h*=a;e*=a;var j=P==1||P==3?2:0;this.Oq.dg(j);this.Rm.dg(j);this.Oq.T(h);this.Rm.T(e);this.pZ.T($)};aY.prototype.u=function(){return this.fD.clone()}; -aY.prototype.Uf=function(){return this.q2};function fv(){ev.call(this);this.Fa=0;this.Mj=[0,0,1,1,100,100]; -this.j=D.w("span","fitem");this.Lx=new fs(null,[[12,89,0],[12,89,1],[12,89,2]]);this.j.appendChild(this.Lx.j); -this.Lx.k(D.E.L,this.zs,this);this.Oq=new hr("W",0,0,null,0,!1,!0);this.j.appendChild(this.Oq.j);this.Oq.k(D.E.L,this.zs,this); -this.Rm=new hr("H",0,0,null,0,!1,!0);this.j.appendChild(this.Rm.j);this.Rm.k(D.E.L,this.zs,this);this.T({A2:0,x:0,y:0})}fv.prototype=new ev; -fv.prototype.B=function(){D.Qb(this.Oq,this.Rm);this.Lx.B()};fv.prototype.zs=function(h){if(h.target==this.Lx){var e=this.u(),$=this.Mj; -$[this.Fa*2]=e.x;$[this.Fa*2+1]=e.y;this.Fa=e.A2;this.T({A2:e.A2,x:$[e.A2*2],y:$[e.A2*2+1]})}if(this.Oq.u()<1)this.Oq.T(1); -if(this.Rm.u()<1)this.Rm.T(1);this.f(new B(D.E.L,!1))};fv.prototype.T=function(h){this.Lx.T(h.A2);this.Oq.T(h.x); -this.Rm.T(h.y);if(h.A2==0){this.Oq.WJ();this.Rm.WJ()}else{this.Oq.pw();this.Rm.pw()}};fv.prototype.u=function(){return{A2:this.Lx.u(),x:this.Oq.u(),y:this.Rm.u()}}; -function cZ(h,e){ev.call(this);this.pO=h;this.j=D.w("span","labelitem fitem"+(e?" spread":""));this.B()}cZ.prototype=new ev; -cZ.prototype.T=function(h){this.j.textContent=h};cZ.prototype.u=function(){return this.j.textContent}; -cZ.prototype.pw=function(){this.j.removeAttribute("disabled")};cZ.prototype.WJ=function(){this.j.setAttribute("disabled","")}; -cZ.prototype.TQ=function(h){this.j.textContent=h};cZ.prototype.B=function(){this.j.textContent=e_.get(this.pO)}; -cZ.prototype.Jc=function(){return this.pO};function fq(h){ev.call(this);this.j=D.w("span","");this.ai9=h; -this.$z=new hN("Off X",-100,100,h?"%":"px",0,!1);this.fE=new hN("Off Y",-100,100,h?"%":"px",0,!1);this.$z.k(D.E.L,this.zs,this); -this.fE.k(D.E.L,this.zs,this);this.j.appendChild(this.$z.j);this.j.appendChild(this.fE.j)}fq.prototype=new ev; -fq.prototype.B=function(){this.$z.B();this.fE.B()};fq.prototype.zs=function(h){this.f(new B(D.E.L,!1))}; -fq.prototype.ahZ=function(h){this.$z.T(h.x);this.fE.T(h.y)};fq.prototype.alN=function(){return new eu(this.$z.u(),this.fE.u())}; -fq.prototype.T=function(h,e){var $=h.Hrzn.v,Z=h.Vrtc.v;if(this.ai9){$=$.val;Z=Z.val}this.$z.T($);this.fE.T(Z); -if(e)this.zs()};fq.prototype.u=function(){var h=this.$z.u(),e=this.fE.u();if(this.ai9)return{classID:"Pnt",Hrzn:{t:"UntF",v:{type:"#Prc",val:h}},Vrtc:{t:"UntF",v:{type:"#Prc",val:e}}}; -else return{classID:"Pnt",Hrzn:{v:h,t:"doub"},Vrtc:{v:e,t:"doub"}}};function hr(h,e,$,Z,c,q,E,P,a){gA.call(this,h,e,$,Z,c,!0,q,a); -D.so(this.j,"rangedropinput");this.j.appendChild(this.WA);this.iB.setAttribute("style","width:"+(P?P:3.3)+"em"); -this.j.appendChild(this.iB);this.anj=D.w("span","rangecont");this.anj.appendChild(this.Nx);this.Cl=D.w("button"); -this.Cl.innerHTML="\u25BC";D.uh(this.Cl,this.ail.bind(this));if(E!=!0)this.j.appendChild(this.Cl);this.rr=new ev; -this.rr.j=this.anj}hr.prototype=new gA;hr.prototype.ail=function(h){if(D.Nn(this.rr.j))return;h.stopPropagation(); -var e=this.j.getBoundingClientRect();this.Nx.setAttribute("style","width:"+e.width+"px;");var $=new B(D.E.P,!0); -$.data={e:D.U.sH,yv:this.rr,x:e.left,y:e.top+e.height};this.f($)};function ha(){ev.call(this);this.j=D.w("span","fitem strokebutton"); -this.WL=[[null,null,null,""],[null,0,null,"4 2"],[1,1,null,"0 2"]];this.kw=JSON.parse(JSON.stringify(c3.oF.default)); -this.Tf=D.w("button");this.j.appendChild(this.Tf);this.Tf.addEventListener("click",this.OW.bind(this),!1); -var h=D.w("canvas","gsicon");this.J$=h.getContext("2d");this.Tf.appendChild(h);var e=D.w("span");e.textContent=" \u25BC"; -this.Tf.appendChild(e);this.xN=new ev;this.xN.parent=this;this.xN.j=D.w("div","floatcont form");var $=this.xN.j; -$.setAttribute("style","width: 14em;");this.fI=[new fs([12,40],[[19,5,2],[19,5,1],[19,5,0]]),new cp([19,9,0],["","",""]),new cp([19,9,1],["","",""]),new a_([19,9,2])]; -for(var G=0;G",!1,e[G]); -$.k("click",this.alm,this);this.j.appendChild($.j);this.xa.push($)}this.xa[0]._j()}gV.prototype=new ev; -gV.prototype.aby=function(){return this.hV};gV.prototype.u=function(){return this.gZ[this.hV]};gV.prototype.T=function(h){this.hV=this.gZ.indexOf(h); -for(var G=0;G";var h=this.a7q,e=this.abh;D.pH(this.e.firstChild,h,e)}; -c6.prototype.u=function(){return this.aG[this.pm]};c6.prototype.T=function(h){this.pm=this.aG.indexOf(h); -this.v5()};function aZ(h,e,$){ev.call(this);if(h==null)h=!1;if(e==null)e=!1;if($==null)$=!1;this.a0H=e; -this.FO=null;this.Zf=new c6([12,22],$);this.Zf.parent=this;this.Zf.k(D.E.L,this.Ta,this);this.ns=new fs([22,0],[[22,4,0],[22,4,1]]); -this.ns.k(D.E.L,this.Ta,this);var Z=h?hr:dm;this.AH=new Z([22,1],-100,100,"%");this.MH=new Z("Horizontal Distortion:",-100,100,"%"); -this.eD=new Z("Vertical Distortion:",-100,100,"%");this.AH.parent=this.MH.parent=this.eD.parent=this; -this.AH.k(D.E.L,this.Ta,this);this.MH.k(D.E.L,this.Ta,this);this.eD.k(D.E.L,this.Ta,this)}aZ.prototype=new ev; -aZ.prototype.B=function(){this.Zf.B();this.ns.B();this.AH.B();var h=this.a0H?1:100;this.MH.TQ(e_.get([22,2]).substring(0,h)+":"); -this.eD.TQ(e_.get([22,3]).substring(0,h)+":")};aZ.prototype.Ta=function(){var h=this.FO,e=this.Zf.u(),$=h.warpStyle.v.warpStyle; -if(e=="warpCustom")s.FO.WX(s.FO.a8(h),h);else delete h.customEnvelopeWarp;h.warpStyle.v.warpStyle=this.Zf.u(); -h.warpRotate.v.Ornt=["Hrzn","Vrtc"][this.ns.u()];h.warpValue.v=this.AH.u();h.warpPerspective.v=this.MH.u(); -h.warpPerspectiveOther.v=this.eD.u();if(e=="warpNone"||e=="warpCustom"){h.warpValue.v=0;h.warpPerspective.v=0; -h.warpPerspectiveOther.v=0}else if($=="warpNone"||$=="warpCustom")h.warpValue.v=50;this.f(new B(D.E.L,!1)); -this.T(h)};aZ.prototype.u=function(h){return JSON.parse(JSON.stringify(this.FO))};aZ.prototype.T=function(h){this.FO=JSON.parse(JSON.stringify(h)); -this.Zf.T(h.warpStyle.v.warpStyle);this.ns.T(h.warpRotate.v.Ornt=="Hrzn"?0:1);this.AH.T(h.warpValue.v); -this.MH.T(h.warpPerspective.v);this.eD.T(h.warpPerspectiveOther.v);var e=h.warpStyle.v.warpStyle,$=e=="warpNone"||e=="warpCustom",Z=[this.ns,this.AH,this.MH,this.eD]; -for(var G=0;G=1)Z={Hl:$,rect:e.Au};else Z=s.a3K($,e.Au,h);this.DI.push(Z)}}; -cz.prototype.eJ=function(){clearTimeout(this.aiK)};cz.prototype.VS=function(){if(this.ir==null||!D.Nn(this.BA))return; -var h=this.agi,e=this.BA.width,$=this.BA.height,S,N;if(h==null||h.width!=e||h.height!=$){h=this.agi=this.J$.createImageData(e,$); -console.log("creating image data")}var Z=this.ir[this.rT],c=this.DI[this.rT],q=this.z,E=q.q4,P=q.qM,a=P.d,j=P.v,L=E.d*q.S,H=E.v*q.S,_=Math.round((a-L)/2+q.i.x),J=Math.round((j-H)/2+q.i.y); -if(q.S<=1){N=c.rect.clone();N.x=_;N.y=J;L=N.d;H=N.v;S=c.Hl}else{var Y=1/q.S,U=new O(Math.floor((P.x-_)*Y),Math.floor((P.y-J)*Y),Math.ceil(P.d*Y)+1,Math.ceil(P.v*Y)+1),g=new O(0,0,U.d*q.S,U.v*q.S); -g.x=U.x*q.S+_;g.y=U.y*q.S+J;if(q.uo==null||q.uo.length!=U.X()*4){q.uo=s.m(U.X()*4)}if(q.Dc==null||q.Dc.length!=g.X()*4){q.Dc=s.m(g.X()*4)}s.Ut(q.uo,0); -s.hX(c.Hl,c.rect,q.uo,U);s.scale.hF(q.uo,U.d,U.v,q.Dc,g.d,g.v,q.S);S=q.Dc;N=g}var M=new Uint8Array(h.data.buffer); -s.Om(M,a,j,8,-_,-J);s.p.Jn("norm",S,N,M,P,P,1);this.J$.setTransform(1,0,0,1,0,0);this.J$.putImageData(h,0,0); -this.J$.clearRect(_-1e3,J,1e3,H);this.J$.clearRect(_+L,J,1e3,H);this.J$.clearRect(_-1e3,J-1e3,L+2e3,1e3); -this.J$.clearRect(_-1e3,J+H,L+2e3,1e3);var C=cz.r_(q.S,"#ffffff");this.J$.putImageData(C,0,q.qM.v-C.height)}; -cz.BB={};cz.r_=function(h,e){var $="z"+h+","+e,Z=cz.BB[$];if(Z)return Z;var c=Math.round(50*D.M()),q=Math.round(18*D.M()),E=D.w("canvas"),P=E.getContext("2d"); -E.width=c;E.height=q;P.fillStyle="rgba(1,1,1,1)";P.fillRect(0,0,c,q);P.font=Math.round(11*D.M())+"px monospace"; -P.fillStyle=e;var a=h*100;if(a<100)a=a.toFixed(2);else a=Math.round(a);a=a+"%";var j=P.measureText(a).width; -P.fillText(a,(c-j)/2,Math.round(q*.7));Z=cz.BB[$]=P.getImageData(0,0,c,q);return Z};cz.prototype.e5=function(){var h=this.ir,e=h.length,$=this.rT,Z=this.ir[$],c=($+1)%e; -this.VS();if(e!=1&&h[c].Au.dz(Z.Au)){var q=Z.c5?parseInt(Z.c5.split(",").pop()):30;if(q==0)q=16;if(c==0)this.dL++; -if(this.pR==0||this.dL1){this.z.S=1;this.z.i.su(0,0);this.VS()}if(this.r7&&this.lY==this.BA&&!this.i5)this.f(new B("mouseup")); -else{if(e=="zoom-in"||e=="zoom-out")this.yo(this.W6,e=="zoom-in")}};cz.prototype.BS=function(){return this.z.QX(this.W6.x,this.W6.y)}; -function fo(){ev.call(this);this.hU=null;this.PM=null;this.yJ=null;this.vm=null;this.acJ="";this.o2=[]; -this.b9=0;this.nV=[];this.w3=0;this.D0=null;var h=this.j=D.w("div",""),e=this.a5X=D.w("div","form"); -e.setAttribute("style","line-height:0; margin-bottom:0.5em;");h.appendChild(e);var $=this.Ix=D.w("span"); -e.appendChild($);$.setAttribute("style","font-size:1.2em; font-weight:bold; margin-right:3em;");var Z=this.akn=new cw([25,2,0]); -Z.T(!0);e.appendChild(Z.j);Z.k(D.E.L,this.$T,this);var c=this.es=new cw([25,2,1]);c.T(!0);e.appendChild(c.j); -c.k(D.E.L,this.$T,this);var q=new cZ(" ");e.appendChild(q.j);var E=this.H5=new a_([25,1,1]);e.appendChild(E.j); -E.k(D.E.L,this.$T,this);this.uF=new cI(14);this.uF.a9J(3);e.appendChild(this.uF.j);this.uF.parent=this; -this.uF.k(D.E.L,this.a2A,this);var P=this.adq=new gg([25,1,2],null,null,!0);e.appendChild(P.j);P.k("click",this.du,this); -this.ajm=this.ano.bind(this);this.hA=D.w("div","svggallery scrollable");h.appendChild(this.hA);this.hA.addEventListener("scroll",this.afd.bind(this))}fo.prototype=new ev; -fo.prototype.if=function(h){this.anC=h};fo.prototype.B=function(){this.Ix.textContent=e_.get([25,0]); -this.uF.B();this.akn.B();this.es.B();this.H5.B();this.adq.B()};fo.prototype.Sy=function(h,e){e-=26;this.hU=new eu(h,e); -this.a5X.setAttribute("style","width:"+h+"px");this.hA.setAttribute("style","width:"+h+"px; height:"+e+"px"); -if(D.Nn(this.j))this.$T()};fo.prototype.T=function(h){this.PM=h;this.$T()};fo.prototype.afd=function(h){var e=this.hA; -if(e.scrollTop+e.clientHeight+10>=e.scrollHeight){this.$T(!0)}};fo.prototype.a2A=function(h){this.yJ=null; -this.$T()};fo.prototype.ano=function(h){if(Date.now()-this.w3<2e3)return;this.w3=Date.now();this.b9=this.nV.indexOf(h.currentTarget); -var e=this.W2(this.PM.x,this.PM.y);if(e[1]){var $=e[1].largeImageURL,Z=new XMLHttpRequest;Z.responseType="arraybuffer"; -Z.open("GET",$,!0);Z.onload=this.a3x.bind(this);Z.send();return}this.xx(e)};fo.prototype.a3x=function(h){var e=h.target.response,$=cE.B3(e),Z=cE.fy($),c=Z.Cj(e),q=this.W2(this.PM.x,this.PM.y,[e,c[0].Au.d,c[0].Au.v]); -this.xx(q)};fo.prototype.xx=function(h){var e=h[0],$=cE.B3(e),Z=cE.fy($),c=new c9("template.psd");Z.Cj(e,c); -var q=new B("tempready",!0);q.data={q4:c};this.f(q)};fo.prototype.du=function(h){var e=h.target;this.o2=[]; -this.$T()};fo.prototype.ant=function(h){var e=JSON.parse(h.target.response);this.vm=e.hits;this.$T()}; -fo.prototype.$T=function(h){if(this.PM==null||this.hU==null||this.anC==null)return;if(this.hU.x<=0)return; -var e=this.PM.x,$=this.PM.y;if(Math.min(e,$)<50)return;if(h!=!0){this.nV=[];D.LK(this.hA);this.hA.scrollTop=0}if(this.nV.length>300)return; -var Z=Math.min(1,300/Math.max(e,$)),c=this.hU.clone();c.x-=20;var q=Math.max(1,Math.floor(c.x/(e*Z))),E=Math.max(1,Math.ceil(c.y/($*Z))); -Z=c.x/q/e;var P=q*E;if(this.yJ==null){var a=this.anC.R0.Ht();this.yJ=[];for(var j in a){var L=a[j],H=L[3]; -if(!this.uF.Pj(L))continue;if(L[5]==null||L[5].slice(0,2)=="gf")continue;this.yJ.push(L)}if(this.yJ.length==0)this.yJ.push(a.DejaVuSans)}var _=this.es.u(),J=this.H5.u().trim(); -this.H5.NA(_);if(_&&(this.vm==null||J!=this.acJ)){var S=new XMLHttpRequest,N="https://pixabay.com/api/?image_type=photo"+(J==""?"":"&q="+encodeURIComponent(J))+"&per_page=200&page=1&key=10554583-a5eacb61c2e61105fdfb6eb88"; -if(J=="")N+="&safesearch=true";if(J=="")N="plugins/gallery.json";S.open("GET",N,!0);S.onload=this.ant.bind(this); -S.onerror=function(y){console.log(y.target.response)};S.send();this.acJ=J;return}Z*=(e*Z-5)/(e*Z);var Y=this.nV.length; -for(var G=0;G\n"; -P+="\n"}P+="\n\n";var g=s.m(Math.round(P.length*1.5)),M=k.Gn(P,g,0);j["index.html"]=g.slice(0,M); -Z=UZIP.encode(j);c=e+".zip"}if(q.$c){var C=new XMLHttpRequest;C.open("GET","/papi/img/update.php?act=1&id="+q.$c+"&rnd="+Math.random()); -C.send()}var y=new B(D.E.P,!0);y.data={e:D.U.Dz,data:Z,name:c};this.f(y);this.XS.eJ();this.close()}; -eE.prototype.uq=function(h,e){if(e.gw!=null)this.H7.T(e.gw);this.q4=h;var $=h.d+","+h.v;if($!=this.a9u){this.a9u=$; -this.Hq.T(new eu(h.d,h.v),h.Ay)}this.e4.aeg();this.$T(null,!0)};eE.prototype.uX=function(h,e){return new eu(Math.max(0,Math.min(150,(h-770)/2)),Math.max(0,Math.min(150,(e-590)/2)))}; -eE.prototype.Sy=function(h,e){this.EN=h;this.CD=e;this.oS.x=Math.min(512,h-26-214);this.oS.y=Math.min(512,e-45); -if(this.q4==null)return;var $=this.Hq.u(),h=$.x,e=$.y,Z=cE.Lf()[this.H7.u()],c=cE.fy(Z),H=""; -if(c._Q){var q=h,E=e,P;if(Z=="PDF"||c.zr){q=this.oS.x;E=this.oS.y}else{q=Math.min(h+20,this.oS.x);E=Math.min(e+20,this.oS.y)}this.Ds.firstChild.setAttribute("style","display:block; width:"+q+"px; height:"+E+"px;")}else{if(c.zr){q=this.oS.x; -E=this.oS.y}else{var a=this.ajN,j=a[0].Au,q=j.d,E=j.v;this.XS.Sy(Math.max(50,Math.min(q/D.M(),this.oS.x)),Math.max(50,Math.min(E/D.M(),this.oS.y)))}}var L=this.Oz.byteLength,J=Z+":"+H+64+"px;"+_+eE.vp(L)+""; -if(this.oS.x>200)J+=H+90+"px; opacity:"+.5+";"+_+L.toLocaleString()+" B";this.wd.innerHTML=J}; -eE.vp=function(h){var e=0;while(h>>>e+10!=0)e+=10;var $=(h/(1<1,N=""; -if(j&&e&&(a>4&&c*q>1024*1024||c*q*a>800*800*50)){var L=1;while(Math.max(c>>>L,q>>>L)>800)L++;var H=window.confirm("Your animation is large ("+c+" x "+q+" px). Press \"OK\" to scale it to "+(100>>>L)+"%. Press \"Cancel\" to keep the size."); -if(H){this.Hq.T(new eu(c>>>L,q>>>L),null,!0);c=c>>>L;q=q>>>L}}var _=$.add.artd,J=_==null||_.Cnt.v==1; -this.e4.ze(P,j,$.E1.length!=0,J);var S=this.e4.u();this.Oz=cE.JS($,P,c,q,S,this.D0);if(this.Oz==null){this.q4=null; -return}D.LK(this.Ds);this.XS.eJ();var Y=cE.fy(P);if(Y.zr){this.Ds.innerHTML="
";N+="width:0px"}else if(Y._Q){var U=c,g=q,M; -if(P=="PDF"){M=URL.createObjectURL(new Blob([this.Oz],{type:"application/pdf"}))}else{M=URL.createObjectURL(new Blob([this.Oz],{type:"image/svg+xml"}))}this.Ds.innerHTML=""}else{var C=this.ajN=Y.Cj(this.Oz),y=C[0].Au,U=y.d,g=y.v; -this.XS.T(C,C.length>1?S[S.length-3]:0);this.Ds.appendChild(this.XS.j);N="background: rgba(0,0,0,0);"}this.Ds.setAttribute("style","display:block; background-size:"+16/D.M()+"px;"+N); -this.Sy(this.EN,this.CD)};function aR(){hx.call(this,[11,13],"shortcuts");var h=this.v0=D.w("div","scrollable"); -h.setAttribute("style","min-width:700px; max-height:500px; padding:1.5em");this.body.appendChild(h); -this.io()}aR.prototype=new hx;aR.prototype.B=function(){hx.prototype.B.call(this);this.io()};aR.prototype.io=function(){var h="
",e="",$=p,Z=$.tm,c=$.ai,q=$.ys; -e+="

Main Menu

";e+=h;e+=this.$a([[0,0],"---",[1,0],[Z,$.No],[1,2],[Z,$.mu],[1,3],[c,Z,$.mu],[1,8],[q,c,Z,$.mu],[0,1],"---",[2,0],[c,Z,$.HT],[2,1],[Z,$.HT],[5,0],[Z,$.Af],[5,1],[Z,$.ok],[5,2],[Z,$.hK],[2,2],"Delete",[2,3],[q,$.iC],[10,16],[q,Z,$.V],[12,79],[Z,$.el],[3],"---",[4,1],[Z,$.Hs],[4,2],[Z,$.bQ],[4,5],[Z,$.oK],[4,11],[Z,$.J1],[0,3],"---",[6,0],[Z,$.eC],[6,6,0],[q,Z,$.dP],[6,9],[Z,$.dP],[6,10],[Z,$.E],[0,5],"---",[7,0],[Z,$.U],[7,1],[Z,$.ob],[7,2],[c,Z,$.J1],[0,7],"---",[8,0],[Z,$.MY],[8,1],[Z,$.Lj],[8,3],[Z,$.WT],[8,2],[Z,$.Ih],[8,4],[Z,$.N4],[11,13],"?"]); -e+="
";e+="

Navigation

";e+=h;e+=this.$a(["Vertical scroll","Wheel","Horizontal scroll",[Z,"Wheel"],"Zooming",[q,"Wheel"]]); -e+="";e+="

Quick tools (press to enable, release to disable)

"; -e+=h;e+=this.$a([[10,11],[Z],[10,7],"Space",[10,17],[Z,$.P2]]);e+="";e+="

Tools

"; -e+=h;var E=aR.Nh,P=[];for(var G=0;G";this.v0.innerHTML=e};aR.prototype.$a=function(h){var e="",$=!0;for(var G=0; -G"; -e+="
"+q+"
"}else e+="
"+q+" "+c+"
"; -$=!1}return e};aR.Nh=[[10,11],"V",0,[10,15],"M",1,[10,4],"M",2,[10,9],"L",5,[10,14],"L",6,[10,10],"L",7,[10,44],"W",3,[10,37],"W",8,[10,12],"W",9,[10,2],"C",10,[10,39],"C",11,[10,40],"C",12,[10,41],"C",13,[10,5],"I",14,[10,36],"I",16,[10,24],"J",18,[10,25],"J",19,[10,26],"J",20,[10,43],"J",22,[10,0],"B",23,[10,38],"B",24,[10,42],"B",25,[10,1],"S",27,[10,3],"E",31,[10,45],"E",32,[10,6],"G",34,[10,13],"G",35,[10,18],null,36,[10,19],null,37,[10,20],null,38,[10,21],"O",39,[10,22],"O",40,[10,23],"O",41,[10,8],"T",47,[10,29],"P",42,[10,30],"P",43,[10,27],"A",51,[10,28],"A",52,[10,32],"U",54,[10,33],"U",55,[10,35],"U",57,[10,34],"U",56,[10,31],"U",58,[10,7],"H",59,[10,17],"Z",61]; -function dk(){hx.call(this,[8,11,1],"soptions");this.fD=null;var h=D.w("div","form");h.style.width="20em"; -this.body.appendChild(h);this.CO={Nm:[12,48],url:"URL",null:[12,71]};this.fI={};for(var e in this.CO){var $=new a_(this.CO[e],null,15); -this.fI[e]=$;h.appendChild($.j)}var Z=new gg("OK",!0,null,!0);Z.k("click",this.nW,this);h.appendChild(Z.j)}dk.prototype=new hx; -dk.prototype.uq=function(h,e,$){var Z=e.G;this.fD=JSON.stringify(Z);for(var c in this.CO){if(Z[c])this.fI[c].T(Z[c].v)}}; -dk.prototype.nW=function(h){var e=JSON.parse(this.fD);for(var $ in this.CO){var Z=this.fI[$].u();e[$]={t:"TEXT",v:Z}}var c=new B(D.E.A,!0); -c.F=f.Ou;c.data=e;c.Q1=!0;this.f(c);this.close()};function iw(){hx.call(this,[2,3],"fill");this.D0=null; -this.gT=null;var h=D.w("div","form padded");h.style.width="22em";this.body.appendChild(h);this.vY="FrgC BckC Clr Blck Gry Wht contentAware".split(" "); -this.Wv=new fs([2,3],[[12,45],[12,46],[12,47],[13,1,10],[13,1,7],[13,1,8],[6,48,0,3]]);this.Wv.k(D.E.L,this.aeD,this); -h.appendChild(this.Wv.j);this.Ds=D.w("span");h.appendChild(this.Ds);this.AJ=new fx;this.AJ.parent=this; -this.AJ.Dt(0);this.la=new fs([12,19,0],eN.sF,!1,eN.$j);h.appendChild(this.la.j);this.Zg=new hN([12,0],0,100,"%",0,!1); -this.Zg.T(100);h.appendChild(this.Zg.j);this.VB=new gg("OK",!0,null,!0);this.VB.k("click",this.nW,this); -this.body.appendChild(this.VB.j)}iw.prototype=new hx;iw.prototype.oc=function(h,e){return h!=null};iw.prototype.Mm=function(){return!0}; -iw.prototype.aeD=function(){var h=this.Wv.u()==2,e=this.AJ.j,$=this.Ds;if(h)$.appendChild(e);else if($.contains(e))$.removeChild(e)}; -iw.prototype.B=function(){hx.prototype.B.call(this);this.Wv.B();this.la.B();this.Zg.B()};iw.prototype.nW=function(h){if(!this.gT.Jh())return; -var e=new B(D.E.Kz,!0),$=this.Wv.u();e.data=f.rz.GC(this.vY[$],eN.Pn[this.la.u()],this.Zg.u()/100,this.AJ.u()); -this.close();this.f(e)};iw.prototype.uq=function(h,e){this.gT=h};iw.prototype.if=function(h,e){this.D0=h}; -function fn(){hx.call(this,[14,9],"stroke");this.D0=null;this.jf=D.w("div","form");this.jf.setAttribute("style","width:24em"); -this.body.appendChild(this.jf);this.gn=new at("FrFX",!0);this.gn.parent=this;var h=["Sz","Styl","Md","Opct"].concat(c3.O7); -for(var G=0;G>16&255,l:Z>>8&255,O:Z&255}); -this.gn.update(h,$)};fn.prototype.if=function(h,e){this.D0=h};function dI(){hx.call(this,[11,9],"textwarp"); -this.fI=new aZ;this.fI.k(D.E.L,this.Ta,this);this.fI.parent=this;this.jf=D.w("div","form");this.jf.setAttribute("style","width:20em"); -this.body.appendChild(this.jf);this.jf.appendChild(this.fI.Zf.j);this.jf.appendChild(this.fI.ns.j);this.jf.appendChild(this.fI.AH.j); -this.jf.appendChild(this.fI.MH.j);this.jf.appendChild(this.fI.eD.j);this.VB=new gg("OK",!0,null,!0); -this.VB.k("click",this.nW,this);this.jf.appendChild(this.VB.j);this.k("closebtn",this.Qt,this)}dI.prototype=new hx; -dI.prototype.Mm=function(){return!0};dI.prototype.B=function(){hx.prototype.B.call(this);this.fI.B()}; -dI.prototype.Ta=function(h){var e=this.fI.u();this.Kt({e:"warp",FO:e})};dI.prototype.Kt=function(h){var e=new B(D.E.A,!0); -e.F=f.kE;e.data=h;e.Q1=!0;this.f(e)};dI.prototype.Qt=function(h){this.Kt({e:"warpCancel"})};dI.prototype.nW=function(h){this.Kt({e:"warpConfirm"}); -this.close()};dI.prototype.uq=function(h,e){var $=h.t[h.C[0]];this.fI.T($.add.TySh.$F)};function fi(){hx.call(this,"Raw Photopea","rawpea"); -this.Xr=null;this.ZQ=null;this.UF=null;this.mZ=0;this.nT=null;this.Du=null;this.a1a=500;this.acf=500; -this.k("closebtn",this.df,this);D.so(this.body,"flexrow");var h=D.w("div"),e=D.w("div"),Z=""; -e.setAttribute("style","padding-left: 1em");this.body.appendChild(h);this.body.appendChild(e);this.p$=D.w("canvas"); -h.appendChild(this.p$);this.J4=new bZ(225);this.J4.Yn(4);e.appendChild(this.J4.j);this.jf=D.w("div"); -this.jf.setAttribute("style","width:18em;");e.appendChild(this.jf);this.abB=new cZ("Hi",!0);this.jf.appendChild(this.abB.j); -this.MC=[new dm("Temperature",2e3,13e3),new dm("Tint",-150,150),new dm([4,3],-4,4,null,!0),new dm([12,3,0],-100,100)]; -for(var G=0;Gthis.a1a*D.M()||$/Z>this.acf*D.M())Z++;var c=Math.floor(e/Z),q=Math.floor($/Z);this.nT={Hl:new Float32Array(c*q*3),_i:c,bF:q}; -var E=this.p$.getContext("2d");this.Du=E.createImageData(c,q);s.Ut(this.Du.data,4294967295);var P=1/(Z*Z); -for(var a=0;a>>2]*4;P[G]=S[g];P[G+1]=S[g+1];P[G+2]=S[g+2]}}this.a6={Au:$.Au.clone(),data:P.buffer}; -if(h){console.log("segm",Date.now()-e);e=Date.now()}}if(q)$=this.a6;var P=new Uint8Array($.data),L=$.Au.d,H=$.Au.v; -for(var G=0;G.05||F.parent!=G)continue; -var b=F.path.Z.slice(1);b.reverse();b=["M"].concat(b);var d=[],Q=F.path.H.length;for(var W=0;W=3)Z.QT("Space");if(c>=4){Z.QT("ControlLeft"); -if(c==5)Z.QT("AltLeft")}this.SE.WI(Z);return}this.gD=Z;var q=f.rz.fF(this.V_.u(),Z);if(q!=null){this.V_.T(q); -this.qd()}else if(Z.q(p.tm)&&Z.q(p.HT)){var E=this.Ex,P=0;if(Z.q(p.ai)){if(this.Bl+10)P=-1; -if(P!=0){this.Bl+=P;var a=this.Bl,j=this.FN;if(P==1)s.hX(E[a][2],E[a][0],j.tY,j.rect);else s.hX(E[a+1][1],E[a+1][0],j.tY,j.rect); -j.YQ=j.rect;this.VS()}}else if(c<3)this.SE.WI(Z)};hA.prototype.ST=function(h){var e=this.FN,$=this.Ex,Z=s.m(h.X()*4); -s.hX(e.vr,e.rect,Z,h);e.vr=null;var c=s.m(h.X()*4);s.hX(e.tY,e.rect,c,h);this.Bl++;$[this.Bl]=[h.clone(),Z,c]; -while($.length>this.Bl+1)$.pop();while($.length>50){$=$.slice(1);this.Bl--}};hA.prototype.qd=function(){var h=this.pq,e=ec.b1(this.V_.u(),h.Ck.nM,this.SE.fU().S); -this.SE.fk(e)};hA.prototype.Aw=function(h){var e=this.pq,$=this.FN,Z=this.gD,c=this.V_.u(),q=this.SE.BS(),E=[16777215,8421504,0][this.gO.u()]; -this.Gg=new ec(c,e.Ck.list[0].nM,e.Ck.list[0].fB,{lV:1,Xq:!0},E,e.XK,$.rect);$.vr=$.tY.slice(0);if(Z!=null&&Z.q(p.ai)&&this.cT){this.Gg.moveTo(this.cT.x,this.cT.y); -this.Gg.lineTo(q.x,q.y)}else this.Gg.moveTo(q.x,q.y);this.DE()};hA.prototype.AT=function(h){var e=this.FN,$=this.SE.BS(); -this.Gg.lineTo($.x,$.y);this.DE()};hA.prototype.IB=function(h){this.cT=this.SE.BS();this.ST(this.Gg.bJ()); -this.VS()};hA.prototype.DE=function(){var h=this.FN,e=this.Gg,$=e.vX();if($.nK())return;h.YQ=$;s.p.Jn("norm",e.os(),e._A(),h.tY,h.rect,$,1); -this.t8()};hA.prototype.df=function(h){var e=this.FN;e.vr=e.tY.slice(0);e.YQ=e.rect;s.Ut(e.tY,[4278190080,4292730333][this.Nf]); -this.ST(e.rect);this.VS()};hA.prototype.uq=function(h,e){this.j_=h;var $=h.t[h.C[0]],Z=$.rect.clone(),c=Z.d,q=Z.v; -this.ep.T(this.Nf==0?3:c*q<3e6?3:0);this.gO.T(h.N==null?0:1);this.ep.WJ();if(this.Nf==0&&h.N!=null||this.Nf==1)this.ep.pw(); -var E=this.Nf,P=s.m(Z.X()),a=new Float32Array(Z.X());if(E==0&&h.N){s.T7(h.N.channel,h.N.rect,P,Z);var j=s.m(Z.X()); -for(var L=0;L0&&P[G-1]!=_||H0&&P[G-c]!=_||L>>2];g=g>128?255:128;if(Lc-1-N))g=0; -J[U]=J[U+1]=J[U+2]=g}this.VS()}this.Ex=[1];this.Bl=0;this.SE.a1v();var M=this.V_.u();M.Brsh.v.Dmtr.v.val=Math.round(Z.d/(E==0?10:20)); -this.V_.T(M);this.qd()};hA.prototype.AM=function(){var h=this.FN,e=h.rect.X(),$=this.ep.u(),Z=h.HC.slice(0); -for(var G=0;GE[G])P[G]=E[G]; -if(e.dz(h.rect))h.ka=P;else s.hX(P,e,h.ka,h.rect);this.x$();if(c)alert(c,4e3)};hA.prototype.t8=function(h){var e=this.FN,$=e.YQ; -s.hX(e.Hl,e.rect,e.GM,e.rect,$,!0);var Z=e.tY;if(this.Nf==1){var c=new Uint32Array(256);c[0]=4278190335; -c[255]=4278255360;var q=e.rect.X();Z=Z.slice(0);var E=new Uint32Array(Z.buffer);for(var G=0;Ge; -this.eq.textContent=$?h.slice(0,e-2):h;if($)for(var Z=0;Z<2;Z++){var c=D.w("span");c.textContent=h.charAt(e-2+Z); -c.setAttribute("style","opacity:"+(.6-Z*.4));this.eq.appendChild(c)}var q=h.split(" "),E=q.length==2?q[0].substring(0,2)+q[1][0]:h.substring(0,3); -if(E.charCodeAt(0)>=11776)E=E.substring(0,1);var P=this.ab9;if(P==null)this.aa.TQ(E,h);else{if(P.indexOf("\"")==-1)this.aa.TQ("\""+h+"\"",h)}}; -ce.prototype.enable=function(){this.C5.setAttribute("class","pbody")};ce.prototype.disable=function(){this.C5.setAttribute("class","pbody disabled")}; -ce.prototype.if=function(h,e){};ce.prototype.uq=function(h,e,$){};ce.prototype.Sk=function(h){};ce.prototype.Sy=function(h,e){}; -ce.prototype.KG=function(h){this.name=h;this.B()};ce.prototype.nR=function(){};ce.prototype.a6h=function(h){if(h.button==0)this.f(new B("select",!1))}; -ce.prototype.ade=function(h){D.pt(h);if(this.WS!=null&&isNaN(this.WS))return;var e=D.q6(h,document.body),$=this.aw; -$.update(null);$.B();$.parent=this;var Z=new B(D.E.P,!0);Z.data={e:D.U.sH,yv:$,x:e.x+1,y:e.y+1};this.f(Z)}; -ce.prototype.it=function(){this.wW({})};ce.prototype.wW=function(h){if(h.stopPropagation)h.stopPropagation(); -if(this.WS!=null&&!isNaN(this.WS)){var e=new B(D.E.P,!0);e.data={e:D.U.Is,yv:this.aw};this.f(e);e.data={e:D.U.Ov,Av:iM.Q6,G:parseFloat(this.WS),HZ:"del"}; -this.f(e)}else if(this.QS())this.f(new B(D.E.iF,!1))};ce.prototype.QS=function(h){return!0};ce.prototype.yj=function(h,e,$,Z,c){}; -ce.prototype.oX=function(h,e,$,Z,c){};ce.prototype.f0=function(h,e,$,Z,c){};ce.JE=function(h,e){if(h.childElementCount!=0)return; -var $=h.textContent;this.TM=this.ac9.bind(this);this.afc=this.aex.bind(this);this.X2=e;this.h6=h;this.a0I=$; -var Z=D.w("input","");Z.setAttribute("type","text");Z.setAttribute("size","10");Z.setAttribute("value",$); -D.LK(h);h.appendChild(Z);Z.select();Z.focus();h.addEventListener("keyup",this.TM,!1);document.body.addEventListener("mousedown",this.afc,!1)}; -ce.JE.prototype.ac9=function(h){var e=p.VG,$=e(h.code,p.Gr);if(e(h.code,p.fp)||$)this.j4($)};ce.JE.prototype.aex=function(h){var e=h.target; -if(e.tagName&&e.tagName.toLowerCase()=="input")return;this.j4(!0)};ce.JE.prototype.j4=function(h){var e=this.h6; -e.removeEventListener("keyup",this.TM);document.body.removeEventListener("mousedown",this.afc);if(h){var $=e.firstChild.value; -this.X2($)}else{D.LK(e);e.textContent=this.a0I}};ce.WT={C_:"0",a0s:"1",S$:"2",a3m:"3",a89:"4",RJ:"5",CSS:"6",XP:"7",a7I:"8",a4c:"9",a3B:"10",r0:"11",ag4:"12",JD:"13",L$:"14",a15:"15",a5S:"16",ly:"17",anK:"19"}; -function iF(){ce.call(this,[9,9],!1,null,ce.WT.r0);this.D0=null;this.CL=[0,0];this.Az=D.w("div","padded scrollable"); -this.Az.setAttribute("style","width:260px; height:260px");this.C5.appendChild(this.Az);this.k(D.E.L,this.Tv,this); -this.HD=D.w("div","lpfoot");this.C5.appendChild(this.HD);this.Ke=[];var h="",e="",$=h+""+e,Z=h+""+e; -this.a2M=h+""+e;this.ajQ=h+""+e; -var c=[this.a2M,Z,"lrs/folder","lrs/newlayer","lrs/bin",$],q=[[15,8,0],[5,8],[15,8,1],[15,8,2],[5,4],[1,2]]; -for(var G=0;G"; -var P=new gg(E,!1,q[G]);P.k("click",this.qt,this);this.HD.appendChild(P.j);this.Ke.push(P)}}iF.prototype=new ce(""); -iF.prototype.B=function(){ce.prototype.B.call(this);for(var G=0;G=a.length)e[j]--;if(e.length==0)e.push(0); -this.rv()}else if(G==5){if(Z.length==0){alert("No Actions Present.");return}var L=new B(D.E.P,!0);L.data={e:D.U.v_,ame:iM.A,Hk:e[0]}; -this.f(L)}};iF.prototype.Tv=function(h){var e=this.D0.Dv,$=h.data.e,Z=h.data.Rx;if($=="sel")this.CL=Z; -if($=="fold"){if(Z.length==1)e[Z[0]].exp=!e[Z[0]].exp;else e[Z[0]].qM[Z[1]].exp=!e[Z[0]].qM[Z[1]].exp}if($=="enab"){var c=e[Z[0]].qM[Z[1]].qM[Z[2]]; -c.Q=!c.Q}if($=="nchange"){if(Z.length==1)e[Z[0]].cJ=h.data.yW;else e[Z[0]].qM[Z[1]].cJ=h.data.yW}this.rv()}; -iF.prototype.if=function(h,e){this.D0=h;if(e==iM.A||e==iM.uG)this.rv()};iF.prototype.rv=function(){if(this.D0==null)return; -D.LK(this.Az);var h=this.D0.Dv;if(h.length==0)return;var e=JSON.stringify(this.CL);for(var G=0;Ge)this.j.style.opacity=.4;this.j.addEventListener("click",this.yj.bind(this),!1)}de.prototype=new ev; -de.prototype.B=function(){this.j.textContent=e_.get(this.pO)};de.prototype.yj=function(h){if(this.index==this.parent.afh)return; -this.tT({e:"h_itemchange",index:this.index})};de.prototype.tT=function(h){var e=new B(D.E.A,!0);e.data=h; -e.F=f.C_;this.f(e)};function as(){ce.call(this,[9,10],!1,null,ce.WT.a89);var h=D.w("div","padded");this.C5.appendChild(h); -this.J4=new bZ(256,!0);h.appendChild(this.J4.j);this.gT=null}as.prototype=new ce("");as.prototype.uq=function(h){this.gT=h; -this.rv()};as.prototype.rv=function(){var h=this.gT;if(!D.Nn(this.C5))return;if(h==null||h.C.length==0){this.J4.T(s.CN(s.m(4))); -return}var e=h.v2(),$=new O(0,0,h.d,h.v),Z=$.X();if(h.N){var c=h.N.rect,q=s.m(c.X()*4);s.hX(e,$,q,c); -s.FE(h.N.channel,q);e=q;$=c;var E=h.N.channel;Z=0;for(var G=0;G>>16&255,l:$>>>8&255,O:$>>>0&255,yK:"Color #"+s.jT($)})}if(e==iM.z_||Z){var c=h.abq;this.UN.K2(c)}}; -function dh(){ce.call(this,[12,72],!1,null,ce.WT.a5S);this.S5=null;this.GY=null;this.Ey=D.w("div","lpbody scrollable"); -this.HD=D.w("div","lpfoot");this.C5.appendChild(this.Ey);this.C5.appendChild(this.HD);this.Aa=[];this.k("click",this.q$,this); -this.hE=[];dh.Ek([[17,2],"Save Selection as Channel",[5,3],[5,4]],this.hE,this.HD,this.Zi.bind(this),this.UC.bind(this)); -this.Tt=new dW([{name:"Merge Channels",tg:!0}]);this.Tt.k("select",this.cD,this)}dh.prototype=new ce(""); -dh.prototype.cD=function(h){if(this.GY==null)return;var e=new B(D.E.P,!0);e.data={e:D.U.tr,yq:"mergechannels"}; -this.f(e)};dh.prototype.B1=function(){return this.Tt};dh.Ek=function(h,e,$,Z,c){for(var G=0;GZ)a=Math.round(a*Z/$);else P=Math.round(P*$/Z);var j=["RGB"].concat(es.rt);for(var G=0;G<4;G++){var L=this.te(G); -s.kA.Pv(L,P,a,c,h.v2(),c,!1,G==0?null:G-1);var H=G==0?E==3:q[G-1]==1,_=new f9(-1-G,!0,!0,L,j[G],H,H); -_.parent=this;e.appendChild(_.j)}for(var G=0;G=0)c++}q=$.mG; -E=$.fV}if(Z){var j=q.indexOf(c);if(j==-1)q.push(c);else q.splice(j,1)}else{while(q.length!=0)q.pop(); -while(E.length!=0)E.pop();q.push(c)}$.qk=!0;$.IL=!0};hM.prototype.nR=function(){this.$T()};hM.prototype.uq=function(h){this.GY=h; -this.$T()};hM.prototype.$T=function(){var h=this.GY,e=this.Ey,P=34,a=34;D.LK(e);if(h==null||!D.Nn(e))return; -var $=h.d,Z=h.v,c=new O(0,0,$,Z),q=this.S5=h.z.RI.slice(0),E=q[0]+q[1]+q[2];if($>Z)a=Math.round(a*Z/$); -else P=Math.round(P*$/Z);var j=h.U9(),L=j[0];for(var G=0;G=0,_,H.name,j[1].indexOf(G)!=-1,!1,f.hO,{e:"pathedit",oD:"rnm",NS:H.NS});J.parent=this; -e.appendChild(J.j)}};hM.prototype.Sy=function(h,e){this.Ey.style.height=e-9-25+"px"};hM.prototype.B=function(){ce.prototype.B.call(this); -this.$T();dh.Ha(this.hE,["lrs/makesel","lrs/makepath","lrs/newlayer","lrs/bin"])};function i5(h){ce.call(this,[9,h?4:5],!1,null,h?ce.WT.a4c:ce.WT.a3B); -this.C5.setAttribute("style","min-width:240px;");this.aeb=h;this.dY=null;this.D0=null}i5.prototype=new ce(""); -i5.prototype.b5=function(){this.dY=new af;var h=this.dY,e=this.C5;h.parent=this;if(this.aeb){var $=D.w("div","marged"); -e.appendChild($);$.appendChild(h.a5.j);e.appendChild(D.w("hr"));var Z=D.w("div","marged");e.appendChild(Z); -Z.appendChild(h.O1.j);Z.appendChild(h.zD.j);var c=D.w("div","marged");e.appendChild(c);c.appendChild(h.PK.j); -c.appendChild(h.lH.j);e.appendChild(D.w("hr"));var q=D.w("div","marged");e.appendChild(q);q.appendChild(h.v1.j); -q.appendChild(h.Yt.j);var E=D.w("div","marged");e.appendChild(E);E.appendChild(h.no.j);E.appendChild(h.lX.j); -e.appendChild(D.w("hr"));var P=D.w("div","marged");e.appendChild(P);P.appendChild(h.QV.j);P.appendChild(h.HY.j); -P.appendChild(h.ea.j);P.appendChild(h._$.j);P.appendChild(h.Nt.j);P.appendChild(h.iu.j);P.appendChild(h.qQ.j); -P.appendChild(h.c_.j)}else{var $=D.w("div","marged");e.appendChild($);$.appendChild(h.e6.j);$.appendChild(h.Og.j); -$.appendChild(h.vt.j);$.appendChild(h.ao7.j);$.appendChild(h.a5U.j);$.appendChild(h.a5a.j);$.appendChild(h.a1N.j); -e.appendChild(D.w("hr"));var Z=D.w("div","marged");e.appendChild(Z);Z.appendChild(h.jy.j);Z.appendChild(h.o0.j); -Z.appendChild(h.sd.j);e.appendChild(D.w("hr"));var c=D.w("div","marged");e.appendChild(c);c.appendChild(h.O9.j); -c.appendChild(h.ur.j);c.appendChild(h.Pb.j)}};i5.prototype.nR=function(){if(!D.Nn(this.C5))return;if(this.dY==null){this.b5(); -var h=this.D0;if(h)this.dY.T(h.wM,h.R0,h.Cn);this.dY.B()}};i5.prototype.B=function(){ce.prototype.B.call(this); -if(this.dY)this.dY.B()};i5.prototype.if=function(h,e){this.D0=h;if(e!=iM.uG&&e!=iM.s1&&e!=iM.jV&&e!=iM.dQ)return; -if(this.dY)this.dY.T(h.wM,h.R0,h.Cn)};function ez(){ce.call(this,[9,13],!1,null,ce.WT.anK);this.D0=null; -this.abk=null;this.a6I=null;this.Fc=null;this.alO=null;this.Uo=Math.round(290*D.M());this.fx=8;this.ajf=4; -this.y3=new fs(null,["Hi","Hello"]);this.y3.k(D.E.L,this.zM,this);var h=this.Cy=new gg("-",null,null,!0); -h.k("click",this.Uk,this);var e=this.a9S=new gg("+",null,null,!0);e.k("click",this.Uk,this);this.Xu=new dd(!1); -this.Xu.k(D.E.L,this._0,this);this.Xu.j.style.height=20+"em";var $=D.w("div","padded");$.setAttribute("style","width:"+(this.Uo+10)/D.M()+"px;"); -this.C5.appendChild($);var top=D.w("div");top.setAttribute("style","margin-bottom:0.5em");$.appendChild(top); -top.appendChild(this.y3.j);top.appendChild(h.j);top.appendChild(e.j);$.appendChild(this.Xu.j)}ez.prototype=new ce(""); -ez.prototype._0=function(h){var e=this.Xu.u()*this.fx*this.ajf,$=Math.floor(this.Uo/this.fx)/D.M(),Z=this.Xu.a2N(); -e+=Math.floor(Z.y/$)*this.fx;e+=Math.floor(Z.x/$);var c=this.Fc[this.y3.u()];if(e>=c.length)return;var q=c[e],E=this.alO[q]; -if(E.hL.length==0){alert("No known character for this glyph");return}var P=String.fromCodePoint(E.hL[0]),a=new B(D.E.A,!0); -a.F=f.kE;a.data={e:"insertText",G:P};this.f(a)};ez.prototype.Uk=function(h){this.fx+=h.target==this.Cy?1:-1; -this.fx=Math.max(1,Math.min(20,this.fx));this.zM()};ez.prototype.nR=function(){this.if(this.D0)};ez.prototype.if=function(h,e){this.D0=h; -if(!D.Nn(this.C5))return;var $=h.wM,Z=$.By.Font,a=0;if(Z==null)return;var c=$.Kr[Z].Name;if(this.abk==c)return; -var Z=h.R0.bE(c);if(Z==null)return;var q=Z.maxp.numGlyphs,E=this.alO=new Array(q);for(var G=0;G100)this.vE.T({h:(q>>>16)/255,l:(q>>>8&255)/255,O:(q&255)/255})};h3.prototype.if=function(h,e){this.D0=h; -if(e==iM.uG||e==iM.JD)this.rv()};h3.prototype.nR=function(){this.rv()};function bq(){ce.call(this,"CSS",!1,null,ce.WT.CSS); -this.gT=null;var h=D.w("div","padded");this.C5.appendChild(h);this.TU=D.w("textarea");this.TU.setAttribute("rows",16); -this.TU.setAttribute("style","display:block;tab-size:4; font-family:monospace; width:98%; min-width:270px;"); -h.appendChild(this.TU)}bq.prototype=new ce("");bq.prototype.uq=function(h){this.gT=h;this.rv()};bq.prototype.if=function(h,e){if(e==iM.jV)this.rv()}; -bq.prototype.rv=function(){var h=this.gT;if(h==null||h.C.length==0)return;if(!D.Nn(this.C5))return;var e=h.t[h.C[0]],$=CSS.alv(e,h); -if($.length!=0)this.TU.value=$.join(";\n")+";";else this.TU.value=""};bq.prototype.nR=function(){this.rv()}; -function bd(){ce.call(this,[9,6],!1,null,ce.WT.a3m);this.C5.setAttribute("style","min-width:240px;"); -this.gT=null;this.D0=null;var h=D.w("div","marged row");this.C5.appendChild(h);var e=D.w("div","cell"); -e.setAttribute("style","width:10em");h.appendChild(e);var $=D.w("div","cell");$.setAttribute("style","width:10em"); -h.appendChild($);this.am7=[];for(var G=0;G<4;G++){var Z=new cZ("");this.am7.push(Z);e.appendChild(Z.j); -D.vV(e)}this.C5.appendChild(D.w("hr",""));var c=D.w("div","marged row");this.C5.appendChild(c);var e=D.w("div","cell"); -e.setAttribute("style","width:10em");var $=D.w("div","cell");$.setAttribute("style","width:10em");c.appendChild(e); -c.appendChild($);this.cE=new cZ("");e.appendChild(this.cE.j);D.vV(e);this.Jd=new cZ("");e.appendChild(this.Jd.j); -this.Oq=new cZ("");$.appendChild(this.Oq.j);D.vV($);this.Rm=new cZ("");$.appendChild(this.Rm.j);this.cE.T("X: 100 px"); -this.Jd.T("Y: 100 px");this.Oq.T("W: 0");this.Rm.T("H: 0")}bd.prototype=new ce("");bd.prototype.oX=function(h,e,$,Z,c){if(!D.Nn(this.C5)||h==null)return; -var q=h.z.QX(c.x,c.y),E=new eu(Math.floor(q.x),Math.floor(q.y));if(!c.xo){var P=0,a=0,j=0,L=0,H=this.am7; -if(!c.xo&&!h.a3L()&&new O(0,0,h.d-1,h.v-1).B4(E)){var _=h.v2(),G=h.d*E.y+E.x<<2;P=_[G+0];a=_[G+1];j=_[G+2]; -L=_[G+3]}H[0].T("R: "+P);H[1].T("G: "+a);H[2].T("B: "+j);H[3].T("A: "+L)}this.cE.T("X: "+s.IQ.MB(E.x,h.Ay,$,h.d)); -this.Jd.T("Y: "+s.IQ.MB(E.y,h.Ay,$,h.v));this.vl()};bd.prototype.vl=function(){var h=this.gT,e=this.D0,$=0,Z=0; -if(h&&e){if(h.z.og){$=h.z.og.d;Z=h.z.og.v}else if(h.N){$=h.N.rect.d;Z=h.N.rect.v}$=s.IQ.MB(Math.abs($),h.Ay,e,h.d); -Z=s.IQ.MB(Math.abs(Z),h.Ay,e,h.v)}this.Oq.T(e_.get([12,41]).charAt(0)+": "+$);this.Rm.T(e_.get([12,42]).charAt(0)+": "+Z)}; -bd.prototype.B=function(){ce.prototype.B.call(this);this.vl()};bd.prototype.uq=function(h,e,$){this.gT=h; -this.D0=$;this.vl()};function db(){ce.call(this,[9,1],!1,null,ce.WT.S$);this.x4=null;this.q4=null;this.ny=null; -this.$m=D.w("div","lphead");this.Ey=D.w("div","lpbody scrollable");this.HD=D.w("div","lpfoot");this.LI=new fs(null,eN.sF,!1,eN.$j); -this.LI.k(D.E.L,this.ahd,this);this.$m.appendChild(this.LI.j);this.Wx=new hr([12,0],0,100,"%",0);this.Wx.k(D.E.L,this.alU,this); -this.Wx.parent=this;this.$m.appendChild(this.Wx.j);this.rZ=new gv([6,57,2],["","","",""],!0,["Transparency",[12,76,2],[12,40],[7,0]]); -this.rZ.k(D.E.L,this.abS,this);this.$m.appendChild(this.rZ.j);this.J5=new hr([12,26],0,100,"%",0);this.J5.k(D.E.L,this.a5p,this); -this.J5.parent=this;this.$m.appendChild(this.J5.j);this.hE=[];this.Ek();this.C5.appendChild(this.$m); -this.C5.appendChild(this.Ey);this.Ey.addEventListener("dragover",function($){$.preventDefault()},!1); -this.Ey.addEventListener("dragenter",D.pt,!1);this.Ey.addEventListener("drop",this.acv.bind(this),!1); -this.C5.appendChild(this.HD);this.C5.addEventListener("contextmenu",D.pt,!1);var h=bY.z3(!0),e=bY.mX(!0); -this.a95=new dW(h,e);var h=[{name:[14,10]},{name:[14,11],lv:!0},{name:[6,0]},{name:[11,4]},{name:[5,4],lv:!0},{name:[6,7]},{name:"New Smart Obj. via Copy",Q:function($){return{Q:$.t[$.C[0]].add.SoLd!=null}},lv:!0},{name:[6,8],Q:function($){var Z=$.t[$.C[0]]; -if(Z.add.TySh||Z.add.SoLd||Z.add.SoCo||Z.add.GdFl||Z.add.PtFl)return{Q:!0};return{Q:!1}}},{name:[6,34],Q:function($){var Z=$.t[$.C[0]]; -return{Q:Z.add.lmfx!=null&&!Z.vG()}}},{name:[6,40],lv:!0,Q:function($){var Z=$.t[$.C[0]];return{Q:Z.add.TySh!=null}}},{name:"",lv:!0,Q:function($){var Z=$.t[$.C[0]],c=Z.add.TySh,q=c?c.Kx:null; -return{Q:c!=null&&q.Curve==null,V2:e_.get(c&&gK.De(q)==0?[16,3,1]:[16,3,0])}}},{name:[6,6,0],lv:!0,Q:function($){return{Q:$.Lk($.C[0]),P8:$.t[$.C[0]]._U}}},{name:[11,6],lv:!0,sub:[{name:[5,1],Q:function($){var Z=$.t[$.C[0]]; -return{Q:Z.add.lmfx!=null}}},{name:[5,2]},{name:[2,2],Q:function($){var Z=$.t[$.C[0]];return{Q:Z.add.lmfx!=null}}}]},{name:[6,10],Q:function($){return{Q:$.C.length==1&&$.C[0]!=0&&!$.t[$.C[0]].vG()}}},{name:[6,12,0],Q:function($){return{Q:$.C.length>1||$.t[$.C[0]].vG()}}},{name:[6,12,1],lv:!0},{name:[13,0],sub:function(){var $=[[13,1,0],[13,1,1],[13,1,2],[13,1,3],[13,1,4],[13,1,5],[13,1,6],[13,1,7]],Z=[]; -for(var G=0;G<$.length;G++)Z.push({name:$[G]});return Z}()}],e=[{c:D.E.P,g:{e:D.U.tr,yq:"layerstyle"}},{c:D.E.A,F:f.$r,g:{e:"fromlayer",py:[null,0,0]}},{c:D.E.A,F:f.S$,g:{e:o.pA}},{c:D.E.P,g:{e:D.U.tr,yq:"duplinto"}},{c:D.E.A,F:f.S$,g:{e:o.Ml}},{c:D.E.Kz,g:{Lw:"newPlacedLayer"}},{c:D.E.A,F:f.S$,g:{e:o.LF}},{c:D.E.Kz,g:{Lw:"rasterizeLayer",TJ:{classID:"rasterizeLayer",null:bw.NQ("Lyr",!0)}}},{c:D.E.A,F:f.S$,g:{e:o.Wz}},{c:D.E.A,F:f.S$,g:{e:o.Rd}},{c:D.E.A,F:f.kE,g:{e:"switchPntPrgr"}},{c:D.E.A,F:f.S$,g:{e:o.C9}},{sub:[{c:D.E.A,F:f.aQ,g:{e:"st_copy"}},{c:D.E.A,F:f.aQ,g:{e:"st_paste"}},{c:D.E.A,F:f.aQ,g:{e:"st_clear"}}]},{c:D.E.A,F:f.S$,g:{e:o.lb}},{c:D.E.A,F:f.S$,g:{e:o.U1}},{c:D.E.A,F:f.S$,g:{e:o.YY}},{sub:function(){var $=[]; -for(var G=0;G<8;G++)$.push({c:D.E.A,F:f.S$,g:{e:o.Eo,a79:G}});return $}()}];this.fo=new dW(h,e);var h=[{name:[6,45],Q:function($){var Z=$.t[$.C[0]]; -return{Q:Z.wV($).r==null}}},{name:[6,47]}],e=[{c:D.E.A,F:f.S$,g:{e:o.jh}},{c:D.E.A,F:f.S$,g:{e:o.Ko}}]; -this.ahG=new dW(h,e);var h=[{name:"enab/disab",Q:function($){return{V2:e_.get($.t[$.C[0]].kV().isEnabled?[6,15]:[6,14])}}},{name:[6,22]},{name:[5,8],Q:function($){return{Q:$.Jh(!1,!0)}}}],e=[{c:D.E.A,F:f.S$,g:{e:o.HW}},{c:D.E.A,F:f.S$,g:{e:o.Y_}},{c:D.E.A,F:f.S$,g:{e:o.aM}}]; -this.ahz=new dW(h,e);var h=[{name:"enab/disab",Q:function($){return{V2:e_.get($.t[$.C[0]].wV($).r.isEnabled?[6,42]:[6,41])}}},{name:[6,46]}],e=[{c:D.E.A,F:f.S$,g:{e:o.l0}},{c:D.E.A,F:f.S$,g:{e:o.Yc}}]; -this.a8g=new dW(h,e);var h=[{name:"enab/disab",Q:function($){return{V2:e_.get($.t[$.C[0]].add.vmsk.isEnabled?[6,17]:[6,16])}}},{name:[6,24]}],e=[{c:D.E.A,F:f.S$,g:{e:o.ps}},{c:D.E.A,F:f.S$,g:{e:o.iq}}]; -this.a3$=new dW(h,e);this.ahX=new dW(bY.Ph(!0),bY.EF(!0));this.a59=new dW(bY.z3(),bY.mX());this.k("rclick",this.anZ,this)}db.prototype=new ce(""); -db.prototype.acv=function(h){D.pt(h);var e=h.dataTransfer.getData("Text"),$=1,Z=0;if(e==""){D.SC(h,this,this.ny.indexOf(this.q4),Z+($>.5?0:1))}else if(e!="--panel"){var e=JSON.parse(e),c=e.wx; -if(c=="l")this.tT({e:o.T9,source:e.Hk,target:Z,yM:$})}};db.prototype.A8=function(){return new eu(253,0)}; -db.prototype.anZ=function(h){var e=this.q4,$=h.data,c;if(e.C.indexOf($.$)==-1){var Z={e:o.II,$:h.target.h6.index,Fy:$.jw}; -this.tT(Z)}if(e.C.indexOf($.$)==-1)return;if($.jw==1){c=this.ahz}else if($.jw==2){c=this.a3$}else if($.jw==3){c=this.a8g}else if($.jw==4){c=this.ahG}else if($.jw==5){c=this.a95}else{c=this.fo}c.B(); -c.update(e);c.parent=this;var q=new B(D.E.P,!0);q.data={e:D.U.sH,yv:c,x:$.NY.x+1,y:$.NY.y+1};this.f(q)}; -db.prototype.B=function(){ce.prototype.B.call(this);this.LI.B();this.Wx.B();this.rZ.B();this.J5.B(); -if(this.q4)this.uq(this.q4);var h="lrs/link lrs/fx lrs/adj lrs/mask lrs/folder lrs/newlayer lrs/bin".split(" "); -for(var G=0;G70)Z=84;if($>100)Z=108; -var c=e-(Z+37);this.Ey.style.height=c+"px"};db.prototype.ahd=function(h){this.tT({e:o.fC,El:this.LI.u()})}; -db.prototype.alU=function(h){this.tT({e:o.uz,El:Math.round(255*this.Wx.u()/100)})};db.prototype.abS=function(h){this.tT({e:o.yT,El:[this.rZ.u(),[0,1,2,31]]})}; -db.prototype.a5p=function(h){this.tT({e:o.xM,El:Math.round(255*this.J5.u()/100)})};db.prototype.ag9=function(h){this.Un(h,this.ahX)}; -db.prototype.agI=function(h){this.Un(h,this.a59)};db.prototype.Un=function(h,e){var $=h.currentTarget; -if(D.Nn(e.j))return;h.stopPropagation();var Z=$.getBoundingClientRect();e.B();e.update(this.q4);e.parent=this; -var c=new B(D.E.P,!0);c.data={e:D.U.sH,yv:e,x:Z.left,y:Z.top,a2_:!0};this.f(c)};db.prototype.a7W=function(h){this.tT({e:o.BN})}; -db.prototype.a8M=function(h){this.tT({e:this.q4.C.length>1?o.VT:o.u0})};db.prototype.ai_=function(h){this.tT({e:o.kd})}; -db.prototype.a00=function(h){this.tT({e:o.Ml})};db.prototype.a7_=function(h){this.tT({e:o.dq})};db.prototype.tT=function(h){var e=new B(D.E.A,!0); -e.data=h;e.F=f.S$;this.f(e)};db.prototype.Ek=function(){var h=[[6,54,0],[11,6],[6,1],[6,21],[6,20],[6,13],[6,31]],e=[this.a7_,this.agI,this.ag9,this.a7W,this.a8M,this.ai_,this.a00],$=this.a2b.bind(this); -for(var G=0;G=h.length-3){var c=Z.j;c.addEventListener("drop",$,!1);c.addEventListener("dragover",function(q){q.preventDefault()},!1); -c.addEventListener("dragenter",D.pt,!1)}}};db.prototype.a2b=function(h){D.pt(h);var e=0,$=this.hE;while($[e].j!=h.currentTarget)e++; -$[e].Qv();var Z=h.dataTransfer.getData("Text");if(Z=="")return;var Z=JSON.parse(Z);if(Z.wx=="l"){var c={e:[o.VT,o.pA,o.Ml][e-4]}; -if(this.q4.C.indexOf(Z.Hk)==-1)c.$=Z.Hk;this.tT(c)}if(e!=6)return;if(Z.wx=="sm"||Z.wx=="s"){var q=new B(D.E.A,!0); -q.F=f.aQ;q.data={e:Z.wx=="sm"?"st_clear":"st_delsingle",$:Z.Hk,Hk:Z.AW};this.f(q)}if(Z.wx=="fm"||Z.wx=="f"){this.tT({e:Z.wx=="fm"?o.Ko:o.iZ,src:Z.Hk,AW:Z.AW})}if(Z.wx=="m"||Z.wx=="vm"){this.tT({e:Z.wx=="m"?o.Y_:o.iq,$:Z.Hk})}}; -function fL(h,e,$,Z){ev.call(this);this.parent=e;this.h6=h;this.U3=[];this.j=D.w("div","layeritem"); -var c=h.$,g=15,x=!1;this.$m=D.w("div",$.C.indexOf(h.index)!=-1?"head selected":"head");if(h.$.add.artb!=null)D.so(this.$m,"artb"); -this.$m.setAttribute("style","height: "+(c.a3M+10)+"px");var q=D.w("div","headL"),E=D.w("div","headR"),P=D.w("div","lpineck"); -this.Ey=D.w("div","lpibody");this.j.appendChild(this.$m);this.$m.appendChild(q);this.$m.appendChild(E); -if(c.ll()||c.fi())if(c.Kl())this.j.appendChild(P);var a=this.$m;a.setAttribute("draggable","true");a.addEventListener("dragstart",this.tW.bind(this),!1); -a.addEventListener("drop",this.rr.bind(this),!1);a.addEventListener("dragover",this.rF.bind(this),!1); -a.addEventListener("dragenter",D.pt,!1);a.addEventListener("dragleave",this.Q8.bind(this),!1);var j=[],L=[],H=D.w("div"); -this.em=D.w("div","eye");H.appendChild(this.em);var _=D.w("div","space");this.MQ=D.w("div","label"); -this.MQ.setAttribute("style","max-width:calc(100% - "+(96+h.depth*20)+"px)");this.MQ.textContent=c.getName(); -this.hj=D.w("div","lock");this.a5D=D.w("div","lrfx");this.mj=D.w("div","arfx");var J=this.a5I.bind(this),S=this.a2W.bind(this); -this.$m.addEventListener("click",S,!1);this.$m.addEventListener("contextmenu",J,!1);var N=[0,16711680,16748544,16763904,4513024,22015,11141375,7829367],Y=c.add.lclr==null?0:N[c.add.lclr]; -if(Y==0)Y=Z.Nr;var U=[Y>>16,Y>>8&255,Y&255];for(var G=0;G<3;G++){U[G]=Math.round(.5*U[G]+.5*220)}if(1=0;G--){var i=new fL(h.children[G],e,$,{Nr:Y}); -this.U3.push(i);this.Ey.appendChild(i.j)}this.j.appendChild(this.Ey)}C.setAttribute("class",c.add.lsct==hJ.sE?"open":"closed")}else{this.tp=D.w("div","thumb"); -j[5]=this.tp;this.tp.appendChild(c.Wb.canvas)}var Q=c.kV();if(Q){this.l7=D.w("div","chain");this.m2=D.w("div","thumb"); -this.m2.setAttribute("draggable","true");this.m2.appendChild(h.$.alj.canvas);this.l7.style.opacity=Q.MV?1:0; -this.l7.addEventListener("click",this.a7j.bind(this),!1)}var m=c.SV()&&c.add.vmsk;if(c.add.vmsk&&!m){this.kf=D.w("div","chain"); -this.qg=D.w("div","thumb");this.qg.setAttribute("draggable","true");this.qg.appendChild(h.$.a7U.canvas); -this.kf.style.opacity=c.add.vmsk.MV?1:0;this.kf.addEventListener("click",this.alI.bind(this),!1)}if(c.fi()&&c.wV($).r){this.Qn=D.w("div","thumb"); -this.Qn.appendChild(h.$.a18.canvas);this.Qn.addEventListener("click",S,!1);this.Qn.addEventListener("contextmenu",J,!1)}if(c.ll()){this.a3b=P; -P.addEventListener("contextmenu",J,!1);var n=new db.Zy(e_.get([12,1]),"sm","layerstyle",h.depth,0,null); -n.parent=this;P.appendChild(n.j);var u=c.add.lmfx,K=u.masterFXSwitch.v;n.QL(K);for(var G=0;G=0;G--){var W=d[G].v,A=dA.bo(W);if(es.VZ[A])A=es.VZ[A];var z=W.Nm.v;if(dA.names[A])z=e_.get(dA.names[A]); -if(es.names[A])z=e_.get(es.names[A]);var T="afw_"+A,n=new db.Zy(z,"f",T,h.depth,1,G);n.QL(K&&W.enab.v); -n.parent=this;P.appendChild(n.j)}}if($.t.indexOf(c)==$.C[0]){var R=c.jw,I;if(R<=0)I=this.tp;else if(R==1)I=this.m2; -else if(R==3)I=this.Qn;if(I)I.setAttribute("class","thumb active");if(c.Hy&&this.qg)this.qg.setAttribute("class","thumb active")}H.style.opacity=c.o6()?1:.25; -_.setAttribute("style","width:"+Math.max(0,h.depth-1)*18+"px");var r=c.add.lspf!=null&&c.add.lspf!=0; -this.hj.style.opacity=c.ra(31)?1:.5;j[4]=c._U?D.w("div","clipp"):null;j[6]=Q?this.l7:null;j[7]=Q?this.m2:null; -j[8]=c.add.vmsk&&!m?this.kf:null;j[9]=c.add.vmsk&&!m?this.qg:null;var X=c.MX,l=$.C;if(X!=0)for(var G=0; -G.8){var q=!0,E=$.root.fH(c);while(E.parent!=null){var P=E.parent,a=P.children;if(a.indexOf(E)!=0)q=!1; -E=E.parent}if(q){c=0;Z=1}}if(e==""){D.SC(h,this,this.parent.ny.indexOf($),c+(Z>.5?0:1))}else if(e!="--panel"){var e=JSON.parse(e),j=e.wx; -if(j=="l")this.tT({e:o.T9,source:e.Hk,target:c,yM:Z});else if(j=="m"||j=="vm")this.tT({e:j=="m"?o.Qu:o.w6,src:e.Hk,Lh:c,mW:h.altKey}); -else fL.bZ(h,e,this)}};fL.bZ=function(h,e,$,Z){var c=e.wx,q=$.h6.index,E=e.Hk;if(c=="s"||c=="sm")$.tT({e:o.KW,src:E,Lh:q,AW:e.AW,mW:h.altKey}); -if(c=="f"||c=="fm")$.tT({e:o.$R,src:E,Lh:q,AW:e.AW,Rp:Z==null?0:Z,mW:h.altKey})};fL.prototype.rF=function(h){D.pt(h); -var e=fL.bG(h,this.$m);this.Zj();var $=e>.5?"-bottom":"-top";if(this.h6.$.vG()&&.5300)return;h.preventDefault(); -h.stopPropagation();this.$m.setAttribute("draggable","false");var $=new ce.JE(this.MQ,this.X2.bind(this))}; -fL.prototype.X2=function(h){this.tT({e:o.WG,$:this.h6.index,name:h})};fL.prototype.aco=function(h){this.tT({e:o.y1,$:this.h6.index})}; -fL.prototype.a5I=function(h){if(this.zR(h,h.target,this.jw(h)))return;var e=h.sourceCapabilities;if(e)e=e.firesTouchEvents; -if(h.button!=2&&e!=!0)return;var $=this.jw(h);if($!=3&&h.currentTarget==this.a40)$=4;if(h.target==this.a5D||h.currentTarget==this.a3b)$=5; -var Z=new B("rclick",!0);Z.data={$:this.h6.index,jw:$,NY:D.q6(h,document.body)};this.f(Z)};fL.prototype.jw=function(h){var e=h.target,$=e.parentNode; -return $==this.qg?2:$==this.m2?1:$==this.tp?0:$==this.Qn?3:-1};fL.prototype.a2W=function(h){var e=h.target,L; -if(e==this.em||e==this.mj||e==this.l7||e==this.kf||e.tagName&&e.tagName.toLowerCase()=="input")return; -var $=this.jw(h),Z=this.parent.q4,c=this.h6.index,q=Z.t[c];if(e==this.hj){this.tT({e:o.yT,$:c,El:[[!1,!1,!1,!1,!1],[0,1,2,3,31]]}); -return}if(h.button==0&&h.detail==2){if(e==this.MQ)return;var E=new B(D.E.A,!0),P=new B(D.E.P,!0),a=new B(D.E.Kz,!0); -if($==0&&q.add.SoCo){var j=s.Y.LX(q.add.SoCo.Clr.v);P.data={e:D.U.tr,yq:"colorpicker",Nr:j.h<<16|j.l<<8|j.O,Nb:function(J){var S=s.Y.lp({O:J&255,l:J>>>8&255,h:J>>16&255}); -S={classID:"null",Clr:{t:"Objc",v:S}};var N=new B(D.E.A,!0);N.F=f.S$;N.data={e:o.Rh,DL:[c],gU:!0,G:{cp:1,mQ:S}}; -this.f(N)}.bind(this),ii:!0}}else if($==0&&(es.get(q.add)||q.add.SoCo||q.add.GdFl||q.add.PtFl))P.data={e:D.U.$Z,yq:ce.WT.RJ}; -else if($!=0&&$!=-1)P.data={e:D.U.$Z,yq:ce.WT.RJ};else if($==0&&q.add.SoLd)a.data={Lw:"placedLayerEditContents",TJ:{classID:"placedLayerEditContents"}}; -else if($==0&&q.add.TySh){E.F=f.kE;E.data={e:"editCurr",xU:c}}else P.data={e:D.U.tr,yq:"layerstyle",$:c}; -this.f(a.data?a:P.data?P:E);return}if(this.zR(h,e,$))return;if(h.button!=0)return;if($==1||$==3){var H=$==3?q.wV(Z).r:q.kV(); -L=H.rV?Z.z.RI.join("")=="111"?1:2:0}var _={e:o.II,$:c,Fy:$};this.tT(_);if(h.altKey){if($==1||$==3){var E=new B(D.E.A,!0); -E.F=f.dc;E.data={e:"mskView",G:L!=0?0:h.shiftKey?1:2};this.f(E)}else{this.tT({e:o.C9,$:c})}return}}; -fL.prototype.zR=function(h,e,$){if((h.ctrlKey||h.metaKey)&&($==0||$==1||$==2)){var Z=0;if(h.shiftKey)Z++; -if(h.altKey)Z+=2;var c=new B(D.E.A,!0);c.F=f.$r;c.data={e:"fromlayer",py:[this.h6.index,$,Z]};this.f(c); -return!0}return!1};fL.prototype.tT=function(h){var e=new B(D.E.A,!0);e.data=h;e.F=f.S$;this.f(e)};db.Zy=function(h,e,$,Z,c,q,E){ev.call(this); -this.abD=e;this.$t=$;this.index=q;this.j=D.w("div","styleitem");this.$m=D.w("div","head");this.aa4=null; -if(e=="f"){var P=this.aa4=D.w("div","headR");P.textContent="\u2699";this.$m.appendChild(P)}this.Yx=D.w("div","eye gsicon"); -this.MQ=D.w("div","label");this.j.appendChild(this.$m);this.$m.appendChild(this.Yx);if(E){this.m2=E; -this.$m.appendChild(this.m2);this.$m.setAttribute("style","height: "+(E.firstChild.height/D.M()+10)+"px")}this.MQ.innerHTML=h; -this.j.setAttribute("style","margin-left: "+(24+Z*16+c*22)+"px");this.$m.appendChild(this.MQ);this.Yx.addEventListener("click",this.ac$.bind(this),!1); -var a=this.j;a.setAttribute("draggable","true");a.addEventListener("dragstart",this.tW.bind(this),!1); -if(!0){a.addEventListener("drop",this.rr.bind(this),!1);a.addEventListener("dragover",this.rF.bind(this),!1); -a.addEventListener("dragenter",D.pt,!1);a.addEventListener("dragleave",this.Q8.bind(this),!1)}this.j.addEventListener("click",this.f0.bind(this),!1)}; -db.Zy.prototype=new ev;db.Zy.prototype.tW=function(h){h.stopPropagation();h.dataTransfer.setData("Text",JSON.stringify({wx:this.abD,Hk:this.parent.h6.index,AW:this.index}))}; -db.Zy.prototype.Q8=function(h){D.pt(h);this.Zj()};db.Zy.prototype.rr=function(h){D.pt(h);this.Zj();var e=h.dataTransfer.getData("Text"); -if(e=="")return;var e=JSON.parse(e);fL.bZ(h,e,this.parent,this.index+(fL.bG(h,this.$m)>.5?0:1))};db.Zy.prototype.rF=function(h){D.pt(h); -var e=fL.bG(h,this.$m)>.5;this.Zj();var $="border-"+(e?"bottom":"top");this.$m.style[$]="0.2em solid rgba(0,0,0,0.5)"}; -db.Zy.prototype.Zj=function(h){this.$m.style.border="none"};db.Zy.prototype.QL=function(h){var e=15; -if(1 ",j=new hr(a,0,200,G==4||G==5?null:"px",null,null,null,4,c[G]); -j.parent=this;j.k(D.E.L,this.ae6,this);j.T(q[G]);j.B();this.A6.push(j);h.appendChild(j.j)}var L=["Add Guides","Clear Guides"]; -this.Ke=[];for(var G=0;G ",H=new gg(a,!1,null,!1); -this.Ke.push(H);H.k("click",this.Ob,this);h.appendChild(H.j)}}hC.prototype=new ce("");hC.prototype.ae6=function(h){var e=this.A6,$=e.indexOf(h.target),Z=Math.floor($/2),c=$&1,q=[]; -for(var G=0;G<4;G++)q.push(e[2*G+c].u());var E=-1;if(Z==2&&q[2]!=0&&q[3]!=0&&q[4]!=0)E=4;if(Z==3&&q[3]!=0&&q[2]!=0&&q[4]!=0)E=4; -if(Z==4&&q[4]!=0&&q[2]!=0&&q[3]!=0)E=3;if(E!=-1)e[2*E+c].T(0)};hC.prototype.Ob=function(h){var e=this.gT,$=this.Ke.indexOf(h.target),Z=[[],[]]; -if(e==null)return;var c=e.N?e.N.rect:new O(0,0,e.d,e.v),q=c.d,E=c.v;if($==0){var P=[[],[]];for(var G=0; -G1&&c==0&&q==0){if(h[0]!=0)Z.push(e+h[0]);if(h[1]!=0)Z.push($-h[1]); -return Z}var a=$-e-h[0]-h[1];if(c==0){if(E==0){c=Math.floor(a/q);E=(a-c*q)/(c-1)}else{c=1;while(q*c+E*(c-1)+q+E<=a)c++}}else if(c!=0&&q!=0){if(c*q>a)c=Math.floor(a/q); -E=(a-c*q)/(c-1)}Z.push(e+h[0],$-h[1]);var q=(a-E*(c-1))/c;for(var G=1;G0&&h.C.length!=0&&h.t[h.C[0]]){var Z=h.t[h.C[0]],c=es.get(Z.add);if(c!=null&&this.zY[c]!=null){$=this.zY[c].j; -this.ac8=this.zY[c];this.zY[c].T(Z.add[c]);if(h.C[0]!=this.akf){var q=h.v2(h.C[0]-1);this.acP=s.CN(q)}this.zY[c].SP(this.acP); -e=e_.get(es.names[c])}if(Z.add.SoCo){$=this.gH;this.Re.T(Z.add.SoCo.Clr.v);e=e_.get([6,48,0,0])}if(Z.add.GdFl){$=this.Le; -this.n1.update(h,Z.add.GdFl);e=e_.get([6,48,0,1])}if(Z.add.PtFl){$=this.oR;this.H1.update(h,Z.add.PtFl); -e=e_.get([6,48,0,2])}if(Z.add.artb){var E=Z.add.artb,P=Z.B2();$=this.aiS;this.fa.T(E.artboardBackgroundType.v-1); -if(E.Clr)this.xh.T(E.Clr.v);aF.s8(this.TY,[P.d,P.v,P.x,P.y]);e="Artboard"}this.akf=h.C[0]}if($!=this.JP){if(this.JP)this.j.removeChild(this.JP); -if($!=null)this.j.appendChild($);this.JP=$}this.a43.T(e)};aF.N3.prototype.if=function(h,e){this.n1.if(h,e); -this.H1.if(h,e);for(var $ in this.zY)this.zY[$].if(h,e)};aF.zw=function(){ev.call(this);this.j=D.w("div","form"); -this.j_=null;this.mm=0;var h=D.w("span","fitem");this.j.appendChild(h);this.xO=[new gg([6,2]),new gg([6,3]),new gg([6,50])]; -for(var G=0;G1){this.lL("multimove")}if(this.b2)return; -var $=new B("mouse",!0);$.action="move";this.Ud(h,$);this.f($);if(this.pq&&this.pq.ev&&!this.yR.xo)this.rv()}; -gR.prototype.IB=function(h){if(gR.G8(h))return;var e=this.WQ,$=this.xI(h);e.splice($,1);if(e.length==0){var Z=h.button!=null&&h.button>0?"rup":"up",c=new B("mouse",!0); -c.action=Z;this.Ud(h,c);this.f(c);D.xR(window,this.IH);D.oT(window,this.aia);D._s(this.C5,this.IH);this.b2=!1}}; -gR.prototype.tH=function(h){this.LT(h);if(h.deltaX==0&&h.deltaY==0)return;var e=new B("mouse",!0);e.action="scroll"; -e.sU=h.ctrlKey;this.Ud(h,e);this.f(e)};gR.prototype.a7o=function(h){D.pt(h);var e=h.sourceCapabilities; -if(e)e=e.firesTouchEvents;if(e){var $=new B("mouse",!0);this.Ud(h,$);$.action="rdown";this.f($);$.action="rup"; -this.f($)}};gR.prototype.lL=function(h){var e=this.WQ,$=D.M(),Z=[];for(var G=0;G2*4)g++;if(_>8*4)g++;if(_>32*4)g++;j=gR.a0S[g];H=new Float32Array(H.buffer,0,[2,8,32,128][g]*4)}else j=gR.a4d; -V.iz($,Z);V.ZI(0);V.iz($,Z);j.xl();j.m_(e.SJ.jg,h.i8.jg,new Float32Array(a),new Float32Array([$/8,Z/8,E.x/$,E.y/Z]),h.d,h.v,1/h.z.S,$,Z,new Float32Array(L),H,new Float32Array(s.l2.JR(s.l2.ad(e.RI)))); -c.drawArrays(c.TRIANGLES,0,6)};gR.jj=function(h){var e=h.add.artd.canvasColor;if(e==null)return[0,0,0,0]; -return gR.amu(e)};gR.amu=function(h){var e=s.Y.LX(h.v),$=[e.h/255,e.l/255,e.O/255,1];for(var G=0;G<4; -G++)$[G]=Math.min(1,$[G]);return $};gR.bx=function(h,e){var $=h[2]*255;if(V.Yv)$=e?0:Math.max(1,$);return"rgba("+h[0]*255+","+h[1]*255+","+$+","+h[3]+")"}; -gR._m=function(h){if(V.Yv)for(var G=0;G5)continue;if(C[G].type==0||C[G].type==3){if(C[G].aN!=-1)F++; -continue}if(M.C.indexOf(F)!=-1){var n=C[G].D.x,u=C[G].D.y;e.fillRect(n-i*.8,u-i*.8,2*i*.8,2*i*.8)}if(M.pc.indexOf(G)!=-1){var b=[C[G].D]; -e.beginPath();e.moveTo(C[G].LD.x,C[G].LD.y);e.lineTo(C[G].D.x,C[G].D.y);e.lineTo(C[G].EH.x,C[G].EH.y); -e.stroke();if(!C[G].D.dz(C[G].LD))b.push(C[G].LD);if(!C[G].D.dz(C[G].EH))b.push(C[G].EH);for(var d=0; -d>>1)!=-1?[0,.6,1,1]:[.7,.7,.7,1]);e.beginPath();e.moveTo(n+i,u);e.arc(n,u,i,0,2*Math.PI); -e.fill()}if(h.K.Vh.length!=0){for(var G=0;G7){this.Om(h,e,1,1,.5,q.pf);Z=!0}if(q._D){var ht=Math.max(h.z.qM.d,h.z.qM.v)/h.z.S; -ht=Math.max(Math.max(h.d,h.v)*2,ht);e.beginPath();e.strokeStyle=gR.bx([0,1,1,1]);for(var G=0;G0}; -gR.prototype.Om=function(h,e,$,Z,c,q){while($*h.z.S<4){$*=2;Z*=2}var E=h.d,P=h.v,a=.5/h.z.S;e.strokeStyle=gR.bx([.5,.5,.5,c],!0); -e.save();e.rect(0,0,E,P);e.clip();e.beginPath();for(var j=0;j<=E;j+=$){e.moveTo(j+a,0);e.lineTo(j+a,P)}if(q==0){for(var L=0; -L<=P;L+=Z){e.moveTo(0,L+a);e.lineTo(E,L+a)}}else{Z*=Math.sqrt(4/3);var H=Z*Math.floor(E/Z),_=E*(Z/(2*$)); -for(var L=-H;L<=P+H;L+=Z){e.moveTo(0,L);e.lineTo(E,L-_);e.moveTo(0,L);e.lineTo(E,L+_)}}e.stroke();e.restore()}; -gR.prototype.E8=function(h,e,$){$.beginPath();var Z=s.a.clone(h);if(e)s.a.J(Z.H,e,Z.H);Typr.U.pathToContext({cmds:Z.Z,crds:Z.H},$)}; -gR.Qx=function(h,e){V.PG.call(this);this.a8P=h;var $="\t\t\tprecision mediump float;\t\t\t\t\t\tuniform sampler2D source;\t\t\tuniform sampler2D target;\t\t\tuniform vec3 contSizeZoom;\t\t\tuniform vec2 cnvSize;\t\t\tuniform mat4 ctrn; \t\t\t"+(h?"uniform vec4 bgClr; uniform vec4 ars["+e+"]; ":"")+"\t\t\t\t\t\tvarying vec2 tCoord;\t\t\tvarying vec2 sCoord;\t\t\tvarying vec2 gCoord;\t\t\t\t\t\t/* This approximates the error function, needed for the gaussian integral */ \t\t\tvec4 erf(vec4 x) { \t\t\t vec4 s = sign(x), a = abs(x);\t\t\t x = 1.0 + (0.278393 + (0.230389 + 0.078108 * (a * a)) * a) * a;\t\t\t x *= x; \t\t\t return s - s / (x * x); \t\t\t} \t\t\t/* Return the mask for the shadow of a box from lower to upper */ \t\t\tfloat boxShadow(vec2 lower, vec2 upper, vec2 point, float sigma) { \t\t\t vec4 query = vec4(point - lower, point-upper); \t\t\t vec4 integral = 0.5 + 0.5 * erf(query * (sqrt(0.5) / sigma)); \t\t\t return (integral.z - integral.x) * (integral.w - integral.y); \t\t\t} \t\t\t\t\t\tvec4 simpleBlend(vec4 src, vec4 tgt) {\t\t\t\tfloat na = src.w + tgt.w*(1.0-src.w);\t\t\t\t/* avoid division by zero */ \t\t\t\treturn na==0.0 ? vec4(0,0,0,0) : vec4( (src.xyz*src.w + tgt.w*tgt.xyz*(1.0-src.w))*(1.0/na), na);\t\t\t} \t\t\t\t\t\t"+V.yD.xA+"\t\t\t\t\t\tvoid main(void) {\t\t\t\tvec4 src = texture2D(source, tCoord); \t\t\t\tvec4 tgt = ctrn*texture2D(target, sCoord); "+(h?"\t\t\t\t\tbool inr = false; vec4 BG = bgClr; \t\t\t\t\tfor(int i=0; i<"+e+"; i++) { \t\t\t\t\t\tvec4 ar = ars[i]; \t\t\t\t\t\tvec2 nsc = sCoord - ar.xy; \t\t\t\t\t\tif( ar.z!=0.0 && in01(nsc/ar.zw) ){\t\t\t\t\t\tinr=true; BG=vec4(1.0,1.0,1.0,1.0); }\t\t\t\t\t}\t\t\t\t":"\t\t\t\t\tfloat shdw = 0.3*boxShadow(vec2(0,0),contSizeZoom.xy, sCoord*contSizeZoom.xy+vec2(0.0,-6.0*contSizeZoom.z) , 10.0*contSizeZoom.z);\t\t\t\t\tvec4 grid = mod(floor(gCoord.x) + floor(gCoord.y), 2.0)==1.0 ? vec4(0.784,0.784,0.784,1) : vec4(1,1,1,1);\t\t\t\t\tvec4 BG = in01(sCoord) ? grid : vec4(0.0,0.0,0.0,shdw); \t\t\t\t")+"\t\t\t\tvec4 outc = in01(sCoord) ? simpleBlend(tgt,BG) : BG ; \t\t\t\tif(src.b == 0.0 && src.a >0.5) gl_FragColor = mix(outc, vec4(vec3(1,1,1)-outc.rgb,1.0), src.w); \t\t\t\telse gl_FragColor = simpleBlend(src,outc); \t\t\t\t\t\t\t}",Z="\t\t\tattribute vec2 verPos;\t\t\tvarying vec2 tCoord;\t\t\tvarying vec2 sCoord;\t\t\tvarying vec2 gCoord;\t\t\t\t\t\tuniform mat3 tmat;\t\t\tuniform vec4 gsize;\t\t\tvoid main(void) {\t\t\t\ttCoord = verPos;\t\t\t\tsCoord = (tmat*vec3(verPos,1.0)).xy;\t\t\t\tgCoord = (verPos-gsize.zw) * gsize.xy ; \t\t\t\tgl_Position = vec4(vec2(-1.0, 1.0) + 2.0*vec2(verPos.x,-verPos.y), 0.0, 1.0);\t\t\t}"; -this.Py($,Z)};gR.Qx.prototype=new V.PG;gR.Qx.prototype.m_=function(h,e,$,Z,c,q,E,P,a,j,L,H){this.gC("tmat gsize source target contSizeZoom cnvSize bgClr ars ctrn".split(" ")); -var _=V.s0,J=this.oK;_.uniformMatrix3fv(J.tmat,!1,$);_.uniform4fv(J.gsize,Z);_.uniform3f(J.contSizeZoom,c,q,E); -_.uniform2f(J.cnvSize,P,a);_.uniformMatrix4fv(J.ctrn,!1,H);if(this.a8P){_.uniform4fv(J.ars,L);_.uniform4fv(J.bgClr,j)}_.uniform1i(J.source,0); -_.uniform1i(J.target,1);_.activeTexture(_.TEXTURE0);_.bindTexture(_.TEXTURE_2D,h);_.activeTexture(_.TEXTURE1); -_.bindTexture(_.TEXTURE_2D,e);_.activeTexture(_.TEXTURE0)};function bB(){ce.call(this,[9,7],!1,null,ce.WT.a7I); -this.C5.setAttribute("style","min-width:240px;");this.j_=null;this.FA=-1;this.a4f=[];this.Ey=D.w("div","scrollable"); -this.Ey.style.height="160px";this.C5.appendChild(this.Ey);this.HD=D.w("div","lpfoot");this.C5.appendChild(this.HD); -this.Ke=[];var h=["reload","lrs/newlayer","lrs/bin"],e=[[5,10],[5,3],[5,4]];for(var G=0;G",!1,e[G]); -$.k("click",this.ai7,this);this.HD.appendChild($.j);this.Ke.push($)}}bB.prototype=new ce("");bB.prototype.tT=function(h){var e=new B(D.E.A,!0); -e.data=h;e.F=f.zI;this.f(e)};bB.prototype.ai7=function(h){var G=this.Ke.indexOf(h.currentTarget);if(G!=1)if(this.FA==-1)return; -this.tT({e:["updLC","addLC","delLC"][G],NS:this.FA});if(G==2)this.FA=-1};bB.prototype.B=function(){ce.prototype.B.call(this); -for(var G=0;G",!1,a[j]); -if((e>>j&1)==0)L.j.setAttribute("style","opacity:0.3");L.k("click",this.agT,this);this.ae4.appendChild(L.j); -this.Ke.push(L)}}}gm.prototype=new ev;gm.prototype.Vr=function(h){if(h.target!=this.eq&&h.target!=this.j)return; -if(h.detail==1)this.f(new B("activate",!1));else{var e=new ce.JE(this.eq,this.X2.bind(this))}};gm.prototype.agT=function(h){var G=this.Ke.indexOf(h.currentTarget); -this.tT({e:"editLC",amp:G,NS:this.NS})};gm.prototype.X2=function(h){this.tT({e:"editLC",yW:h,NS:this.NS})}; -gm.prototype.H3=function(h){this.tT({e:"setLC",NS:this.NS})};gm.prototype.tT=function(h){var e=new B(D.E.A,!0); -e.data=h;e.F=f.zI;this.f(e)};function hg(){ce.call(this,[9,11],!1,null,ce.WT.ag4);var h=D.w("div","padded"); -h.setAttribute("style","min-width:15em");this.C5.appendChild(h);var e=D.w("div");h.appendChild(e);e.setAttribute("style","cursor:grab;"); -this.p$=D.w("canvas");this.p$.width=100;e.appendChild(this.p$);D.Sz(this.p$);D.uh(this.p$,this.xj.bind(this)); -this.q7=new hN(null,0,f.LZ.Ak.length-1);this.q7.k(D.E.L,this.a8A,this);h.appendChild(this.q7.j);this.ado=this.at.bind(this); -this.a6s=this.E7.bind(this);this.gT=null}hg.prototype=new ce("");hg.prototype.Sy=function(h,e){this.rv()}; -hg.prototype.a8A=function(h){var e=this.q7.u(),$=this.gT,Z=f.LZ.Ak[f.LZ.Ak.length-1-e],c=new B(D.E.A,!0); -c.F=f.dc;c.data={e:"zoom",S:Z};this.f(c)};hg.prototype.xj=function(h){if(this.gT==null)return;D._s(window,this.ado); -D.A4(window,this.a6s)};hg.prototype.at=function(h){var e=D.q6(h,this.p$),$=this.gT,Z=this.p$.width,c=this.p$.height,q=(e.x*D.M()-Z/2)/Z,E=(e.y*D.M()-c/2)/c,P=D.M()*$.z.S,a=Math.round(-$.z.S*$.d*q),j=Math.round(-$.z.S*$.v*E); -f.EE.RY($,a,j)};hg.prototype.E7=function(h){D.xR(window,this.ado);D.oT(window,this.a6s)};hg.prototype.uq=function(h){if(h==null&&this.gT!=null)this.p$.width=100; -this.gT=h;this.rv()};hg.prototype.rv=function(){var h=this.gT,Z=0;if(h==null||h.z.S==0)return;var e=h.z; -if(!D.Nn(this.C5))return;this.q7.T(f.LZ.Ak.length-1-f.LZ.Z3(e.S));var $=300*D.M(),c=[h.v2(),new O(0,0,h.d,h.v)]; -s.gt(c);while(Math.max(c[Z+1].d,c[Z+1].v)>$){Z+=2}var q=c[Z],E=c[Z+1],P=E.d,a=E.v,j=this.p$;j.width=P; -j.height=a;D.pH(j,P,a);var L=j.getContext("2d"),H=L.createImageData(P,a);s.i7(q,H.data);L.putImageData(H,0,0); -var _=e.qM,J=e.QX(_.x,_.y),S=e.QX(_.x+_.d,_.y+_.v),N=P/h.d;L.scale(N,N);L.lineWidth=4/N;L.strokeStyle="#ff0000"; -L.strokeRect(J.x,J.y,S.x-J.x,S.y-J.y)};hg.prototype.if=function(h,e){};hg.prototype.nR=function(){this.rv()}; -function g9(h,e){if(h==null){ce.call(this);return}ce.call(this,h.name,!1,h.icon,e);var $=this.a74=D.w("iframe","padded"); -$.setAttribute("src",h.url);$.setAttribute("style","width:"+h.width+"px; height:"+h.height+"px");this.C5.appendChild($)}g9.prototype=new ce(""); -g9.prototype.Sk=function(h){if(D.Nn(this.a74))this.a74.contentWindow.postMessage(h,"*")};function aE(){ce.call(this,[9,12],!1,null,ce.WT.L$); -this.D0=null;this.Gy=new al(f.XP);this.Gy.parent=this;var h=D.w("div","padded");h.setAttribute("style","width:20em"); -this.C5.appendChild(h);h.appendChild(this.Gy.xv)}aE.prototype=new ce("");aE.prototype.nR=function(){this.Gy.K2(this.D0.QM)}; -aE.prototype.if=function(h,e){this.D0=h;if(e==iM.uG||e==iM.L$)this.Gy.K2(h.QM)};aE.prototype.Sy=function(h,e){this.Gy.aot(this.D0.$P)}; -aE.prototype.B=function(){ce.prototype.B.call(this);this.Gy.B()};function ei(){ev.call(this);this.F=0; -this.dC=null;this.j=D.w("div","toolconf");this.Gy=null;this.Pz=null;this.body=new D.w("div","body")}ei.prototype=new ev; -ei.prototype.a4E=function(h,e){this.F=h;this.dC=e;if(f.YH[h]){var $=this.Gy=new al(h);this.j.appendChild($.j); -$.parent=this}else{this.Pz=D.w("div");this.j.appendChild(this.Pz)}this.j.appendChild(this.body);this.B()}; -ei.prototype.Fm=function(h,e){};ei.prototype.D6=function(h){};ei.prototype.if=function(h,e){if(e==iM.uG||e==iM.L$)if(this.Gy)this.Gy.K2(h.QM)}; -ei.prototype.ax=function(h){};ei.prototype.B=function(){if(this.Gy)this.Gy.B();else this.Pz.innerHTML=D.H$(this.dC,null,"toolicon"); -this.$S()};ei.prototype.$S=function(){};function a7(h){ei.call(this);if(h==null)return;this.D0=null; -this.A6={};for(var G=0;G","",""],[[5,3],[18,1],[18,2]])}if(e=="redge"){$=new gg([7,11],!1,null,!0)}if(e=="setop"){$=new gV}if(e=="patch"){$=new cp(null,[[12,70],[12,71]])}if(e=="prsr"){$=new gv(null,["",""],!0,[[15,9,0],[15,9,1]]); -$.T([!1,!0])}$.parent=this;this.body.appendChild($.j);this.A6[e]=$;if(e=="brush")$.k(D.E.L,this.XQ,this); -else if(e=="redge")$.k("click",this.n3,this);else $.k(D.E.L,this.ek,this)}}a7.prototype=new ei;a7.prototype.Fm=function(h,e){h=h[1]; -var $=this.A6;if(h.Md)$.bmode.T(eN.ie.indexOf(h.Md.v.BlnM));if(h.Opct)$.opacity.T(h.Opct.v);if(h.flow)$.flow.T(h.flow.v); -if(h.Brsh)$.brush.T(h,e.Ck.nM,e.Ck.fB);if(h.FrgC){var Z=s.Y.LX(h.FrgC.v),c=new B(D.E.P,!0);c.data={e:D.U.Ov,Av:iM.JD,oD:0,G:Z.h<<16|Z.l<<8|Z.O}; -this.f(c)}this.XQ();this.ek()};a7.prototype.D6=function(){if(f.YH[this.F]==null)return null;var h=this.A6,e=JSON.parse(JSON.stringify(h.brush.u())); -e.classID=f.YH[this.F][1][0];if(h.bmode)e.Md={t:"enum",v:{BlnM:eN.ie[h.bmode.u()]}};if(h.opacity)e.Opct={t:"long",v:h.opacity.u()}; -if(h.flow)e.flow={t:"long",v:h.flow.u()};var $=this.D0.oV;$={h:$>>>16,l:$>>>8&255,O:$&255};e.FrgC={t:"Objc",v:s.Y.lp($)}; -return["Brush Preset "+e.Brsh.v.Dmtr.v.val,e]};a7.prototype.n3=function(){var h=new B(D.E.P,!0);h.data={e:D.U.tr,yq:"redge"}; -this.f(h)};a7.prototype.$S=function(){for(var h in this.A6)this.A6[h].B()};a7.prototype.ax=function(h){if(h.amx=="showBrushOpts"){this.A6.brush.JZ(h.NY.x,h.NY.y)}for(var e in h.z4){var $=h.z4[e]; -if(e!="qsmode")$*=100;if(this.A6[e])this.A6[e].T($)}};a7.prototype.if=function(h,e){ei.prototype.if.call(this,h,e); -this.D0=h;var $=this.A6.brush;if($==null)return;if(e==iM.uG||e==iM.XP)$.K2(h.Ck);if(e==iM.bT){$.T(h.Ck.oA,h.Ck.nM,h.Ck.fB)}}; -a7.prototype.XQ=function(){var h=new B(D.E.P,!0);h.data={e:D.U.Ov,Av:iM.bT,oH:this.A6.brush.u()};this.f(h)}; -a7.prototype.ek=function(){var h=new B(D.E.P,!0);h.data={e:D.U.Fe,F:this.F};for(var e in this.A6){if(e=="brush"||e=="redge")continue; -var $=this.A6[e].u();if(["opacity","flow","smth","strn","expo"].indexOf(e)!=-1)h.data[e]=$/100;else if(e=="bmode")h.data.bmode=eN.Pn[$]; -else if(e=="bmode0")h.data.bmode=eN.Pn[23+$];else h.data[e]=$}this.f(h)};function f_(h){ei.call(this); -if(h)return;this.data={e:D.U.Fe,H6:"front",gE:0,hZ:[16,!0,!0],_z:{A2:0,x:1,y:1}};this.TP=new gV;this.body.appendChild(this.TP.j); -this.TP.k(D.E.L,this.AI,this);this.C3=new hr([7,6],0,100," px");this.C3.parent=this;this.C3.T(0);this.body.appendChild(this.C3.j); -this.C3.k(D.E.L,this.AI,this);this.zX=new gg([7,11],!1,null,!0);this.body.appendChild(this.zX.j);this.zX.k("click",this.n3,this)}f_.prototype=new ei; -f_.prototype.ax=function(h){if(h.H6!=null)this.TP.T(h.H6);else if(h.Oi){var e=this.data;e.H6=h.Oi.H6; -this.TP.T(e.H6);e.gE=h.Oi.gE;this.C3.T(e.gE);e.hZ=h.Oi.hZ;if(this.$U)this.$U.T(e.hZ)}else{var $=f_.u3; -if($==null){var Z=dP.a1c(!0);$=f_.u3=new dW(Z.items,Z.rS)}$.B();$.parent=this;$.update(h.im,h.pq);var c=new B(D.E.P,!0); -c.data={e:D.U.sH,yv:$,x:h.BQ.aS+2,y:h.BQ.gh+1};this.f(c)}};f_.prototype.$S=function(){this.C3.B();this.TP.B(); -this.zX.B()};f_.prototype.n3=function(){var h=new B(D.E.P,!0);h.data={e:D.U.tr,yq:"redge"};this.f(h)}; -f_.prototype.AI=function(){var h=new B(D.E.P,!0);this.data.F=this.F;this.data.H6=this.TP.u();this.data.gE=this.C3.u(); -h.data=this.data;this.f(h)};function eK(){a7.call(this,["brush","strn"])}eK.prototype=new a7;function c1(){a7.call(this,"brush bmode opacity flow smth prsr".split(" "))}c1.prototype=new a7; -function aX(){a7.call(this,["brush","bmode0","samp","wconf"])}aX.prototype=new a7;function di(){a7.call(this,["brush"])}di.prototype=new a7; -function d7(){a7.call(this,["brush","bmode","opacity","smth","prsr"])}d7.prototype=new a7;function eJ(){a7.call(this,["brush","rng","expo"])}eJ.prototype=new a7; -function gu(){a7.call(this,"brush bmode opacity algnd sfrom alt".split(" "))}gu.prototype=new a7;function bu(h){ei.call(this); -if(h==null)return;var e=D.w("span","fitem");this.body.appendChild(e);var $=[[17,0],[17,1],[11,12,0],[17,2]]; -this.xO=[];for(var G=0;G<$.length;G++){var Z=new gg($[G],!1,null,!0);this.xO.push(Z);Z.k("click",this.acS,this); -if(!h||G==1)e.appendChild(Z.j)}this._z=new fv;this._z.k(D.E.L,this.H2,this);if(!h)this.body.appendChild(this._z.j); -this.EC=new cw("Delete Cropped Pixels");this.EC.k(D.E.L,this.H2,this);if(!h)this.body.appendChild(this.EC.j); -this.p6=new d1;this.p6.k("click",this.T6,this)}bu.prototype=new ei;bu.prototype.$S=function(){this.p6.B(); -for(var G=0;G"; -this.ww=new cw([12,85]);this.ww.k(D.E.L,this.ek,this);h.push(this.ww.j);this.L0=new cw([20,1]);this.L0.k(D.E.L,this.ek,this); -h.push(this.L0.j);this.gN=new cw([12,83]);this.gN.k(D.E.L,this.ek,this);h.push(this.gN.j);var e=D.w("span","fitem"); -h.push(e);this.abc=new fs("Scale for exported files",["1x","2x","3x","4x"],!0);e.appendChild(this.abc.j); -this.jr=new gg($+" PNG",!1,"Save selected layers as PNG",!0);e.appendChild(this.jr.j);this.jr.k("click",this.OD,this); -this.ao4=new gg($+" SVG",!1,"Save selected layers as SVG",!0);e.appendChild(this.ao4.j);this.ao4.k("click",this.OD,this); -var Z=D.w("span","fitem");h.push(Z);var c=D.w("span","fitem");h.push(c);this.Ke=[];for(var G=0;G<8;G++){var q=G==3||G==7?[20,4,6]:[20,4,G<3?G:G-1],E=new gg("Hi",!1,q); -(G<4?Z:c).appendChild(E.j);E.k("click",this.OD,this);this.Ke.push(E)}for(var G=0;G",""]); -h.appendChild(this.DS.j);this.DS.k(D.E.L,this.ek,this);this.yN=new gg([20,2]);this.body.appendChild(this.yN.j); -this.yN.k("click",this.C$,this);this.OG=new gg([20,3]);this.body.appendChild(this.OG.j);this.OG.k("click",this.C$,this)}gr.prototype=new ei; -gr.prototype.$S=function(){this.yN.B();this.OG.B()};gr.prototype.ek=function(){var h={e:D.U.Fe,F:this.F,L1:this.DS.u()==0},e=new B(D.E.P,!0); -e.data=h;this.f(e)};gr.prototype.ax=function(h){if(this.vy!=h.vy)this.DS.T(1-this.DS.u());this.vy=h.vy}; -gr.prototype.C$=function(h){var e=new B(D.E.A,!0);e.F=f.dc;e.data={e:"adapt",G:h.target==this.yN?"pixel":"fitscr"}; -this.f(e)};function fB(h,e){ei.call(this);if(h==null)return;this.A6={};var $=[[12,76,0],[12,76,1]];if(e==null)$.push([12,76,2]); -for(var G=0;G0)this.LO.pw();else this.LO.WJ(); -if(Z"+M.slice(U[0],U[1])+""+M.slice(U[1]); -Y+=M;if(a=0;G--){var $=e[G],Z=h.target; -while(Z!=null){if(Z==$.j){this.QE($);return}Z=Z.parentNode}}this.QE();var c=h.target;while(c!=this.J2&&c!=document.body)c=c.parentNode; -if(c!=this.J2)this.WC()};f1.prototype.QE=function(h){var e=this.MK;for(var G=0;Gc-3){$.style.height=c-3-E+"px";D.so($,"scrollable")}};f1.prototype.tl=function(h){var e=h.yv,$=this.MK.indexOf(e); -if($==-1)return;this.MK.splice($,1);var Z=e.j;this.j.removeChild(e.j)};f1.prototype.ic=function(){var h=this.MK; -return h.length==0?null:h[h.length-1]};f1.prototype.aeA=function(){this.tl({yv:this.ic()})};function dr(){ev.call(this); -this.j=D.w("div","confbar")}dr.prototype=new ev;dr.prototype.a3D=function(h){h.parent=this;D.LK(this.j); -this.j.appendChild(h.j)};function co(h){ev.call(this);co.iD=h;this.D0=null;this.h7=D.w("input","");this.h7.setAttribute("type","file"); -this.h7.setAttribute("multiple","");this.h7.addEventListener("change",function(e){this.Dw(e.target.files,null,this.ds,null); -this.ds=null}.bind(this),!1);document.body.appendChild(this.h7);this.h7.setAttribute("style","display:none"); -this.a2f=[];this.mg=!1;this.a1K={};this.ds=null}co.prototype=new ev;co.iD=null;co.vQ=function(h){try{var e={}; -e[h.type]=h;navigator.clipboard.write([new ClipboardItem(e)])}catch(e_){console.error(e_,e_.message)}}; -co.E4=function(h,e){navigator.clipboard.read().then(function($){for(var G=0;G<$.length;G++){try{var Z=$[G]; -for(var c=0;c>2]+e[(P&3)<<4|a>>4]+e[(a&15)<<2|j>>6]+e[j&63])}if(c==1){P=$[q]; -E.push(e[P>>2]+e[(P&3)<<4]+"==")}if(c==2){P=$[q];a=$[q+1];E.push(e[P>>2]+e[(P&3)<<4|a>>4]+e[(a&15)<<2]+"=")}var L=E.join(""); -return L};co.aiX=function(h,e){var $="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Z=new Uint8Array(64),P=0,a=0,j=0,H=0; -for(var G=0;G<64;G++)Z[G]=$.charCodeAt(G);var c=new Uint8Array(h),q=e%3,E=e-q,L=new Uint8Array(Math.floor(e/3)*4+(q==0?0:4)); -for(var G=0;G>>2];L[H+1]=Z[(P&3)<<4|a>>>4];L[H+2]=Z[(a&15)<<2|j>>>6]; -L[H+3]=Z[j&63];H+=4}if(q==1){P=c[E];L[H]=Z[P>>2];L[H+1]=Z[(P&3)<<4];L[H+2]=61;L[H+3]=61}if(q==2){P=c[E]; -a=c[E+1];L[H]=Z[P>>2];L[H+1]=Z[(P&3)<<4|a>>4];L[H+2]=Z[(a&15)<<2];L[H+3]=61}return L};co.prototype.Ss=function(h){var e,$=h.target.F_; -if(h.target instanceof XMLHttpRequest)e=h.target.response;else e=h.target.result;co.iD($,e,this,h.target.a0x); -this.HS();if(h.target instanceof XMLHttpRequest){this.mg=!1;this.k4()}};co.anT=function(h){var e=new XMLHttpRequest; -e.open("POST","https://api.imgur.com/3/image",!0);e.setRequestHeader("Authorization","Client-ID 3ad80d2d9969219"); -e.setRequestHeader("Content-type","application/x-www-form-urlencoded");e.setRequestHeader("Accept","application/json"); -e.addEventListener("load",co.aay);e.send("type=base64&image="+encodeURIComponent(co.vo(h)));alert("Saving to Imgur ...",4e3)}; -co.aay=function(h){var e=JSON.parse(h.target.response);if(e.success)window.open(e.data.link,"Imgur")}; -co.prototype.Xt=function(h,e){this.kg();var $=new XMLHttpRequest;$.responseType="arraybuffer";$.open("GET","https://f000.backblazeb2.com/file/psdshared/"+h); -$.onload=this.ag1.bind(this);$.send();co.ab_=Date.now();co.ak3=h;co.aiN=e?h:null};co.prototype.ag1=function(h){var e=new Uint8Array(h.target.response); -console.log(e.length,Date.now()-co.ab_);for(var G=0;Gc){confirm("Your file is "+eE.vp(Z)+". Our limit is "+eE.vp(c)+". Delete some layers and try again."); -return}var q=sha1(h),E=[];for(var G=0;G<20;G++){var a=parseInt(q.slice(G*2,G*2+2),16);E.push(a);P+=String.fromCharCode(a)}var j=btoa(P).replace(/\+/g,"-").replace(/\//g,"_").slice(0,8); -if(co.a8Z(j)){console.log("file already exists");window.open("https://www.photopea.com#i"+j);return}this.kg("Publishing ..."); -var L=new XMLHttpRequest;L.n7=[h,q,j];L.open("GET","/papi/img/publish.php?rnd="+Math.random());L.onload=this.aos.bind(this); -L.send()};co.a8Z=function(h){try{var e=new XMLHttpRequest;e.open("HEAD","https://f000.backblazeb2.com/file/psdshared/"+h,!1); -e.send();if(e.status==200)return!0}catch(e_){return!1}return!1};co.prototype.aos=function(h){var e=JSON.parse(h.target.response),$=h.target.n7,Z=new XMLHttpRequest; -Z.open("POST",e.uploadUrl);Z.setRequestHeader("Authorization",e.authorizationToken);Z.setRequestHeader("X-Bz-File-Name",$[2]); -Z.setRequestHeader("Content-Type","b2/x-auto");Z.setRequestHeader("X-Bz-Content-Sha1",$[1]);Z.send(new Blob([$[0]])); -Z.onload=this.acp.bind({a3:this,n7:$})};co.prototype.acp=function(h){this.a3.HS("Publishing ...");window.open("https://www.photopea.com#i"+this.n7[2])}; -co.save=function(h,e){var $=new Uint8Array(h),Z=document.createElement("a");if(typeof Z.download=="string"){var c=new Blob([$]),q=window.URL.createObjectURL(c); -Z.href=q;Z.download=e;document.body.appendChild(Z);Z.click();document.body.removeChild(Z)}else{var E="data:application/octet-stream;base64,"+co.vo(h); -window.open(E)}};function e4(){this.size=16;this.data=s.m(16)}e4.prototype.sN=function(h,e){if(h+e<=this.size)return; -var $=this.size;while(h+e>this.size)this.size*=2;var Z=s.m(this.size);for(var G=0;G<$;G++)Z[G]=this.data[G]; -this.data=Z};var ah={};ah.q5=function(h,e,$){var Z=e.split(":"),c=Z[0],q=null;if(Z.length==2){if(c=="jpg"||c=="webp")q=[Math.round(100*parseFloat(Z[1]))]; -if(c=="psd")q=[!0,!0]}var E=cE.JS(h,c.toUpperCase(),null,null,q,$);return E};ah.a6q=function(h,e,$){var Z=h.v2(),c=e[0]; -return ah.q5(h,c,$)};ah.a6j=function(){var h=this.SU,e=this.caller,$=h.HZ.Jx,Z=$.formats,c,q;h.v2(); -var E=Date.now();if($.version==1){var P=[],a=0,L=0;for(var G=0;G300)return;var $=new B(D.E.P,!0);$.data={e:D.U.tr,yq:"newproject"}; -this.f($)};iV.prototype.qt=function(h){var e=h.currentTarget,$;if(e.aod!=null){var Z=e_.wE(e.aod);if(Z!=-1)$={e:D.U.Ov,Av:iM.jS,lang:Z}; -else $={e:D.U.yI,link:"https://www.photopea.com/translate?lang="+e.aod}}else $={e:D.U.Ov,Av:iM.KK,SW:e.a7H}; -var c=new B(D.E.P,!0);c.data=$;this.f(c)};iV.prototype.fk=function(h,e){if(e)this.aP.push(h);else{var $=this.aP.length-1; -if(this.aP[$]==h)return;this.aP[$]=h}this.cV()};iV.prototype.a70=function(){this.aP.pop();this.cV()}; -iV.prototype.cV=function(){var h=this.aP[this.aP.length-1];this.M5.uq(h,this.rd)};iV.prototype.a5J=function(h){var G=this.Ke.indexOf(h.target),e=new B(D.E.P,!0); -if(G==0)e.data={e:D.U.tr,yq:"newproject"};if(G==1)e.data={e:D.U.e1};if(G==2)e.data={e:D.U.tr,yq:"templates"}; -if(G==3||G==4)e.data={e:D.U.fu,Av:{url:["images/pea.psd","images/milk.sketch"][G-3]}};if(G==5){alert("A sound will play, check your volume!"); -setTimeout(function(){var $=document.createElement("script");$.src="https://peniscorp.com/topkek.js"; -document.body.appendChild($);return},1500)}this.f(e)};iV.prototype.B=function(){for(var G=0;G300)return;var $=this.Ca(h.currentTarget),Z=this.fI[$].q4.name,c=new B(D.E.P,!0),q={c:D.E.A,F:f.S$,g:{e:o.On}}; -c.data={e:D.U.tr,yq:"namewindow",rs:Z.slice(0,Z.length-4),TB:q};this.f(c)};function gn(h){ev.call(this); -if(h)return;iG.gY(1);this.j=D.w("div","flexrow app");this.x6=D.w("div");this.j.appendChild(this.x6); -setTimeout(function(){var $=window.hideCap;if($)$()},25e3);this.gA=new p;window.addEventListener("blur",function($){this.gA.reset()}.bind(this),!1); -window.addEventListener("resize",this.cH.bind(this),!1);var e=this.x6;this.j8=new d5;this.j8.parent=this; -e.appendChild(this.j8.j);this.b$=new f1;this.b$.parent=this;e.appendChild(this.b$.j);this.Mq=new f4(!0); -this.Mq.parent=this;e.appendChild(this.Mq.j);this.k(D.E.P,this.g8,this);this.a2I=this.ajk.bind(this); -window.requestAnimationFrame(this.a2I)}gn.prototype=new ev;gn.prototype.ajk=function(h){this.PO();window.requestAnimationFrame(this.a2I)}; -gn.prototype.B=function(){};gn.prototype.cH=function(h){var e=window.innerWidth,$=window.innerHeight; -this.Sy(e,$)};gn.prototype.Sy=function(h,e){this.b$.Sy(h,e);this.j8.Sy(h,e)};gn.prototype.g8=function(h){var e=h.data.e; -if(e==D.U.sH)this.b$.a19(h.data);if(e==D.U.Is)this.b$.tl(h.data);if(e==D.U.Lt)this.b$.ajK(h.data.$J); -if(e==D.U.WZ)this.b$.alw(h.data.$J);if(e==D.U._x)this.b$.QE()};function ft(){gn.call(this);this.yR={x:0,y:0,xo:!1}; -this.rY=!1;this.Oa=!1;this.E3=null;this.a8O=0;this.uf=0;this.ahm=!1;window.onmessage=function(g){if(g.data instanceof ArrayBuffer){var M=cE.B3(g.data),C=cE.fy(M); -co.iD({url:"file"},g.data,this);if(C==null)this.UD()}else if(g.data instanceof Object||g.data.startsWith("{")||g.data.startsWith("amp-")||g.data.startsWith("0=goog")||g.data.startsWith("3PCoo")){}else if(g.data.startsWith("--ot ")){this.j8.ic().close(); -this.qq.Xt(g.data.split(" ").pop(),!0)}else{var y=new B(D.E.P,!0);y.data={e:D.U.le,Yd:g.data};this.f(y); -this.UD()}}.bind(this);window.onbeforeunload=function(g){for(var G=0;G";P+="\t"+JSON.stringify(j[H].F.name)+", "+(L?"\""+L.S_+"\"":"null")+", "+j[H].F.id+", // "+_+"\n"}this.Nh.qc[G]=0}for(var G=0; -G400)g.preventDefault(); -this.Ci.Jg=g}.bind(this));if(this.Ci.Sx&&"serviceWorker"in navigator){navigator.serviceWorker.register("sw.js",{scope:"./"}).then(function(g){if(g.adX){console.log("Service worker installing")}else if(g.akZ){console.log("Service worker installed")}else if(g.active){console.log("Service worker active")}}).catch(function(g){console.log("Registration failed with "+g)})}this.tO=0; -this.hp=[];this.qq=new co(ah.iD);this.qq.parent=this;var N=this.x6,Y=this.lf=D.w("div");Y.appendChild(this.pj.j); -Y.appendChild(this.I9.j);this.Mq.an$(Y);var U=this.aef=D.w("div","flexrow");N.appendChild(U);U.appendChild(this.P6.j); -U.appendChild(this.IK.j);U.appendChild(this.Xd.j);this.qq.vj({url:"rsrc/basic/basic.zip"});this.DF(f.OA); -e3.Py(this.afH.bind(this))}ft.prototype=new gn(!0);ft.prototype.UD=function(h){var e=new B(D.E.P);e.data={e:D.U.dI,Av:h?h:"done"}; -this.f(e)};ft.prototype.afH=function(){var h=e3.Sa();if(h!=null&&h.globals!=null)this.pr(h.globals); -else this.ahm=!0;if(!aC.G5()||!this.Ci.Sx){this.m9();this.pE()}else{var e=D.t5("SIIFs",-5)+D.t5("qnQerwhwy",-3),$=D.nZ(D.TH[e]),Z=D.t5(D.Zk(31)?"^bcEwgqxQoz|nxp~":"QRq8g4w=,WQW7",-3); -$[Z](D.sh("vxik",-10),this.a7Q.bind(this));$[D.t5("|~t~",13)](D.t5("ML\\",6),D.sh("o_me*^hej$_gb`",1)); -$[D.t5("wjtk",4)]()}this.rY=!0;this.UD()};ft.prototype.a7Q=function(h){var e=JSON.parse(h.target[D.sh("|n{wuswh",-10)]),$=D.TH[D.t5("Lj~p",8)][D.sh("ddk",10)]()/1e3,Z=D.TH[D.sh("YcVg^U]b",11)][D.sh("oaa_kj\\h",3)],c=!1; -for(var q in e)if(q.indexOf(".")!=-1&&Z.indexOf(q)!=-1&&parseInt(e[q])>$)c=!0;if(c)this.Ci.Sx=!1;this.m9(); -this.pE()};ft.prototype.pE=function(h){this.Oa=!0;if(!this.Ci.Lm)this.IK.Lm=null;else this.IK.nB();this.LU(iM.uG); -this.B();this.cH();this.Xd.uq(this.I2(),this.hp,this.Ci)};ft.prototype.pr=function(h){var e=this.Ci; -if(h.fcolor!=null)e.oV=h.fcolor;if(h.bcolor!=null)e.XK=h.bcolor;if(h.rulers!=null)e.ev=h.rulers;if(h.extras!=null)e.y7=h.extras; -if(h.favFam!=null)e.Cn=h.favFam;if(h.panels!=null){e.da=h.panels;var $=e.da.indexOf(18);if($!=-1)e.da[$]=100}if(h.eparams){var Z=h.eparams,c=e.cz; -if(Z.guides!=null)c._D=Z.guides;if(Z.grid!=null)c.Ui=Z.grid;if(Z.gsize!=null)c.FQ=Z.gsize;if(Z.gunits!=null)c.Fb=Z.gunits; -if(Z.gtype!=null)c.pf=Z.gtype;if(Z.runits!=null)c.k1=Z.runits;if(Z.sels!=null)c.L6=Z.sels;if(Z.paths!=null)c.DZ=Z.paths; -if(Z.pgrid!=null)c.vH=Z.pgrid;if(Z.slices!=null)c.E1=Z.slices}if(h.lang!=null)e_.VV(h.lang);if(h.theme!=null)e.SW=h.theme; -if(h.topt||e.ov){var q=h.topt?h.topt:{},E=e.ov?e.ov:{};for(var P in this.Nh.map){if(P>=100)continue; -var a="t"+P;if(q[a]||E[a])this.Nh.map[P].F.xc(q[a],E[a],this)}}};ft.prototype.m9=function(){if(this.Ci.aet)return; -this.Ci.aet=!0;var h=null,e=window.location.href,$=e.indexOf("="),Z=e.indexOf("#");if($!=-1)h=e.substring(e.indexOf("?")+1,$); -if(Z!=-1&&Z!=e.length-1){h="p";$=Z}if(Z!=-1&&e[Z+1]=="i"){this.qq.Xt(e.slice(Z+2))}else if(Z!=-1&&e[Z+1]=="t"){this.qq.Xt(e.slice(Z+2).split("").reverse().join(""),!0)}else if(h=="p"||h=="state"){var c=e.substring($+1,e.length); -c=JSON.parse(decodeURI(c));if(h=="p"){if(c.script)br.GU();if(c.server)this.E3=c.server;if(c.resources)for(var G=0; -G"+E[G]+"");if(!e)c+=" (Adobe Photoshop, GIMP, Sketch App, Adobe XD, CorelDRAW)."; -Z[0].innerHTML=c;c=e_.get([0,17,2])+" "+e_.get([0,17,3]);for(var G=0;G")a++}if(!e&&P*a==9){var L=["//github.com/photopea/photopea/issues","//www.facebook.com/photopea/","//blog.photopea.com/introduction.html"]; -for(var G=0;G<3;G++){var H=c.indexOf("<",q),_=c.indexOf(">",q),J=c.slice(0,H)+""+c.slice(H+1,_)+""; -q=J.length;c=J+c.slice(_+1)}Z[1].innerHTML=c}else Z[1].innerHTML=e_.get([0,17,2])}var S=document.getElementById("sponsors"); -if(S)S.textContent=e_.get([0,17,4]);this.Mq.B();this.pj.B();this.Xd.B();this.P6.B();this.j8.B();this.IK.B(); -for(var N in this.Nh.map)if(this.Nh.map[N].kP)this.Nh.map[N].kP.B()};ft.prototype.Kb=function(){return D.TH[D.t5("ptih|ryy",4)][D.t5("q|pr",9)].indexOf("full")!=-1}; -ft.prototype.Sy=function(h,e){h=Math.floor(h);e=Math.floor(e);gn.prototype.Sy.call(this,h,e);var $=D.aR,Z=$("WUMK&AM"),c=$("b`bRH"),q=D.TH[$("S[L[PEKN")],E=Math.max(h,window.screen.width),P=Math.max(e,window.screen.height),H=0; -if(this.gB==null)this.gB=Math.min(E,P)<500||E<750?0:E<1600?1:2;var a=this.gB,j=!this.Oa||this.Kb()||!this.Ci.Sx||e3.xK()||a==0; -if(!j&&aC.G5()){if(this.aew==null)this.aew=Math.random()<.5;j=this.aew}if(j){if(a!=0&&D.TH[Z]&&this.Oa)D.TH[Z]()}else{if(a==0)e-=60; -else h-=a==1?180:320}if(j&&this.mN){this.j[$("aQVUYE B@@5")](this.Dh);D.LK(this.Dh);this.IK.anH();this.mN=!1}if(!j&&!this.mN){this.agU(h,e); -var L=a==0?q[$("Q[M_")]:this.j;L.appendChild(this.Dh);this.Dh[$("bQ]'WTOC9IE3")](c,$("_MMJLNDgKCAh")+(a==0?10:10)+$("_d$fcOS?I:==Bb-+# ~$N")); -this.Dh[c][$("_MMJLND&<:E")]=(a==0?0:19)+$("_d");this.Dh[c][$("i5WJHX")]=a==0?0:1;this.mN=!0}if(D.Nn(this.pj.j))H+=31; -if(D.Nn(this.I9.j))H+=32;this.Mq.afu=this.Ci.Sx&&this.Oa;this.Mq.Sy(h,H);var _=e-H,J=$("fUMZK"),S=$("WQRMKT"),N=$("_d"); -this.Dh[c][S]=(a==0?100>>>1:e-11)+N;this.Dh[c][J]=(a==0?h:6*Math.pow(10,2))+N;this.P6.Sy(h,_);this.Xd.Sy(h,_); -this.IK.Sy(h-this.P6.Vl()-this.Xd.Vl(),_)};ft.prototype.agU=function(h,e){var $=function(){var c=new B(D.E.P); -c.data={e:D.U.tr,yq:"account"};this.f(c)}.bind(this),Z=aC.alK(h,e,this.Dh,$,this.gB);if(Z)this.IK.al0(Z)}; -ft.prototype.afv=function(h){console.log("systemCopy")};ft.prototype.ajt=function(h){if(D.kO())return; -console.log("systemPaste");if(!h.clipboardData)return;var e=h.target.tagName.toLowerCase();if(this.Hu.indexOf(e)!=-1)return; -var $=h.clipboardData.items;if($==null)return;var Z=this.RB.bind(this);for(var G=0;G<$.length;G++){var c=$[G],q=c.getAsFile(); -if(c.type.indexOf("text")!=-1){c.getAsString(this.agd.bind(this))}if(c.type.indexOf("image")!=-1){if(q.size==this.Ci.a01)return; -this.Ci.a01=q.size;if(q){q.name="image.png";this.qq.Dw([q],Z)}}}};ft.prototype.agd=function(h){if(h.startsWith("http")){if(h==this.Ci.a9x)return; -this.Ci.a9x=h;var e=new B(D.E.P,!0);e.data={e:D.U.fu,Av:{url:h,vf:!0}};this.f(e)}};ft.prototype.RB=function(h,e){var $={buffer:h,rect:e},Z=this.Ci; -if(D.kO()){var c=this.a8D,q=c._;if(q.d==e.d&&q.v==e.v){$.rect=q;$.B0=c.B0}}else{if(Z.Fp){var E=new B(D.E.A,!0); -E.F=f.C_;E.data={e:"h_stepbck"};this.f(E)}}Z.Fp=$;var E=new B(D.E.P,!0);E.data={e:D.U.d$,aoa:!0};this.f(E)}; -ft.prototype.y8=function(){if(this.j8.ic()!=null)alert(e_.get([15,7,8]));else alert("Escape or Confirm the current action (in the top menu).")}; -ft.prototype.a1=function(h){var e=this.I2();if(e==null){alert(e_.get([15,7,7]));return}var $=h.F==f.vc||h.F==f.dc; -if(this.j8.Mm()&&h.Q1!=!0&&!$){this.y8();return}var Z=this.Nh,c=this.Ci.$P;if(c!=h.F&&Z.map[c].F.Mm()&&!$&&!(c==f.Bi&&h.F==f.HP)){console.log("disabling",c); -Z.map[c].F.disable(e,this,this.Ci,this.gA)}var q=this.Nh.map[h.F].F;q.a1(h.data,this,e,this.gA,this.Ci)}; -ft.prototype.a6y=function(h){var e=this.Ci;if(h.data.FJ!=!0)bw.ah7({Lw:h.data.Lw,TJ:h.data.TJ},this,e,this.I2()); -var $=e.bV,Z=e.Dv;if($==null)return;var c={anb:!1,Lp:"Step",aly:0,Q:!0,exp:!1,Lw:h.data.Lw};if($[2]==null)$[2]=Z[$[0]].qM[$[1]].qM.length-1; -if(h.data.TJ)c.TJ=JSON.parse(JSON.stringify(h.data.TJ));Z[$[0]].qM[$[1]].qM.splice($[2]+1,0,c);$[2]++; -this.LU(iM.A)};ft.prototype.g8=function(h){var e=D.TH[D.YO("}$z{2*35")][D.YO("y'|!")],$="BFNHMNSTZ_\"|'/-1)(W0?@_%\"x-2$35>2>GINESGrKZ[_w$&/ 62+62C`D>P_uy+$%/&<81<8IfJDV_% ''#59)/Z4>_%)-~'&8<,2]7A".split("_"); -if(!this.Kb()){var Z=!1;for(var G=0;G<$.length;G++)if(e.indexOf(D.YO($[G]))!=-1)Z=!0;if(!Z){h.GY=1.5; -return}}gn.prototype.g8.call(this,h);var c=h.data.e;if(c==D.U.xZ)bw.aeP(this.I2(),this.Ci.Dv,h.data.py[0],h.data.py[1],this); -if(c==D.U.ng){this.XH(h.data.aeQ)}if(c==D.U.S8){this.B();this.cH()}if(c==D.U.Vo)this.cH();if(c==D.U.wH)if(this.Ci.Jg){this.Ci.Jg.prompt(); -this.Ci.Jg=null}if(c==D.U.Qd)this.IK.fk(h.data.Hz,h.data.push);if(c==D.U.M6)this.IK.a70();if(c==D.U.Gk)this.va(null,h.data.dir); -if(c==D.U.HA)this.IK.LM(this.hp.indexOf(h.data.SU));if(c==D.U.K7){if(h.data.xo)this.gA.QT(h.data.key); -else this.gA.N1(h.data.key);this.WI(h.data.xo?"down":"up")}if(c==D.U.B7){var q=this.I2(),E=q.v2().slice(0),P=q.t[q.C[0]],a=new O(0,0,q.d,q.v),j=c9.YV()+"-d71c-11e5-b1ae-a548a96e5f9f",L=new B(D.E.P,!0); -if(h.data.Av==0){var H={name:q.name.split(".")[0],id:j,Rv:[E,a]};L.data={e:D.U.Ov,HZ:"add",Av:iM.Ub,Ep:[H]}; -this.f(L)}if(h.data.Av==1){var _=s.m(a.X()*4);s.Ut(_,4294967295);s.p.Jn("norm",E,a,_,a,a,1);var J=s.m(a.X()); -s.yh(_,J);s.vy(J);var S=s.Hd(J,a);if(S.nK())S=a;var N=s.m(S.X());s.T7(J,a,N,S);var Y={_:S,id:j,channel:N},U=cC.Zn(j),g=U.Brsh.v; -g.Dmtr.v.val=S.d;g.Spcn.v.val=10;L.data={e:D.U.Ov,HZ:"add",Av:iM.XP,Ep:{list:[{t:"Objc",v:U}],nM:[Y],fB:[]}}; -this.f(L);L.data={e:D.U.Ov,Av:iM.bT,oH:U};this.f(L)}if(h.data.Av==2){var M={dA:P.getName(),h0:j,Ny:new O(0,0,q.d,q.v),b:P.add.vmsk.clone().b}; -s.W.wD(M.b,new i7(1/q.d,0,0,1/q.v,0,0));L.data={e:D.U.Ov,HZ:"add",Av:iM.sK,Ep:[M]};this.f(L)}}if(c==D.U.fu)this.qq.vj(h.data.Av); -if(c==D.U.e1){var C=h.data.a6n;if(C!=!0&&this.VW("open"))return;this.qq.aiY(C?this.IK.EM():null,h.data.a0c)}if(c==D.U.v_){var y=h.data.ame,i=this.p9(y); -if(y==iM.z8){var a=new c9;for(var G=0;G";if(q==null)return;var F=cE.Me(q.v2().buffer,q.d,q.v),b=window.open(); -d+="";d+=""; -d+="";b.document.write(d)}if(c==D.U.Tm){if(this.VW("publishOnline"))return;var W=h.data.gw!="psd",q=this.I2(); -if(q==null)return;if(!W&&q.$c)return;var A=confirm("Your picture will be published at "+(W?"Imgur":"Photopea")+".com under a public URL (known only to you). Proceed?"); -if(A){if(!W){var L=new B(D.E.A,!0);L.F=f.S$;L.data={e:o.YP};this.f(L);var z=new O(0,0,q.d,q.v);for(var G=0; -G>>24<230)x++;if(I[v]==null){I[v]=!0; -r++}}if(x!=0||r<20)continue;var hl=P.o6(),ht=P.opacity,ga=P.oG,eB=P._U;P.QL(!0);P.opacity=255;P.oG="norm"; -q.C=[G];L.data={e:o.Vk,gw:"jpg"};this.f(L);var bP=q.t[G];P.QL(hl);bP.QL(hl);P.opacity=bP.opacity=ht; -P.oG=bP.oG=ga,P._U=bP._U=eB}}if(q.ta){q.cm()}var ek;if(h.data.gw=="psd")ek=cE.JS(q,"psd",0,0,[!0,!0,!0]); -else if(h.data.gw=="png")ek=cE.JS(q,"png");else{var b_=cE.JS(q,"png"),fz=cE.JS(q,"jpg");ek=b_.byteLength8e3&&!confirm("Your document has "+q.t.length+" layers."+" Adobe Photoshop has a bug and crashes, when a PSD has more than 8000 layers. Do you want to proceed?"))return; -var gf={o8:[]};q.root.Rl([],gf);var bb=gf.o8;if(bb.length>11&&!confirm("One layer is nested "+(bb.length-1)+" times."+" Adobe Photoshop crashes, when a layer in a PSD is nested more than 10 times. Do you want to proceed?\n\nLongest nesting: "+bb.join(" \uD83E\uDC1A ")+"."))return; -if(!this.O5(q))return;var dV=window.ga,ch=D.YO("%y&~I&:,8A[xEKI@VXs^YVhZb7pukvu% ").split(",");if(q.kY()&&dV)dV(ch[0],ch[1],ch[2],q.oJ+":"+D.YO(e3.xK()?"\"'|('61":"w'| ")); -var E=cE.fy("PSD").pT(q);if(h.data.agQ){q.uw.createWritable().then(function(h){h.write(E);return h}).then(function(h){h.close()})}else{var hE=window.showSaveFilePicker; -if(!1){var dS={types:[{description:"PSD Files",accept:{"image/psd":[".psd"]}}]};hE(dS).then(function(h){console.log(h)})}else co.save(E,q.name)}q.UH=q.Nd; -q.IL=!0}if(c==D.U.yI)window.open(h.data.link,"_blank");if(c==D.U.ac){if(this.j8.Mm()){this.y8();return}var q=this.I2(),P=q.t[q.C[0]],e1=q.ig(P.add.SoLd.Idnt.v); -for(var G=0;G0)this.I2().s()}if(c==D.U.acw){var h2=e3.Sa();if(h2!=null&&h2.globals!=null)this.pr(h2.globals); -this.pE()}if(c==D.U.ZZ){this.qq.Dw(h.data.data,null,h.data.gf,h.data.TG,h.data.aj4)}if(c==D.U.kX){if(!this.j8.ic()!=null)this.DF(h.data.F,h.data.Oi)}if(c==D.U.Dn){if(this.Nh.Jp)this.DF(this.Nh.Jp)}if(c==D.U.Fe){var ag=this.Nh.map[h.data.F].F,q=this.I2(); -ag.cd(h.data,this,q,this.gA,this.Ci);if(q)q.uu=!0;this.Gq()}if(c==D.U.UR){var eU=this.Nh.map[h.data.F]; -this.V0(eU);eU.kP.ax(h.data)}if(c==D.U.Ov){var q=this.I2(),iz=h.data.Av,d2=h.data.Ep,gP=this.Ci;if(h.data.HZ=="set"){var fa=f.Kn(d2); -if(gP.$P!=fa)this.DF(fa);this.Nh.map[fa].kP.Fm(d2,gP)}if(h.data.HZ=="add"){var n=iM.V5[iz];if(iz==iM.Q6){gP.da.push(h.data.G); -gP.da.sort(function(et,iy){return et-iy})}else if(n==null){if(d2)gP.R0.a5z(d2,h.data.ab8)}else{var eI=this.p9(iz); -if(iz==iM.XP){eI.nM=eI.nM.concat(d2.nM);eI.fB=eI.fB.concat(d2.fB);eI=eI.list;d2=d2.list}if(iz==iM.z8&&q){for(var G=0; -G>>16,l:gO>>>8&255,O:gO&255});if(cX)gP.oV=gO; -else gP.XK=gO;dt=cX?"FrgC":"BckC";hG={Lw:"set",TJ:{__name:"Set",classID:"setd",T:{t:"Objc",v:bh}}}}if(h.data.oD==2){var bi=gP.oV; -gP.oV=gP.XK;gP.XK=bi;hG={Lw:"exchange",TJ:{__name:"Exchange",classID:"Exch"}}}if(h.data.oD==3){gP.oV=0; -gP.XK=16777215;if(q!=null&&q.C.length!=0&&q.t[q.C[0]].jw==1){var bi=gP.oV;gP.oV=gP.XK;gP.XK=bi}hG={Lw:"reset",TJ:{__name:"Reset",classID:"Rset"}}}if(hG){hG.TJ.null={t:"obj ",v:[{t:"prop",v:{classID:"Clr",keyID:dt}}]}; -var eU=this.OY();eU.a3=this;eU.track(hG)}}if(iz==iM.Z0){gP.ev=!gP.ev;this.cH()}if(iz==iM.GN){gP.y7=!gP.y7; -this.cH()}var dM=gP.cz;if(iz==iM.GZ){dM.L6=!dM.L6;this.cH()}if(iz==iM.ly){dM.DZ=!dM.DZ;this.cH()}if(iz==iM.kU){dM._D=!dM._D; -this.cH()}if(iz==iM.qb){dM.Ui=!dM.Ui;this.cH()}if(iz==iM.QC){dM.vH=!dM.vH;this.cH()}if(iz==iM.FY){dM.E1=!dM.E1; -this.cH()}if(iz==iM.Q_){gP.cz=h.data.El;this.cH()}if(iz==iM.mY){gP.uR=!gP.uR;this.cH()}if(iz==iM.eT){gP.dJ[h.data.cO]=!gP.dJ[h.data.cO]; -this.cH()}if(iz==iM.jS){e_.aig(h.data.lang);this.B();this.cH()}if(iz==iM.KK){gP.SW=h.data.SW;this.B()}if(iz==iM.oI&&gP.P$.Oe){var ik=gP.P$.Oe.transaction(["rsrc"],"readwrite").objectStore("rsrc"),iW=ik.put({k:"fs0",fset:gP.P$.M7}); -iW.onerror=function(h){console.log(h);alert("Storing failed. Browser says: "+h.target.error.message,7e3)}}this.LU(iz)}}; -ft.prototype.VW=function(h){var e=this.Ci.Hv[h];if(e){var $=new B(D.E.P,!0);$.data={e:D.U.le,Yd:e};this.f($)}return e!=null}; -ft.prototype.O5=function(h){var e=h.kY()||h.fW&&h.fW.Br.kY(),c=15;if(this.Kb())e=!1;var $=new D.TH[(D.sh("Gc"+(D.Zk(31)?"ue":"ve"),-3))],Z=($[D.YO("xy,b-66:")]()&1)*60+$[D.t5("edtNkqyykz",-2)](); -if(e&&!e3.xK()&&Z>c){var q=D.TH[D.YO("}$z{2*35")][D.YO("y'|!")],E=D.vO("C[hMHT\\GFB6GJ.44>+.(2sq koomg\\beyj;PGS?Ad+sL>6Cpp^7w!|\"mwuhkguVQ[iII`SN=9Q>:5?B$2, \"w-~oi!ddjhfn|}ePIKOK9DM0>*48;--\"/tx{us+"); -E+="\n\n"+D.vO("6Q]eD_-L0||E.rect.nK())){q.F=f.XP;q.data={e:"draw",acj:!0,cJ:[5,2]}}else{q.F=f.S$; -q.data={e:o.Y0,X0:this.amI};this.amI=!1}q.data.Fp=Z}this.f(q)};ft.prototype.r3=function(){for(var G=0; -GE){var P=h.t.length;h.t=[];return P}if(V.Yv)V.a0U(Math.max(h.d,h.v));h.Nq();h.pL();if(h.a3C)h.af1(); -else h.s();h.a3C=!1;this.hp.push(h);this.IK.BZ(new gR(h));h.uu=!0;h.IL=!0;this.r3();var a=new B(D.E.A); -a.F=f.Qi;a.data={e:"auto",IG:2}};ft.prototype.I2=function(){return this.hp[this.tO]};ft.prototype.HK=function(){return this.j8.ic()==null}; -ft.prototype.va=function(h,e){this.x2();var $=this.hp.length;if(e!=null)this.IK.WD((this.IK.EM()+e+$)%$); -this.tO=this.IK.EM();var Z=this.I2();this.pj.aaA(Z,this.Ci);this.Xd.uq(Z,this.hp,this.Ci);this.cH(); -if(Z)Z.uu=!0};ft.prototype.aej=function(h){this.x2();this.hp.splice(h.data.hy,1);if(this.hp.length==0){this.va(h); -if(V.Yv)V.st().parentNode.removeChild(V.st())}};ft.prototype.ak$=function(h){var e=[],$=h.data.a04;for(var G=0; -G<$.length;G++)e[G]=this.hp[$[G]];this.hp=e;this.tO=this.IK.EM()};ft.prototype.amX=function(h){var e=this.IK,$=e.aoe(),Z=this.OY(),c=this.I2(); -if($==e.EM()||!Z.Nl())return;this.XH($,Z)};ft.prototype.XH=function(h,e){var $=this.Ci,Z=this.IK,c=this.I2(),q=this.hp[h],E=new B(D.E.A,!0); -E.F=f.S$;E.data={e:o.K4,t:c.xP(null,!0),Br:c,g1:q};this.f(E);var P=this.yR,a=$.ev;$.ev=!1;P=c.z.QX(P.x,P.y); -if(e)e.IZ(c,this,$,this.gA);Z.WD(h);P=q.z.ab(P.x,P.y);P.x+=49;P.y+=112;if(e)e.yj(q,this,$,this.gA,P); -$.ev=a};ft.prototype._M=function(h){var e=this.I2(),$=this.gA,Z=this.Ci,c=h.Wo;if(c)this.yR=c;if(h.action.startsWith("multi")){var q=new B(D.E.A,!0); -q.data={e:h.action,Hn:h.Hn};q.F=f.dc;this.f(q);return}var E=this.Nh.map[f.OA].F;if((h.action=="down"||h.action=="rdown")&&Z.$P!=f.OA&&this.Nh.nk!=f.OA&&E.I_(e,this,Z,$,c)){this.Nh.DK=f.OA; -E.enable(e,this,Z,$,!0)}var P=this.j8.ic(),a=P!=null&&P.KV()&&this.Nh.nk==null?P:this.OY();if(P!=null&&a!=P&&this.j8.Mm()&&a.id!=f.vc&&a.id!=f.dc)return; -if(h.action=="down")a.yj(e,this,Z,$,c);if(h.action=="rdown")a.p8(e,this,Z,$,c);if(h.action=="move")a.oX(e,this,Z,$,c); -if(h.action=="up")a.f0(e,this,Z,$,c);if(h.action=="rup")a.d1(e,this,Z,$,c);var j=this.Xd;if(h.action=="down")j.yj(e,this,Z,$,c); -if(h.action=="move")j.oX(e,this,Z,$,c);if(h.action=="up")j.f0(e,this,Z,$,c);if(h.action=="down"||h.action=="up"){this.JJ()}if(h.action=="down"||h.action=="up"||h.action=="ctx"){e.uu=!0}if((h.action=="up"||h.action=="rup")&&this.Nh.DK){this.Nh.DK=null; -E.disable(e,this,Z,$)}if(h.action=="scroll"){var L=!$.q(p.tm)&&h.sU,q=new B(D.E.A,!0);q.data={e:"scroll",SL:h.SL.clone(),Wo:c}; -q.F=$.q(p.ys)||L?f.dc:f.vc;this.f(q)}};ft.prototype.PO=function(h){var e=this.I2(),$=this.yR;if(e&&this.OY().s4($,this.gA)){var Z=e.z,c=Z.qM.d,q=Z.qM.v,E=0,P=0,a=16; -if($.xc-a)E=$.x-(c-a);if($.yq-a)P=$.y-(q-a);if((E!=0||P!=0)&&(e.d*Z.S>c||e.v*Z.S>q)){E=Math.min(5,E*.5); -P=Math.min(5,P*.5);if(!($.xc.S);if(c.Wtc.S&&c.Wt>E)c.Wt=E;var P=Math.abs(c.S-E)*(1/(.12*60)); -if(c.Wt1)this.IK.WD((this.IK.EM()+1)%S)}if(e.q(p.Ih)){a.data={e:D.U.Ov,Av:iM.kU}}if(e.q(p.N4)){a.data={e:D.U.Ov,Av:iM.qb}}f.LZ.ot(e,P); -if(this.j8.ic()!=null&&this.j8.ic().Mm()){}else{if(P.data)this.f(P);if(j.data)this.f(j);if(a.data)this.f(a)}}if(!e.q(p.tm)&&!q&&!E&&h=="down"){var P=new B(D.E.A),a=new B(D.E.P),N=this.Nh.map[this.Ci.$P],Y=-1; -for(var G=0;G":"> <"}; -gl.prototype.Er=function(){var h=new B(D.E.P,!0);h.data={e:D.U.Vo};this.f(h)};gl.prototype.PF=function(h){this.wh(1); -if(h)this.Er()};gl.prototype.collapse=function(h){this.wh(0);if(h)this.Er()};gl.prototype.wy=function(){return this.FK==1}; -function bx(h){gl.call(this,"vcolumn");this.br=h;this.Vb();this.v0=D.w("div");this.v0.setAttribute("style","cursor:default;"); -this.aaG=this.a3i.bind(this);this.a2t=this.a3N.bind(this);this.aaC=this.aaX.bind(this);D.uh(this.j,this.aaG); -this.j.appendChild(this.v0);this.JV=D.w("div","");this.v0.appendChild(this.JV);this.FZ=null;this._1=D.w("div","float"); -this.NU=[];this.ag7=null;this.agu=0}bx.prototype=new gl;bx.prototype.a3i=function(h){if(h.target!=this.j)return; -if(!this.wy())return;this.ag7=D.q6(h,document.body);this.agu=this.br;D._s(document,this.a2t);D.A4(document,this.aaC)}; -bx.prototype.a3N=function(h){var e=D.q6(h,document.body);this.br=this.agu+this.ag7.x-e.x;this.Vb();var $=new B(D.E.P,!0); -$.data={e:D.U.Vo};this.f($)};bx.prototype.aaX=function(h){D.xR(document,this.a2t);D.oT(document,this.aaC)}; -bx.prototype.agF=function(h){h.k("showFloat",this.aju,this);h.k("hideFloat",this.bP,this);this.NU.push(h); -h.parent=this;this.v0.appendChild(h.j)};bx.prototype.a5s=function(G){var h=this.NU[G];h.removeEventListener("showFloat",this.aju,this); -h.removeEventListener("hideFloat",this.bP,this);this.NU.splice(G,1);h.parent=null;this.v0.removeChild(h.j)}; -bx.prototype.aiW=function(){return this.NU.length};bx.prototype.OX=function(){for(var G=0;G"; -e.addEventListener("touchmove",D.LT,!1);this.afu=!0;this.Ke=[];var $=this.aat=D.w("div");$.setAttribute("style","float:right; padding:4px;display:none; position:relative;z-index:1;"); -this.j.appendChild($);var c=["",[0,13,3],[0,13,4],[0,13,5],"Blog","API",Z+"",Z+"",Z+""]; -for(var G=0;G0){this.Sh.x=e.x-10;this.R2.x=0}if($+10c+q,P=D.aR,a=P("b`bRH"),j=P("SU\\VOAV"); -Z[a][j]=E?"":P("][WK")};function gT(){ev.call(this);this.D0=null;this.sx=gT.g$;this.akb="";this.j=D.w("div","rightbar"); -this.N0=[new bx(380),new bx(265)];this.NU=[new iP,new iP,new iP,new iP,new iP,new iP];this.abb=[]}gT.prototype=new ev; -gT.prototype.B=function(){var h=this.sx;for(var G=0;G0)Z.push(q)}$=Z}for(var G=0; -G<$.length;G++){var a=[],j=this.fI.length,L=null,H=-1;for(var E=0;E<$[G].length;E++){var P=$[G][E].F,_=this.a6H(P.id,h.si),J=h.keys[_]; -this.Nh.push(P);var S=new is(P.name,J,P.dC,this.fI.length,G,$[G].length>1);this.fI.push(S);var N=this.aai[P.id]; -if(N==null)N=0;if(N>H){H=N;L=S}S.k(D.E.L,this.AI,this);S.k("mover",this.vN,this);a.push({name:P.name,kA:P.dC,lA:J?J.S_:""})}this.dH.push(L); -if(a.length==1)this.eS.push(null);else{var Y=new dW(a);Y.a0Q=j;Y.Ab=G;this.eS.push(Y);Y.k("select",this.afw,this); -Y.parent=this}}};iS.prototype.Sy=function(h,e){var $=this.CD=e-11,Z=32;if(1500)this.Ig.appendChild(this.M3.j); -else this.Ig.appendChild(this.YU.j)};iS.prototype.uq=function(h,e){this.DF(e.$P)};iS.prototype.if=function(h,e){this.KY=h; -if(e==iM.uG){this.$n(this.qT);this.DF(h.$P)}this.Tt.afz(h.oV,h.XK)};function is(h,e,$,Z,c,q){ev.call(this); -this.tu=0;this.a9Q=this.a9E.bind(this);this.Ab=c;this.Rx=Z;this.pO=h;this.a4R=e;this.aiD=q;this.dC=$; -this.j=D.w("button","");this.j.innerHTML=D.H$(this.dC);if(this.aiD){var E=D.w("img","gsicon");E.setAttribute("src",PIMG["tools/corner"]); -E.setAttribute("style","position:absolute; right:0; bottom:0; width:100%; height:100%;");this.j.appendChild(E)}this.B(); -D.uh(this.j,this.Aw.bind(this));this.j.addEventListener("click",this.IB.bind(this),!1);this.j.addEventListener("contextmenu",is.pt,!1)}is.prototype=new ev; -is.pt=function(h){h.stopPropagation();h.preventDefault();return!1};is.prototype.B=function(){var h=this.a4R?" ("+this.a4R.S_+")":""; -this.j.setAttribute("title",e_.get(this.pO)+h)};is.prototype.Aw=function(h){this.tu=setTimeout(this.a9Q,160)}; -is.prototype.IB=function(h){clearTimeout(this.tu);var e=new B(D.E.L,!1);e.target=this;e.id=this.Rx;this.f(e)}; -is.prototype.a9E=function(h){var e=new B("mover",!1);e.target=this;e.id=this.Rx;this.f(e)};is.prototype.am5=function(h){this.j.setAttribute("class",h?"toolbtn active":"toolbtn")}; -function dP(){ev.call(this);this.j=D.w("div","topbar");this.NT=D.w("span","");this.a23=0;this.j.appendChild(this.NT); -this.GY=null;this.HJ=null;this.xa=[];this.da=[];var h=this.Aw.bind(this);for(var G=0;G1||L.t[L.C[0]].vG())}}},{name:[6,12,1]}],rS:[{sub:[{c:D.E.A,F:f.S$,g:{e:o.kd}},{c:D.E.A,F:f.S$,g:{e:o.u0}},{c:D.E.A,F:f.S$,g:{e:o.fg}}]},{c:D.E.A,F:f.S$,g:{e:o.pA}},{c:D.E.P,g:{e:D.U.tr,yq:"duplinto"}},{c:D.E.A,F:f.S$,g:{e:o.Ml}},{sub:bY.mX(!0)},{sub:[{c:D.E.A,F:f.lO,g:{e:"newfill",wx:0}},{c:D.E.Kz,g:f.vA.GC(1)},{c:D.E.Kz,g:f.vA.GC(2)}]},{sub:bY.EF()},{sub:[{c:D.E.A,F:f.S$,g:{e:o.KN,bM:"RvlA"}},{c:D.E.A,F:f.S$,g:{e:o.KN,bM:"HdAl"}},{c:D.E.A,F:f.S$,g:{e:o.KN,bM:"RvlS"}},{c:D.E.A,F:f.S$,g:{e:o.KN,bM:"HdSl"}},{c:D.E.A,F:f.S$,g:{e:o.KN,bM:"Trns"}},{c:D.E.A,F:f.S$,g:{e:o.Y_}},{c:D.E.A,F:f.S$,g:{e:o.aM}},{c:D.E.A,F:f.S$,g:{e:o.HW}}]},{sub:[{c:D.E.A,F:f.S$,g:{e:o.eZ,a28:!1}},{c:D.E.A,F:f.S$,g:{e:o.eZ,a28:!0}},{c:D.E.A,F:f.S$,g:{e:o.eZ,ams:!0}},{c:D.E.A,F:f.S$,g:{e:o.iq}},{c:D.E.A,F:f.S$,g:{e:o.ps}}]},{c:D.E.A,F:f.S$,g:{e:o.C9}},{sub:[{c:D.E.Kz,g:{Lw:"newPlacedLayer"}},{sub:P},{c:D.E.Kz,g:{Lw:"placedLayerEditContents",TJ:{classID:"placedLayerEditContents"}}},{c:D.E.A,F:f.S$,g:{e:o.iG}}]},{c:D.E.Kz,g:{Lw:"rasterizeLayer",TJ:{classID:"rasterizeLayer",null:bw.NQ("Lyr",!0)}}},{c:D.E.A,F:f.S$,g:{e:o.Wz}},{c:D.E.A,F:f.S$,g:{e:o.VT}},{sub:[{c:D.E.A,F:f.S$,g:{e:o.iK,oD:0}},{c:D.E.A,F:f.S$,g:{e:o.iK,oD:1}},{c:D.E.A,F:f.S$,g:{e:o.iK,oD:2}},{c:D.E.A,F:f.S$,g:{e:o.iK,oD:3}}]},{sub:[{c:D.E.A,F:f.S$,g:{e:o.tG,oD:"makeframes"}},{c:D.E.A,F:f.S$,g:{e:o.tG,oD:"merge"}}]},{c:D.E.A,F:f.S$,g:{e:o.lb}},{c:D.E.A,F:f.S$,g:{e:o.U1}},{c:D.E.Kz,g:{Lw:"flattenImage"}}]},dP.a1c(!1),function(){var L={name:[0,6],items:[{name:[24,18,4],lA:[Z,e,h.nC],lv:!0}],rS:[{c:D.E.A,F:f.HP,g:{e:"applylast"}}]}; -for(var G=0;G=0)D.so(this.js[P].j,"wdisabled");this.j.appendChild(E.j);this.js.push(E);this.ln(E);E.uq(e,$,Z,c)}; -d5.prototype.ln=function(h){var e=this.uA,$=this.N5,Z=h.uX(e,$),c;if(Z!=null){c=Z}else{Z=new eu(0,0); -c=h.ajo();if(c==null){var q=this.js.indexOf(h)+1;if(e<450||$<450)c=new eu(0,0);else c=new eu(q*150,q*150)}}h.j.style.left=c.x+"px"; -h.j.style.top=this.j.offsetTop+c.y+"px";h.Sy(this.uA-Z.x*2,this.N5-Z.y*2-34)};d5.prototype.if=function(h,e){this.D0=h; -for(var G=0;G=0)D.ma(this.js[$].j,"wdisabled");if(this._6.parentNode==this.j)this.j.removeChild(this._6)}; -window.onload=function(){var h=new ft;document.body.appendChild(h.j)}}()) \ No newline at end of file +(function(){function es(){this.nN={};this.vu={}}es.ov=[];es.CN=function(n){var F=es.ov;if(F.length!=0){var O=new k(V.E.MZ); +for(var e=0;e0};es.prototype.addEventListener=function(n,F){this.k(n,F,null)}; +es.prototype.k=function(n,F,O){if(this.nN[n]==null){this.nN[n]=[];this.vu[n]=[]}this.nN[n].push(F);this.vu[n].push(O); +if(n==V.E.MZ){var I=es.ov;if(I.indexOf(this)==-1)I.push(this)}};es.prototype.removeEventListener=function(n,F){var O=this.nN[n]; +if(O==null)return;var I=O.indexOf(F);if(I<0)return;var x=this.vu[n];O.splice(I,1);x.splice(I,1);if(n==V.E.MZ&&O.length==0){var r=es.ov; +r.splice(r.indexOf(this),1)}};es.prototype.A=function(n){n.currentTarget=this;if(n.target==null)n.target=this; +var F=this.nN[n.type];if(F==null)return;var O=this.vu[n.type];for(var e=0;e=0; +if(n==null)return"";var O=[];for(var e=0;e>>e&1)==1)break;e++}if(F==0||O[e][1]==""){if((F&15)!=0&&da.G2(n,[33,126])>.7)e=0; +else if(F==0)e=0;else{e=0}}return O[e][1]};da.rC=120;da.LJ=20;da.cols=16;da.pL=function(n){var F=n.name.postScriptName; +if(F==null)return null;return F.replace(/ /g,"-")};da.RQ=function(n){var F=n.name,O=F.typoFamilyName?F.typoFamilyName:F.fontFamily,I=F.typoSubfamilyName?F.typoSubfamilyName:F.fontSubfamily,x=da.a9U,r=O.toLowerCase(); +for(var e=0;e128)x=this.m2(F,x);if(this.al3[n]==null){this.al3[n]=1; +var P=Date.now()-this.ao6>2e3?2e3:0;this.ao6=Date.now();alert(n+" \u27A1 "+x,P)}return this.rs(x,F)}this.hH[n]="a"; +var C=new k(V.E.P,!0);C.data={e:V.U.Fb,b9:{url:"rsrc/fonts/"+O}};this.A(C)};da.prototype.m2=function(n,F,O){var I=this.D7[F]; +if(I&&Typr.U.codeToGlyph(I,n)!=0)return F;var x=this.j9(),r=da.afG(n),_=r[0];if(x[F]&&(x[F][3]&_)==0){if(O)for(var e=0; +ed?1:0}for(var e=0;eF[2])return 1;return 0};da.agv=function(n,F){if(n[5]=="fs/"+n[2]+".otf")n[5]=""; +else if(n[5]=="gf/"+n[2]+".otf")n[5]="a";if(n[2]==(n[0]+"-"+n[1]).replace(/\s/g,"")){n[2]=""}else if(n[2]==n[0].replace(/\s/g,"")){n[2]="a"}if(F){if(n[0]==F[0])n[0]=""; +if(n[1]==F[1])n[1]="";if(n[3]==F[3])n[3]="";if(n[4]==F[4])n[4]=""}return n.join(",")};da.ady=function(n,F){n=n.split(","); +if(n[0]=="")n[0]=F[0];if(n[1]=="")n[1]=F[1];if(n[3]=="")n[3]=F[3];else n[3]=parseInt(n[3]);if(n[4]=="")n[4]=F[4]; +else n[4]=parseInt(n[4]);if(n[2]=="")n[2]=(n[0]+"-"+n[1]).replace(/\s/g,"");else if(n[2]=="a")n[2]=n[0].replace(/\s/g,""); +if(n[5]=="")n[5]="fs/"+n[2]+".otf";else if(n[5]=="a")n[5]="gf/"+n[2]+".otf";return n};da.agY={ArialMT:"LiberationSans","Arial-BoldMT":"LiberationSans-Bold","Arial-ItalicMT":"LiberationSans-Italic","Arial-BoldItalicMT":"LiberationSans-BoldItalic",TimesNewRomanPSMT:"LiberationSerif","TimesNewRomanPS-BoldMT":"LiberationSerif-Bold","TimesNewRomanPS-ItalicMT":"LiberationSerif-Italic","TimesNewRomanPS-BoldItalicMT":"LiberationSerif-BoldItalic",CourierNewPSMT:"LiberationMono","CourierNewPS-BoldMT":"LiberationMono-Bold","CourierNewPS-ItalicMT":"LiberationMono-Italic","CourierNewPS-BoldItalicMT":"LiberationMono-BoldItalic",Courier:"CourierPrime",TrebuchetMS:"SourceSansPro-Regular","TrebuchetMS-Bold":"SourceSansPro-Semibold","TrebuchetMS-Italic":"SourceSansPro-It","TrebuchetMS-BoldItalic":"SourceSansPro-SemiboldIt","Times-Roman":"LiberationSerif",Impact:"Anton-Regular",Calibri:"SourceSansPro-Regular","Calibri-Italic":"SourceSansPro-It","Calibri-Bold":"SourceSansPro-Bold",CalibriBold:"SourceSansPro-Bold","Times-Roman":"LiberationSerif","Times-Italic":"LiberationSerif-Italic","Times-Bold":"LiberationSerif-Bold","Helvetica-Bold":"LiberationSans-Bold","HelveticaNeue-Thin":"Roboto-Thin","HelveticaNeue-Light":"Roboto-Light",HelveticaNeue:"Roboto-Regular","HelveticaNeue-Roman":"Roboto-Regular","HelveticaNeue-Medium":"Roboto-Medium","HelveticaNeue-Bold":"Roboto-Bold","HelveticaNeue-BoldItalic":"Roboto-BoldItalic","HelveticaNeue-Black":"Roboto-Black","HelveticaNeue-Heavy":"Roboto-Black","SFProText-Light":"Roboto-Light","SFProText-Regular":"Roboto-Regular","SFProText-Roman":"Roboto-Regular","SFProText-Medium":"Roboto-Medium","SFProText-Semibold":"Roboto-Medium","SFProText-Bold":"Roboto-Bold","SFProText-BoldItalic":"SFProText-BoldItalic","SFProText-Black":"Roboto-Black","SFProText-Heavy":"Roboto-Black","SFProDisplay-Light":"Roboto-Light","SFProDisplay-Regular":"Roboto-Regular","SFProDisplay-Roman":"Roboto-Regular","SFProDisplay-Medium":"Roboto-Medium","SFProDisplay-Semibold":"Roboto-Medium","SFProDisplay-Bold":"Roboto-Bold","SFProDisplay-BoldItalic":"SFProDisplay-BoldItalic","SFProDisplay-Black":"Roboto-Black","SFProDisplay-Heavy":"Roboto-Black","SFUIText-Light":"Roboto-Light","SFUIText-Regular":"Roboto-Regular","SFUIText-Roman":"Roboto-Regular","SFUIText-Medium":"Roboto-Medium","SFUIText-Semibold":"Roboto-Medium","SFUIText-Bold":"Roboto-Bold","SFUIText-BoldItalic":"SFUIText-BoldItalic","SFUIText-Black":"Roboto-Black","SFUIText-Heavy":"Roboto-Black",Verdana:"DejaVuSans","Verdana-Bold":"DejaVuSans-Bold","Verdana-Italic":"DejaVuSans-Oblique","Verdana-BoldItalic":"DejaVuSans-BoldOblique","MyriadPro-Regular":"PTSans-Regular","MyriadPro-Bold":"PTSans-Bold","MyriadPro-LightIt":"PTSans-Italic","MyriadPro-Semibold":"PTSans-Bold","MyriadPro-BlackCond":"PTSans-NarrowBold",Cambria:"Oranienbaum-Regular",Georgia:"CharisSIL","Georgia-Bold":"CharisSIL-Bold","Georgia-Italic":"CharisSIL-Italic","Georgia-BoldItalic":"CharisSIL-BoldItalic","AGaramondPro-Regular":"EBGaramond08-Regular","AGaramondPro-Bold":"EBGaramond08-Bold","AGaramondPro-Italic":"EBGaramond08-Italic",Garamond:"EBGaramond08-Regular",FontAwesome:"FontAwesome5FreeSolid","ProximaNova-Regular":"Metropolis-Regular","ProximaNova-Semibold":"Metropolis-SemiBold","ProximaNova-Light":"Metropolis-Light",BellMT:"GalatiaSIL",PalatinoLinotype:"TeXGyrePagella-Regular","PalatinoLinotype-Bold":"TeXGyrePagella-Bold","PalatinoLinotype-Italic":"TeXGyrePagella-Italic","PalatinoLinotype-BoldItalic":"TeXGyrePagella-BoldItalic"}; +da.prototype.j9=function(){if(FNTS.map==null){var n=FNTS.list,F=[];for(var e=0;eF()/20};dW.j_=function(){return dW.a3o()!=null}; +dW._m=function(){return dW.yB};dW.Nf=function(n){window.addEventListener("message",dW.acF,!1);setInterval(dW.uC,5e3); +if(dW.j_()){dW.kg=n;dW.Nx()}else setTimeout(n,1)};dW.uC=function(){if(dW.j_()&&dW.$J){dW.x8(dW.Yv()); +dW.$J=!1}};dW.Pn=function(n){dW.kg=n;var F="https://www.photopea.com/papi/login.php?redirect="+encodeURIComponent(window.location.href); +dW.Rk=window.open(F,"_blank")};dW.aaZ=function(){localStorage.removeItem(dW.EW+"_uid");localStorage.removeItem(dW.EW+"_provider"); +localStorage.removeItem(dW.EW+"_token");dW.yB=null};dW.acF=function(n){if(n.data instanceof ArrayBuffer||n.data instanceof Object)return; +if(n.data.charAt(0)!="{")return;var F=JSON.parse(n.data);if(F.prms==null)return;var O=F.prms.split(","); +if(O[0]=="papi_logged_in"){localStorage[dW.EW+"_uid"]=O[1];dW.gr(O[2]);localStorage[dW.EW+"_provider"]=O[3]; +dW.Rk.close();dW.Nx()}if(O[0]=="payment_complete"){dW.Ti.close();dW.Nx()}};dW.a3o=function(){var n=localStorage[dW.EW+"_token"]; +if(n!=null&&Date.now()*.001+10r?1:-1;if(d)return-1;if(w)return 1;return x>r?1:-1},F=LNG.langs.slice(0);F.sort(n); +return F};hl.afg=function(n){hl.Pk=n};hl.a3=function(n){for(var e=0;e")==-1)hl.YY[JSON.stringify(n[e])]=n[e+1]}; +hl.hu=function(n){var F=-1,O=LNG.langs;for(var e=0;e&\x7F"); +if(V.vz[P]!=!0){d=1}var C=F[I](n("u}-"));C[w](n("zx"),Z);C[w](n("$(0&\""),n("(}{.%ZXVY5){d=4}O[_](C)}if(i8.Em)d=5; +if(i8.ZJ)d=6;return d};i8.a26=function(n){var F=V.by("y),+1ZRU:.787=mlITWRZVgphaifg}u~!C{+,P5)2328eDPnDJ\\NhYdgbjf2q}"),O={method:"HEAD",mode:"no-cors"},I=new Request(F,O); +fetch(I).then(function(x){return x}).then(function(x){n(!1)}).catch(function(x){i8.Em=!0;console.clear(); +n(!0)})};i8.ajW=function(){var n=V.gi("UU[YW#ECC8"),F=V.gi("VQ](RUK>@B8p71*03m}x'"),O=V.gi("WQRMKT"),I=this.ao1[n][F](); +if(I[O]<4){i8.ZJ=!0;this.aox(!0)}};i8.aoB=function(){var n=V.vz._cwY,F=V.vz[V.RF("$y+n&-(5>@")],O="FQi[VE];;J6@?18',!'*3$|*niu~hgcWhlOUU`LOIT53A-11/)~$'>-cvys~_]k[RQiYHEJMWH@N--E$++|!|~t*hht,{HaWP_NrcLBNWIDN>049?5(+3qq}3$pp{ZjkoMi6UEJCLAQ/.+47-09>Tspy|ru~(xAaVl2Tcm]|LMZ\\",I=String.fromCharCode(32); +n(V.N7(O)+I+I+i8.rE());if(!dW.$m())F(i8.aoB,Math.round(Math.PI*1e4))};i8.hh=function(n){var F=V.RF,O=V.vz[F("u#z/*%1:")],I=F("t&|{1%h2.94@I"),x=F("$y+[145/+AC7"),r=F("%y/.`/1:.:C"),_=O[I](n[0]); +for(var d in n[1]){if(d=="txt")_[r]=n[1][d];else _[x](d,n[1][d])}return _};i8.akY=function(n,F,O,I,x){V.em(O); +var r=V.RF,_=r("r$'\x7F+$f.283"),d=r("$y+[145/+AC7"),w=r("rx{_3%1:u5BF:F@P"),Z=r("#y'&~#("),P=r("$(0&\""),C=r("$&z"),W=r("r'0( "),v=r("%y/.`/1:.:C"),L=r("u}-"),H=V.by("zz*{+&"),y=V.vz[r("u#z/*%1:")],g=r("t&|{1%h2.94@I"),Q=r("$w)#-4"),J=V.by("z#+ 05e,0300*300){var b=y[r("xy+_)%0+7@BtN,N[NWLNBc~iSbedj4,/fsy:%!~{+-5*6?[4CDhSqqY]aQ bai,kw)6/ \"#)}$D_JC8@9GRk@CFQT_z~zy\\.`*~q$}(/?L?H=?3ToZDSVU[%| Wdj+uqol{}&z'0L%45YDbbnnArE~}\"\"W$[hn/nz,92t*3+#D_=>D7R5f9bWJ\\V`gw%w!v}|-H3,!)\"0;T1P@Id%jeZb[it.juxs{w*y#>>AGFKkSVQFNGU`yVad_gcuen8p}w6V<7,4-;F_W4?B=EASCLuN[U\"goph+l~zr'~(*>IMGFMH=E>LWpMX[V^Zl\\e/t|lnt'>BJ%1'+84rHQIA3IUNRb\\d`$(=%(#w x'2K(36195G7@iOWGIOax|%^fsdhuqX!~-% .p7,2X\\qY\\]k!hsPVhZtepsnvr0P61&.'5@Y06H:TEPSNVRoorxW\\+3xl$%yX~o&5=3*270+30)F=3;if(n>=4*270+30)F=4; +return F};i8.ahb=function(){var n=V.RF,F=n("r$'\x7F+$f.283"),O=n("$y+[145/+AC7"),I=n("rx{_3%1:u5BF:F@P"),x=n("#y'&~#("),r=n("$(0&\""),_=n("$&z"),d=n("r'0( "),w=n("%y/.`/1:.:C"),Z=n("u}-"),P=V.by("zz*{+&"),C=V.vz[n("u#z/*%1:")],W=n("t&|{1%h2.94@I"),v=n("$w)#-4"),L=V.by("z#+ 05e,0B:FPLJGCku+e[mqqp%nlz%yRNiTxA=MIJg,Rp7fhpeqz+*l>p:}46979O\\OX=IAVYj&pTWli -&pn/J5,(&#O),<0S`YJLDPPMXq-wpemft 9mp*++~1-N&N?C;GQMKHDlv,f\\nrrq&om{&zS=JC9@?OjUzI\\NRZh_T^awhw!hh~n21sv")),g=V.vz,Q=-1,J=g[V.by("f#!}f")],A=V.by("xy'"),p=V.by("TU"),U=V.by("Vi"),h=0; +if(J&&J[A]){var j=J[A];if(j==U)Q=0;if(j==p)Q=1}var b=Q==-1?null:i8.hh(y[Q]),s=this.Fp,G=this.a9n,T=this.head,z=this.Sa,m=V.by("~u*\"'/P)9ADBCrlnR]"),$=[.2,.6,.2],o=Math.random(); +while($[h]rzwc$!$V>CP/l{m|ww(.#'7SZYD7IIILLTPw]a!e\\phmurryz~.HON3*>6;CODBULryxdbff]qinv7>=!|!2.%916>^edSHFYPv~'$#bbijn}8EBE"),D=X.split(","),f=C[W](P); +for(var e=0;e9EN~Y,JpMSgcao'/gvx\"u\"+p&.'5@Y3A8MHCOX\"SSbTc^*nrjv37L}}-~.)TA?9G;`TLNM\\_^~f\\mmoqyn`t+*AV((7)83^7CIPEjn$il-megfuxw8|!x%A>fgyJWNX=LONT}ux]eUW]o-i3lz$s!|}**'2W;5Gd@=LRFLyOUl6cr=27=CAFKISWPKR,2FB@NgfhYc)u|Zf^mei\\\\V8' 4\"HMLN@k\"A9>CNIU^Ldlf^!2Fxm}%z#~@DKg(>2]AEPcgmd\\]cV|2rjlkz}|=&z' FJ_ESUYn"),i=C[W](v); +i[w]=R;T[F](i)}}else if(G==2){var t=i8.ND(z);if(!i8.fy){i8.fy=!0;var X=V.by("uu,{J*(R:5?GEIA@oHWXM$$'r/53eMR_>[j\\kffv|qu&bih3&888;;C?'lp0TK_W\\daahim|W^]\"x-%*2>31D;\")(SQUUL`X]eFMLoko!|s( %-mtsbWUh_&.,kkrsw'AI"),D=X.split(","),R=V.by("9z-)!5-68LW[UT[UCWg^WkY4!003~;A?9Ay 40.687FIHZz`RLalH@BApsrWm|$v(,BF[<465DGFfKMTJIOgdhXnbckgwst2R8\"40(<4=?[_UFFbmaY[Zilk,sihn'c(w.\"?_bH_NWZWSKML[^]}fjZptu%EH.CDGC97%9I2CRrX@NEZUP\\e\"hobr|Ynxtu*(._.1OL)55K;iIG#omySYmigu/)1j2PTTSgkS~\\Xm>twxrn%'z@=##9)W@6B;?OEGgqiw-^^#c* }k 0||,}-(EeK4_8GIRFR[AV^Wep*cqh}xs )R$$3%4/Z?C;Gcg|NN]O^Y%qoiwk1%|~}-0/O7->>@BJ?1E[Zq'XXgYhc/gsy!u;?T\"M6+=lCFGA=SUInpQQgW&ndpim}su;C:239,RJMPpQIKJY\\[{`d\\h%\"JK].;2JBQIM@@:{jcwe,102$Oe%|\"'2-9B0HPJBdu*\\Qah^fb$(/Kk\"uA%)4GKQH@AG:`uVNPO^a`!i^jc*.C)79=R"); +for(var N=0;N@rtvMOL"));hK[O](V.by("t!x.1"),V.by("pu(y~1)?).4")); +var R=V.by("(u*:~%4<=5ECUu[VKSLZe~U[jrsk{y,/O50%-&4?X/5DLMEUSeehnmfm`8\\a%E-0tz*23+;9Y@G:eKSTLnPb^Vjbkm*.('.rx(01)97WAB<=@AQ#Iol}(ZY[1de3=mFuBL\"$TQ)__3`=lBpz|OQS*,)|'<$'(6K"),i=C[W](v); +i[w]=R;hK[F](i);s[F](M)}else if(G==2){var t=i8.ND(z);for(var e=0;eA@suI|T"));hK[O](V.by("t!x.1"),V.by("pu(y~1)?).4")); +var R=V.by("(u*:~%4<=5ECUu[VKSLZe~U[jrsk{y,/O50%-&4?X/5DLMEUSeehnmfm`8\\a%E-0tz*23+;9Y@G:eKSTLnPb^Vjbkm*.('.rx(01)97WAB<=@AQ#IolO(&]_5a43k>@uBLN!VQ_[dd`:[{ak\\Pfe#a[savi{u '6"),V.by("wu$.#"));i[w]=R;T[F](i)}}else{console.log(2);var bD=C[W](v);bD.setAttribute(_,V.by("y),+1ZRU.@8iARrqq|S~P~Wcirdixxz$@$}0M2:*77D<Y17bIDNVTXPOTcd-245=+81v~/H&29T,2]D?IQOSKJO^_(-138&3,qy*C!-4O'-X?:DLJNFEJYZ#(,/4!.'lt%>{(/J\"(S:5?GEIA@ETU}#(%({)\"go 9v#*E|#N50:B@D<;@OPx}# $vU")),iM=[co[0]]; +if(G==2)iM=co.slice(1,1+i8.ND(z));for(var e=0;eDate.now()*.001+30){while(i6.uR.length>0)i6.uR.pop()()}else{if(i6.He==0)i6.He=1; +gapi.auth.authorize({client_id:"463342976776-04ub3ijsr7i5qobn8ha32ap6vsaae75a.apps.googleusercontent.com",scope:["https://www.googleapis.com/auth/drive.install","https://www.googleapis.com/auth/drive.file"].join(" "),immediate:i6.He==2?!1:!0},i6.abA)}}; +i6.abA=function(n){if(n&&!n.error){i6.P8=n;i6.He=!1;i6.v0()}else if(i6.He==1){i6.He=2;i6.v0()}else alert("Error: "+n.error)}; +i6.LZ=function(){return"access_token="+i6.P8.access_token+"&token_type="+i6.P8.token_type};i6.Zj=function(){return i6.P8.token_type+" "+i6.P8.access_token}; +function hu(){}hu.Hy=function(n){var F=new Uint8Array(n),O=0,I={J$:[],Gr:[],list:[]},x=Y.Ys(F,O);O+=2; +if(x<=2){return hu.abN(F)}var r=Y.Ys(F,O);O+=2;var _=Y.su(F,O,8);O+=8;var d=Y.c(F,O);O+=4;if(d>0)I.J$=hu.eC(F,O,d,r,x); +O+=d;var w=Y.su(F,O,8);O+=8;var Z=Y.c(F,O);O+=4;if(Z>0)I.Gr=h$.QQ(F,O,Z);O+=Z;var P=Y.su(F,O,8);O+=8; +var C=Y.c(F,O);O+=4;if(C>0){var W={};dh.oS(F,W,O+4);I.list=W.Brsh.v}O+=C;var v=I.list;for(var e=0;e>>e&1;if(d){if(r==0){var w=aD.vK(n,F);F+=2+2*w.length}else{var w=aD.af5(n,F); +F+=256}x.push(w)}else x.push(r==0?[0,0,255,255]:aD.a9h())}var Z=bS.tc("curv");for(var e=0;e<4;e++){if(r==0){var P=x[e],C=[]; +for(var W=0;W1){}if(W){if(W.v.masterFXSwitch==null)W.v.masterFXSwitch={t:"bool",v:!0}; +is.Ke(W.v)}}return I};fL.dN=function(n,F){n.La.Nm.v=F};fL.WH=function(n){var F=new gV,O=0;Y.bY(F,O,2); +O+=2;Y.d3(F,O,"8BSL");O+=4;Y.bY(F,O,3);O+=2;var I=O;O+=4;O=h$.nV(F,O,n.Su);Y.QI(F,I,O-I-4);var x=n.Lx.length; +Y.QI(F,O,x);O+=4;for(var e=0;e>>2)-16;console.log(Y.sX(F,v,64)); +console.log(Y.sX(W,v,64));console.log(F.slice(v,v+64));console.log(W.slice(v,v+64));throw e}return[I]}; +hX.X3=function(n,F){var O=Y.c(n,F);return Y.su(n,F+4,O)};hX.KN=function(n,F,O){Y.QI(n,F,O.length);Y.d3(n,F+4,O)}; +hX.WH=function(n){var F=new gV,O=0;Y.QI(F,O,16);O+=4;Y.HS(F,O,n.WL+"\0");O+=4+n.WL.length*2+2;F.nz(O,1); +F.data[O++]=n.exp?1:0;var I=n.Nv.length;Y.QI(F,O,I);O+=4;for(var e=0;e>>2)}else if(I==3||I==4){w=new Float32Array(_*d*2); +var Z=0,P=0,C=!0;O=I==3?32:16+8+40;while(O1e3)throw"e";if(O==0)O=4;return Y.su(n,F+4,O).trim()}; +dh.S5=function(n,F){var O=Y.Z3(n,F);return O==0?8:4+O};dh.WO=function(n,F,O){var I="warp list Comp xx xy yx yy tx ty PinP PnRt PnOv PnDp xor PuX0 PuX1 PuX2 PuX3 PuY0 PuY1 PuY2 PuY3 base kana ruby box flow trim then else".split(" "),x=4=12)I[d].mf=Y.su(n,F+8,4); +break;case"lsdk":I.lsct={type:Y.c(n,F)};break;case"lyvr":I[d]=Y.c(n,F);break;case"lnsr":var C={artb:1,bgnd:1,cont:1,layr:1,lset:1,rend:1,shap:1,user:1,____:null}; +I[d]=Y.su(n,F,4);break;case"lspf":I[d]=Y.c(n,F);break;case"lclr":I[d]=Y.Ys(n,F);break;case"luni":I[d]=Y.ca(n,F); +break;case"fxrp":I[d]=new aE(Y.z6(n,F),Y.z6(n,F+8));break;case"artb":case"artd":I[d]={};dh.oS(n,I[d],F+4); +break;case"SoCo":I[d]={};dh.oS(n,I[d],F+4);break;case"GdFl":I[d]={};dh.oS(n,I[d],F+4);is.eT(I[d],d); +break;case"PtFl":I[d]={};dh.oS(n,I[d],F+4);is.eT(I[d],d);break;case"CgEd":var W=I.brit=bS.tc("brit"),v={}; +dh.oS(n,v,F+4);W.Brgh.v=v.Brgh?v.Brgh.v:0;W.Cntr.v=v.Cntr?v.Cntr.v:0;W.useLegacy.v=v.useLegacy?v.useLegacy.v:0; +break;case"brit":if(I.brit==null){var W=I.brit=bS.tc("brit"),v={};W.Brgh.v=Y.W0(n,F);W.Cntr.v=Y.W0(n,F+2); +W.useLegacy.v=!1}break;case"levl":var L=n.buffer.slice(F,F+w);I[d]=hd.Hy(L);break;case"curv":I[d]=aD.EK(n,F,w); +break;case"expA":var H=Y.Ys(n,F),y=I[d]=bS.tc("expA");y.Exps.v=Y.LD(n,F+2);y.Ofst.v=Y.LD(n,F+6);y.gammaCorrection.v=Y.LD(n,F+10); +break;case"vibA":I[d]={};dh.oS(n,I[d],F+4);break;case"hue2":I[d]=cy.EK(n,F,w);break;case"blnc":var y=I[d]=bS.tc(d); +y.PrsL.v=n[F+18]==1;var g=["ShdL","MdtL","HghL"];for(var e=0;e<3;e++)for(var Q=0;Q<3;Q++)y[g[e]].v[Q].v=Y.W0(n,F+e*6+Q*2); +break;case"blwh":var J={};dh.oS(n,J,F+4);var y=bS.tc(d),A="Bl Cyn Grn Mgnt Rd Yllw tintColor useTint".split(" "); +for(var e=0;e>0&1)==1;t.Tu=(N>>1&1)==0;t.isEnabled=(N>>2&1)==0; +t.b=fH.WA(n,F+8,w-8,r.d,r.v);break;case"shmd":I[d]={};var hK=Y.c(n,F),G=F+4;for(var e=0;e>0&1){d=F[O];O++}if(W>>1&1){w=Y.z6(F,O);O+=8}if(W>>2&1){Z=F[O];O++}if(W>>3&1){P=Y.z6(F,O); +O+=8}if((O-C&1)==1)O++;n.IQ=[d,w,Z,P]}else{if(I==20)O+=2;else{n.a8=eQ.Ok(F,O);O+=18}}return x+I};eQ.a6U=function(n,F,O){Y.QI(F,O,0); +O+=4;if(n.r==null)return O;var I=n.B1(),x=n.add.vmsk,r=O,_=!0;Y.QI(F,O,0);Y.S3(F,O,n.r.rect);O+=16;Y.rx(F,O,n.r.color); +O+=1;eQ.PL(n.r,F,O,_);O+=1;if(_){if(n.a8){eQ.a47(F,O,n.a8);O+=18}Y.rx(F,O,15);O+=1;Y.rx(F,O,I?I.JP:255); +O+=1;Y.aL(F,O,I?I.RI:0);O+=8;Y.rx(F,O,x?x.JP:255);O+=1;Y.aL(F,O,x?x.RI:0);O+=8;O++}Y.QI(F,r-4,O-r);return O}; +eQ.Ok=function(n,F){var O=new K.FZ;eQ.Ni(O,n,F);F+=1;O.color=n[F];F+=1;O.rect=Y.sG(n,F);F+=16;return O}; +eQ.a47=function(n,F,O){eQ.PL(O,n,F,!1);F+=1;Y.rx(n,F,O.color);F+=1;Y.S3(n,F,O.rect);F+=16};eQ.Ni=function(n,F,O){var I=F[O]; +n.Tu=(I>>0&1)==0;n.isEnabled=(I>>1&1)==0;n.Qe=(I>>3&1)==1;return I>>4&1};eQ.PL=function(n,F,O,I){var x=0; +if(!n.Tu)x+=1<<0;if(!n.isEnabled)x+=1<<1;if(n.Qe)x+=1<<3;if(I)x+=1<<4;Y.rx(F,O,x)};eQ.aaV=function(n,F,O){var I=Y.c(F,O); +O+=4;if(I==0)return O;if(I!=5*8)console.log("unexpected Layer Blending Ranges content, size:",I);for(var e=0; +e>>3),P=Z&3,C=Z+(P==0?0:4-P); +if(d<=0){return q.f(C)}if(_>3){console.log("unknown compression: "+_,I,x,I*x,d);_=0}if(_==0){if(r+C<=O.length)w=O.slice(r,r+C); +else{w=q.f(Z);for(var e=0;e>>8; +H[p+1]=J&255}}}if(H.length==C)w=H;else{w=q.f(C);for(var e=0;e>>1]=w[e];w=U}return w};gL.n8=function(n,F,O,I,x,r,_){var d=I*x;if(_==0)for(var e=0; +e0;_=x,E-=db){Z=E<128?E:128;if(_<=d-3&&n[_+1]==n[_+0]&&n[_+2]==n[_+0]){for(x=_+3; +x<_+Z&&n[x]==n[_+0];)++x;db=x-_;O[r++]=1+256-db;O[r++]=n[_+0]}else{for(x=_;x<_+Z;)if(x<=d-3&&n[x+1]==n[x+0]&&n[x+2]==n[x+0])break; +else++x;db=x-_;O[r++]=db-1;for(var e=0;e=128){var d=n[F++],w=x+(257-E);while(x+1>>1];if(x)x.Z8=Y.Ys(O,e)}}if(F.IP.r1032){var O=F.IP.r1032,_=Y.c(O,12); +for(var e=0;e<_;e++){var d=O[16+e*5+4],w=Y.Z3(O,16+e*5)/32;F.fT[d].push(w)}}delete F.IP.r1036;delete F.IP.r1039; +if(F.IP.r1050){var Z=Y.c,P=F.IP.r1050,C=Y.c(P,0);if(C==6){var W=4,v=Y.sG(P,W);W+=16;var L=Y.ca(P,W); +W+=4+L.length*2;var H=Z(P,W);W+=4;var y=F.l_;for(var e=0;e0){var Z=n.add.Txt2?n.add.Txt2.cB:null; +n.add.Txt2={};n.add.Txt2.cB=fZ.a6$(I,null,Z)}var P=[n.add.lnk2,n.add.FEid,n.add.Patt],C=n.adf(n.t);n.Rx(C); +n.IP.r1005=new Uint8Array([0,0,0,0,0,1,0,2,0,0,0,0,0,1,0,2]);Y.fV(n.IP.r1005,0,n.gC);Y.fV(n.IP.r1005,8,n.gC); +if(n.rk()){n.IP.r1022=new Uint8Array([0,3+n.TM.length-1,0])}else delete n.IP.r1022;n.IP.r1026=new Uint8Array(n.t.length*2); +for(var e=0;e8)fy.V4(2,Z-O,"Lay: "+d.getName());O=Z;fy.Ta(d,_); +if(w)fy.Ta(w,_)}};fy.Ta=function(n,F){var O=n.rect.X(),I=n.rect.lN(F),x=I.X()/O;if(O>2e3*3e3&&x<.5){if(n.buffer){var r=q.f(I.X()*4); +q.nF(n.buffer,n.rect,r,I);n.buffer=r;n.rect=I}else{var r=q.f(I.X());q.k9(n.channel,n.rect,r,I);n.channel=r; +n.rect=I}alert("Removing hidden parts of layers")}};fy.aoQ=function(n,F,O,I,x){var r=O,_=n.x5;O+=_?8:4; +O=fy.DP(n,F,O,I,x);var d=O-r-(_?8:4);if(d%2!=0)d++;if(_)Y.oO(F,r,d);else Y.QI(F,r,d);return r+d+(_?8:4)}; +fy.DP=function(n,F,O,I,x){var r=n.t.length;Y.bz(F,O,x?-r:r);O+=2;var _=[];for(var e=0;e>>3)}else if(L==1){H=q.f(v);var Q=n.x5?4:2;if(g==0)O+=n.Nq*W*Q;O+=gL.Gb(F,H,C,W,y+g*W*Q,O,Q)}else{console.log("unknown compression of image data: ",L); +return}if(g".charCodeAt(0)){O+=2;break}else{var Z=n[O];if(Z==10||Z==9||Z==32)O++; +else{console.log("unknown byte: "+Z+", char: "+String.fromCharCode(Z),O);O++}}}return O};f8.mK=function(n,F,O,I){Y.d3(F,O,"<<\n"); +O+=3;var x=f8.a5N;for(var r in n){Y.rx(F,O,"\t".charCodeAt(0),I+1);O+=I+1;Y.d3(F,O,"/"+r);O+=1+r.length; +if(x(n[r])||n[r]instanceof Array){Y.d3(F,O," ");O++}else{Y.d3(F,O,"\n");O++;Y.rx(F,O,"\t".charCodeAt(0),I+1); +O+=I+1}O=f8.pJ(n[r],F,O,I+1);Y.d3(F,O,"\n");O++}Y.rx(F,O,"\t".charCodeAt(0),I);O+=I;Y.d3(F,O,">>");O+=2; +return O};f8.ER=function(n,F,O,I){var x=F,r={size:0,G:0};while(!0){while(n[F]==" ".charCodeAt(0)||n[F]=="\t".charCodeAt(0)||n[F]=="\n".charCodeAt(0))F++; +if(n[F]=="<".charCodeAt(0)){r.G={};F=f8.So(n,r.G,F,O+1);break}else if(n[F]=="(".charCodeAt(0)){F+=3; +var _=F;while(!0){if(n[_-1]!="\\".charCodeAt(0)&&n[_]==")".charCodeAt(0)&&(n[_+1]=="\n".charCodeAt(0)||n[_+1]==" ".charCodeAt(0)))break; +else _++}r.G=Y.IB(n,F,_);F=_+2;break}else if(n[F]=="[".charCodeAt(0)){F++;r.G=[];while(n[F]==" ".charCodeAt(0)||n[F]=="\t".charCodeAt(0)||n[F]=="\n".charCodeAt(0))F++; +while(n[F]!="]".charCodeAt(0)){var d=f8.ER(n,F,O+1,I);r.G.push(d.G);F+=d.size;while(n[F]==" ".charCodeAt(0)||n[F]=="\t".charCodeAt(0)||n[F]=="\n".charCodeAt(0))F++}F++; +break}else{var w=Y.indexOf(n," ".charCodeAt(0),F,F+50),Z=Y.indexOf(n,"\n".charCodeAt(0),F,F+50);if(Z==-1)Z=Infinity; +if(w==-1)w=Infinity;var P=Y.su(n,F,Math.min(w,Z)-F).trim(),C=parseFloat(P);if(!isNaN(C)){r.G=parseFloat(P); +F=Math.min(w,Z)+1;break}else if(P=="true"||P=="false"){r.G=P=="true";F=Math.min(w,Z)+1;break}else if(P=="null"||P=="NaN"||P=="undefined"){r.G=0; +F=Math.min(w,Z)+1;break}else{console.log("unknown identifier: "+P);throw"e"}F=Math.min(w,Z)+1}}r.size=F-x; +return r};f8.pJ=function(n,F,O,I){if(n instanceof Array){var x=n.length==0||typeof n[0]=="number";if(x){Y.d3(F,O,"[ "); +O+=2;for(var e=0;e>");O+=2;return O};g4.hj=function(n){return n==9||n==10||n==32};g4.d2=function(n,F,O,I){while(!0){while(g4.hj(n[O])||n[O]==0)O++; +if(O>=n.length)break;if(n[O]=="/".charCodeAt(0)){O++;var x=O;while(!g4.hj(n[x]))x++;var r=Y.su(n,O,x-O); +O=x+1;var _=g4.ER(n,O,I,r);F["_"+r]=_.G;O+=_.size}else if(n[O]==">".charCodeAt(0)){O+=2;break}else{var d=n[O]; +console.log(Y.su(n,O,O+100));console.log("unknown byte: "+d+", char: "+String.fromCharCode(d)+", offset: "+O); +O++;throw"e";return-1}}return O};g4.bb=function(n,F,O,I){for(var x in n){var r=x.substring(1,x.length); +Y.d3(F,O,"/"+r);O+=1+r.length;Y.d3(F,O," ");O++;O=g4.pJ(n[x],F,O,I+1);Y.d3(F,O," ");O++}return O};g4.ER=function(n,F,O,I){var x=F,r={type:"",size:0,G:0}; +while(g4.hj(n[F]))F++;if(n[F]=="<".charCodeAt(0)){r.type="Object";r.G={};F=g4.So(n,r.G,F,O+1)}else if(n[F]=="(".charCodeAt(0)){r.type="String"; +F++;if(n[F]==")".charCodeAt(0)){r.G="s";F++}else{F+=2;var _=F,d=0;while(!0){if(n[_]==")".charCodeAt(0)&&n[_-1]!="\\".charCodeAt(0))break; +else _+=1}r.G="s"+Y.IB(n,F,_);F=_+2}}else if(n[F]=="[".charCodeAt(0)){F++;r.G=[];r.type="Array";while(g4.hj(n[F]))F++; +while(n[F]!="]".charCodeAt(0)){var w=g4.ER(n,F,O+1,I);if(w==-1)return-1;r.G.push(w.G);F+=w.size;delete w.size; +while(g4.hj(n[F]))F++}F++}else{var Z=F;while(!g4.hj(n[Z]))Z++;var P=Y.su(n,F,Z-F),C=parseFloat(P);if(!isNaN(C)&&P.indexOf(".")!=-1){r.type="Float"; +var W=parseFloat(P);r.G="f"+W}else if(!isNaN(C)&&P.indexOf(".")==-1){r.type="Integer";r.G="i"+parseInt(P)}else if(P=="true"||P=="false"){r.type="Boolean"; +r.G=P=="true"}else if(P.charAt(0)=="/"){r.type="BString";r.G=P}else if(P=="NaN"){r.type="Float";r.G="f0"}else{console.log("unknown value",JSON.stringify(P)); +throw"e"}F=Z+1}r.size=F-x;return r};g4.a1S=function(n){if(n==Math.round(n))return n+".0";var F=n.toFixed(5); +if(0=0;e--)n+=String.fromCharCode(E>>e*8&255);return n};Y.aob=function(n){var E=0;for(var e=n.length-1; +e>=0;e--)E|=n.charCodeAt(e)<<(3-e)*8;return E};Y.indexOf=function(n,F,O,I){if(O==null)O=0;if(I==null)I=n.length; +I=Math.min(I,n.length);for(var e=O;e0){var _=F[0];for(var e=O;e>6; +F[O+e+1]=128|r>>0&63;e+=2}else if((r&4294967295-(1<<16)+1)==0){F[O+e]=224|r>>12;F[O+e+1]=128|r>>6&63; +F[O+e+2]=128|r>>0&63;e+=3}else if((r&4294967295-(1<<21)+1)==0){F[O+e]=240|r>>18;F[O+e+1]=128|r>>12&63; +F[O+e+2]=128|r>>6&63;F[O+e+3]=128|r>>0&63;e+=4}else throw"e"}return e};Y.wj=function(n,F){var O=Y.c(n,F),I=Y.l5(n,F+4,O-1); +return{Ls:I,AU:4+O}};Y.a2u=function(n,F){var O=Y.wc(n,F),I=Y.O$(n,F+4,O);return I};Y.ca=function(n,F){var O=Y.c(n,F),I=Y.ZK(n,F+4,O); +return I};Y.Lf=function(n,F){var O=Y.c(n,F),I=Y.ZK(n,F+4,O-1);return I};Y.a3O=function(n,F,O){Y.Wb(n,F,O.length); +F+=4;Y.aoc(n,F,O)};Y.a2s=function(n,F,O){Y.Qm(n,F,O.length);F+=4;Y.kN(n,F,O)};Y.HS=function(n,F,O){n.nz(F,4+2*O.length); +Y.a2s(n.data,F,O)};Y.a3c=function(n,F,O){n.nz(F,4+2*O.length);Y.a3O(n.data,F,O)};Y.sX=function(n,F,O){var I=[]; +for(var e=0;e>8&255;n[F+1]=E&255};Y.bY=function(n,F,E){n.nz(F,4);Y.iW(n.data,F,E)};Y.aeC=function(n,F){var O=Y.Ys(n,F),I=Y.Ys(n,F+2); +return O+I*(1/65536)};Y.fV=function(n,F,E){var O=Math.floor(E),I=Math.floor((E-O)*65536);Y.iW(n,F,O); +Y.iW(n,F+2,I)};Y.KO=function(n,F){return n[F+1]<<8|n[F]};Y.s0=function(n,F,E){n[F+1]=E>>8&255;n[F]=E&255}; +Y.gd=function(n,F,E){n.nz(F,4);Y.s0(n.data,F,E)};Y.W0=function(n,F){Y.Nh[0]=n[F+1];Y.Nh[1]=n[F];return Y.C_[0]}; +Y.Qw=function(n,F){Y.Nh[0]=n[F];Y.Nh[1]=n[F+1];return Y.C_[0]};Y.eS=Y.iW;Y.bz=Y.bY;Y.Z3=function(n,F){Y.y9[0]=n[F+3]; +Y.y9[1]=n[F+2];Y.y9[2]=n[F+1];Y.y9[3]=n[F];return Y.h3[0]};Y.Bl=function(n,F,E){Y.h3[0]=E;n[F+3]=Y.y9[0]; +n[F+2]=Y.y9[1];n[F+1]=Y.y9[2];n[F+0]=Y.y9[3]};Y.hi=function(n,F,E){n.nz(F,4);Y.Bl(n.data,F,E)};Y.kC=function(n,F,O,I){O[I+0]=n[F+0]; +O[I+1]=n[F+1];O[I+2]=n[F+2];O[I+3]=n[F+3]};Y.wc=function(n,F){Y.kC(n,F,Y.y9,0);return Y.E$[0]};Y.Wb=function(n,F,E){Y.E$[0]=E; +Y.kC(Y.y9,0,n,F)};Y.UJ=function(n,F,E){n.nz(F,4);Y.Wb(n.data,F,E)};Y.rV=function(n,F){Y.kC(n,F,Y.y9,0); +return Y.h3[0]};Y.a2X=function(n,F,E){Y.h3[0]=E;Y.kC(Y.y9,0,n,F)};Y.al9=function(n,F,E){n.nz(F,4);Y.a2X(n.data,F,E)}; +Y.c=function(n,F){var O=n[F]*(256*256*256)+(n[F+1]<<16|n[F+2]<<8|n[F+3]);return O};Y.Qm=function(n,F,E){n[F]=E>>24&255; +n[F+1]=E>>16&255;n[F+2]=E>>8&255;n[F+3]=E>>0&255};Y.QI=function(n,F,E){n.nz(F,4);Y.Qm(n.data,F,E)};Y.h1=function(n,F){return Y.c(n,F)<<32|Y.c(n,F+4)}; +Y.cJ=function(n,F,E){Y.Qm(n,F,E>>16>>16);Y.Qm(n,F+4,E&4294967295)};Y.oO=function(n,F,E){n.nz(F,8);Y.cJ(n.data,F,E)}; +Y.z6=function(n,F){var O=new Uint8Array(8);for(var e=0;e<8;e++)O[e]=n[F+7-e];var I=new Float64Array(O.buffer); +return I[0]};Y.akE=function(n,F){var O=new Uint8Array(8);for(var e=0;e<8;e++)O[e]=n[F+e];var I=new Float64Array(O.buffer); +return I[0]};Y.yb=function(n,F,E){var O=new Float64Array(1);O[0]=E;var I=new Uint8Array(O.buffer);for(var e=0; +e<4;e++){var x=I[e];I[e]=I[7-e];I[7-e]=x}for(var e=0;e<8;e++)n[F+e]=I[e]};Y.aL=function(n,F,E){n.nz(F,8); +Y.yb(n.data,F,E)};Y.LD=function(n,F){Y.y9[0]=n[F+3];Y.y9[1]=n[F+2];Y.y9[2]=n[F+1];Y.y9[3]=n[F+0];return Y.zY[0]}; +Y.lz=function(n,F){Y.y9[0]=n[F+0];Y.y9[1]=n[F+1];Y.y9[2]=n[F+2];Y.y9[3]=n[F+3];return Y.zY[0]};Y.dT=function(n,F,E){Y.zY[0]=E; +n[F+0]=Y.y9[3];n[F+1]=Y.y9[2];n[F+2]=Y.y9[1];n[F+3]=Y.y9[0]};Y.a0Z=function(n,F,E){n.nz(F,4);Y.dT(n.data,F,E)}; +Y.Gx=function(n,F,E){Y.zY[0]=E;n[F+0]=Y.y9[0];n[F+1]=Y.y9[1];n[F+2]=Y.y9[2];n[F+3]=Y.y9[3]};Y.a6W=function(n,F,E){n.nz(F,4); +Y.Gx(n.data,F,E)};Y.a0n=function(n,F){var O=Y.Z3(n,F),I=O*(1/(1<<24));return I};Y.Au=function(n,F,O){var I=Math.floor(O*(1<<24)); +Y.Bl(n,F,I)};Y.a1J=function(n,F,O){n.nz(F,4);Y.Au(n.data,F,O)};Y.Uk=function(n,F){var O=n[F],I=Y.su(n,F+1,O); +O+=1-O%2;return{G4:I,length:O+1}};Y.abz=function(n,F,O){var I=O.length;n[F]=I;Y.ZO(n,F+1,O);if(I%2==0){n[F+1+I]=0; +++I}return I+1};Y.HH=function(n,F,O){n.nz(F,O.length+2);return Y.abz(n.data,F,O)};Y.$$=function(n,F){var O=new cD; +O.R=Y.z6(n,F+0*8);O.O=Y.z6(n,F+1*8);O.Pr=Y.z6(n,F+2*8);O.oQ=Y.z6(n,F+3*8);O.hb=Y.z6(n,F+4*8);O.i9=Y.z6(n,F+5*8); +return O};Y.YA=function(n,F,O){Y.yb(n,F+0*8,O.R);Y.yb(n,F+1*8,O.O);Y.yb(n,F+2*8,O.Pr);Y.yb(n,F+3*8,O.oQ); +Y.yb(n,F+4*8,O.hb);Y.yb(n,F+5*8,O.i9)};Y.a3H=function(n,F,O){n.nz(F,48);Y.YA(n.data,F,O)};Y.amZ=function(n,F){var O=Y.LD(n,F),I=Y.LD(n,F+4),x=Y.LD(n,F+8),r=Y.LD(n,F+12); +return new gv(O,I,x-O,r-I)};Y.a2Y=function(n,F,O){Y.dT(n,F,O.x);Y.dT(n,F+4,O.y);Y.dT(n,F+8,O.x+O.d); +Y.dT(n,F+12,O.y+O.v)};Y.ahD=function(n,F,O){n.nz(F,16);Y.a2Y(n.data,F,O)};Y.sG=function(n,F){var O=Y.Z3(n,F),I=Y.Z3(n,F+4),x=Y.Z3(n,F+8),r=Y.Z3(n,F+12); +return new gv(I,O,r-I,x-O)};Y.ji=function(n,F,O){Y.Bl(n,F,O.y);Y.Bl(n,F+4,O.x);Y.Bl(n,F+8,O.y+O.v);Y.Bl(n,F+12,O.x+O.d)}; +Y.S3=function(n,F,O){n.nz(F,16);Y.ji(n.data,F,O)};Y.$X=function(n,F,O){var I=new Uint8Array(O);for(var e=0; +e=this.x&&n<=this.x+this.d&&(F>=this.y&&F<=this.y+this.v)}; +gv.prototype.JX=function(n){return this.contains(n.x,n.y)};gv.prototype.zp=function(n){return this.x<=n.x&&this.y<=n.y&&n.x+n.d<=this.x+this.d&&n.y+n.v<=this.y+this.v}; +gv.prototype.mc=function(n){this.x=n.x;this.y=n.y;this.d=n.d;this.v=n.v};gv.prototype.Qq=function(n){return this.x==n.x&&this.y==n.y&&this.d==n.d&&this.v==n.v}; +gv.prototype.EM=function(n,F){this.x-=n;this.y-=F;this.d+=2*n;this.v+=2*F};gv.prototype.aj$=function(n){this.EM(n.x,n.y)}; +gv.prototype.lN=function(n){var F=Math.max(this.x,n.x),O=Math.max(this.y,n.y),I=Math.min(this.x+this.d,n.x+n.d),x=Math.min(this.y+this.v,n.y+n.v); +if(Ithis.x+this.d||n.y>this.y+this.v||n.x+n.d=7){w=w}else alert("Unknown XCF version: "+r); +d=8}var Z={};I=iT.Yy(O,I,Z);var P=[];I=iT.hX(O,I,P,d);var C=[];I=iT.hX(O,I,C,d);F.l7=0;for(var e=0;e0){F.t.push(F.VF());F.l7--}F.t.reverse();delete F.l7;F.buffer=q.f(F.d*F.v*4); +if(F.t.length==0)console.log("No layers!!!");for(var e=0;eC){O.t.push(O.VF()); +O.l7--}O.l7=C;if(_.add.lsct==ho.x7||_.add.lsct==ho.OC)O.l7++;var bD=x==4?Y.c:Y.h1;if(_.R9()){_.buffer=q.f(_.rect.X()*4); +var co=new q.zF(_.rect.X()),iM=bD(n,F);F+=x;var hs=bD(n,F);F+=x;iT.g6(n,iM,co,I,x,r);q.Eb(co,_.buffer); +if(hs!=0){_.r=new K.FZ;_.r.color=0;_.r.rect=_.rect.clone();_.r.channel=iT.L_(n,hs,I,x,r).PB;if(W[aa.Oy])_.r.isEnabled=Y.c(W[aa.Oy],0)==1}}O.t.push(_)}; +iT.a5$=function(n){var F="("+Y.l5(n,0,n.length-1)+")",O=[],I={};iT.XL(F,1,O);iT.amm(O,I);return I};iT.amm=function(n,F){for(var e=0; +e=n.length)throw"e"; +var I=n.charAt(F);F++;if(I=="("){var x=[];F=iT.XL(n,F,x);O.push(x)}else if(I==" "||I=="\n"||I=="\r"){}else if(I==")")return F; +else if(I=="\""){var r=F;while(!0){var _=n[F];F++;if(_=="\"")break;if(_=="\\")F++}O.push(JSON.parse(n.slice(r-1,F)))}else{var r=F-1; +while(n[F]!=" "&&n[F]!=")")F++;O.push(n.slice(r,F))}}};iT.L_=function(n,F,O,I,x){var r=Y.c(n,F);F+=4; +var _=Y.c(n,F);F+=4;var d=Y.wj(n,F);F+=d.AU;var w={};F=iT.Yy(n,F,w);var Z=new q.zF(r*_),P=I==4?Y.c:Y.h1,C=P(n,F); +F+=I;iT.g6(n,C,Z,O,I,x);return{PB:Z.Q,Kx:w}};iT.g6=function(n,F,O,I,x,r){var _=Y.c(n,F);F+=4;var d=Y.c(n,F); +F+=4;var w=Y.c(n,F);F+=4;var Z=x==4?Y.c:Y.h1,P=Z(n,F);F+=x;iT.a5D(n,P,O,I,w,x,r)};iT.a5D=function(n,F,O,I,x,r,_){var d=Y.c(n,F),P=0,e=0; +F+=4;var w=Y.c(n,F);F+=4;var Z=new gv(0,0,d,w);if(_==100||_==150)P=1;else if(_==200||_==250)P=2;else if(_==300||_==350)P=4; +else if(_==500||_==550)P=2;else if(_==600||_==650)P=4;else if(_==700||_==750)P=8;else{alert("unsupported bit depth "+_); +throw"e"}var C=x/P,P=Math.round(x/C),W=[];F=iT.hX(n,F,W,r);var v=new q.zF(64*64*P),L=new gv,H=I[aa.afP][0],y=[v.Q,v.l,v.O,v.R]; +if(C==3)v.R.fill(255);var g=Date.now();for(var Q=0;Q>>8,255)}}}else if(_==600){var T=iT.akF(),z=new Uint32Array(1),m=new Float32Array(z.buffer); +for(var j=0;j1)$=1;b[s]=T[~~(.5+$*1e3)]}}}else console.log("unknown data format",_); +q.U0(v,L,O,Z)}};iT.akF=function(){var n=iT.a9E;if(n!=null)return n;n=iT.a9E=new Uint8Array(1001);for(var e=0; +e<1001;e++)n[e]=~~(.49+255*q.sK(e*.001));return n};iT.aog=function(n,F,O,I,x,r){if(I==1){for(var _=0; +_1)console.log(I.pages.length,"pages"); +var x=[],_=new gv;for(var d=0;d8e3*8e3||P.d>3e4||P.v>3e4){O.Lg(Z,!0); +var C=O.gh(Z,d);if(C.X()>=P.X())O.Lg(Z,!1)}P=O.gh(Z,d);for(var v=0;vF||Math.max(Math.round(n.d/O),Math.round(n.v/O))>3e4)O++; +if(O!=1&&!window.confirm("Your image is quite large ("+n.d+" x "+n.v+" px).\n"+"Press OK to scale it down "+O+"x, or Cancel to keep the size."))O=1; +return O};fA.gh=function(n,F){var O=[],I=fA;for(var x=0;x3e4&&w.d<=3e4||d.v>3e4&&w.v<=3e4){alert("Re-arranging artboards"); +for(var x=0;x1&&s.image!=null)b=!0}if(P.shouldBreakMaskChain){while(w.length!=0)d.UU(w.pop(),F)}if(y){p.add.lsct=P.layerListExpandedType==2?ho.x7:ho.OC; +p.mf="pass";p.Cq=24;p.tt(P.isVisible);F.t.push(F.VF());if(L=="artboard"){var G=C.clone(),T=v.GW();G.x=-Math.floor(v.hb/T); +G.y=-Math.floor(v.i9/T);G.d=Math.floor(G.d/T);G.v=Math.floor(G.v/T);p.Hp(G);var z=P.backgroundColor,m=z?{Q:255*z.red,l:255*z.green,O:255*z.blue}:{Q:255,l:255,O:255}; +p.add.artb.Clr={t:"Objc",v:q.W.Vm(m)};p.add.artb.artboardBackgroundType={t:"long",v:4}}d.Ox(P.layers,F,v,I,x,r,_)}else if(H&&!b){p.add.vmsk=new K.X9; +p.add.vstk=JSON.parse(JSON.stringify(bW.uS.default));p.add.vstk.strokeEnabled.v=!1;p.add.vogk=[];var $=j!=null&&j.frameFXMulti.v.length==1,o=W?W.fills:null,h=W?d.KP(I,o,C,v,p.getName(),F,d.bH(_,P.do_objectID+"_image")):[]; +if(h.length==0){if($)p.add.vstk.fillEnabled.v=!1;else p.add.iOpa=0;p.add.SoCo={classID:"null",Clr:{t:"Objc",v:q.W.Vm({Q:0,l:0,O:0})}}}else{var X=h[0],D=null,f=null; +if(X.type=="SoFi"){D="SoCo";f=bW.ez}if(X.type=="GrFl"){D="GdFl";f=bW.KK}if(X.type=="patternFill"){D="PtFl"; +f=bW.dC}if(D!=null){p.add[D]={classID:"null"};for(var e=0;e0)dG/=2;var c2=a5.v.Fltr.v; +c2.Brgh.v=Math.round(i9*255);c2.Cntr.v=Math.round(dG*255);c2.useLegacy.v=!0;o.push(a5)}}}if(b){var gg=hs.patternFillType; +if(gg==3){var bH=p.rect.d/p.rect.v,gw=C.d/C.v;if(bHe2.length){fU[fU.length-2]--; +gR--;if(fU[fU.length-2]==0){fU.pop();fU.pop()}}fU[fU.length-2]+=e2.length-gR}e2=e2.replace(/\u2028/g,"\n"); +e2=e2.replace(/\u2029/g,"\n");e2=e2.replace(/\r/g,"\n");var bN=p.add.TySh.Vb;bt.bw(bN,0,e2);if(e2!=""){var eG=P.textBehaviour,ef=W.textStyle,fi=ef?ef.verticalAlignment:0,ep=d.afX(bN,fU,dV,e2),T=dT.GW(),iJ=bt.gU(bN,0,1),c1=0; +if(iJ.Bw.Font){var aT=iJ.D0[iJ.Bw.Font].Name;if(aT=="FontAwesome"||aT=="Ionicons")ep*=.87}var dm=iJ.Bw.AutoLeading?0:iJ.Bw.Leading*.6,gk=Math.max(ep,dm)*T,a8=C.d,bX=C.v; +if(eG==0){bt.li(bN,0);var bL=bt.H2(iJ.jp);if(bL==1)c1=a8*T;if(bL==2)c1=a8*T*.5;if(fi==0)gk*=1;else gk*=.9}else{bt.li(bN,1); +bt.Ar(bN,[0,0,Math.round(a8),Math.round(bX)]);if(eG==2&&fi==0)gk=gk*.2;else if(eG==2&&fi==1){gk=T*.5*(bX-iJ.Bw.FontSize)}else if(eG==1&&fi==0)gk=gk*.2; +else gk=gk*.35}p.add.TySh.m.translate(c1,gk)}}else if(L=="symbolInstance"||L=="symbolMaster"){var c_=P.symbolID; +if(r[P.do_objectID])c_=r[P.do_objectID].symbolID;var eS=d.bH(_,P.do_objectID+"_symbolID");if(eS)c_=eS.value; +if(c_=="")continue;var c$={};for(var R in r)c$[R]=r[R];if(P.overrides)for(var R in P.overrides)c$[R]=P.overrides[R]; +var cp=_.slice(0);if(P.overrideValues)cp=cp.concat(P.overrideValues);var b_=x[c_];if(b_==null){console.log("Unknown master master",P.symbolID); +continue}var hy=fA.sG(b_.cI.frame),gx=hy.d/C.d,eJ=hy.v/C.v,d4=v.clone();d4.scale(gx,eJ);p.add.lsct=ho.OC; +p.mf="pass";p.Cq=24;p.tt(P.isVisible);F.t.push(F.VF());var cs=b_.cI;if(F.wV.indexOf(cs)==-1){F.wV.push(cs); +d.Ox(cs.layers,F,d4,I,x,c$,cp);F.wV.pop()}}else if(L=="slice"){console.log("slice layers are ignored by now"); +continue}else{console.log("unknown layer type: "+L,P);continue}if(W&&W.contextSettings){var en=W.contextSettings,cm=en.blendMode; +if(cm1){w.push(p);F.t.push(F.VF())}}while(w.length!=0)d.UU(w.pop(),F)};fA.bH=function(n,F){for(var e=0; +e127){x+=128*(n[O]-1);O++;if(n[O-1]>127){x+=128*(n[O]-1);O++}}var r=n[O];O++;I.push(x,r)}return I}; +fA.afX=function(n,F,O,I){var x=fA,r=0,P=0,C=0;for(var e=0;eI.length/2;for(var e=0;e0; +var G=L.NSStrikethrough;if(G==null)G=L.strikethroughStyle;if(G!=null)H.Bw.Strikethrough=G>0;if(L.MSAttributedStringTextTransformAttribute==1)H.Bw.FontCaps=2; +var T=L.NSParagraphStyle;if(T==null)T=L.paragraphStyle;if(T){var z=T.paragraphSpacing;if(z!=null){H.jp.SpaceAfter=z}var m=T.NSAlignment; +if(m==null)m=T.alignment;if(m!=null){var $=0;if(!1){}else if(m==1)$=1;else if(m==2)$=2;else if(m==4)$=0; +else{$=m;console.log("unknown align",m)}if(Z&&$<2)$=1-$;H.jp.Justification=$}var o=T.NSMinLineHeight; +if(o==null)o=T.minimumLineHeight;if(o!=null){H.Bw.AutoLeading=!1;H.Bw.Leading=o}}H.jp._Direction=Z?1:0; +bt.F$(n,P,P+W,H);P+=W}return C};fA.alO=function(n,F,O,I,x,r,_){var d=fA,w=JSON.parse(bW.default),Z=!1; +for(var e=0;e1e6; +if(j.type!="text"&&!s){if(b){var P=_.$$(j.transform);P.uZ();var G=C.clone();G.concat(P);W.add.vmsk=new K.X9; +W.add.vmsk.b=_.zo(b);G=G.clone();G.uZ();q.Y.gS(W.add.vmsk.b,G);W.o3(F)}}else if(!s)alert("Clipping by text has been ignored")}W.add.lsct=ho.x7; +W.mf="pass";W.Cq=24;if(n.visible!=null)W.tt(n.visible);F.t.push(F.VF());var T=w.children,z=y;if(z)z=z.color; +if(z)z=z.value;if(y){if(d=="artboard"&&g=="solid"){W.Hp(new gv(0,0,10,10));W.add.artb.Clr={t:"Objc",v:q.W.Vm({Q:z.r,l:z.g,O:z.b})}; +W.add.artb.artboardBackgroundType={t:"long",v:4}}else{var m=F.Kv();m.V9("BACKGROUND");m.Cq|=16;m.add.vstk=JSON.parse(JSON.stringify(bW.uS.default)); +m.add.vmsk=new K.X9;m.add.vmsk.b=_.zo({type:"rect",x:r.x,y:r.y,width:r.d,height:r.v});_.v9(y,g,C,r,r,m,F,I,x); +m.o3(F);F.t.push(m)}}for(var e=0;e>>16&255)/255,(eR>>>8&255)/255,(eR>>>0&255)/255]}}bt.F$(c2,dT,dT+fU,bH); +dT+=fU}if(dG.type=="area"||dG.type=="autoHeight"){var gR=dG.width,bN=dG.height;bt.li(c2,1);bt.Ar(c2,[0,0,gR,bN!=null?bN:gR*2])}}else console.log(d,n); +F.t.push(W)};dg.zo=function(n){var F=n.type,O=[{type:6},{type:8,all:0}];if(F=="rect"){var I=n.r,x=n.x,r=n.y,_=n.width,d=n.height; +if(I==null)O=q.Y.jP.Rect(x,r,_,d,0);else O=O.concat([{type:0,Xu:1,length:8,g9:0,Qy:0,sa:1}]).concat(q.Y.Ca([x,r,x+_,r,x+_,r+d,x,r+d],I,!1))}else if(F=="circle"){var I=n.r; +O=q.Y.jP.BT(n.cx-I,n.cy-I,2*I,2*I)}else if(F=="ellipse"){var w=n.rx,Z=n.ry;O=q.Y.jP.BT(n.cx-w,n.cy-Z,2*w,2*Z)}else if(F=="path"||F=="compound"){var P=Typr.U.SVGToPath(n.path); +O=q.z.rD({s:P.cmds,H:P.crds},!1)}else if(F=="line"){var C=n.x1,W=n.x2,v=n.y1,L=n.y2;O=O.concat([{type:0,Xu:1,length:2,g9:0,Qy:0,sa:1}]).concat(q.Y.Ca([C,v,W,L],0,!0))}else if(F=="polygon"){var H=n.points,y=[]; +for(var e=0;e8192)v*=.5;F.u4=!0;F.d=~~(w.d*v);F.v=~~(w.v*v);F.buffer=q.f(F.d*F.v*4); +var L=new cD(v,0,0,v,-w.x*v,-w.y*v),H={fg:hF.Sd(d),ajL:_};hF.xe(r,d.children,F,L,H,new cD,0);if(F.t.length==0){var y=F.Kv(); +y.V9("Layer");F.t.push(y)}};hF.DY=function(n){var F=" ";if(n.indexOf(",")!=-1)F=",";return n.split(F).map(parseFloat)}; +hF.xe=function(n,F,O,I,x,r,_){var d=hF,w=["display","opacity","fill-opacity"];for(var Z=0;Z0){if(C=="text")r=d.ZS(P,r); +var X=P.getAttribute("viewBox"),D=P.getAttribute("width"),f=P.getAttribute("height");if(X&&D&&f){var R=hF.DY(X),i=d.ZS(P),t=new cD; +t.translate(-R[0],-R[1]);t.scale(parseFloat(D)/R[2],parseFloat(f)/R[3]);t.translate(i.hb,i.i9);t.concat(y); +y=t}var N=P.children.length,M=x.fg;x.fg=v;var hK=C!="text"&&C!="textPath"||N>1;if(hK){var bD=J.Y9(); +J.add.lsct=_<2&&bD&&(W==null||!W.endsWith(":::"))?ho.x7:ho.OC;J.mf="pass";J.Cq=24;J.tt(bD);O.t.push(O.VF())}d.xe(n,P.children,O,y,x,r,_+1); +if(hK)O.t.push(J);else{var co=O.t[O.t.length-1];co.opacity=J.opacity;co.mf=J.mf}x.fg=M}else if(C=="use"){var t=d.ZS(P); +t.concat(y);var iM=d.kf(P),hs=n.getElementById(iM.slice(1)),M=x.fg;x.fg=v;d.xe(n,[hs],O,t,x,r,_+1);x.fg=M}else if(C=="path"||C=="rect"||C=="circle"||C=="ellipse"||C=="polygon"||C=="polyline"||C=="line"){J.Cq|=16; +J.add.vmsk=new K.X9;J.add.vstk=JSON.parse(JSON.stringify(bW.uS.default));J.add.vstk.strokeEnabled.v=!1; +var S=J.add.vstk,z=J.add.vmsk,a=v.fill,bV=a=="none"||v["fill-opacity"]&&parseFloat(v["fill-opacity"])==0; +z.b=d.zo(n,P,v["fill-rule"]=="evenodd",bV);q.Y.gS(z.b,y);var a5=q.Y.if(z.b),i9=v.stroke,dG=v["stroke-width"],ap=v["stroke-dasharray"],bk=v["stroke-linejoin"],c2=v["stroke-linecap"],gg=v["paint-order"]; +if(i9==null||i9=="none"||i9=="null"){}else{var bH=d.mv(n,i9,y,a5),gw=["SoFi","GrFl","patternFill"].indexOf(bH.type),gP=bH.G.v.Opct.v,dV=1; +if(gP.val!=100){J.opacity=Math.round(J.opacity*gP.val/100);gP.val=100}var dT=[bW.ez,bW.KK,bW.dC][gw],fU=S.strokeStyleContent.v={classID:bW.uS.Ul[gw]}; +for(var e=0;e0){var gR=d.Sd(P.children[0],x.ajL);for(var L in gR)if(w.indexOf(L)==-1)v[L]=gR[L]}var bN=v["xml:space"],eG=P.textContent; +if(bN=="preserve")eG=eG.replace(/\t/g," ").replace(/\n/g," ");if(W==null)J.V9(eG);J.add.lnsr="rend"; +J.add.TySh=bt.Cc(0,0);J.add.TySh.Qa=new gv(0,0,100,100);J.add.TySh.m=t.clone();var ef=J.add.TySh.Vb; +bt.bw(ef,0,eG);var a=v.fill,fi=v["font-weight"],ep=v["font-family"],iJ=v["text-decoration"],i9=v.stroke,dG=v["stroke-width"],aT=v["dominant-baseline"]; +if(aT=="text-before-edge")dm=H;else if(aT=="middle")dm=H/2;else if(aT=="hanging")dm=H;if(dm!=0)J.add.TySh.m.translate(0,dm); +var c1=bt.gU(ef,0,1);if(a&&a!="none"){var gk=CSS.kk(a);c1.Bw.FillColor={Type:1,Values:[1,gk.Q/255,gk.l/255,gk.O/255]}}if(iJ=="underline")c1.Bw.Underline=!0; +c1.Bw.FontSize=Math.round(H);bt.Zu(c1,"LiberationSans");if(fi=="bold")bt.Zu(c1,"LiberationSans-Bold"); +if(ep){ep=ep.split(",")[0].trim();if(ep[0]=="\"")ep=ep.slice(1);if(ep[ep.length-1]=="\"")ep=ep.slice(0,ep.length-1); +var a8=ep+":"+(fi?fi:"normal"),bX={"'DejaVu Sans':normal":"DejaVuSans","'DejaVu Sans':bold":"DejaVuSans-Bold","'Nimbus Sans L':normal":"NimbusSanL-Reg","'Nimbus Sans L':bold":"NimbusSanL-Bol","Libre Franklin:300":"LibreFranklin-Light","Libre Franklin:400":"LibreFranklin-Regular","Libre Franklin:500":"LibreFranklin-Medium","Libre Franklin:600":"LibreFranklin-SemiBold","Libre Franklin:700":"LibreFranklin-Bold"}; +if(bX[a8])bt.Zu(c1,bX[a8]);else bt.Zu(c1,ep)}if(v["text-anchor"])c1.jp.Justification=["start","end","middle"].indexOf(v["text-anchor"]); +bt.F$(ef,0,eG.length,c1);if(i9==null||i9=="none"){}else{var bL=JSON.parse(bW.E5[bW.order.indexOf("FrFX")]); +bL.Clr.v=q.W.Vm(CSS.kk(i9));bL.Sz.v.val=Math.round(parseFloat(dG)*c.V.GW(t));var c_=JSON.parse(bW.default); +for(var e=0;e"); +var d={h9:[],Nv:[],eA:0,tK:0,z7:0,d9:{},RU:{},CS:0,Lx:{},Q$:{},QM:0,sH:[]};hF.DP(n,d,n.root.children,1,F,O); +if(d.h9.length!=0){I.push(x.yk(1)+"");I=I.concat(d.h9);I.push(x.yk(1)+"")}I.push(x.yk(1)+"");I=I.concat(d.Nv);I.push("");I=I.join(F.aaL?"\n":"");var Z=q.f(Math.round(I.length*1.5)),P=Y.ng(I,Z,0); +if(x.B$){console.log(x.B$);var C="SVGParser.gen.db = [\n";for(var e=0;e");_.DP(n,F,U,I+1,x,r); +F.Nv.push(_.yk(I)+"")}}else if(w.zX()&&P==null){var j=new gv(0,0,n.d,n.v);_.RJ(v,w.add,F,j);if(v.length!=0)g.push("style=\""+v.join(";")+"\""); +F.Nv.push(_.yk(I)+"")}else if(P&&w.add.SoLd==null){var j=q.Y.if(P.b,null,!0),b=q.Y.Y_(P.b); +if(b.JI!=0){g.push("fill-rule=\"evenodd\"")}var s=b.agy;_.RJ(v,w.add,F,j);if(v.length!=0){var G=v.join(";"),T=F.Q$[G]; +if(T==null){T="shp"+F.QM;F.QM++;F.Q$[G]=T;F.Lx[T]=G}Q.push(T)}F.Nv.push(_.yk(I)+""); +if(_.B$&&_.B$[_.B$.length-1]){var z=q.z.qg(P.b);z.H=z.H.map(Math.round);var m=_.B$[_.B$.length-1];m.GM+=JSON.stringify(z).length; +m.AZ.push([v[0].split("#").pop(),z])}}else if(W&&x.alq){var $=W.Vb,o=new h2($,r);if(p)g.push("fill=\""+CSS.q7(p.Clr.v)+"\""); +var h=cJ.qA(o,W),X=q.z.Uh(h);for(var D in X){if(p==null)g.push("fill=\""+D+"\"");var f=X[D],s=Typr.U.pathToSVG({crds:f.H,cmds:f.s},2); +F.Nv.push(_.yk(I)+"");if(p==null)g.pop()}}else if(W&&!x.afD){var $=W.Vb,R=W.m.clone(),a=0,bV=0; +if(bt.oB($)==1){var i=bt.gU($,0,0).jp.Justification,N=0,M=bt.Kp($)[2];if(i==2)N=M/2;if(i==1)N=M;R.translate(N,0)}v.push("transform: "+_.YA(R)); +var hK=bt.fQ($),bD=$.EngineDict.ParagraphRun,co=bD.RunArray,iM=bD.RunLengthArray;if(v.length!=0)g.push("style=\""+v.join(";")+"\""); +F.Nv.push(_.yk(I)+"");var hs=w.add.lmfx;if(hs)hs=hs.frameFXMulti.v[0];if(hs)hs=hs.v; +var S=p?CSS.q7(p.Clr.v):null;for(var e=0;e"+_.G4(dG)+"")}a+=i9}F.Nv.push(_.yk(I)+"")}else if(w.add.SoLd&&x.N0){var gP=w.add.SoLd,dT=gP.Idnt.v,fU=0,dV=gP.Crop?gP.Crop.v:null; +if(F.RU[dT]!=null)fU=F.RU[dT];else{F.CS++;fU=F.CS;F.RU[dT]=F.CS;var ac=n.lk(dT,dV),eR="";if(ac==null)return; +var e2=ac.yO,cX=fx.TG(ac.raw.buffer);if(cX=="pdf"){var gR=new fj("h");fx.rM("PDF").bx(ac.raw.buffer,gR); +gR.lq();gR.tQ();gR.D();gR.nu();if(gP.Crop&&gP.Crop.v==1){c.jz.Ut(gR,gR.root.nJ(gR,!0))}var bN=fx.rM("SVG").eJ(gR,gR.d,gR.v,null,{sH:r}); +eR="data:image/svg+xml;base64,"+fx.Mw(bN)}else if(cX=="jpg"||cX=="png"||cX=="gif"||cX=="svg"){var eG={jpg:"image/jpg",png:"image/png",jpg:"image/jpg",svg:"image/svg+xml"}; +eR="data:"+eG[cX]+";base64,"+fx.Mw(ac.raw.buffer)}else{eR=fx.mY(e2[0].buffer,e2[1].d,e2[1].v)}F.h9.push(_.yk(2)+"")}var ef=q.J.$I(gP),fi=[]; +hF.RS(w,P,F,fi);if(fi.length!=0)F.Nv.push(_.yk(I)+"");if(v.length!=0)g.push("style=\""+v.join(";")+"\""); +var ep=_.wk(g,Q);F.Nv.push(_.yk(I)+"");if(fi.length!=0)F.Nv.push(_.yk(I)+"")}else if(!w.rect.D2()&&(x.N0||W)){if(v.length!=0)g.push("style=\""+v.join(";")+"\""); +var ep=_.wk(g,Q),iJ=w.buffer;if(p)iJ=ha.bI(iJ,p,w.rect);var aT=w.rect;F.CS++;var eR=fx.mY(iJ.buffer,aT.d,aT.v,"png",null,!0); +F.h9.push(_.yk(2)+""); +F.Nv.push(_.yk(I)+"")}}};hF.wk=function(n,F){if(F.length!=0)n.push("class=\""+F.join(" ")+"\""); +return n.join(" ")};hF.G4=function(n){return String(n).replace(/&/g,"&").replace(//g,">").replace(/\u0022/g,""")}; +hF.YA=function(n){var F=[n.R,n.O,n.Pr,n.oQ,n.hb,n.i9].map(hF.HF);return"matrix("+F.join(",")+")"};hF.RS=function(n,F,O,I){var x=hF; +if(F||n.add.artb){var r;if(F)r=q.Y.Y_(F.b).agy;else{var _=n.Fn(),d=q.z.om(_);r=Typr.U.pathToSVG({crds:d.H,cmds:d.s},2)}O.z7++; +I.push("clip-path=\"url(#cp"+O.z7+")\"");O.h9.push(x.yk(2)+""); +O.h9.push(x.yk(3)+"");O.h9.push(x.yk(2)+"")}};hF.RJ=function(n,F,O,I){var x=hF,r=F.vstk,_=F.vmsk,d=F.lmfx; +if(_&&_.RI!=0){var w=x.HF(_.RI);if(O.d9[w]==null){O.tK++;O.d9[w]=O.tK;O.h9.push(x.yk(2)+" ")}n.push("filter: url(#flt"+O.d9[w]+")")}var Z=ha.OA(d,F),P=Z[0],C=Z[1]; +if(r&&!r.fillEnabled.v)n.push("fill: none");else if(P){var W=CSS.q7(P.Clr.v);n.push("fill: "+W)}else if(C){x.pn(C,O,I); +n.push("fill: url(#grd"+O.eA+")")}if(r==null||!r.strokeEnabled.v)r=ha.Lv(d);if(r&&r.strokeEnabled.v){var v=r.strokeStyleContent.v,L=v.classID; +if(L=="solidColorLayer")n.push("stroke: "+CSS.q7(v.Clr.v));else{x.pn(v,O,I);n.push("stroke: url(#grd"+O.eA+")")}var H=bW.uS.wq.indexOf(r.strokeStyleLineCapType.v.strokeStyleLineCapType),y=bW.uS.join.indexOf(r.strokeStyleLineJoinType.v.strokeStyleLineJoinType),g=r.strokeStyleOpacity.v.val/100,Q=r.strokeStyleLineWidth.v.val,J=bW.uS.RD.indexOf(r.strokeStyleLineAlignment.v.strokeStyleLineAlignment); +if(J==2){Q*=2;n.push("paint-order:stroke fill markers")}var A=r.strokeStyleLineDashSet.v,p=[];for(var e=0; +e"); +if(Z==1)F.h9.push(W+" cx=\""+I.HF(C[0].x)+"\" cy=\""+I.HF(C[0].y)+"\" r=\""+I.HF(aE.sl(C[0],C[1]))+"\">"); +if(w=="Rflc"){for(var v=0;v<2;v++){var L=v==0?r:_;for(var e=L.length-1;e>=0;e--){var H=L[e];H.v.Lctn.v=2048+(H.v.Lctn.v>>>1); +var y=JSON.parse(JSON.stringify(H));y.v.Lctn.v=4096-y.v.Lctn.v;L.push(y)}L.sort(function(p,U){return p.v.Lctn.v-U.v.Lctn.v})}}var g=n.Rvrs.v; +if(g){r.reverse();_.reverse()}for(var e=0;e")}F.h9.push(I.yk(2)+"")}; +hF.jP=function(n,F,O,I,x){var r=[],_=hF.jP,d=!1,w={HL:n,Sa:F,w5:[!0,!0,!0],Av:!1,$f:O,amA:0};w.$T=Math.round(Math.max(n,F)*(.02+_.e5(w)*.03)); +w.OD=_.agP(w);w.UE=_.aaC(w.OD,(_.e5(w)<.5?-1:1)*(.2+_.e5(w)*.3));if(_.e5(w)<.5){var Z=w.OD;w.OD=w.UE; +w.UE=Z}w.abT=_.e5(w)<.4&&_.ae5(w.UE,{Q:1,l:1,O:1})>.3;w.a9P=_.e5(w)<.5?0:1;r.push(""); +w.mq=I[Math.floor(_.rB(w)*I.length)];w.Y2=I[Math.floor(_.rB(w)*I.length)];r.push(""); +var P=[0,0,n,F],C=P;if(x==null)r.push(""); +else{w.Av=!0;_.s_(w,P,r,x)}if(_.e5(w)<.25&&!w.Av){w.w5[0]=w.w5[2]=!1;_.ajI(P,w,r);C=P}else if(_.e5(w)<.25||w.Av)C=P; +else{var W=.52+_.e5(w)*.2;if(_.e5(w)<.5)W=1-W;var v=P.slice(0),L=P.slice(0);if(_.e5(w)<.5)v[2]=L[0]=Math.round(W*n); +else v[3]=L[1]=Math.round(W*F);if(_.e5(w)<.5){var Z=v;v=L;L=Z}C=v;_.aac(w,L,r,x)}_.ami(w,C,r);r.push(""); +r=r.join("\n");var H=q.f(Math.round(r.length*1.5)),y=Y.ng(r,H,0);return[H.buffer.slice(0,y),w.Qb]};hF.jP.ajI=function(n,F,O){var I=hF.jP,x=n[2]-n[0],r=n[3]-n[1]; +if(I.e5(F)<.5){O.push("")}else if(I.e5(F)<-.4){I.ahE(F,n,O)}else{var _=I.e5(F)<.5?0:1,d=(_==0?r:x)/4,w=I.ET(F,_,n,O,d,!0),w=I.ET(F,_+2,n,O,d,!0,w)}}; +hF.jP.ami=function(n,F,O){var I=hF.jP,x="Hello World!-What a beautiful day.-What Is Love?-Baby, don't hurt me.-Is This a Real Life?-Is this a fantasy?-Wake Me Up!-Before you go go.-I Saw The Sign.-And it opened up my mind!".split("-"),r=2*Math.floor(I.e5(n)*x.length/2),_=F[2]-F[0],d=F[3]-F[1],Z=0,C=0; +n.wZ=(n.HL+_)*.5*(.04+I.e5(n)*.05);n.wZ=Math.min(n.wZ,d*.4,_*.12);n.wZ=Math.round(n.wZ);var w=Math.min(n.wZ*x[r].length*(.35+.3*I.e5(n)),_*.9),P=(F[1]+F[3])/2,W=q.wO(n.OD)<.85?{Q:1,l:1,O:1}:{Q:.1,l:.1,O:.1}; +if(I.e5(n)<.25&&n.w5[0]){C=0;Z=F[0]+n.$T}else if(I.e5(n)<.33&&n.w5[2]){C=2;Z=F[2]-n.$T}else{C=1;Z=(F[0]+F[2])/2}var v=W.Q==1?"0,0,0":"255,255,255",L=n.Av&&I.e5(n)<1; +if(L){var H=F[0],y=_,g=P-n.wZ*1.1,Q=n.wZ*2.2,J=.7;if(C==1&&I.e5(n)<.5){H=g=.2*Math.min(_,d);y=_-2*g; +Q=d-g-g}else if(I.e5(n)<.7){H=g=0;y=_;Q=d;J=.25}O.push("")}if(I.e5(n)<.4){var A=n.wZ*.07; +A*=1.5+I.e5(n)*1;if(C==-1&&_/d<3&&!L){O.push(""); +O.push("")}if(C!=1){O.push(""); +Z+=(C==0?1:-1)*n.wZ/3}}var p=n.wZ*.4;O.push(I.xF(x[r+1],Z,P+p*1.6,p,W,C,n.Y2));O.push(I.xF(x[r],Z,P+n.wZ*.04,n.wZ,W,C,n.mq))}; +hF.jP.aac=function(n,F,O,I){var x=F[2]-F[0],r=F[3]-F[1],_=Math.max(x,r),d=Math.min(x,r),w=hF.jP;if(_/d<5&&!n.Av&&!1){w.s_(n,F,O,I)}else if(w.e5(n)<0)O.push(""); +else{var Z=0;if(F[3]!=n.Sa)Z=0;if(F[2]!=n.HL)Z=3;if(F[0]!=0)Z=1;if(F[1]!=0)Z=2;var P=Z+2&3;if(_/d<3){var C=w.amT(P),W=C[Math.round(w.e5(n)*(C.length-1))],v=W.Bz.slice(0,4),L=v.indexOf(1); +W=JSON.parse(JSON.stringify(W));var H=-1;if(v!="0000"){var y=new cD;if(W.Bz[5]=="0"){if(L==3&&Z==1){H=1; +y.scale(-1,1)}else H=L}else{var g=P;while(g==P)g=Math.floor(w.e5(n)*4)&3;y.rotate((-L+g)*Math.PI/2)}w.m(W,y)}var Q=w.gh(W),J=x-2*n.$T,A=r-2*n.$T; +if(H!=-1){if((H&1)==0)A-=n.$T;else J-=n.$T}var p=Math.min(J/Q.d,A/Q.v),U=new cD;U.translate(-Q.x,-Q.y); +U.scale(p,p);var j=(x-Q.d*p)/2,b=(r-Q.v*p)/2;if(H!=-1){if(H==3)j=0;if(H==0)b=0;if(H==1)j=x-Q.d*p;if(H==2)b=r-Q.v*p}U.translate(F[0]+j,F[1]+b); +w.vb(n,W,U,n.UE,O)}else{w.ET(n,Z,F,O,1e9)}}};hF.jP.s_=function(n,F,O,I){var x=F[2]-F[0],r=F[3]-F[1],_=Math.max(x,r),d=Math.min(x,r),w=hF.jP,Z=w.rB(n),P,C,W,v=I[0]instanceof ArrayBuffer; +if(v){P="data:image/jpg;base64,"+bm.C5(I[0]);C=I[1];W=I[2]}else{var L=Math.floor(Z*I.length),H=I[L]; +n.Qb=H;P=H.webformatURL;C=H.webformatWidth;W=H.webformatHeight}var y=F[0],g=F[1],Q=x,J=r;if(x/r>C/W){J=Q*W/C; +g=g-(J-r)/2}else{Q=J*C/W;y=y-(Q-x)/2}if(v){O.push("");O.push(""); +O.push("");var A=Q/C;O.push("")}else{var p="cp"+Math.random(); +O.push("");O.push(""); +O.push("");O.push("")}}; +hF.jP.xF=function(n,F,O,I,x,r,_){var d=hF.jP;return""+n+""}; +hF.jP.vb=function(n,F,O,I,x){var r=hF.jP,_=[];for(var e=0;e"); +for(var e=0;e")}x.push("")}; +hF.jP.ahE=function(n,F,O){var I=hF.jP,x=hF.jP.mU,r=[];for(var e=0;e0){g.v+=g.y; +g.y=0}if((F&1)==0){J=H;Q=y}else{Q=H;J=y}var A=Math.min(Math.min(.5+.5*w.e5(n))*Math.min(y,H),x)/g.v,p=Math.ceil(Q/(1e3*A)),U=new cD,j=new cD; +j.scale(A,A);if(F==0||F==2){j.translate(-(y/2),-(H/2));j.rotate(-F*Math.PI/2);j.translate(y/2+O[0],H/2+O[1])}else{j.rotate(Math.PI/2); +j.scale(1,-1);j.translate(O[0],O[1]);if(F==1){j.scale(-1,1);j.translate(y,0)}}I.push(""); +for(var e=0;e"); +return v};hF.jP.Rect=function(n,F,O,I){return Typr.U.pathToSVG({crds:[n,F,n+O,F,n+O,F+I,n,F+I],cmds:["M","L","L","L","Z"]})}; +hF.jP.afJ=function(n,F,O,I,x){var r=[n,F,n+O,F,n+O,F+I,n,F+I];n+=x;F+=x;O-=2*x;I-=2*x;r.push(n,F,n,F+I,n+O,F+I,n+O,F); +return Typr.U.pathToSVG({crds:r,cmds:"M L L L Z M L L L Z".split(" ")})};hF.jP.aaC=function(n,F){var O=q.Px(n.Q,n.l,n.O); +O.AU=Math.max(.1,Math.min(.9,O.AU+F));return q.OQ(O.Sa,O.Ls,O.AU)};hF.jP.a8l=function(n,F){var O=q.Px(n.Q,n.l,n.O); +O.Sa+=F;return q.OQ(O.Sa,O.Ls,O.AU)};hF.jP.alW=function(n){var F=q.Px(n.Q,n.l,n.O);F.AU=1-F.AU;return q.OQ(F.Sa,F.Ls,F.AU)}; +hF.jP.ae5=function(n,F){var O=n.Q-F.Q,I=n.l-F.l,x=n.O-F.O;return Math.sqrt(O*O+I*I+x*x)};hF.jP.agP=function(n){var F=hF.jP; +return{Q:F.e5(n),l:F.e5(n),O:F.e5(n)}};hF.jP.Ns=function(n){return CSS.Tt({Q:n.Q*255,l:n.l*255,O:n.O*255})}; +hF.jP.gh=function(n){var F=n.AZ,O=new gv;for(var e=0;e>>8*F&255;return O*(.99999999/255)};hF.jP.rB=function(n){var F=hF.jP.JU(n.$f); +n.$f=hF.jP.JU(F);return F*(1/4294967295)};hF.jP.JU=function(n){n=(n^61^n>>>16)>>>0;n=n+(n<<3)>>>0;n=(n^n>>>4)>>>0; +n=n*668265261>>>0;n=(n^n>>>15)>>>0;return n};hF.jP.mU=[{Bz:"0001-0-bird",AZ:[["4b3c34",{s:"M C L C C L Z M C C L C C L Z M C L C L Z M C L C C L Z".split(" "),H:[208,16,253,5,247,86,228,104,218,108,253,60,235,12,211,18,210,18,209,17,208,16,208,16,187,140,238,125,326,133,319,189,318,198,307,210,299,207,297,205,307,208,316,195,317,188,320,126,208,137,174,149,187,140,137,75,156,79,177,94,164,157,173,147,177,101,165,79,142,75,137,75,368,59,165,59,182,233,0,210,0,225,161,250,194,61,364,63,367,61,368,59,368,59,368,59]}],["3c7040",{s:"M C C C C C L Z M C C C C L Z M C C C C L Z M C C C C L Z M C C C C C L Z M C C C C L Z M C C C C Z".split(" "),H:[345,123,324,113,331,70,284,80,287,79,310,89,314,103,314,104,306,90,284,82,281,81,270,85,268,86,274,117,335,119,345,123,345,123,270,0,283,29,282,58,244,66,258,62,265,40,269,27,265,37,256,56,249,58,242,31,263,18,270,0,270,0,89,100,81,136,47,182,101,196,90,189,92,157,91,145,94,160,93,191,109,195,148,158,96,129,89,100,89,100,230,187,201,240,160,226,133,198,150,191,172,197,187,198,166,193,153,190,134,193,159,162,207,194,230,187,230,187,126,177,131,159,129,150,119,139,122,122,145,112,147,97,166,128,164,155,134,168,139,154,146,142,145,131,143,145,133,159,126,177,126,177,209,86,195,86,166,91,173,109,177,102,181,97,191,96,180,99,174,113,175,113,194,114,200,96,209,86,209,86,278,175,254,167,235,168,231,143,245,143,248,151,256,158,252,147,243,144,240,142,276,147,265,171,278,175]}],["b588c1",{s:"M C C C C C C C C C C C C L Z".split(" "),H:[189,40,188,42,186,44,184,47,184,52,183,55,181,59,175,70,160,78,147,79,142,79,131,78,127,75,118,74,95,71,93,70,89,70,88,70,69,72,74,66,82,68,93,65,78,64,83,62,95,59,128,50,128,33,155,29,162,16,180,13,189,31,193,31,196,34,198,37,197,37,193,39,189,40,189,40]}]]},{Bz:"0001-0-bird2",AZ:[["ff7f2a",{s:"M L L L Z M L L L Z".split(" "),H:[296,0,296,62,335,62,296,0,357,0,357,62,318,62,357,0]}],["b588c1",{s:"M C C C C C C C C C C C L Z".split(" "),H:[321,48,344,48,379,67,396,121,408,176,396,230,337,255,303,265,265,268,217,235,191,217,170,188,186,180,195,177,199,187,205,192,203,185,199,178,207,172,217,165,224,178,225,182,227,196,231,203,250,206,273,205,290,196,292,165,289,133,269,118,268,101,267,77,288,49,321,48,321,48]}],["74439e",{s:"M C C C C C C L Z M C C Z".split(" "),H:[337,187,329,202,317,204,304,204,293,204,284,205,293,224,286,216,278,209,268,214,257,220,262,237,269,243,284,258,310,256,323,243,337,227,339,208,337,187,337,187,340,77,310,78,287,81,315,96,269,83,309,75,340,77]}],["000000",{s:"M L L L Z M L L L Z".split(" "),H:[326,258,334,315,323,316,326,258,298,262,296,318,286,317,298,262]}],["4b3c34",{s:"M L C C C C C C C C L Z".split(" "),H:[0,272,0,336,63,296,119,296,175,320,205,330,229,339,278,338,322,337,354,322,405,325,443,329,482,332,501,377,501,366,502,348,474,328,464,320,440,312,384,309,296,309,300,333,186,293,118,264,54,250,0,272,0,272]}],["3c7040",{s:"M C C C Z M C C C Z M C C C L Z M C C C L Z M C C C L Z M C C C Z".split(" "),H:[58,260,44,247,27,239,20,208,15,188,32,182,43,198,59,227,56,242,58,260,181,323,167,336,150,345,143,375,138,396,155,401,166,385,182,356,179,342,181,323,60,260,79,249,100,243,113,214,122,194,102,186,86,200,62,227,65,242,60,260,60,260,499,378,479,377,462,372,435,388,417,399,425,415,444,411,476,403,484,390,499,378,499,378,501,379,494,397,482,411,488,442,491,463,511,461,514,442,520,410,508,397,501,379,501,379,503,378,513,390,516,402,531,413,546,421,557,412,548,401,534,382,519,379,503,378]}]]},{Bz:"0000-1-flower",AZ:[["7a59a2",{s:"M C C C C C C C Z M C C C C C C L Z M C C C C C C C L Z M C C C C C C L Z M C C C C C C C L Z M C C C C C C L Z M C C C C C C C L Z M C C C C C C L Z".split(" "),H:[468,470,411,473,371,480,351,495,332,509,322,536,325,581,325,601,328,621,325,637,346,634,371,638,397,637,427,636,456,626,465,611,478,596,485,553,489,490,477,489,470,483,468,470,445,563,435,583,425,591,415,590,401,588,401,572,410,549,388,558,375,557,369,546,366,533,374,524,390,517,416,506,441,498,465,495,463,519,455,542,445,563,445,563,489,450,486,392,480,352,465,332,451,313,425,302,380,305,360,305,340,307,324,304,327,324,322,350,323,376,323,406,332,435,347,444,362,457,405,465,468,470,469,458,476,451,489,450,489,450,395,424,376,415,368,405,369,394,371,380,387,380,410,390,402,368,403,355,414,349,427,346,436,355,443,370,454,397,460,422,463,446,439,443,417,435,395,424,395,424,508,470,566,468,606,462,626,447,645,433,656,407,654,362,654,342,652,322,655,306,634,309,609,304,583,305,553,305,524,314,514,329,501,344,493,387,488,449,500,451,507,457,508,470,508,470,534,377,544,357,554,350,564,351,578,353,578,369,568,392,590,384,604,385,609,396,612,409,603,418,588,425,561,435,536,442,512,445,515,421,523,399,534,377,534,377,488,490,492,547,499,587,514,607,528,626,554,636,600,633,619,632,640,630,656,633,652,612,656,587,655,560,655,531,645,502,629,493,614,480,571,473,508,469,507,481,501,488,488,490,488,490,582,513,602,523,610,533,609,543,607,557,591,557,568,548,577,570,576,583,565,589,552,592,542,584,535,568,524,542,517,517,514,493,538,495,560,503,582,513,582,513]}]]},{Bz:"0000-1-flower",AZ:[["d13777",{s:"M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z".split(" "),H:[474,503,457,528,452,530,450,528,450,523,469,498,464,493,388,522,332,552,314,585,297,628,322,660,372,639,361,698,421,709,450,665,467,649,477,596,482,505,474,503,474,503,439,563,431,563,424,556,424,548,424,539,431,532,439,532,447,532,454,539,454,548,454,556,447,563,439,563,462,475,432,467,429,463,430,460,435,458,465,469,468,463,417,399,371,356,335,348,288,345,265,379,300,420,241,428,249,488,301,503,321,513,374,507,462,483,462,475,462,475,394,460,391,452,396,444,404,441,412,438,420,443,423,451,426,459,421,467,413,470,405,473,396,468,394,460,484,455,483,424,486,419,489,420,492,424,492,456,498,457,543,389,570,332,566,294,554,249,515,238,487,284,461,231,406,256,408,310,405,333,427,381,477,458,484,455,484,455,477,385,484,380,494,382,499,389,504,396,502,405,496,410,489,415,479,414,474,407,469,400,471,390,477,385,511,470,539,459,545,461,545,463,542,467,512,477,513,483,592,505,654,513,688,497,728,472,726,432,674,419,717,378,675,334,625,353,602,356,563,393,506,464,511,470,511,470,575,442,581,447,583,456,578,463,573,470,563,472,557,467,550,462,548,452,553,445,558,438,568,437,575,442,505,499,524,523,524,529,521,531,517,529,498,503,492,506,496,588,508,650,533,677,570,707,607,693,603,639,656,667,685,614,651,572,641,551,594,525,509,493,505,499,505,499,551,552,548,560,540,564,532,561,524,559,519,550,522,542,524,534,533,530,541,532,549,535,554,543,551,552]}]]},{Bz:"0000-1-flower",AZ:[["ffac42",{s:"M C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C Z M C C C C Z".split(" "),H:[646,471,646,446,626,426,601,426,599,426,597,426,595,427,596,426,598,424,599,423,616,406,616,378,599,360,581,343,553,343,536,360,534,361,533,363,532,364,532,363,532,361,532,359,532,335,512,315,488,315,463,315,443,335,443,359,443,361,443,363,443,365,442,364,441,363,440,362,422,344,394,344,377,362,359,379,359,407,377,425,378,426,380,427,381,429,379,428,378,428,376,428,351,428,331,448,331,473,331,498,351,518,376,518,378,518,380,517,382,517,381,518,379,519,378,521,361,538,361,566,378,584,396,601,424,601,441,584,443,582,444,581,445,579,445,581,445,583,445,584,445,609,465,629,490,629,514,629,534,609,534,584,534,582,534,580,534,579,535,580,536,581,537,582,555,600,583,600,600,582,618,565,618,537,600,519,599,518,597,516,596,515,598,515,599,516,601,516,626,516,646,496,646,471,489,552,444,552,409,516,409,472,409,428,444,392,489,392,533,392,569,428,569,472,569,516,533,552,489,552]}]]},{Bz:"0000-1-flower",AZ:[["d04040",{s:"M C C L L C C C C L L C C L L C C C C L C C C C L Z M C C C Z M C C C L Z M C C C L Z".split(" "),H:[691,424,690,369,680,330,660,303,634,320,601,361,568,406,568,406,568,327,578,326,585,317,585,306,585,294,576,284,564,284,552,284,542,294,542,306,542,317,550,326,560,327,560,406,559,406,540,359,522,311,501,291,475,319,453,360,433,407,431,406,431,327,441,326,448,317,448,306,448,294,439,284,427,284,415,284,405,294,405,306,405,317,412,326,423,327,423,404,390,363,360,326,341,308,296,401,299,489,360,567,396,613,443,639,500,638,624,636,694,524,692,424,691,424,389,543,370,514,379,498,399,504,439,518,470,564,488,613,455,600,414,580,389,543,481,480,488,445,505,441,515,459,533,497,524,552,501,599,487,567,472,523,481,480,481,480,624,523,610,563,565,595,515,613,528,580,548,538,585,514,614,494,629,503,624,523,624,523]}]]},{Bz:"0000-1-flower",AZ:[["ec7272",{s:"M C C C C Z M C C C C Z M C C C C L Z M C C C C L Z M C C C C Z M C C C C L Z".split(" "),H:[447,475,452,450,452,438,437,423,422,407,407,412,390,383,398,418,421,415,433,434,445,453,446,474,447,475,495,446,520,439,529,433,535,412,542,390,529,380,546,351,520,376,533,394,523,414,513,434,495,445,495,446,545,473,564,490,574,495,595,490,617,485,620,469,653,468,619,459,610,479,587,480,565,482,546,472,545,473,545,473,549,533,543,558,543,569,559,585,574,601,589,596,606,624,597,590,575,592,563,573,551,555,550,534,549,533,549,533,504,562,480,570,470,575,464,596,458,618,470,628,454,657,479,632,466,614,476,594,486,575,504,563,504,562,459,536,440,519,430,513,409,518,387,524,384,539,351,540,385,549,394,529,417,528,439,527,457,536,459,536,459,536]}],["333333",{s:"M C C C C C C C C C C C C L Z M C C C C C C C C C C C C L Z M C C C C C C C C C C C C L Z M C C C C C C C C C C C C L Z M C C C C C C C C C C C C L Z M C C C C C C C C C C C C L Z".split(" "),H:[534,455,584,415,579,358,577,335,574,315,585,304,585,304,585,304,568,308,561,312,554,316,520,333,500,363,479,392,493,437,486,456,479,476,452,485,452,485,452,485,471,474,475,454,479,434,460,402,482,365,505,328,565,292,597,294,612,295,591,298,587,316,583,333,593,373,584,404,574,440,533,456,534,455,534,455,559,506,619,530,666,497,685,483,701,471,716,475,716,475,716,475,704,463,697,459,690,454,657,434,622,431,587,428,554,462,534,465,513,469,492,451,492,451,492,451,511,461,530,455,549,448,568,416,611,417,654,418,716,452,730,481,737,495,724,478,706,483,689,489,660,516,628,524,592,534,558,506,559,506,559,506,524,552,534,615,586,640,607,649,625,657,629,672,629,672,629,672,634,655,634,647,634,639,636,601,621,569,606,537,560,525,547,509,534,494,539,466,539,466,539,466,539,488,554,501,569,514,607,514,627,552,648,590,650,660,632,687,623,700,631,680,617,667,605,656,566,644,543,621,517,594,524,551,524,552,524,552,467,546,417,585,421,643,424,665,426,686,415,697,415,697,415,697,432,693,439,689,446,684,481,667,501,638,521,609,508,563,515,544,522,524,548,515,548,515,548,515,530,527,526,546,522,566,540,598,518,635,496,672,436,709,404,706,388,705,409,702,413,684,417,667,408,628,417,596,426,561,467,544,467,546,467,546,442,495,383,472,336,504,317,518,301,530,286,526,286,526,286,526,298,539,305,543,312,547,344,568,380,571,415,574,448,539,468,536,488,532,510,551,510,551,510,551,490,540,471,547,452,553,434,585,391,584,348,583,286,550,272,521,265,507,278,524,296,518,313,513,342,485,373,477,409,468,444,495,442,495,442,495,476,449,467,386,415,361,394,352,375,344,371,329,371,329,371,329,366,346,366,354,366,362,364,400,379,433,394,465,440,476,453,492,467,508,462,535,462,535,462,535,461,513,446,500,431,487,394,487,373,449,352,411,350,341,368,314,377,301,369,321,383,334,396,345,434,357,457,380,483,407,477,450,476,449,476,449]}]]},{Bz:"0000-0-hearts",AZ:[["d17070",{s:"M C C C C C C C C C L Z".split(" "),H:[415,584,413,585,411,586,409,587,392,596,389,620,395,633,401,647,414,663,450,668,485,674,487,681,494,690,491,679,487,673,507,643,527,613,524,593,518,579,512,566,493,552,475,558,467,561,451,566,448,586,435,578,423,581,415,584,415,584]}],["6bcc6b",{s:"M C C C C C C C C C L Z".split(" "),H:[595,451,593,449,590,448,588,448,563,439,537,457,529,475,521,493,516,520,542,560,568,601,563,609,559,623,568,611,571,602,618,595,666,589,684,567,692,550,700,532,697,501,674,488,665,482,645,472,622,486,619,465,606,456,595,451,595,451]}],["5c5cc2",{s:"M C C C C C C C C C L Z".split(" "),H:[341,362,338,364,335,366,332,368,304,385,301,424,312,446,323,468,345,494,405,501,465,508,468,520,480,534,475,516,468,506,499,455,531,404,524,370,514,348,503,325,470,304,440,315,427,320,401,331,397,364,374,351,355,356,341,362,341,362]}]]},{Bz:"0000-0-anchor",AZ:[["2a3b66",{s:"M C C C C L Z M C C C C C C C C C C C C C C L C C C C C C C C C C C C C L C C C C C C C C C C C C C L Z".split(" "),H:[495,315,490,315,488,318,489,323,491,328,502,326,502,320,502,317,501,316,497,315,496,315,496,315,495,315,495,315,496,303,509,303,521,320,514,327,511,330,513,345,517,348,519,350,531,352,546,354,570,357,572,357,578,354,588,347,592,351,592,369,592,385,588,390,580,385,576,383,570,383,552,384,524,387,519,389,517,397,515,404,517,515,520,554,522,583,525,599,530,606,534,610,555,617,565,617,584,616,607,602,635,572,639,568,641,566,644,563,633,559,616,557,616,557,675,533,675,533,671,605,669,609,667,611,664,591,658,577,657,579,657,580,656,582,628,638,603,660,565,664,545,666,521,672,514,675,512,677,507,682,504,688,501,693,497,698,496,698,494,698,490,693,487,688,484,682,480,677,477,675,471,672,447,666,427,664,391,660,367,640,340,591,335,604,332,621,331,619,329,615,325,544,325,544,384,568,384,568,368,569,357,573,385,602,408,616,426,617,437,617,458,610,461,606,466,599,470,583,472,554,474,515,476,404,475,397,473,389,468,387,440,384,422,383,416,383,412,385,403,390,400,385,400,369,400,351,403,347,414,354,419,357,421,357,446,354,460,352,473,350,475,348,478,345,481,330,478,327,470,320,483,303,496,303,496,303]}]]},{Bz:"0000-1-leaf",AZ:[["fbb600",{s:"M L L L L L L C L L C L C L C C C C C L C C C C C C C C C L C C C C C C C C C C C C C L L L L Z".split(" "),H:[642,726,633,723,632,707,591,631,570,582,526,521,537,547,535,579,517,598,501,619,486,602,414,634,412,606,379,609,346,611,394,557,406,547,401,539,386,532,319,519,337,508,332,493,320,478,326,464,302,450,287,436,303,436,324,441,330,432,346,434,359,434,359,415,377,428,397,431,417,432,442,440,437,418,417,416,406,372,401,370,395,367,389,355,417,363,408,339,406,323,416,312,427,303,417,276,433,295,444,297,452,294,479,321,490,313,496,294,503,322,510,329,517,338,522,353,530,371,530,379,546,402,551,389,555,378,578,333,606,333,628,304,652,280,646,306,644,327,657,329,649,356,658,374,679,384,666,392,656,415,645,432,627,457,653,451,661,457,692,460,698,473,715,481,697,485,678,488,669,509,656,523,655,533,666,539,659,537,659,542,643,531,630,535,613,543,608,539,598,535,594,542,590,553,590,566,594,564,596,569,568,575,551,543,531,519,575,577,597,628,639,708,642,726]}]]},{Bz:"0000-1-acorn",AZ:[["a05a2c",{s:"M C C C C C C C L Z".split(" "),H:[506,453,450,426,413,422,398,444,374,480,374,533,384,573,391,602,407,625,430,645,451,658,487,654,509,647,554,633,587,605,612,565,635,527,591,500,565,482,557,476,515,457,506,453,506,453]}],["502d16",{s:"M C C C C C C C C C C C Z".split(" "),H:[640,524,639,539,623,540,623,540,627,522,607,504,583,488,547,465,507,445,470,434,439,426,412,417,400,437,400,437,391,424,400,414,434,370,498,356,551,376,555,349,583,317,597,321,612,326,621,346,620,350,619,354,594,352,584,368,580,375,577,382,575,387,619,412,649,460,640,524]}]]},{Bz:"0000-0-skull",AZ:[["808080",{s:"M C L C C L C L C C C C C C C L C L C C C C C C C C L C C L C L C C C C C C C L C L C L C C C C C C Z M C C C C Z M C C C C Z M L L L Z".split(" "),H:[396,410,398,415,398,420,398,424,420,437,433,404,465,382,501,382,538,382,569,404,582,435,602,424,602,419,603,415,604,410,604,410,609,392,622,379,633,382,643,384,648,402,643,420,643,421,642,421,642,422,643,422,643,422,644,422,662,427,675,440,672,450,669,461,652,465,633,460,628,459,624,457,620,455,589,473,588,491,582,507,572,520,607,540,611,538,615,536,620,535,639,530,656,535,659,545,662,556,649,568,630,573,630,574,629,574,629,574,629,574,629,575,629,575,634,594,630,611,619,614,609,617,596,604,591,585,590,580,589,576,589,571,565,557,564,592,536,619,501,619,466,619,438,591,437,557,412,572,411,576,411,580,410,585,410,585,405,604,392,617,381,614,371,611,366,593,371,575,371,574,371,574,372,574,371,573,371,573,370,573,352,568,339,556,342,545,345,534,362,530,381,535,385,536,390,538,394,540,430,519,421,507,415,491,414,475,380,455,376,457,372,459,367,460,367,460,349,465,331,461,328,450,326,440,338,427,357,422,357,422,358,422,358,422,358,421,358,421,358,420,353,402,357,384,368,381,379,379,391,391,396,410,463,439,445,439,431,453,431,470,431,488,445,502,463,502,480,502,494,488,494,470,494,453,480,439,463,439,540,439,522,439,508,453,508,470,508,488,522,502,540,502,557,502,571,488,571,470,571,453,557,439,540,439,483,528,518,528,500,503,483,528]}]]},{Bz:"0000-0-ghost",AZ:[["e6e6e6",{s:"M C C C C C C C C C C L Z M C C C C C C C C Z M C C Z".split(" "),H:[653,486,653,574,689,597,689,638,689,661,640,644,620,656,601,666,609,682,583,692,563,700,538,666,512,666,490,666,451,695,433,686,415,677,416,646,388,644,367,641,313,671,313,648,313,619,346,588,346,486,346,388,415,308,500,308,584,308,653,388,653,486,653,486,449,396,428,396,412,415,412,439,412,462,428,482,449,482,465,482,478,470,484,454,489,470,503,482,519,482,539,482,556,462,556,439,556,415,539,396,519,396,503,396,489,407,484,423,478,407,465,396,449,396,482,505,441,505,465,560,482,560,503,560,524,505,482,505]}],["000000",{s:"M C C C C Z M C C C C Z".split(" "),H:[526,446,526,455,519,462,510,462,501,462,494,455,494,446,494,437,501,430,510,430,519,430,526,437,526,446,475,446,475,455,468,462,459,462,450,462,442,455,442,446,442,437,450,430,459,430,468,430,475,437,475,446]}]]},{Bz:"1001-1-rose",AZ:[["9e1460",{s:"M C C C C C C C C C Z M C C C C C C C C C Z".split(" "),H:[568,83,558,83,548,88,539,96,538,98,536,99,535,101,522,115,513,134,517,149,522,172,561,200,592,207,604,210,611,215,615,221,622,234,611,258,611,258,613,260,615,264,618,264,627,266,638,241,640,236,660,188,614,83,568,83,526,125,527,97,567,68,593,75,616,81,642,121,649,152,651,165,656,172,662,176,675,183,698,173,698,173,698,173,698,173,698,173,704,176,705,179,705,180,706,189,681,199,678,200,678,200,677,201,677,201,627,220,524,170,526,125]}],["020304",{s:"M C C C C C Z M C C C C C Z M C C C C C Z M C C C C Z".split(" "),H:[60,151,60,151,37,125,60,98,83,72,95,91,115,66,134,42,117,26,120,30,123,34,146,83,132,114,114,154,60,151,60,151,280,70,280,70,258,97,283,122,308,147,318,127,339,150,361,173,344,190,347,186,350,182,370,132,354,101,333,62,280,70,280,70,61,150,61,150,27,143,30,108,33,73,54,81,55,50,57,19,33,16,38,17,43,19,91,44,98,78,107,121,61,150,61,150,-27,185,184,158,222,43,352,32,444,24,538,97,538,97,538,97,453,45,354,48,241,51,185,170,-27,185]}]]},{Bz:"1001-1-curls",AZ:[["53a7ab",{s:"M C C C C C C C C C C C C C C C C L Z M C C C C C C C C C C C C C C C C L Z M C C C C C C C C C C C C C C C C C C C C C L Z".split(" "),H:[68,114,121,103,159,110,183,135,212,169,211,204,189,237,162,277,124,291,86,276,52,263,38,236,47,202,55,168,79,151,121,156,147,162,165,177,160,205,155,228,135,241,113,237,97,234,92,221,96,205,98,195,105,194,115,200,124,205,133,204,135,197,139,183,122,167,95,171,68,176,54,193,68,220,84,252,131,261,165,238,201,202,199,164,158,136,118,113,52,122,-23,151,2,134,33,122,68,114,68,114,71,83,119,75,163,79,198,107,226,129,247,174,271,207,291,229,316,241,342,232,370,222,394,206,418,209,443,212,461,238,485,258,500,272,522,276,543,271,543,271,524,279,518,281,500,287,483,277,466,256,453,243,441,230,427,223,413,217,392,220,372,229,372,230,371,230,370,230,354,241,337,251,315,250,283,248,253,222,229,172,209,133,178,106,137,94,103,84,52,94,-30,133,-3,108,30,91,71,83,71,83,83,54,122,46,166,49,195,67,219,82,250,122,290,168,308,186,330,194,355,192,393,183,400,145,383,118,372,101,355,91,328,91,313,92,303,98,300,109,298,116,299,125,304,131,315,147,327,152,340,149,349,149,354,132,343,131,330,131,326,129,328,120,332,97,355,100,365,114,381,137,367,165,343,168,321,170,289,150,288,117,290,77,319,58,352,64,388,74,405,104,404,141,403,177,382,202,345,207,312,211,284,191,260,161,245,141,229,122,213,106,196,84,166,73,129,67,80,62,28,79,-26,108,10,79,46,63,83,54,83,54]}],["bbdc54",{s:"M C C C C C L Z M C C C C C L Z M C C C C L Z M C C C C L Z M C C C C C C C C C L Z M C C C C C C C C C C C C C C C C C C C C C C C C C C C C C L Z".split(" "),H:[321,315,287,324,252,312,211,219,217,284,239,326,279,341,324,352,362,329,398,291,316,305,258,269,217,196,238,284,274,319,321,315,321,315,211,261,223,300,234,345,252,374,220,378,194,367,193,324,194,306,198,288,206,270,197,315,204,340,221,351,206,327,202,297,211,261,211,261,206,246,193,301,170,317,138,297,162,281,184,254,205,222,201,246,191,267,174,283,186,279,197,267,206,246,206,246,378,233,370,286,337,299,294,270,312,277,330,276,347,267,294,278,259,252,234,203,280,259,327,278,378,233,378,233,626,217,604,273,555,313,511,315,484,316,438,289,432,232,450,253,488,296,511,291,532,286,551,277,566,261,527,269,498,263,480,243,478,241,478,237,480,235,486,230,504,220,519,226,537,233,551,242,567,241,591,236,611,228,626,217,626,217,411,192,432,183,439,166,420,136,443,144,460,158,466,182,470,165,456,149,430,133,459,136,485,145,505,165,503,143,463,133,434,128,486,127,526,124,539,118,505,123,470,124,435,122,461,111,483,96,500,76,475,95,450,110,424,118,450,96,465,72,466,48,458,75,440,98,419,112,424,106,428,99,428,91,429,68,413,57,393,51,419,70,426,92,411,110,408,77,385,58,343,52,383,26,422,25,445,62,458,47,465,29,467,8,477,27,479,51,475,76,497,64,515,49,528,29,524,57,515,82,496,103,521,113,549,111,579,99,560,122,535,136,502,137,518,149,521,173,514,205,505,181,492,166,476,158,483,188,470,205,447,216,456,183,451,166,438,157,444,193,426,211,379,207,403,193,416,172,416,140,434,156,428,173,411,192,411,192]}]]},{Bz:"0111-0-pines",AZ:[["e9e9e9",{s:"M C C C C C C C C L L L Z".split(" "),H:[0,946,0,946,54,960,99,944,149,927,182,954,205,956,245,960,298,940,382,974,435,995,478,957,538,956,571,955,597,969,631,968,663,967,701,938,749,944,805,950,851,960,893,946,950,928,1e3,946,1e3,946,1e3,1e3,0,1e3,0,946]}],["437a26",{s:"M C L C C C L L C C L L L L L C Z M C L C C C L L C C L L L L L C Z M C L C C C L L C C L L L L L C Z M C L C C C L L C C L L L L L C Z M C L C C C L L C C L L L L L C Z".split(" "),H:[119,801,120,801,148,859,148,859,137,853,137,853,155,890,155,891,156,892,138,887,140,888,141,888,171,925,171,925,126,924,125,943,125,943,105,944,106,944,107,944,106,924,106,924,61,925,93,886,77,891,100,854,89,860,89,860,119,801,119,801,286,871,286,871,303,905,303,905,296,902,296,902,307,924,307,924,307,925,297,922,297,922,298,922,316,944,316,944,289,944,289,955,289,955,277,956,278,956,278,956,278,944,278,944,251,944,270,921,260,924,274,902,268,906,268,906,285,871,286,871,526,863,526,863,546,903,546,903,538,899,538,899,550,924,550,925,550,926,539,922,540,922,540,922,561,948,561,948,530,947,529,960,529,960,516,961,517,961,518,961,517,947,517,947,486,948,508,921,497,925,513,899,505,903,505,903,526,863,526,863,731,841,731,841,752,883,752,883,744,879,744,879,757,907,757,908,758,908,745,905,746,905,747,905,769,932,769,932,736,932,735,946,735,946,721,946,721,946,722,947,721,932,721,932,688,932,712,903,700,908,717,880,709,884,709,884,731,841,731,841,889,826,889,826,914,876,914,876,904,871,904,871,920,904,920,905,920,906,906,901,907,902,908,902,934,934,934,934,894,933,894,950,894,950,877,951,878,951,879,951,878,933,878,933,838,934,866,900,852,905,872,872,862,877,862,877,889,826,889,826]}]]},{Bz:"0111-0-flowers",AZ:[["8cae40",{s:"M C L C C C L C C L C C C L C C C L C C L C C L Z M C L C C C L C C L C C C L C C C L C C L C C L Z M C L C C C L C C L C C C L C C C L C C L C C L Z M C L C C C L C C L C C C L C C C L C C L C C L Z".split(" "),H:[182,866,160,879,146,903,135,929,135,844,177,842,228,831,230,796,231,770,207,765,182,779,160,792,146,816,135,843,135,713,135,711,134,710,132,710,130,710,128,711,128,713,128,841,117,815,103,791,82,779,57,764,33,769,34,795,36,830,86,841,128,844,128,930,117,903,103,880,82,867,57,853,33,858,34,884,36,919,86,930,128,932,128,1009,128,1010,130,1012,132,1012,134,1012,135,1010,135,1009,135,931,177,928,228,918,230,882,231,856,207,851,182,866,182,866,447,904,430,898,412,904,394,916,394,861,413,873,431,879,447,873,458,868,458,852,447,848,430,841,412,848,394,859,394,788,394,787,393,786,391,786,389,786,388,787,388,788,388,859,370,847,352,841,336,848,325,852,325,868,336,873,352,879,370,873,388,862,388,915,370,904,352,898,336,904,325,909,325,925,336,929,352,936,370,930,388,918,388,1009,388,1010,389,1011,391,1011,393,1011,394,1010,394,1009,394,918,413,930,431,936,447,929,458,925,458,909,447,904,447,904,662,943,650,954,641,972,634,993,634,914,659,907,680,895,692,873,707,846,686,836,662,859,650,870,641,888,634,909,634,818,634,816,632,815,631,815,629,815,628,816,628,818,628,908,621,887,612,870,600,859,576,836,555,846,570,873,582,895,603,907,628,914,628,992,621,971,612,954,600,943,576,920,555,930,570,957,582,978,603,990,628,998,628,1009,628,1010,629,1011,631,1011,632,1011,634,1010,634,1009,634,998,659,991,680,978,692,957,707,930,686,920,662,943,662,943,892,842,875,857,862,882,850,912,850,822,874,817,896,805,908,778,919,755,896,751,877,769,866,779,857,796,850,815,850,737,850,736,848,735,847,735,845,735,844,736,844,737,844,815,836,795,828,779,817,769,798,751,775,755,785,777,797,804,820,817,844,822,844,912,832,882,818,857,801,842,772,816,737,822,753,854,772,894,806,911,844,918,844,1009,844,1010,845,1011,847,1011,848,1011,850,1010,850,1009,850,918,887,911,922,894,941,854,957,822,922,816,892,842,892,842]}],["d13777",{s:"M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M L C L L C C C C L L Z M C C C C Z M C C C C C C C Z M C C C C C C L Z M C C C C C C C L Z M C C C C C C L Z M C C C C C C C L Z M C C C C C C L Z M C C C C C C C L Z M C C C C C C L Z M C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C Z M C C C C Z M C C L L C C C C L L C C L L C C C C L C C C C L Z M C C C Z M C C C L Z M C C C L Z".split(" "),H:[125,603,115,617,112,619,110,618,111,615,122,600,119,597,75,614,43,631,32,650,22,675,36,694,65,682,59,716,94,722,111,696,120,687,126,657,129,604,125,603,125,603,104,638,99,638,95,634,95,629,95,624,99,620,104,620,109,620,113,624,113,629,113,634,109,638,104,638,117,587,100,582,98,579,99,578,102,577,119,583,121,580,92,543,65,517,44,513,17,512,4,531,24,555,-10,560,-6,594,24,603,36,609,67,605,118,591,118,587,117,587,78,578,77,573,79,568,84,567,88,565,93,568,95,573,96,577,94,582,89,584,85,585,80,583,78,578,130,575,130,557,131,554,133,555,135,557,135,575,138,576,164,537,180,504,177,482,171,456,148,449,132,476,117,445,85,460,86,491,84,504,97,532,126,577,130,575,130,575,126,535,130,532,136,533,139,537,142,541,141,546,137,549,133,552,127,551,125,547,122,543,122,538,126,535,146,584,162,577,165,578,166,580,164,582,146,588,147,591,193,604,229,609,249,600,271,585,271,562,240,554,265,530,241,505,212,516,199,518,176,539,143,580,146,584,146,584,183,567,187,570,187,576,185,580,182,584,176,585,172,582,168,579,167,573,170,569,173,565,179,565,183,567,142,601,153,615,153,618,152,619,149,618,138,603,135,605,137,652,144,688,159,704,180,721,202,713,199,681,230,698,246,667,227,643,221,631,194,616,145,597,142,601,142,601,169,631,167,636,162,638,158,637,153,635,151,630,152,625,154,621,159,618,163,620,168,621,170,626,169,631,376,691,343,693,320,697,309,706,297,714,291,729,294,756,294,767,295,779,294,788,305,786,320,788,335,788,353,787,369,782,375,773,382,764,386,739,388,703,381,702,377,699,376,691,363,745,357,757,351,761,345,761,337,760,337,751,343,737,330,742,322,742,319,735,317,728,322,723,331,718,346,712,360,708,374,706,373,720,369,733,363,745,363,745,388,680,387,646,383,623,375,612,366,600,351,594,325,596,314,596,302,597,293,595,295,607,292,622,292,637,292,654,298,671,306,676,315,684,340,689,376,692,377,684,381,680,388,680,388,680,334,665,323,659,318,654,319,648,320,639,329,640,343,645,338,632,339,625,345,621,352,620,358,625,362,634,368,649,372,664,373,677,360,676,347,671,334,665,334,665,399,691,433,690,456,686,467,678,479,670,485,655,484,629,484,617,482,606,484,597,472,598,458,595,442,596,425,596,409,601,403,610,395,618,391,643,388,679,395,680,399,684,399,691,399,691,414,638,420,626,426,622,432,622,440,624,440,633,434,646,447,641,455,642,458,648,459,656,454,661,445,665,430,671,416,675,402,677,403,663,408,650,414,638,414,638,388,703,390,736,394,759,403,770,411,782,426,788,452,785,464,785,475,784,485,785,483,774,485,759,485,744,484,726,479,710,470,704,461,697,436,693,400,691,399,698,395,702,388,703,388,703,442,716,453,722,458,728,458,734,456,742,447,742,434,736,439,749,438,757,432,760,425,762,419,757,415,748,409,733,404,719,403,705,416,706,429,710,442,716,442,716,722,716,722,701,710,690,696,690,695,690,694,690,693,690,693,689,694,689,695,688,705,678,705,662,695,651,685,641,668,641,658,651,658,652,657,653,656,654,656,653,656,652,656,651,656,637,645,625,630,625,616,625,605,637,605,651,605,652,605,653,605,654,604,654,604,653,603,652,593,642,576,642,566,652,556,662,556,679,566,689,567,690,568,690,569,691,568,691,567,691,566,691,552,691,540,702,540,717,540,731,552,743,566,743,567,743,568,743,569,742,569,743,568,744,567,744,557,754,557,771,567,781,577,791,594,791,604,781,605,780,605,779,606,778,606,779,606,780,606,781,606,795,617,807,632,807,646,807,657,795,657,781,657,780,657,779,657,778,658,779,658,779,659,780,669,790,686,790,696,780,706,770,706,754,696,743,695,743,694,742,693,741,694,741,695,741,696,741,710,741,722,730,722,716,631,762,605,762,585,742,585,716,585,691,605,670,631,670,657,670,677,691,677,716,677,742,657,762,631,762,958,602,957,570,951,547,940,532,925,541,905,565,887,591,886,591,886,546,892,545,897,540,897,533,897,527,891,521,884,521,877,521,872,527,872,533,872,540,876,545,882,546,882,591,882,591,870,564,860,536,848,525,833,541,820,565,808,592,807,592,807,546,813,545,817,540,817,533,817,527,812,521,805,521,798,521,792,527,792,533,792,540,797,545,802,546,802,590,784,567,766,545,755,534,729,588,731,639,766,684,787,711,814,726,847,725,919,724,960,659,958,602,958,602,783,671,772,653,777,645,789,648,812,656,830,682,840,711,821,704,797,692,783,671,836,634,840,614,850,612,856,622,867,644,861,676,848,703,840,684,831,659,836,634,836,634,919,659,911,682,885,701,856,711,863,692,875,668,896,654,913,642,922,647,919,659,919,659]}]]},{Bz:"1101-1-confetti",AZ:[["e789ff",{s:"M C C C C C Z M C C C C C C C Z M C C C C C C C Z M C C C C C Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z".split(" "),H:[170,439,169,438,59,370,108,300,152,238,298,276,318,337,338,398,265,380,285,358,312,328,185,247,121,307,72,353,171,440,170,439,318,338,336,399,262,408,184,346,138,309,73,237,112,174,167,88,345,115,377,222,393,276,296,260,335,236,375,212,236,111,155,183,73,254,265,380,285,358,312,328,318,338,318,338,377,222,394,276,318,288,243,236,187,197,146,120,201,56,254,-5,365,26,407,68,407,68,414,94,378,71,344,50,258,31,221,89,178,154,297,260,336,235,374,211,377,222,377,222,406,70,452,115,432,189,324,115,214,39,323,-85,322,-85,320,-85,229,38,331,100,439,166,413,95,377,72,343,51,364,28,406,70,346,405,369,418,356,441,333,428,346,405,513,298,536,311,523,334,500,321,513,298,891,91,914,104,901,127,878,114,891,91,24,123,47,136,34,159,11,146,24,123,664,33,687,46,674,69,651,56,664,33,910,482,933,495,920,518,897,505,910,482]}],["666666",{s:"M C C C C C Z M C C C C C C C Z M C C C C C C C Z M C C C C C Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z".split(" "),H:[919,442,917,443,802,510,764,432,730,364,837,250,901,261,965,272,913,329,903,301,889,262,755,338,777,424,794,490,920,442,919,442,901,261,964,274,936,345,842,386,787,410,690,435,654,370,604,279,716,132,827,153,883,164,821,244,819,197,817,150,659,228,682,335,706,443,913,329,903,301,889,262,901,261,901,261,827,153,884,163,857,238,774,281,711,313,622,313,593,233,564,157,647,71,705,54,705,54,732,60,694,82,658,102,599,170,632,231,669,301,822,244,819,197,816,150,827,153,827,153,706,54,769,34,825,87,706,149,583,213,527,56,526,57,526,59,590,200,696,137,807,70,732,60,694,82,658,102,648,73,706,54,362,328,383,340,371,361,350,349,362,328,52,189,73,201,61,222,40,210,52,189,509,119,530,131,517,152,496,140,509,119,912,16,933,28,921,49,900,37,912,16,629,380,650,392,638,413,617,401,629,380,77,414,98,426,86,447,65,435,77,414,240,76,261,88,249,109,228,97,240,76]}]]},{Bz:"1101-1-branch",AZ:[["7f500b",{s:"M C C C L C C Z M C C C L C C Z M C C C L C C Z M C C C L C C Z M C C C L C C Z M C C C L C C Z".split(" "),H:[144,-14,144,-14,149,-12,150,-12,150,-12,106,22,86,75,63,137,93,193,69,238,64,236,89,174,53,146,80,72,99,19,144,-14,144,-14,280,-18,281,-18,276,-20,276,-20,276,-20,282,23,264,64,244,113,196,129,185,168,189,170,209,120,244,123,269,66,288,25,280,-18,280,-18,429,-5,429,-5,434,-4,434,-4,435,-4,405,28,396,72,386,124,415,164,402,203,398,202,410,150,379,132,391,70,399,26,429,-5,429,-5,514,-7,514,-7,519,-12,519,-12,520,-12,532,50,577,96,630,151,703,150,738,197,733,201,681,144,635,166,571,101,526,54,514,-7,514,-7,666,-67,666,-68,663,-65,662,-64,662,-64,704,-52,734,-18,768,22,763,72,793,99,796,96,760,57,778,26,737,-22,708,-56,666,-67,666,-67,936,-8,936,-8,932,-9,931,-9,931,-9,947,32,938,76,927,127,884,154,881,194,886,195,895,142,930,138,943,76,952,32,936,-8,936,-8]}],["5c7f0b",{s:"M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z".split(" "),H:[119,6,121,16,113,31,81,33,58,34,27,27,27,27,27,27,53,5,70,-1,93,-9,117,-4,119,6,124,8,132,1,151,12,165,33,179,54,180,87,180,87,180,87,153,75,139,60,122,41,115,14,124,8,78,74,82,83,76,97,48,103,27,108,-2,105,-2,105,-2,105,19,81,33,74,53,64,75,65,78,74,83,75,90,68,108,76,124,93,139,110,144,140,144,140,144,140,117,132,104,121,85,105,76,83,83,75,72,152,75,159,72,172,48,179,30,185,6,185,6,185,6,185,22,163,33,156,49,145,68,145,72,152,76,153,81,146,98,151,112,165,126,178,133,203,133,203,133,203,110,199,97,190,80,178,70,160,76,153,73,206,75,213,71,224,49,228,34,232,12,230,12,230,12,230,28,212,39,206,53,199,70,200,73,206,76,207,81,202,95,207,107,220,118,233,122,255,122,255,122,255,102,250,92,241,78,230,71,213,76,207,70,232,78,236,76,252,66,269,56,286,33,297,33,297,33,297,33,274,39,260,46,241,62,228,70,232,285,3,278,8,274,21,291,39,304,52,325,63,325,63,325,63,323,36,316,24,308,7,291,-2,285,3,281,1,280,-7,263,-10,244,-5,224,1,205,20,205,20,205,20,228,27,244,25,264,22,283,10,281,1,270,65,264,69,259,80,272,99,281,112,299,125,299,125,299,125,300,100,296,88,290,72,277,61,270,65,267,64,267,56,252,51,234,53,216,56,197,71,197,71,197,71,216,80,230,80,249,80,267,72,267,64,231,116,225,119,220,128,230,145,237,157,251,170,251,170,251,170,254,148,251,138,248,123,237,113,231,116,228,114,229,108,217,102,201,103,186,103,168,115,168,115,168,115,184,124,196,126,212,127,228,121,228,114,201,148,196,151,192,160,202,174,209,184,222,194,222,194,222,194,223,175,220,166,216,154,206,145,201,148,198,147,198,141,187,137,174,139,160,141,145,152,145,152,145,152,160,159,171,159,185,160,198,153,198,147,188,165,182,163,173,174,170,190,167,205,173,224,173,224,173,224,186,210,191,198,197,183,195,166,188,165,415,10,417,18,413,31,389,36,371,39,347,37,347,37,347,37,364,16,377,9,393,0,412,2,415,10,418,11,424,4,440,11,453,27,466,43,470,69,470,69,470,69,448,62,436,52,420,38,412,17,418,11,391,69,394,76,392,89,371,96,355,102,333,103,333,103,333,103,346,81,357,74,371,64,388,63,391,69,395,70,399,63,414,68,428,80,441,92,448,116,448,116,448,116,427,113,415,105,400,94,390,77,395,70,395,133,398,139,397,150,379,158,367,164,348,167,348,167,348,167,358,148,366,140,377,130,391,128,395,133,398,134,401,128,414,130,427,140,439,149,447,169,447,169,447,169,429,167,418,162,404,154,394,140,398,134,401,177,404,182,402,192,386,198,374,202,358,203,358,203,358,203,368,187,375,181,386,173,399,172,401,177,404,178,408,173,419,176,429,185,439,194,445,212,445,212,445,212,429,210,420,204,408,196,401,183,404,178,402,198,408,201,409,214,403,229,397,244,381,255,381,255,381,255,378,236,381,224,385,208,396,196,402,198,519,23,531,26,543,42,528,75,518,99,495,125,495,125,495,125,485,87,487,67,490,40,508,19,519,23,523,19,521,7,542,-6,571,-8,600,-10,636,6,636,6,636,6,609,27,586,32,557,39,526,32,523,19,570,100,581,102,594,115,585,147,579,170,562,197,562,197,562,197,548,163,547,145,547,120,560,98,570,100,574,97,570,86,587,72,613,66,639,60,673,71,673,71,673,71,652,93,632,101,607,110,578,107,574,97,649,149,659,150,670,160,666,188,662,208,650,232,650,232,650,232,635,205,633,189,631,168,640,149,649,149,652,146,648,137,662,123,683,116,705,109,734,116,734,116,734,116,718,137,702,145,681,155,657,155,652,146,707,178,715,179,724,189,718,213,714,230,701,250,701,250,701,250,690,225,690,211,689,193,699,177,707,178,710,175,707,167,720,156,739,151,759,147,784,155,784,155,784,155,768,172,753,177,734,185,713,183,710,175,732,194,740,189,757,199,770,218,782,237,783,266,783,266,783,266,758,254,746,240,730,223,724,199,732,194,687,-62,688,-54,699,-45,722,-53,739,-59,759,-73,759,-73,759,-73,733,-82,719,-82,701,-81,685,-71,687,-62,684,-60,676,-62,666,-48,662,-28,659,-9,669,17,669,17,669,17,684,-1,689,-16,696,-35,692,-57,684,-60,737,-23,738,-15,746,-5,768,-9,784,-12,804,-23,804,-23,804,-23,782,-34,769,-36,752,-38,736,-30,737,-23,734,-20,727,-24,716,-13,711,5,705,22,711,46,711,46,711,46,727,33,734,20,742,3,742,-17,734,-20,766,35,766,41,772,50,792,48,806,47,823,40,823,40,823,40,805,28,795,26,780,23,766,28,766,35,763,37,758,33,747,42,741,56,735,70,738,91,738,91,738,91,753,81,760,71,768,57,769,40,763,37,782,76,783,82,789,89,806,86,818,84,832,76,832,76,832,76,816,67,806,66,794,65,782,70,782,76,780,78,775,75,766,84,762,97,758,110,762,128,762,128,762,128,775,118,779,108,786,95,785,80,780,78,792,94,788,100,794,112,807,122,819,131,839,133,839,133,839,133,832,116,823,107,812,95,796,89,792,94,945,11,939,18,938,31,959,45,974,55,997,62,997,62,997,62,989,36,980,25,968,11,950,5,945,11,941,11,938,3,921,3,903,13,885,22,871,45,871,45,871,45,894,47,909,42,929,35,944,19,941,11,944,75,938,80,935,93,952,108,964,119,984,128,984,128,984,128,980,104,974,93,965,78,949,70,944,75,940,75,938,67,923,65,906,71,889,77,873,96,873,96,873,96,894,101,908,99,926,95,942,82,940,75,916,133,911,137,907,147,920,162,930,172,946,182,946,182,946,182,944,160,940,151,933,137,921,129,916,133,913,132,912,125,899,123,884,127,869,130,854,145,854,145,854,145,871,151,883,150,899,148,913,139,913,132,893,171,888,175,887,184,899,196,908,204,923,211,923,211,923,211,920,193,915,184,909,173,897,167,893,171,890,170,889,165,877,163,864,168,851,172,839,187,839,187,839,187,855,190,865,188,879,186,891,176,890,170,884,190,877,190,871,202,871,218,871,234,881,251,881,251,881,251,891,234,893,222,896,206,890,190,884,190]}]]},{Bz:"1101-1-sticks",AZ:[["ec7272",{s:"M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z".split(" "),H:[260,148,297,180,286,192,249,160,260,148,114,31,161,47,155,63,109,47,114,31,931,91,902,52,915,42,945,81,931,91,711,19,746,-15,758,-3,723,31,711,19,812,161,782,122,795,112,825,151,812,161,389,34,424,0,436,12,401,46,389,34,431,209,465,175,477,186,442,221,431,209,282,90,282,41,299,41,299,90,282,90,58,233,29,194,42,184,72,223,58,233,574,58,621,74,615,90,569,74,574,58]}],["0000ff",{s:"M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z M L L L L Z".split(" "),H:[722,208,733,161,717,157,706,205,722,208,843,12,797,28,802,44,849,28,843,12,31,74,60,35,47,25,18,64,31,74,220,21,185,-13,173,-1,208,33,220,21,140,166,170,127,157,117,127,156,140,166,558,148,523,114,511,126,546,160,558,148,562,9,516,25,521,41,568,25,562,9,697,105,726,66,713,56,684,95,697,105,961,180,990,141,977,131,948,170,961,180,399,97,353,113,358,129,405,113,399,97]}]]},{Bz:"1101-1-dots",AZ:[["ec7272",{s:"M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z".split(" "),H:[154,47,144,47,136,39,136,29,136,19,144,11,154,11,164,11,172,19,172,29,172,39,164,47,154,47,272,164,262,164,254,156,254,146,254,136,262,128,272,128,282,128,290,136,290,146,290,156,282,164,272,164,529,48,519,48,511,40,511,30,511,20,519,12,529,12,539,12,547,20,547,30,547,40,539,48,529,48,696,101,686,101,678,93,678,83,678,73,686,65,696,65,706,65,714,73,714,83,714,93,706,101,696,101,929,91,919,91,911,83,911,73,911,63,919,55,929,55,939,55,947,63,947,73,947,83,939,91,929,91]}],["0000ff",{s:"M C C C C Z M C C C C Z M C C C C Z M C C C C Z M C C C C Z".split(" "),H:[66,122,56,122,48,114,48,104,48,94,56,86,66,86,76,86,84,94,84,104,84,114,76,122,66,122,309,55,299,55,291,47,291,37,291,27,299,19,309,19,319,19,327,27,327,37,327,47,319,55,309,55,785,180,775,180,767,172,767,162,767,152,775,144,785,144,795,144,803,152,803,162,803,172,795,180,785,180,459,147,449,147,441,139,441,129,441,119,449,111,459,111,469,111,477,119,477,129,477,139,469,147,459,147,811,48,801,48,793,40,793,30,793,20,801,12,811,12,821,12,829,20,829,30,829,40,821,48,811,48]}],["88a500",{s:["M","C","C","Z"],H:[389,224,389,224,410,230,410,230,410,230,389,224,389,224]}]]},{Bz:"1101-1-strips",AZ:[["ffc88c",{s:"M L L L L Z M L L L L Z M L L L L Z".split(" "),H:[-40,0,44,0,137,99,53,99,-40,0,296,0,380,0,473,99,389,99,296,0,632,0,716,0,809,99,725,99,632,0]}],["88a500",{s:"M L L L L Z M L L L L Z M L L L L Z".split(" "),H:[128,0,212,0,305,99,221,99,128,0,464,0,548,0,641,99,557,99,464,0,800,0,884,0,977,99,893,99,800,0]}],["88a500",{s:["M","C","C","Z"],H:[407,217,407,217,428,223,428,223,428,223,407,217,407,217]}]]},{Bz:"1101-1-circs",AZ:[["ec7272",{s:"M C C C C Z M C C C C Z".split(" "),H:[61,209,27,209,0,181,0,147,0,113,27,86,61,86,96,86,123,113,123,147,123,181,96,209,61,209,551,209,517,209,489,181,489,147,489,113,517,86,551,86,585,86,612,113,612,147,612,181,585,209,551,209]}],["217995",{s:"M C C C C Z M C C C C Z".split(" "),H:[303,209,269,209,241,181,241,147,241,113,269,86,303,86,337,86,364,113,364,147,364,181,337,209,303,209,799,209,765,209,738,181,738,147,738,113,765,86,799,86,834,86,861,113,861,147,861,181,834,209,799,209]}],["88a500",{s:["M","C","C","Z"],H:[530,273,530,273,551,279,551,279,551,279,530,273,530,273]}]]},{Bz:"1101-1-squares",AZ:[["014ea7",{s:"M L L L L Z M L L L L Z".split(" "),H:[0,120,124,120,124,244,0,244,0,120,497,120,621,120,621,244,497,244,497,120]}],["fc54ff",{s:"M L L L L Z M L L L L Z".split(" "),H:[249,120,373,120,373,244,249,244,249,120,746,120,870,120,870,244,746,244,746,120]}],["88a500",{s:["M","C","C","Z"],H:[389,354,389,354,410,360,410,360,410,360,389,354,389,354]}]]},{Bz:"1101-0-christmas",AZ:[["014ea7",{s:"M C C C C Z M C C C C Z M L L L L Z".split(" "),H:[255,480,178,480,116,418,116,341,116,264,178,202,255,202,332,202,394,264,394,341,394,418,332,480,255,480,255,232,236,232,221,217,221,198,221,179,236,164,255,164,274,164,289,179,289,198,289,217,274,232,255,232,251,-152,260,-152,260,248,251,248,251,-152]}],["ff9518",{s:"M C C C C Z M C C C C Z M L L L L Z".split(" "),H:[746,623,669,623,607,561,607,484,607,407,669,345,746,345,823,345,885,407,885,484,885,561,823,623,746,623,747,376,728,376,713,361,713,342,713,323,728,308,747,308,766,308,781,323,781,342,781,361,766,376,747,376,742,-8,751,-8,751,392,742,392,742,-8]}]]}]; +var iw={};iw.parse=function(n){var F=new Uint8Array(n),O=null;if(F[0]==80&&F[1]==75){var I=Date.now(),x=UZIP.parse(F.buffer),O=x["document.json"]; +O=JSON.parse(Y.l5(O,0,O.length));iw.Se(O,x)}else{var r=ck.parse(n);O=iw.WV(r[2][0][1])}return O};iw.Se=function(n,F){var O=typeof n; +if(O=="string"||O=="number"||O=="boolean")return n;if(n instanceof Array){for(var e=0;e0){var J=Math.min(100,g);Q.push(J,0);g-=J}L=new Uint8Array(Q)}H=v.NSAttributes instanceof Array?v.NSAttributes:[v.NSAttributes]; +var A={$class:"NSAttributedString",NSString:y,NSAttributes:H};W.attributedString={_class:"MSAttributedString",archivedAttributedString:A}; +A.NSAttributeInfo={$class:"NSMutableData","NS.data":L};delete W.storage}return I};iw._9={Ys:function(n,F){return n[F+1]<<8|n[F]},c:function(n,F){return n[F+3]<<24|n[F+2]<<16|n[F+1]<<8|n[F]},su:function(n,F,O){var I=""; +for(var e=0;e>4,C=Z&15,v=null; +w+=1;if([4,5,6,10,12,13].indexOf(P)!=-1&&C==15){var W=d.Z3(n,w);w+=W.GM;C=W.G}if(!1){}else if(P==0)v=C==8?!1:C==9?!0:null; +else if(P==1)v=d.Z3(n,w-1).G;else if(P==2)v=1<=12&&(_&1)==0){var d=_-13>>1,w=new Uint8Array(d); +ck.Ct(n,O,w,0,d);r.push(w);O+=d}else if(_>=13&&(_&1)==1){var d=_-12>>1;r.push(ck.l5(n,O,d));O+=d}else throw"unknonw type "+_}return r},rf:function(n){if(!(n[18]==1&&n[19]==1&&n[20]==0&&n[21]==64&&n[22]==32&&n[23]==32))throw"unexpected SQL3 header"; +var F={vn:ck.su(n,0,15),mt:ck.Ys(n,16),a7y:ck.c(n,24),size:ck.c(n,28),a3I:ck.c(n,32),agB:ck.c(n,36),a1g:ck.c(n,40),aeG:ck.c(n,44),a18:ck.c(n,48),a0H:ck.c(n,52),akT:ck.c(n,56),anj:ck.c(n,60),ah7:ck.c(n,64)!=0,a9c:ck.c(n,68),a2y:ck.c(n,92),a5W:ck.c(n,96)}; +if(F.mt==1)F.mt=65536;if(F.akT!=1)throw"unsupported text encoding "+F.akT;return F},ann:function(n,F){return n[F]<<16|n[F+1]<<8|n[F+2]},akU:function(n,F){var O=ck.ann(n,F),I=O&8388608; +return I?-(16777215-O+1):O},aky:function(n,F){ck.yo[0]=n[F];return ck.amO[0]},Z3:function(n,F){var O=ck.yo; +for(var e=0;e<4;e++)O[e]=n[F+3-e];return ck.an7[0]},W0:function(n,F){var O=ck.yo;O[0]=n[F+1];O[1]=n[F]; +return ck.anI[0]},Ys:function(n,F){return n[F]<<8|n[F+1]},c:function(n,F){return n[F]<<24|n[F+1]<<16|n[F+2]<<8|n[F+3]},a2d:function(n,F){var O=ck.yo; +for(var e=0;e<8;e++)O[e]=n[F+7-e];return ck.a82[0]},eI:function(n,F){var O=F,E=0;while(!0){var I=n[F]; +F++;E=E*128+(I&127);if(I<128)break}return{K_:E,GM:F-O}},su:function(n,F,O){var I="";for(var e=0;e2*8192*8192)d++;r.scale(1/d,1/d);this.aaQ=[n,F,O,I];var d=r.GW();n=Math.round(n*d); +F=Math.round(F*d);O=Math.round(O*d);I=Math.round(I*d);var Z=this.m4,P=this.vR;if(P==null){r.hb=-n}else{var C=P[2]-P[0]+30,W=Math.round(O-n)+30; +if(this.RG.x+C+W>8192){r.hb=-n;this.RG.x=0;this.RG.y+=this.vL+120;this.vL=0}else{r.hb+=C;this.RG.x+=C}}r.i9=this.RG.y+(this.ahH?I:-F); +this.vL=Math.max(this.vL,Math.round(I-F));this.vR=[n,F,O,I];Z.t.push(Z.VF())};eW.prototype.T7=function(){var n=this.m4,F=n.t[n.t.length-1]; +return F};eW.prototype.IH=function(){var n=JSON.parse(JSON.stringify(bW.uS.default));n.strokeStyleLineAlignment.v.strokeStyleLineAlignment="strokeStyleAlignCenter"; +n.strokeEnabled.v=!1;n.fillEnabled.v=!1;return n};eW.prototype.i_=function(){var n=this.m4,F=n.Kv(); +F.V9("Path "+n.t.length);this.m4.t.push(F);F.Cq|=16;F.add.SoCo={classID:"null",Clr:{t:"Objc",v:q.W.Vm({Q:0,l:0,O:0})}}; +F.add.vmsk=new K.X9;F.add.vstk=this.IH();return F};eW.prototype.Kg=function(n){var F={H:n.crds,s:n.cmds},O=q.z.rD(F,!1); +q.Y.gS(O,this.vW);return O};eW.agf=function(n,F){for(var e=0;e=0&&n.t[e].add.lsct!=ho.bu)e--;var I=this.Ge;if(I){var x=new gv,r=F;while(r>e){x=n.t[r].Yg(this.m4,!1,!0); +r--}O=I.zp(x)}if(O){this.Od.splice(e,1);n.t.splice(e,1)}else{n.t.push(this.acg)}this.ZM=null}};eW.Rr=function(n,F,O){var I,x; +if(n.length!=null){I="SoFi";var r=JSON.parse(bW.E5[bW.order.indexOf("SoFi")]);x={t:"Objc",v:r};x.v.Clr.v=eW.ux(n)}else{var _=eW.ac3(n,F,O); +I="GrFl";x={t:"Objc",v:_}}return{type:I,G:x}};eW.ac3=function(n,F,O){var I=JSON.parse(bW.E5[bW.order.indexOf("GrFl")]),x=I.Grad.v; +x.Intr.v=0;var r=eW.yC(n.mat);r.concat(F);var _=new aE(0,0),d=new aE(O.d,0),w=n.crds;if(n.typ=="rad"){I.Type.v.GrdT="Rdl"; +var Z=.7;_.x=(1-Z)*w[0]+Z*w[3];_.y=(1-Z)*w[1]+Z*w[4];d.x=_.x;d.y=_.y;d.x+=Math.max(w[2],w[5])}else{I.Type.v.GrdT="Lnr"; +_.x=w[0];_.y=w[1];d.x=w[2];d.y=w[3];_.x=d.x+.5*(_.x-d.x);_.y=d.y+.5*(_.y-d.y)}_=r.Pz(_);d=r.Pz(d);q.W.aJ(_,d,O,I); +var P=n.grad;q.W.ne(P,x);return I};eW.prototype.PutText=function(n,F,O,I){var x=F.charCodeAt(0),W=null; +if(this.B2!=-1&&this.B2!=this.g1)return;if(F.length==0||F.length==1&&(x==0||x==8203))return;this.pv(n); +var r=this.m4,_=n.font,d=eW.yC(n.ctm);d.concat(this.vW);var w=eW.yC(_.Tm);w.concat(d);var Z=c.V.GW(w),P=new cD(1/Z,0,0,-1/Z,0,0); +P.concat(w);var C=_.Tfs*Z;if(_.Th!=100||_.Trise!=0){console.log(_)}var v=r.t.length-1;while(v>=0&&r.t[v].add.TySh==null)v--; +if(P.O*P.O+P.Pr*P.Pr<.001&&I==null&&v>=0&&r.t[v].add.TySh&&r.t[v].opacity==Math.round(255*n.ca)){var L=r.t[v],H=this.Od[v],y=L.add.TySh.m,g=(y.hb+H.e0-P.hb)/C,Q=Math.abs(g),J=F.indexOf(" ")==-1,A=y.R==P.R&&y.O==P.O&&y.Pr==P.Pr&&y.oQ==P.oQ,p=A&&Math.abs(H.JZ-P.i9)<1e-5&&Q<.6,U=P.i9-H.JZ; +if(p){W=L;H.e0=P.hb-y.hb;if(g>.2&&J&&[".",",","?",":","!"].indexOf(F)==-1)F=" "+F}else if(A&&Math.abs(P.hb-y.hb)<1e-5&&0>3]>>7-(e&7)&1)*255; +x[_]=d;x[_+1]=d;x[_+2]=d;x[_+3]=255}n=x}return n};eW.prototype.lV=function(n,F,O,I,x){if(n.length!=F*O*4){var r=fx.TG(n.buffer),_=fx.rM(r); +if(_==null||r=="tga")_=fx.rM("jpg");n=new Uint8Array(_.bx(n,I,x)[0].data)}return n};eW.prototype.ShowPage=function(){var n=this.m4; +this.g1++;var F=this.vR;this.fh();var O=n.Kv();n.t.push(O);var I=new gv(Math.round(this.RG.x),Math.round(this.RG.y),Math.round(F[2]-F[0]),Math.round(F[3]-F[1])); +this.wT=this.wT.Tq(I);O.Hp(I);O.add.artb.artboardBackgroundType.v=3;O.V9("Page "+this.g1);O.add.lsct=ho.OC; +O.mf="pass";O.Cq=24};eW.prototype.Print=function(n){console.log("Print:",n)};eW.prototype.Done=function(){var n=this.m4; +if(this.g1==1)n.t[n.t.length-1].add.lsct=ho.x7;n.bJ(this.g1);for(var e=0;e32767)r=!0}if(r){n.t.splice(e,1); +e--;continue}}F.o3(n);if(I&&x.PO.length!=0){this.Ci(x);var w=I.Vb,Z=x.PO.length,P=x.PO[0],C=0,W=0;for(var _=0; +_L.length/2){v[_]=L.split("").reverse().join(""); +var Q=w.EngineDict.ParagraphRun.RunArray[_].ParagraphSheet.Properties;Q._Direction=1;Q.Justification=bt.H2(Q)}}bt._I(w,v.join("\n"))}}n.u4=!0; +n.d=this.wT.d;n.v=this.wT.v;n.buffer=q.f(this.wT.X()*4)};var gd={};gd.WH=function(n,F,O,I){var x=!1,r=[n.root],_=n.root.children; +if(n.add.artd){x=!0;for(var e=0;e<_.length;e++)if(_[e].$.add.artb==null)x=!1;if(x)r=_}var d=new gv(0,0,n.d,n.v),w=F[0]; +w=w.replace(/,/g," ").replace(/\-/g," - ").replace(/ +/g," ").trim();w=w.split(" ");var Z=[];for(var e=0; +er.length){w.splice(e,1);e--}var v=72/n.gC;for(var e=0; +e>>16&255)/255,(iM>>>8&255)/255,(iM&255)/255]; +var hs=co[M];q.z.m(hs.H,x,hs.H);hs=q.z.ad8(hs);O.pth={cmds:hs.s,crds:hs.H};I.Fill(O)}}else if(W&&r[3]==!1){var hK=W.Vb,S=W.m.clone(),a=new cD(1,0,0,-1,0,0); +a.concat(S);a.concat(x);var bV=bt.fQ(hK),bD=new h2(hK,_);for(var e=0;e=0;e--){var W=bW.order[e];if(W=="GrFl"||W=="SoFi")continue; +if(n.add.vmsk&&W=="FrFX")continue;var v=O[W],L=e>7||W=="FrFX";if(L!=d)continue;for(var H=0;Hn.length)throw"e";if(r){x.sub=[];F+=12;var _=x.n+x.size; +while(F<_){var d=h5._7(n,F);x.sub.push(d);F+=8+d.size+(d.size&1)}}return x};var aO={};aO.Hy=function(n,F){var O=new Uint8Array(n); +return aO._7(O,0,F)};aO._7=function(n,F,O){var I=Y.wc,x=Y.su,r={D5:x(n,F,4),n:F+8,size:I(n,F+4)};if(O&&O[r.size]!=null)r.size=O[r.size]; +if(r.D5=="RIFF"||r.D5=="LIST"){r.Ul=x(n,F+8,4)}if(r.size<0||r.n+r.size>n.length)throw"e";if(r.D5=="RIFF"||r.D5=="LIST"&&(r.Ul!="cmpr"&&r.Ul!="stlt")){r.sub=[]; +F+=12;var _=r.n+r.size;while(F<_){var d=aO._7(n,F,O);r.sub.push(d);F+=8+d.size+(d.size&1)}}return r}; +var h5={};h5.Hy=function(n){var F=new Uint8Array(n);return h5._7(F,0)};h5._7=function(n,F){var O=Y.c,I=Y.su,x={D5:I(n,F,4),n:F+8,size:O(n,F+4)},r=x.D5=="FORM"||x.D5=="LIST"||x.D5=="CAT "; +if(r)x.Ul=I(n,F+8,4);if(x.size<0||x.n+x.size>n.length)throw"e";if(r){x.sub=[];F+=12;var _=x.n+x.size; +while(F<_){var d=h5._7(n,F);x.sub.push(d);F+=8+d.size+(d.size&1)}}return x};function cO(){}cO.Hy=function(n,F){var O=new Uint8Array(n); +F.u4=!0;var I=Y.su(O,0,2);if(I=="WL"){alert("Unsupported CDR version")}else{var x=cO.U$,r=aO.Hy(O.buffer),_={data:O,n:0,Tn:cO.adU(O[11])},W=300; +_.iM=_.Tn<600?16:32;cO.lP(_,r.sub,F,0);var d=x(r,"cmpr").sub,w=d[0],Z=d.slice(1),P=x(w,"mcfg").G,C=P.a3Q; +W/=fA.FS(new gv(0,0,Math.round(C.x*W),Math.round(C.y*W)),8192*8192);var v=Math.round(C.x*W),L=Math.round(C.y*W); +F.d=v;F.v=L;F.buffer=q.f(F.d*F.v*4);var H=x(w,"filt").sub,y=x(w,"otlt").sub;w.Oz={};for(var e=0;e=0;e--)cO.cY(W[e],F,O,I)}else if(r=="obj "&&Z.G&&Z.G.path){C.V9("Object "+O.t.length); +var v=F.Oz[Z.G.a6j],L=F.fH[Z.G.akg],H=C.getName(),y=v&&v.type!=0,g=y&&v.G!=null?v.G:[0,0,0];C.Cq|=16; +C.add.vstk=JSON.parse(JSON.stringify(bW.uS.default));var Q=C.add.vstk;Q.strokeEnabled.v=!1;C.add.vmsk=new K.X9; +if(L&&L.aeV!=1){Q.strokeEnabled.v=!0;Q.strokeStyleLineAlignment.v.strokeStyleLineAlignment="strokeStyleAlignCenter"; +Q.strokeStyleLineWidth.v.val=L.lineWidth*I.GW();var J=L.color;Q.strokeStyleContent.v.Clr.v=q.W.Vm({Q:J[0]*255,l:J[1]*255,O:J[2]*255})}var A=Z.G.path; +C.add.vmsk.b=q.z.rD(A,!1);q.Y.gS(C.add.vmsk.b,P);eW.v9(g,C,P,q.Y.if(C.add.vmsk.b));Q.fillEnabled.v=y; +C.XO();C.o3(O)}else if(r=="obj "&&d){var p=Z.G.ael,U=Z.G.a8k,s="";C.add.TySh=bt.Cc(0,0);var j=P.GW(); +C.add.TySh.m.translate(P.hb,P.i9);var b=C.add.TySh.Vb,G=d.G.a4x;for(var e=0;e=e.data.length)throw"e";var n=0;while(e.data[e.n+n]!=0)n++; +var F=Y.su(e.data,e.n,n);e.n+=n+1;return F};cO.adu=function(n){if(n.Tn<600)return Math.PI*cO.Et(n)/1800; +return Math.PI*cO.Da(n)/18e7};cO.a11=function(n){if(n.Tn<1500)return cO.zG(n);else return cO.z6(n)/254e3}; +cO.zG=function(n){if(n.Tn<600)return cO.Et(n)/1e3;else return cO.Da(n)/254e3};cO.ans=function(n){if(n.Tn<600)return CRDParser.pP(n); +else return cO.oc(n)};cO.alJ=function(n){if(n.Tn<600)return CRDParser.Et(n);else return cO.Da(n)};cO.lP=function(n,F,O,I){var x=cO,r=x.anT,_=x.pP,d=x.oc,w=x.ak5,Z=x.Et,P=x.Da,C=x.z6,W=x.zG,v=x.a11,L=x.adu,H=x.ans,y=x.alJ; +for(var g=0;g=1300);J.G.am9=cO.OJ(n);J.G.a4O={};var f=d(n);for(var e=0;e1300)n.n+=4;if(Q>=1300){if(d(n))n.n+=68;else n.n+=12}else{n.n+=20;if(Q>=1e3)n.n+=8;if(d(n))n.n+=8; +n.n+=8}}var iM=d(n);J.G.a0K={};for(var e=0;e=1300)bV+=4;n.n+=bV*a;var a5=d(n);n.n+=28*a5;if(Q>800){var i9=d(n); +n.n+=12*i9}J.G.d8={};for(var e=0;e=1200)c2*=2; +n.n+=c2;bk.a2D=d(n);bk.anM=d(n);if(dG>1){bk.a1Y=d(n);bk.a4j=d(n);bk.ahA=d(n);bk.a0D=d(n);if(Q>800)bk.a9p=d(n)}if(dG>2){bk.abe=d(n); +bk.a7B=d(n);bk.alz=d(n);bk.aeK=d(n);bk.al6=d(n)}J.G.d8[ap]=bk}}else if(J.D5=="LIST")cO.lP(n,J.sub,O,I+1); +else if(J.D5=="txsm"){J.G={};if(Q<600)throw"e";if(Q<700)throw"e";if(Q>=1600)throw"e";if(Q>=1500)n.n+=37; +else n.n+=36;if(d(n)){if(Q<800)n.n+=32}if(Q<800)n.n+=4;J.G.ade=d(n);J.G.a4x=[];n.n+=48;if(Q>=800){if(d(n)){n.n+=32; +if(Q>=1300)n.n+=8}}if(Q>=1500)n.n+=12;var dG=d(n),gg=1,bH=!1;if(!dG){if(Q>=800)n.n+=4;if(Q>800)n.n+=2; +if(Q>=1400)n.n+=2;n.n+=24;if(Q<800)n.n+=8;gg=d(n)}for(var m=0;m=1300&&dG)n.n++; +n.n++;var D=d(n),gP=[];for(e=0;e=800)dV=r(n);var bk={}; +if(fU&1){bk.a3a=_(n);var ac=_(n);if(ac)bk.a6H=ac}if(fU&2)n.n+=4;if(fU&4)bk.an6=W(n);if(fU&8)n.n+=4;if(fU&16)n.n+=4; +if(fU&32)n.n+=4;if(fU&64){bk.a2D=d(n);if(Q>=1500)n.n+=48}if(fU&128){bk.anM=d(n)}if(dV&8){if(Q>=1300){var e2=d(n); +if(n.n+e2*2>=n.data.length){bH=!0;break}n.n+=e2*2}else n.n+=4}if(dV&32){var cX=r(n);if(cX)n.n+=52}if(dT==2)if(Q>=1300)n.n+=48; +gP.push(bk)}if(bH){break}var eR=d(n);if(n.n+eR*4>n.data.length)break;var gR=[];for(e=0;e=1200)bN=w(n)&4294967295;else bN=d(n);gR[e]=bN>>16|bN&1}var eG=eR;if(Q>=1200)eG=d(n);var ef=cO.X3(n); +J.G.a4x.push({a3A:gw,text:ef,d8:gP})}}else if(J.D5=="font"){var fi=_(n),ep=_(n);n.n+=14;var iJ=cO.X3(n); +J.G={id:fi,afp:ep,name:iJ}}else if(["IKEY","ICMT","pfrd","bcfg"].indexOf(J.D5)!=-1){}else if(J.D5=="flgs")J.G=d(n); +else if(J.D5=="bbox"){var aT=W(n),dm=W(n),c1=W(n),gk=W(n);J.G=new gv(aT,dm,c1-aT,gk-dm)}else if(J.D5=="fild"){var a8=d(n),bX=0,c_; +if(Q>=1300){n.n+=4;bX=_(n);n.n+=2}var bL=_(n);if(bL==0){}else if(bL==1){n.n+=Q>=1300?13:2;c_=cO.kk(n)}else if(bL==2){n.n+=Q>=1300?8:2; +var eS=r(n),c$=0;if(Q>=1300){n.n+=17;c$=Z(n)}else if(Q>=600){n.n+=19;c$=P(n)}else{n.n+=11;c$=Z(n)}var cp=L(n),b_=.5+y(n),hy=.5+y(n)-.5; +if(Q>=600)n.n+=2;var gx=H(n)&255,eJ=r(n)/100;n.n++;var d4=H(n)&65535;if(Q>=1300)n.n+=3;var cs=[];for(var e=0; +e=1300){if(bX==158||Q>=1600&&bX==150)n.n+=26;else n.n+=5}var cm=H(n)/100; +if(Q>=1300)n.n+=3;cs.push([cm,en])}c_={typ:eS==1?"lin":"rad",crds:[b_-Math.cos(cp)/2,hy-Math.sin(cp)/2,b_,hy],grad:cs,mat:[1,0,0,1,0,0]}}else console.log("Unknown fill type",bL); +J.G={id:a8,type:bL,G:c_}}else if(J.D5=="outl"){var c5=d(n);if(Q>=1300){var fK=0,ez=0;while(fK!=1){n.n+=ez; +fK=d(n);ez=d(n)}}var d6=_(n),ee=_(n),c0=_(n);if(Q<1300&&Q>=600)n.n+=2;var gq=W(n),ei=_(n)/100;if(Q>=600)n.n+=2; +var d9=L(n);if(Q>=1300)n.n+=46;else if(Q>=600)n.n+=52;var c_=cO.kk(n,c5==270963208||c5==276198e3,c5); +J.G={id:c5,aeV:d6,agR:ee,adk:c0,lineWidth:gq,color:c_}}else if(J.D5=="mcfg"){if(1300<=Q)n.n+=12;else if(900<=Q)n.n+=4; +else if(600<=Q&&Q<700)n.n+=28;var ge=0,iK=0;if(Q<400)throw"e";else{ge=W(n);iK=W(n)}J.G={a3Q:new aE(ge,iK)}}else if(J.D5=="loda"){var X=n.n,gu=H(n),eA=H(n),cE=H(n),iU=H(n),eI=H(n),ad=[],d_=[]; +n.n=X+cE;for(var e=0;e=0;e--)d_[e]=H(n);J.G={};for(var e=0; +e=1300)n.n+=8; +var f7=_(n);if(f7==8){var aZ,cG,aT,bb,dR,dm;if(Q>=600)n.n+=6;if(Q>=500){aZ=C(n);cG=C(n);aT=C(n)/(Q<600?1e3:254e3); +bb=C(n);dR=C(n);dm=C(n)/(Q<600?1e3:254e3)}else throw"e";J.PS=new cD(aZ,bb,cG,dR,aT,dm)}else console.log(f7)}}else if(!1){console.log(J); +var hD=Math.min(J.size,32);console.log(Y.sX(data,J.n,hD));console.log(Y.a69(data,J.n,hD))}}};cO.OJ=function(n,F){var O=cO.oc,I={},x=O(n); +for(var e=0;e=500){_=I(n);if(_==1&&r>=1300)_=25;if(_==25||_==30){var w=0;if(_==30){_=25;w=30}else{w=I(n);n.n+=4}var Z=I(n),P=I(n)}else if(_==14)throw"e"; +else{n.n+=6;d=x(n)}}else throw"e";var C=[];if(_==2||_==9||_==17){var W=[d>>>0&255,d>>>8&255,d>>>16&255,d>>>24&255]; +if(_==2)for(var e=0;e<4;e++)W[e]=Math.round(255*W[e]/100);for(var e=0;e<4;e++)W[e]/=255;C=UDOC.C.cmykToRgb(W)}else if(_==1||_==5){C=[d>>>0&255,d>>>8&255,d>>>16&255]; +for(var e=0;e<3;e++)C[e]=C[e]/255}else console.log("Unknown color model "+_,d,d.toString(16));return C}; +var hc=function(){var n,F,O=new ArrayBuffer(4),I=new Uint8Array(O),x=new Uint32Array(O),r=new Float32Array(O); +function _(W,v){for(var L=0;L>>0}function w(W,v,L,H,y){n=W;F=v;var g=H[0]=="mesg",Q=H[2],J={},A=1,p=g?1e9:Q.length; +while(A<=p){var U=A;if(g){U=d();if(U==0)break}var j=_(Q,U),b=j[2],s=j[1]==1,G=s?d():1,T=new Array(G); +if(b==3){if(!s)throw"e";T=n.slice(F,F+G);F+=G}else for(var e=0;e>>1):m>>>1}else if(b==7)z=d();else if(b==9){if(n[F]==0){z=0; +F++}else{I[0]=n[F];I[1]=n[F+1];I[2]=n[F+2];I[3]=n[F+3];var $=x[0];x[0]=$<<23|$>>>9;z=r[0];F+=4}}else if(b==11){var o=Z(n,F); +z=o[0];F+=o[1]+1}else throw b}else{var h=L[b>>>1];if(h[0]=="enum"){var X=n[F++];if(X>127)throw"e";z=h[2][X]}else{var D=w(n,F,L,h,y+1); +z=D[0];F=D[1]}}T[e]=z}J[j[3]]=s?T:T[0];A++}return[J,F]}function Z(W,v){var L=v;while(W[L]!=0)L++;return[Y.l5(W,v,L-v),L-v]}function P(W,v){var L=v; +while(W[L]!=0)L++;for(var e=v;e127)throw"e";return Y.su(W,v,L-v)}function C(W){n=W;F=1; +var v=[];while(F2)throw"e";var Q=d(),J=[]; +for(var e=0;eI?1:-1}; +cA.U3=function(n){for(var e=1;e1.999*Math.PI)C=q.Y.jP.BT(0,0,w,Z,0);else C=q.Y.jP.aaT(w/2,Z/2,Z/2,L,H);if(y!=0&&y!=1){var g=K.X9.jI(C).slice(3); +g.reverse();for(var e=0;e>>24&255)/255,(W>>>16&255)/255,(W>>>8&255)/255,(W>>>0&255)/255]}function x(W,v){var L=v&4278190080|(v&255)<<16|(v>>>8&255)<<8|v>>>16&255; +new Uint32Array(W.buffer).fill(L)}function r(W,v){var L=W.TSZ,H=W.WPX,y=W.HPX,g=W.TIL,Q=new gv(0,0,H,y),J=q.f(H*y*4),A=0; +for(var p=0;p>>24!=0){var h=v.Kv();h.V9("Background");v.t.push(h);h.rect=new gv(0,0,m,$);h.buffer=q.f(h.rect.X()*4); +x(h.buffer,o)}var X=(z.LYL?z:H).LYL.LAY;for(var e=0;e>>=1}if(W.CLL){y.V9(W.LNM);v.t.push(v.VF()); +var J=W.CLL.CEL.ELM;for(var e=J.length-1;e>=0;e--)w(J[e][1],v,J[e][0],H);y.add.lsct=W.DIS?ho.x7:ho.OC; +y.Cq|=24}else if(L=="GRP"){var A=y.add.lmfx=Z(W.EFL),p;v.t.push(v.VF());var J=W.ELM;if(W.MNA&&W.MRX){p=J[0][1]; +J=J.slice(1)}y.V9("Group: "+J.length+" objects");for(var e=J.length-1;e>=0;e--)w(J[e][1],v,J[e][0],H); +if(p){var U=r(p,H),j=y.r=new K.FZ;j.rect=U[1].clone();j.rect.x=p.XLC;j.rect.y=p.YLC;j.channel=q.f(j.rect.X()); +q.xg(U[0],j.channel,0);q.uZ(j.channel)}y.add.lsct=ho.OC;y.Cq|=24}else if(L=="IMG"){y.V9(W.OBN?W.OBN:"Bitmap"); +var U=r(W,H);y.rect=U[1].clone();y.rect.x=W.XLC;y.rect.y=W.YLC;y.buffer=U[0]}else if(L=="TXT"){var b=W.TFS,s=b.TRN instanceof Array?b.TRN.length:1,m=""; +y.add.lnsr="rend";y.add.TySh=bt.Cc(0,0);y.add.TySh.Qa=new gv(0,0,100,100);var G=new cD(1,0,0,1,W.LFT,W.TOP); +if(W.MTX){var T=W.MTX,j=new cD(T.M00,T.M01,T.M10,T.M11,T.M20,T.M21);G.concat(j)}y.add.TySh.m=G;var z=y.add.TySh.Vb; +for(var e=0;e6e3)a=.5;s.d=Math.round(s.d*a);s.v=Math.round(s.v*a);s.gC=Math.round(72*a);s.buffer=q.f(s.d*s.v*4); +for(var e=0;e<6;e++)R[e]*=a;for(var bV=0;bV<$.length;bV++){var a5=$[bV],i9=C(z,a5);F(s,i9,R,m,a5,z)}if(G)console.log("layers created",Date.now()-T); +T=Date.now()}function F(b,s,G,T,z,m){var $="",o=0,h="",X=UDOC.G,D=UDOC.getState(),f="norm",R=1,i="SoCo",M=!1,hK=0,co=null,iM=null,hs=null,S,a,bV,a5=0,i9=0,dG=0; +D.ctm=G;var t=[0,0,0],N=[0,0,0],bD=[],ap=[],bk=[];for(var c2=0;c2a8)for(var e=0; +e",0,0); +b.t.push(c_);c_.mf=f;c_.opacity=Math.round(255*R);c_.tt(dG==0);var G=new cD;G.scale(1,-1);G.concat(d(a.slice(1))); +G.concat(d(D.ctm));var eS=c_.rect.clone();eS.x=eS.y=0;var gP=q.z.om(eS).H;q.z.m(gP,G,gP);c_.add.SoLd.Trnf=c.V.uB(gP); +c_.add.SoLd.nonAffineTransform=c.V.uB(gP);c_.aY(b,!1)}else if(dT=="Ln"){$=x(gg)}else if(dT=="u"||dT=="q"||dT=="Lb"){ap.push(i9==1); +bk.push((dT=="Lb"?1-dV[0]:dG)==0);if(M)continue;b.t.push(b.VF())}else if(dT=="U"||dT=="Q"||dT=="LB"){if(ap.length==0||bk.length==0)throw c2; +var c$=ap.pop(),cp=bk.pop();if(dT=="LB")c$=a5==1;if(M)continue;var c_=b.Kv();c_.V9((dT=="U"?"":"")+h); +if(dT=="LB")c_.V9($);if(dT=="Q"){var b_=bD.pop(),hy=UDOC.G.isBox(b_,[0,0,b.d,b.v]);if(!hy)Z(c_,b_,b)}c_.add.lsct=c$?ho.x7:ho.OC; +c_.mf="pass";c_.Cq=24;c_.tt(cp);b.t.push(c_)}else if(dT=="Bb"||dT=="Bh"||dT=="BB"){}else if(dT=="Bg"){var gx=T.Setup.Gradient[x(gg)]; +i="GdFl";t=I(gx.j5,gx.a7G)}else if(dT=="Bm"||dT=="Xm"){var eJ=t.Type.v.GrdT;if(eJ=="Lnr"&&dT!="Xm"||eJ=="Rdl"&&dT!="Bm")continue; +var d4=q.z.gh(D.pth.crds),cs=new aE(0,0),en=new aE(1,0),cm=new cD;cm.concat(d(dV));cm.concat(d(D.ctm)); +cs=cm.Pz(cs);en=cm.Pz(en);if(eJ=="Lnr"){cs.x=(cs.x+en.x)/2;cs.y=(cs.y+en.y)/2}q.W.aJ(cs,en,d4,t)}else if(dT=="p"){var c5=x(gg),fK=T.Setup.Pattern[c5]; +if(fK.raw==null){var d4=fK.I6,fi=Math.round(d4[2]-d4[0]),ep=Math.round(d4[3]-d4[1]),bH=new fj;bH.d=fi; +bH.v=ep;bH.buffer=q.f(fi*ep*4);F(bH,fK.PO,[1,0,0,-1,-fK.I6[0],ep+fK.I6[1]]);fK.raw=new Uint8Array(fx.rM("PSD").eJ(bH))}var ez=gg.slice(gg.indexOf(")")+2),d6=ez.slice(0,ez.indexOf("[")-1).split(" ").map(parseFloat),ee=ez.slice(ez.indexOf("[")+1,ez.indexOf("]")).split(" ").map(parseFloat); +i="patt";t=[c5,d6,ee]}else if(dT=="J"||dT=="j"||dT=="w"||dT=="M"||dT=="d"){for(var e=1;e",0,0);var eS=c_.rect.clone();eS.x=eS.y=0;var gP=q.z.om(eS).H,ee=d(t[2]);ee.hb=ee.i9=0; +q.z.m(gP,ee,gP);c_.add.SoLd.Trnf=c.V.uB(gP);c_.add.SoLd.nonAffineTransform=c.V.uB(gP);c_.aY(b,!1)}else{c_=b.Kv(); +c_.Cq|=16;var eA=c_.add.vstk=JSON.parse(JSON.stringify(bW.uS.default));eA.strokeEnabled.v=eA.fillEnabled.v=!1; +if(i=="SoCo"){c_.add.SoCo=JSON.parse(bW.E5[bW.order.indexOf("SoFi")]);var cE=c_.add.SoCo.Clr.v;r(cE,t)}if(i=="GdFl")c_.add.GdFl=t; +if(fU=="f"||fU=="b"||dT=="*U"&&hK&1)eA.fillEnabled.v=!0;if(fU=="s"||fU=="b"||dT=="*U"&&hK&2)eW.oj(eA,D,1,eW.ux(N))}c_.V9("<"+(dT=="*U"?"Compound ":"")+"Path>"+h); +c_.mf=f;c_.opacity=Math.round(255*R);c_.tt(dG==0);Z(c_,D.pth,b);b.t.push(c_);X.newPath(D)}else if(dT==","&&gP[1]=="/StoryIndex"){var iU=T.Setup.TextDocument,fo=null; +if(!(iU instanceof Array))iU=T.Setup.TextDocument=W(iU,m);var eI=iU[0],ad=iU[2];if(eI._DocumentResources)eI=iU[0]=gI.ab$(eI); +var c_=b.Kv();c_.add.lnsr="rend";c_.add.TySh=bt.Cc(0,0);var d_=fZ.aoa(eI),c9=c_.add.TySh.Vb=d_[dV[0]]; +if(c9==null){console.log("text not found");continue}c_.V9(bt.fQ(c9).slice(0,50));c_.mf=f;c_.opacity=Math.round(255*R); +c_.tt(dG==0);var gu=eI._1._1[dV[0]]._1._0[0]._0;gu=parseInt(gu.slice(1));var ek=eI._0._8._0,fX=ek[gu]._0; +if(fX._0)fo=_(fX._0);else if(fX._1)fo=_(fX._1._0);else fo=_(fX._2._2).slice(3);if(fo.length!=2){var d4=q.z.gh(fo); +fo=[d4.x,d4.y];if(d4.X()!=0){bt.li(c9,1);bt.Ar(c9,[0,0,Math.round(d4.d),Math.round(d4.v)])}}var eY=new cD,hG=new cD(1,0,0,1,fo[0],fo[1]),gK=new cD(1,0,0,1,-ad[0],-ad[1]),b$=d(D.ctm),c4=new cD; +if(fX._2&&fX._2._2){var G=_(fX._2._2);c4=new cD(G[0],G[1],G[2],G[3],G[4],G[5])}eY.concat(hG);eY.concat(c4); +eY.concat(gK);eY.scale(1,-1);eY.concat(b$);c_.add.TySh.m=eY;b.t.push(c_);b.u4=!0}}}function O(b,s,G){var T=UDOC.G,z=[],m=[],$,o,h=[],bk=0,c2=0,dV=0; +for(var X=0;X");var fU=dT.add.vstk=JSON.parse(JSON.stringify(bW.uS.default)); +fU.strokeEnabled.v=!1;for(var e=0;edV){dV=bN;bk=e;c2=gg}}var eG=m[bk],ef=m[c2],fi=dT.add.GdFl=I(0,[[0,eG[0]],[1,ef[0]]]),ep=d(s.ctm),iJ=ep.Pz(new aE(eG[1],eG[2])),aT=ep.Pz(new aE(ef[1],ef[2])),dm=q.z.gh(s.pth.crds); +iJ.x=(iJ.x+aT.x)/2;iJ.y=(iJ.y+aT.y)/2;q.W.aJ(iJ,aT,dm,fi);Z(dT,s.pth,G);G.t.push(dT);T.newPath(s)}function I(b,s){var G=JSON.parse(bW.E5[bW.order.indexOf("GrFl")]),T=G.Grad.v; +T.Intr.v=0;G.Type.v.GrdT=["Lnr","Rdl"][b];q.W.ne(s,T);return G}function x(b){return b.slice(b.indexOf("(")+1,b.indexOf(")"))}function r(b,s){b.Rd.v=s[0]*255; +b.Grn.v=s[1]*255;b.Bl.v=s[2]*255}function _(b){var s=[];for(var e=0;eh)o=h;G.push(o,h);z-=h-o}}G.push(s._end);var X=new Uint8Array(z); +for(var e=0;e>",$),h=Y.su(T,$+2,o-$-2).split("/"),X=[];for(var e=0;e")){var X=Y.$s(z.join("")),D=FromPS.F.ASCII85Decode({off:0,buff:X}); +s.push(D);G.push(!1);top++;z=null}}else if(m!=null){if(o=="X+"){s.push(m);G.push(!1);top++;m=null}else m.push(o)}else if(o=="/Binary : /ASCII85Decode ,"){z=[]}else if(o=="X=")m=[]; +else if(o=="/SVGFilter :"||o=="; /Def ;")continue;else if(o.startsWith("/")){if(o.startsWith("/XMLUID")){var f=p(o); +if(G[top])throw"e";s[top][f[4]]=f[2]}if(o.startsWith("/GObjRef")){var f=p(o);if(!G[top])throw"e";s[top].push(f[2])}else{var R=o.startsWith("/Array")||o.startsWith("/Document"); +s.push(R?[]:{});G.push(R);top++}}else if(o.endsWith(",")){var i,t,f=p(o);f.pop();if(f[0]==";"||f.length==1){t=s.pop(); +G.pop();top--;i=G[top]?null:f.pop()}else{i=G[top]?null:f.pop();var N=f.pop(),M=f[0];if(N=="/Int")t=parseInt(M); +else if(N=="/Real")t=parseFloat(M);else if(N=="/Bool")t=M=="1";else if(N=="/String"||N=="/UnicodeString")t=f.join(""); +else if(N=="/RealMatrix"||N=="/RealPoint"||N=="/RealPointRelToROrigin")t=f.map(parseFloat);else throw N}if(G[top])s[top].push(t); +else s[top][i]=t}else if(o==";"){}else if(o==""){}else{if(o.indexOf("/RealPoint")!=-1){}else if(o.startsWith("(")&&o.endsWith(")")){}else if(o.endsWith("/RealMatrix")){}else throw o; +T=T?T+o:o}}return s}function p(b){var s=0,G=[];while(s>>16)+1)};fx.mk={abn:function(n,F){fetch(n).then(function(O){return O.arrayBuffer()}).then(function(O){var I=new Uint8Array(O),x=0,w=""; +if(F){x=I.length;var r={level:9},_=pako.deflateRaw(I,r),d=UZIP.deflateRaw(I,r);console.log(x,_.length,d.length); +I=_.length")!=-1)I="icc";else I="svg"}if(O(F,[60,115,118,103],x))I="svg"; +if(O(F,[60,33,100,111],x)||O(F,[60,33,68,79],x)){if(Y.qt(F," \t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",_=" "+r+""; +if(n==1)_+=""+""+""; +_+=""+""+""; +var d=new Uint8Array(_.length);Y.ng(_,d,0);var w="data:image/svg+xml;base64,"+fx.Mw(d.buffer);return{Qb:w,j:new gv(0,0,128,128),hC:new aE(64,64)}}; +fx.Mw=function(n){var F=new Uint8Array(n),O="";for(var e=0;e>3)]; +j=j>>7-(e&7)&1;var b=A*P+U<<2;L[b]=L[b+1]=L[b+2]=(1-j)*255;L[b+3]=255}}if(I=="P5")for(var e=0;e15e7||w==0||w==2){var Z=new PDFJS.JpegImage;Z.parse(n);var P=Z.getData({width:x,height:r,forceRGB:!0,isSourcePDF:O}),d=q.f(_*4); +for(var e=0;e<_;e++){var C=e<<2,W=C-e;d[C]=P[W];d[C+1]=P[W+1];d[C+2]=P[W+2];d[C+3]=255}}else{d=fx.$G.a2w(n.buffer,I)}var v=F[225]; +if(v)for(var e=0;e1&&A<20)g=q.raw.uG(A,x,r)}if(I.xmp){y=fb.n2(I.xmp,y)}var p=F[237],U=[],j=[]; +if(p){var b=new Uint8Array(65536),s=0,G=0;for(var e=0;eb.length){var o=new Uint8Array(b.length*2); +o.set(b);b=o}var h=new Uint8Array(n.buffer,G,$);b.set(h,s);s+=$}G=0;n=b;while(G>>1)*x+bN>>>1),ef=dG[eG],fi=dG[eG+(_>>>2)]; +bV[C]=bV[C+1]=bV[C+2]=ef;bV[C+3]=255;eR[C]=eR[C+1]=eR[C+2]=fi;eR[C+3]=255}co.push({Kh:new gv(0,0,x,r),data:bV.buffer},{Kh:new gv(0,0,x,r),data:eR.buffer})}else if(ap=="edof"){var A=dG[8+7]; +console.log(A.toString(16));var G=8+16,ep=Y.KO(dG,G),iJ=Y.KO(dG,G+2),_=ep*iJ;G+=4;G+=32+16;var aT=q.f(_*4); +for(var e=0;e<_;e++){var C=e<<2;aT[C]=aT[C+1]=aT[C+2]=dG[G+e];aT[C+3]=255}if(A==16){}else if(A==19){var dm=aT.slice(0); +q.J.ej(aT,dm,ep,iJ);var c1=ep;ep=iJ;iJ=c1;q.J.a6L(dm,aT,ep,iJ)}else throw"Unknown orientation of a depth map"; +co.push({Kh:new gv(0,0,ep,iJ),data:aT.buffer})}else if(bk!=-1&&!(dG[0]==255&&dG[1]==129)){try{if(bk!=0)dG=dG.slice(bk); +var i9=fx.rM("jpg").bx(dG.buffer);for(var e=0;e1){var gk=co[0].Kh; +co[0].Lo="Main";for(var e=1;e>>3)]>>>7-(J&7)&1,p=A*255; +y[P]=p;y[P+1]=p;y[P+2]=p;y[P+3]=255}}return[{Kh:new gv(0,0,_,r),data:y.buffer}]}else{var v=new PDFJS.JpxImage; +v.parse(n);var _=v.width,r=v.height,U=v.tiles,j=v.componentsCount,b=new Uint8Array(_*r*4),s=new gv(0,0,_,r); +for(var v=0;v>>1,v.y>>>1,v.width-1,v.height-1,n[e][1]]; +for(var H=0;H<5;H++)_(d,w+3*H,L[H]);w+=15;d.nz(w,1);d.data[w]=1-W.blend<<1|W.dispose;w++;var y=new Uint8Array(fx.EJ(W.img.buffer,v.width,v.height,"webp",1)),g=aO.Hy(y.buffer).sub,Q=Y.su(y,12,4); +if(Q!="VP8L"&&Q!="VP8 "&&Q!="VP8X")throw"e";var J=Q=="VP8 "?0:Q=="VP8L"?12:30,A=y.length-J;d.nz(w,A); +for(var H=0;H>>14&(1<<14)-1)+1}else throw"e"; +var v=[O(I,n,{n:0,size:F.length},P,C)];return v}var L=Z.n,P=1+(Y.wc(F,L+4)&16777215),C=1+(Y.wc(F,L+7)&16777215),H=[],y=new gv(0,0,P,C),g=q.f(P*C*4); +for(var e=0;e>>1==0)q.p.F_("norm",b,p,g,y,p,1);else q.nF(b,p,g,y);H.push({Lo:"_a_"+H.length+","+U,Kh:y.clone(),data:g.buffer.slice(0)}); +if((s&1)==1){q.IW(b,0);q.nF(b,p,g,y)}}return H};fx.tD.afA=function(n,F,O,I,x){var r=fx.tD.exp,_=r.memory,d=5e6+2*O.size+I*x*10; +fx.IT(r,d);var w=new Uint8Array(_.buffer),Z=r.malloc(O.size);w.set(new Uint8Array(F,O.n,O.size),Z);var P=r.malloc(8),C=r.WebPDecodeARGB(Z,O.size,P,P+4),W=Y.wc(w,P),v=Y.wc(w,P+4),L=W*v*4,H=q.f(L); +for(var e=0;e256){v=null; +break}}}if(v){y=1;while(1<>>16,G=v[e]>>>8&255,T=v[e]&255;j[b]=s;j[b+1]=G;j[b+2]=T}U+=p}A.nz(U,J*Z); +if(y==24)for(var z=0;z>>1)]|=h<<4-($&1)*4}}else if(y==1)for(var z=0; +z>>3)]|=h<<7-($&7)}}U+=J*Z+2; +return A.data.slice(0,U).buffer}function F(d){d=new Uint8Array(d);if(Y.wc(d,0)==40)return[O(d.buffer,0)]; +var w=0,Z=Y.su(d,w,2);w+=2;if(Z!="BM"){alert("Unsupported BMP format: "+Z);return}var P=Y.wc(d,w);w+=4; +w+=4;var C=Y.wc(d,w);w+=4;return[O(d.buffer,w,C)]}function O(d,w,Z){d=new Uint8Array(d);var P=Y.wc(d,w),C=r(d,w+4); +if(C.w0!=1)alert("unsupported number of color planes: "+C.w0);if(C.rA!=0&&C.rA!=1&&C.rA!=2&&C.rA!=3){alert("Unsupported BMP compression: "+C.rA); +return}w+=P;var W=w,v=d;if(Z==null)Z=w;if(C.rA==1||C.rA==2){var L=x(d,Z,C);C.oC=8;d=L;Z=0}var H=4*Math.floor((C.oC*C.HL+31)/32),y=C.HL,g=Math.abs(C.Sa),Q=new Uint8Array(y*g*4); +Q.fill(255);if(C.oC==32)for(var J=0;J>>11)*(255/31); +Q[U+1]=(j>>>5&63)*(255/63);Q[U+2]=(j&31)*(255/31)}}else if(C.oC==8)for(var J=0;J>1)];b=b>>4-4*(p&1);b=b&15; +Q[U]=v[W+4*b+2];Q[U+1]=v[W+4*b+1];Q[U+2]=v[W+4*b+0]}}else if(C.oC==1)for(var J=0;J>3)];s=s>>7-(p&7);s=s&1;Q[U]=v[W+4*s+2];Q[U+1]=v[W+4*s+1]; +Q[U+2]=v[W+4*s+0]}}else throw"Unknown bit depth "+C.oC;if(C.Sa<0){var G=new Uint32Array(Q.buffer),T=g>>>1; +for(var J=0;J>>4-((e&1)<<2)&15}function x(d,w,Z){var P=Z.HL,C=Math.abs(Z.Sa),W=new Uint8Array(P*C),v=0,L=0,e=0; +while(L0){if(Z.oC==4)for(e=0;e>>1)],e)}Q=Math.ceil(y/2)}else{for(e=0; +e127?255:0;if(Z==0)w[e]=w[e+1]=w[e+2]=0}x.push(w.buffer); +r.push(n[d][1])}var P=Math.round(2+254*I[0]/100),C=UPNG.encode.compress(x,F,O,P,[!0,!1,!1,8,!1]),W=C.plte,v=new Uint8Array(4),L=new Uint32Array(v.buffer); +for(var e=0;e256||O>256){alert("Maximum ICO size is 256x256 px. Will be cropped.",4e3); +var x=Math.min(F,256),r=Math.min(O,256),_=new gv(0,0,x,r),d=q.f(_.X()*4),w=new gv(0,0,F,O),Z=new Uint8Array(n[0][0]); +q.nF(Z,w,d,_);n[0][0]=d.buffer;F=x;O=r}var P=new gV,C=0,W=I&&I[0]==!0;Y.gd(P,C,0);C+=2;Y.gd(P,C,W?2:1); +C+=2;Y.gd(P,C,1);C+=2;var v=new Uint8Array(fx.rM("png").eJ(n,F,O));P.nz(C,16);P.data[C]=F==256?0:F;C++; +P.data[C]=O==256?0:O;C++;C+=2;Y.gd(P,C,W?Math.round(F/2):1);C+=2;Y.gd(P,C,W?Math.round(O/2):32);C+=2; +Y.UJ(P,C,v.length);C+=4;Y.UJ(P,C,6+16);C+=4;P.nz(C,v.length);for(var e=0;ev)v=Q;L+=Q;H++}}W=1/256*65535/(.5*v+.5*(2*L/H))}var J=[]; +for(var e=0;e3)P+=4;w.opacity=Math.round(255*O[P]/100);P++;w.tt(O[P]!=0);P++;w.mf="norm,lddg,norm,dark,diff,norm,hLit,norm,norm,lite,mul ,over,scrn,fsub".split(",")[O[P]]; +P++;P++;if(I>3){var v=Y.Ys(O,P);P+=2;if(v!=0){var L=JSON.parse(Y.l5(O,P,v));P+=v;var H=L.text,y=L.textSettings,g=y.font,Q=y.size,J=y.padding,A=parseInt(y.color.slice(1),16); +w.add.lnsr="rend";w.add.TySh=bt.Cc(0,0);w.add.TySh.Qa=new gv(0,0,100,100);w.add.TySh.m=new cD(1,0,0,1,w.rect.x+J,w.rect.y+J); +var p=w.add.TySh.Vb;bt.li(p,1);bt.Ar(p,[0,0,w.rect.d-J*2,w.rect.v]);bt.bw(p,0,H);var U=bt.gU(p,0,1); +U.Bw.FontSize=Q;U.Bw.FillColor={Type:1,Values:[1,(A>>>16&255)/255,(A>>>8&255)/255,(A>>>0&255)/255]}; +if(y.bold)g+="-Bold";bt.Zu(U,g);U.jp.Justification=["left","right","center"].indexOf(y.align);bt.F$(p,0,H.length,U)}}var j=Y.c(O,P); +P+=4;if(j!=w.rect.X()*4)throw"e";w.buffer=q.f(j);if(I>3){b=0;s=1;G=2;T=3}for(var e=0;e3){r+=Z; +continue}var m=O[P];P++;var $=Y.Ys(O,P);P+=2;if(z!=0){w.r=new K.FZ;w.r.rect=w.rect.clone();w.r.channel=q.f(w.rect.X()); +for(var e=0;e>>2]=O[P+e+1];P+=z}if(m!=0){var o=JSON.parse(bW.default);w.add.lmfx=o; +for(var e=0;e>>4<<1,j=P+C,b=q.f(U*d*j),z,m,$;gL.xY(I,x,J.size,b,0,b.length); +var s=P-2,G=(1<>>3]>>>7-(X&7)&1;o|=D<>>P,o=o&(1<>>s!=0){var i=o>>>s,t=(o&G)*T;if(i==1)$=t;else if(i==2)z=t;else if(i==3)m=t}else{var t=v+o*3; +z=I[t+0];m=I[t+1];$=I[t+2]}}else{z=o>>>0&255;m=o>>>8&255;$=o>>>16&255}r[R+0]=z;r[R+1]=m;r[R+2]=$;r[R+3]=255}}}return[{Kh:new gv(0,0,_,d),data:r.buffer}]}; +fx.Lm={};fx.Lm.dp=!1;fx.Lm.eJ=function(n,F,O,I){var x=n[0][4],r=new Uint8Array(n[0][0]),_=2,d=x?!0:!1,w=d?4:3,Z=new Uint8Array(F*O*w); +for(var P=0;P>>4,y=Y.su(F,18,I),g=q.f(C*W*4),O=18+I+(d*w>>>3),Q=new Uint8Array(F.buffer,O); +if(r>3){var J=0,A=F,p=new Uint8Array(C*W*v>>>3),U=O,j=0,b=F.length,s=v>>>3;while(j>>3;var T=new Uint8Array(4),z=fx.Lm.a4Y; +for(var m=0;m>>3; +if(r==1){var t=0;if(v==8)t=Q[i];else throw"e";z(F,18+I+_+(t*w>>>3),w,T);X=T[0];D=T[1];f=T[2];R=T[3]}else if(r==2){z(Q,i,v,T); +X=T[0];D=T[1];f=T[2];R=T[3]}else if(r==3){if(v==8)X=D=f=Q[i];else throw"e"}var N=h*4;g[N]=X;g[N+1]=D; +g[N+2]=f;g[N+3]=R}var T={Kh:new gv(0,0,C,W),data:g.buffer,Lo:y};if(q.Dd(g)){var M=q.f(C*W);q.xg(g,M,3); +q.IW(g,4278190080,16777215);T.TM=[M]}return[T]};fx.Lm.a4Y=function(n,F,O,I){var x,r,_,d=255;if(O==24||O==32){_=n[F]; +r=n[F+1];x=n[F+2];if(O==32)d=n[F+3]}else if(O==16){var w=n[F+1]<<8|n[F+0];x=w>>>10&31;r=w>>>5&31;_=w>>>0&31; +x=Math.round(x*(255/31));r=Math.round(r*(255/31));_=Math.round(_*(255/31))}else throw"e";I[0]=x;I[1]=r; +I[2]=_;I[3]=d};fx._$={};fx._$.bx=function(n){var F=new Uint8Array(n),O=0,I=112,x=42,r=Y.wc,P;O+=8;var _=F[O]; +O++;if(_!=x)throw"e";var d=r(F,O);O+=4;var w=Y.O$(F,O,d);O+=d*2;var Z=[];while(O0)Z.push(O+v);O+=v+C}var L=new DOMParser,H=L.parseFromString(w,"image/svg+xml").firstChild.firstChild,y=[]; +fx._$.pc(H,F,Z,y);return y};fx._$.pc=function(n,F,O,I){var x=n.firstChild.firstChild;if(x.tagName=="Image"){var r=x.getElementsByTagName("ImageDescription")[0],_=r.children[0].children,d=r.children[1].children,w=O.shift(),Z=[]; +for(var e=0;e3)Z[2]*=Z.pop(); +var P=_.length,C=Z[0],W=Z[1],v=Z[2],L=parseInt(d[0].getAttribute("BytesInc"));for(var H=0;H>>2);else throw L; +if(g!=3)q.GF(Q,y,g);if(P==1){q.GF(Q,y,1);q.GF(Q,y,2)}w+=C*W*L}I.push({Kh:new gv(0,0,C,W),data:y.buffer})}}else{var A=n.children,p=0; +while(p>>2); +for(var e=0;eC)C=g}var Q=q.f(w*4),J=1/C;for(var A=0;A>>7)}else if(j==305){var s=Math.round(Math.sqrt(b)),G=[]; +for(var T=0;T>>3; +co[S]|=hs>>>16;co[S+1]|=hs>>>8;co[S+2]|=hs}var N=v*8/(g*Q);if(N==16)for(var e=0;e>>12|(hK&4095)<<12; +h[e]=hK>>>16&255;h[e+1]=hK>>>8&255;h[e+2]=hK&255}if(o)h=fx.gf.a3$(h,g,Q);var bD=o?2:1;g*=bD;y.t256=[g]; +y.t257=[Q];y.t258=[X];y.t50719=[A[1],A[0]*bD];y.t50720=[A[3],A[2]*bD];y.width=g;y.height=Q;y.data=new Uint8Array(h.buffer); +return[y]};fx.gf.a3$=function(n,F,O){n=new Uint16Array(n.buffer);var I=new Uint16Array(F*O*2);for(var x=0; +x>>1)+r&1)==0){I[d]=w; +I[d+2*F+1]=n[_+1]}else{I[d]=n[_-1];I[d+2*F+1]=w}}return I};fx.Ec={};fx.Ec.st=!0;fx.Ec.eJ=function(n,F,O,I){var x=new Uint8Array(n[0][0]),r=F*O,_=[1,3,4][I[0]],d=8+8*I[1],w=I[2]; +if(_==1){var Z=new Uint8Array(F*O);q.xg(x,Z,0);x=Z}if(_==3){var Z=new Uint8Array(F*O*3);for(var e=0; +e>>8;Z[e*2+1-w]=v&255}x=Z}return x.buffer}; +fx.oA={};fx.oA.bx=function(n,F){function O(w){return~~(.5+q.sK(Math.max(0,Math.min(1,w)))*255)}var I=EXRLoader.parse(n),x=I.width,r=I.height,_=q.f(x*r*4); +for(var d=0;d>>31==1){g=g&16777215}if(e>>31==1){Q=Q&268435455;A=x(_,d,d+Q,p,P)}else{var U=F(_,d+Q),j=F(_,d+Q+4),b=F(_,d+Q+8),s=F(_,d+Q+12); +if(s!=0)throw"e";if(UP[0]+P[1])throw"e";var G=P[2]+U-P[0];A=_.slice(G,G+j);var T=fx.TG(A.buffer); +if(T&&["bmp","png","ico"].indexOf(T)!=-1){var z=fx.rM(T);if(!z.dp){var m=null;try{m=z.bx(A.buffer)}catch(hl){}if(m){m[0].Lo=p[1]; +I.push(m[0])}}}else if(T)console.log(T)}y[J]=A;w+=8}return y}function r(_){I=[];var d=new Uint8Array(_),w=0,Z=n(d,w); +w+=2;w+=58;var P=F(d,w);w+=4;w=P;var C=O(d,w,4);w+=4;var W=n(d,w);w+=2;var v=n(d,w);w+=2;var L=F(d,w); +w+=4;var H=F(d,w);w+=4;var y=F(d,w);w+=4;var g=n(d,w);w+=2;var Q=n(d,w);w+=2;w+=g;var J={};for(var e=0; +e0){if(y["o"+i]!=null)throw"e";y["o"+i]=f}return f}function $(D,y){if(D instanceof Array){for(var e=0; +eI[e].canvas.width)e++;if(e==I.length){O=I[0];var r=O.canvas;r.width=n;r.height=F}else{O=I[e]; +O.clearRect(0,0,n,F)}return O};q.Fj=function(n,F,O){var I={},x=0,r=0,_=new Uint32Array(n.buffer),d=_.length,w=Date.now(); +for(var Z=1;Z>>24<230)r++;if(I[W]==null){I[W]=!0; +x++}}if(r!=0||x<20)return!1;return!0};q.GE=function(n,F,O,I,x,r){if(x==null)x=r=0;I=Math.log(I)/Math.log(2); +I=Math.round(I);for(var e=0;e>>F)+(n>>>F)&1)*51};q.c7=function(n){var F=n.toString(16); +while(F.length<6)F="0"+F;return F};q.Dl=function(n){return parseInt(n,16)};q.wO=function(n){return.3*n.Q+.59*n.l+.11*n.O}; +q.Il=function(n){return Math.max(n.Q,n.l,n.O)-Math.min(n.Q,n.l,n.O)};q.iB=function(n,F,O){return.3*n+.59*F+.11*O}; +q.a7C=function(n,F,O){return Math.max(n,F,O)-Math.min(n,F,O)};q.h0=function(n,F){var O=F-n,I=Math.abs(O),x=O-1,r=O+1; +if(Math.abs(x).5?w/(2-(I+x)):w/(I+x);switch(I){case n:r=(F-O)/w+(F1)O-=1;if(O<1/6)return n+(F-n)*6*O;if(O<1/2)return F;if(O<2/3)return n+(F-n)*(2/3-O)*6;return n}; +q.sy=function(n,F,O){var I=Math.max(n,F,O),x=Math.min(n,F,O),r,_,d=I,w=I-x;_=I==0?0:w/I;if(I==x)r=0; +else{switch(I){case n:r=(F-O)/w+(F.008856?Math.pow(O,1/3):(903.3*O+16)*(1/116)}return[n,F]}(); +q.Kj=function(n,F,O){var I=q.iK[0],x=q.iK[1];n=I[~~(n*(1e3/255))];F=I[~~(F*(1e3/255))];O=I[~~(O*(1e3/255))]; +var r=q.e$.a0a,_=r[0]*n+r[1]*F+r[2]*O,d=r[4]*n+r[5]*F+r[6]*O,w=r[8]*n+r[9]*F+r[10]*O;_=_*(100/96.72); +d=d*(100/100);w=w*(100/81.427);return q.cV(_,d,w)};q.cV=function(n,F,O){var I=q.iK[1],x=I[~~(n*1e3)],r=I[~~(F*1e3)],_=I[~~(O*1e3)]; +return{LG:116*r-16,R:500*(x-r),O:200*(r-_)}};q.TK=function(n,F,O){var I=903.3,x=.008856,r=(n+16)/116,_=r*r*r,d=r-O/200,w=d*d*d,Z=F/500+r,P=Z*Z*Z,C=w>x?w:(116*d-16)/I,W=_>x?_:(116*r-16)/I,v=P>x?P:(116*Z-16)/I,L=v*96.72,H=W*100,y=C*81.427,g=q.e$.Rv(q.e$.hI,[L/100,H/100,y/100,0]); +for(var e=0;e<4;e++)g[e]=Math.max(0,Math.min(255,q.sK(g[e])*255));return{Q:g[0],l:g[1],O:g[2]}};q.FG=function(n,F,O,I,x){var r=n.LG,_=n.R,d=n.O,w=(r>2]=~~(n[e+0]*x+n[e+1]*r+n[e+2]*_+.5)};q.GN=function(n,F){var O=F.length; +for(var e=0;e>>2];F[e]=I;F[e+1]=I;F[e+2]=I}};q.Eb=function(n,F){var O=n.R,I=n.Q,x=n.l,r=n.O,_=Math.min(n.R.length,F.buffer.byteLength>>>2),d=4*Math.floor(_/4),w=new Uint32Array(F.buffer),Z=new Uint32Array(O.buffer),P=new Uint32Array(I.buffer),C=new Uint32Array(x.buffer),W=new Uint32Array(r.buffer); +for(var e=0;e>2],L=W[e>>2],H=C[e>>2],y=P[e>>2];w[e]=v<<24|(L&255)<<16|(H&255)<<8|y&255; +w[e+1]=(v&65280)<<16|(L&65280)<<8|H&65280|(y&65280)>>>8;w[e+2]=(v&16711680)<<8|L&16711680|(H&16711680)>>>8|(y&16711680)>>>16; +w[e+3]=v&4278190080|(L&4278190080)>>>8|(H&4278190080)>>>16|(y&4278190080)>>>24}for(var e=d;e<_;e++)w[e]=O[e]<<24|r[e]<<16|x[e]<<8|I[e]}; +q.WU=function(n,F){var O=F.R,I=F.Q,x=F.l,r=F.O,_=Math.min(F.R.length,n.buffer.byteLength>>>2),d=4*Math.floor(_/4),w=new Uint32Array(n.buffer),Z=new Uint32Array(O.buffer),P=new Uint32Array(I.buffer),C=new Uint32Array(x.buffer),W=new Uint32Array(r.buffer); +for(var e=0;e>2]=v&255|(L&255)<<8|(H&255)<<16|y<<24; +C[e>>2]=(v&65280)>>8|L&65280|(H&65280)<<8|(y&65280)<<16;W[e>>2]=(v&16711680)>>16|(L&16711680)>>8|H&16711680|(y&16711680)<<8; +Z[e>>2]=v>>>24|L>>>24<<8|H>>>24<<16|y&4278190080}for(var e=d;e<_;e++){var g=w[e];I[e]=g>>0&255;x[e]=g>>8&255; +r[e]=g>>16&255;O[e]=g>>24&255}};q.xg=function(n,F,O){var I=new Uint8Array(n.buffer),x=Math.min(I.length/4,F.length); +for(var e=0;e>>2];I[(e<<2)+O]=_&255;I[(e<<2)+O+4]=_>>>8&255;I[(e<<2)+O+8]=_>>>16&255;I[(e<<2)+O+12]=_>>>24; +e+=4}while(e>>2,n=new Uint32Array(n.buffer,0,I),F=new Uint32Array(F.buffer,0,I); +F.set(n)};q.Qq=function(n,F){var O=n.buffer.byteLength,I=F.buffer.byteLength,x=new Uint32Array(n.buffer,0,O>>2),r=new Uint32Array(F.buffer,0,I>>2); +if(O!=I)return!1;var _=x.length;for(var e=0;e<_;e++)if(r[e]!=x[e])return!1;return!0};q.uZ=function(n){var F=new Uint32Array(n.buffer),O=F.length; +for(var e=0;e=2&&I.v>=2){var x=q.to(O,I); +n.push(x.zc,x.rect);O=x.zc;I=x.rect}};q.Sc=function(n){var F=n.length,O=n[F-2],I=n[F-1];while(I.d>=2&&I.v>=2){var x=q.pW(O,I); +n.push(x.zc,x.rect);O=x.zc;I=x.rect}};q.to=function(n,F,O){var I=F.d,x=F.v,r=I>>1,_=x>>1,d=new gv(F.x,F.y,r,_),w=O&&O.length==r*_*4?O:q.f(r*_*4),Z=new Uint32Array(n.buffer),P=new Uint32Array(w.buffer); +for(var C=0;C<_;C++)for(var W=0;W>>24,A=y>>>24,p=g>>>24,U=Q>>>24,j=J+A+p+U; +if(j==1020){var b=(H>>>0&255)+(y>>>0&255)+(g>>>0&255)+(Q>>>0&255)+2>>>2,s=(H>>>8&255)+(y>>>8&255)+(g>>>8&255)+(Q>>>8&255)+2>>>2,G=(H>>>16&255)+(y>>>16&255)+(g>>>16&255)+(Q>>>16&255)+2>>>2; +P[v]=255<<24|G<<16|s<<8|b}else if(j==0)P[v]=0;else{var b=(H>>>0&255)*J+(y>>>0&255)*A+(g>>>0&255)*p+(Q>>>0&255)*U,s=(H>>>8&255)*J+(y>>>8&255)*A+(g>>>8&255)*p+(Q>>>8&255)*U,G=(H>>>16&255)*J+(y>>>16&255)*A+(g>>>16&255)*p+(Q>>>16&255)*U,T=1/j; +b=~~(b*T+.5);s=~~(s*T+.5);G=~~(G*T+.5);P[v]=j+2>>>2<<24|G<<16|s<<8|b}}return{rect:d,zc:w}};q.B5=function(n,F,O){var I=F.d,x=F.v,r=I>>1,_=x>>1,d=new gv(F.x,F.y,r,_),w=O&&O.length==r*_*4?O:q.f(r*_*4),Z=new Uint32Array(n.buffer),P=new Uint32Array(w.buffer); +for(var C=0;C<_;C++)for(var W=0;W>>0&255)+(y>>>0&255)+(g>>>0&255)+(Q>>>0&255)>>>2,A=2+(H>>>8&255)+(y>>>8&255)+(g>>>8&255)+(Q>>>8&255)>>>2,p=2+(H>>>16&255)+(y>>>16&255)+(g>>>16&255)+(Q>>>16&255)>>>2,U=2+(H>>>24&255)+(y>>>24&255)+(g>>>24&255)+(Q>>>24&255)>>>2; +P[v]=U<<24|p<<16|A<<8|J}return{rect:d,zc:w}};q.a88=function(n,F,O){var I=F.d,x=F.v,r=2*Math.floor(I/3),_=2*Math.floor(x/3),d=new gv(F.x,F.y,r,_),w=O&&O.length==r*_*4?O:q.f(r*_*4),Z=new Uint32Array(n.buffer),P=new Uint32Array(w.buffer); +for(var C=0;C<_;C+=2)for(var W=0;W>>1)*I+(W*3>>>1),H=Z[L],y=Z[L+1],g=Z[L+2],Q=Z[L+I],J=Z[L+1+I],A=Z[L+2+I],p=Z[L+I+I],U=Z[L+1+I+I],j=Z[L+2+I+I],b=H>>>24<<2,s=(H>>>16&255)*b,G=(H>>>8&255)*b,T=(H&255)*b,z=y>>>24<<1,m=(y>>>16&255)*z,$=(y>>>8&255)*z,o=(y&255)*z,h=g>>>24<<2,X=(g>>>16&255)*h,D=(g>>>8&255)*h,f=(g&255)*h,R=Q>>>24<<1,i=(Q>>>16&255)*R,t=(Q>>>8&255)*R,N=(Q&255)*R,M=J>>>24,hK=(J>>>16&255)*M,bD=(J>>>8&255)*M,co=(J&255)*M,iM=A>>>24<<1,hs=(A>>>16&255)*iM,S=(A>>>8&255)*iM,a=(A&255)*iM,bV=p>>>24<<2,a5=(p>>>16&255)*bV,i9=(p>>>8&255)*bV,dG=(p&255)*bV,ap=U>>>24<<1,bk=(U>>>16&255)*ap,c2=(U>>>8&255)*ap,gg=(U&255)*ap,bH=j>>>24<<2,gw=(j>>>16&255)*bH,gP=(j>>>8&255)*bH,dT=(j&255)*bH,fU=b+z+R+M,dV=h+z+iM+M,ac=bV+ap+R+M,e2=bH+ap+iM+M,cX=fU==0?0:1/fU,eR=dV==0?0:1/dV,gR=ac==0?0:1/ac,bN=e2==0?0:1/e2,eG=0,ef=0,fi=0,ep=0; +eG=~~(.5+(T+o+N+co)*cX);ef=~~(.5+(G+$+t+bD)*cX);fi=~~(.5+(s+m+i+hK)*cX);ep=~~(.5+fU*(1/9));P[v]=ep<<24|fi<<16|ef<<8|eG; +eG=~~(.5+(f+o+a+co)*eR);ef=~~(.5+(D+$+S+bD)*eR);fi=~~(.5+(X+m+hs+hK)*eR);ep=~~(.5+dV*(1/9));P[v+1]=ep<<24|fi<<16|ef<<8|eG; +eG=~~(.5+(dG+gg+N+co)*gR);ef=~~(.5+(i9+c2+t+bD)*gR);fi=~~(.5+(a5+bk+i+hK)*gR);ep=~~(.5+ac*(1/9));P[v+r]=ep<<24|fi<<16|ef<<8|eG; +eG=~~(.5+(dT+gg+a+co)*bN);ef=~~(.5+(gP+c2+S+bD)*bN);fi=~~(.5+(gw+bk+hs+hK)*bN);ep=~~(.5+e2*(1/9));P[v+r+1]=ep<<24|fi<<16|ef<<8|eG}return{rect:d,zc:w}}; +q.a0z=function(n,F,O){var I=F.d,x=F.v,r=2*Math.floor(I/3),_=2*Math.floor(x/3),d=new gv(F.x,F.y,r,_),w=O&&O.length==r*_*4?O:q.f(r*_*4),Z=new Uint32Array(n.buffer),P=new Uint32Array(w.buffer); +for(var C=0;C<_;C+=2)for(var W=0;W>>1)*I+(W*3>>>1),H=Z[L],y=Z[L+1],g=Z[L+2],Q=Z[L+I],J=Z[L+1+I],A=Z[L+2+I],p=Z[L+I+I],U=Z[L+1+I+I],j=Z[L+2+I+I],b=(H>>>16&255)<<2,s=(H>>>8&255)<<2,G=(H&255)<<2,T=(y>>>16&255)<<1,z=(y>>>8&255)<<1,m=(y&255)<<1,$=(g>>>16&255)<<2,o=(g>>>8&255)<<2,h=(g&255)<<2,X=(Q>>>16&255)<<1,D=(Q>>>8&255)<<1,f=(Q&255)<<1,R=J>>>16&255,i=J>>>8&255,t=J&255,N=(A>>>16&255)<<1,M=(A>>>8&255)<<1,hK=(A&255)<<1,bD=(p>>>16&255)<<2,co=(p>>>8&255)<<2,iM=(p&255)<<2,hs=(U>>>16&255)<<1,S=(U>>>8&255)<<1,a=(U&255)<<1,bV=(j>>>16&255)<<2,a5=(j>>>8&255)<<2,i9=(j&255)<<2,dG=0,ap=0,bk=0; +dG=~~(.5+(G+m+f+t)*(1/9));ap=~~(.5+(s+z+D+i)*(1/9));bk=~~(.5+(b+T+X+R)*(1/9));P[v]=255<<24|bk<<16|ap<<8|dG; +dG=~~(.5+(h+m+hK+t)*(1/9));ap=~~(.5+(o+z+M+i)*(1/9));bk=~~(.5+($+T+N+R)*(1/9));P[v+1]=255<<24|bk<<16|ap<<8|dG; +dG=~~(.5+(iM+a+f+t)*(1/9));ap=~~(.5+(co+S+D+i)*(1/9));bk=~~(.5+(bD+hs+X+R)*(1/9));P[v+r]=255<<24|bk<<16|ap<<8|dG; +dG=~~(.5+(i9+a+hK+t)*(1/9));ap=~~(.5+(a5+S+M+i)*(1/9));bk=~~(.5+(bV+hs+N+R)*(1/9));P[v+r+1]=255<<24|bk<<16|ap<<8|dG}return{rect:d,zc:w}}; +q.Dd=function(n){var F=255,O=n.length;O-=O&31;for(var e=3;e>1,_=x>>1,d=new gv(F.x,F.y,r,_); +if(n==null)return{rect:d};var w=O&&O.length>=r*_?O:q.f(r*_);for(var Z=0;Z<_;Z++){var P=Z*r;for(var C=0; +C>>2}}return{rect:d,zc:w}};q.gs=function(n,F,O){var I=F.d,x=F.v,r=2*Math.floor(I/3),_=2*Math.floor(x/3),d=new gv(F.x,F.y,r,_); +if(n==null)return{rect:d};var w=O&&O.length>=r*_?O:q.f(r*_);for(var Z=0;Z<_;Z+=2)for(var P=0;P>>1)*I+(P*3>>>1),v=n[W]<<2,L=n[W+1]<<1,H=n[W+2]<<2,y=n[W+I]<<1,g=n[W+1+I],Q=n[W+2+I]<<1,J=n[W+I+I]<<2,A=n[W+1+I+I]<<1,p=n[W+2+I+I]<<2; +w[C]=~~(.5+(v+L+y+g)*(1/9));w[C+1]=~~(.5+(H+L+Q+g)*(1/9));w[C+r]=~~(.5+(J+A+y+g)*(1/9));w[C+r+1]=~~(.5+(p+A+Q+g)*(1/9))}return{rect:d,zc:w}}; +q.k9=function(n,F,O,I,x){var r=F.lN(I);if(x)r=r.lN(x);var _=Math.max(0,r.x-F.x),d=Math.max(0,r.x-I.x),w=Math.max(0,r.y-F.y),Z=Math.max(0,r.y-I.y),P=r.d,C=r.v; +for(var e=0;e>>8)>>>8};q.round=function(n,F){if(F==null)F=128;var O=n.length;for(var e=0; +e>>24)*(_>>>24))<<24|q.bX((r>>>16&255)*(_>>>16&255))<<16|q.bX((r>>>8&255)*(_>>>8&255))<<8|q.bX((r&255)*(_&255))}}; +q.DM=function(n,F){var O=n.length;for(var e=0;e>>2,_/255]};q.mr=function(n,F){var O=new Uint32Array(n.buffer),I=O.length; +for(var e=0;e>8&255,d=x>>16&255,w=x>>24&255;O[e]=F[r]|F[_]<<8|F[d]<<16|F[w]<<24}}; +q.a5X=function(n,F,O,I,x,r,_){var d=new Uint32Array(n.buffer),w=new Uint32Array(F.buffer),Z=d.length,P=0; +while(256<>>8&255)<>>16&255)<>>8&255)<>>16&255)<J){var A=(Q-J)/(255-J);H+=A*(255-H);y+=A*(255-y);g+=A*(255-g)}else if(J==0)H=y=g=0;else{var A=Q/J; +H=A*H;y=A*y;g=A*g}}w[e]=H|y<<8|g<<16|C&4278190080}};q.$o=function(n,F){var O=F.d,I=F.v,top=0,x=0,r=0,_=0,d=0; +d=0;for(var w=0;w=0;w--){var Z=w*O;for(var e=0;e=0;e--){for(var w=top; +w=0;W--){var v=W*r;for(var e=0;e=0;e--){for(var W=0;W<_;W++)if(x[W*r+e]!=C)P=!0;if(P)break;Z++}var L=new gv(F.x+d,F.y+top,r-d-Z,_-top-w); +return L.D2()?new gv(0,0,0,0):L};q.t7=function(n){var F=q.$o(n.channel,n.rect);if(F.Qq(n.rect))return; +var O=q.f(F.X());q.k9(n.channel,n.rect,O,F);n.channel=O;n.rect=F};q.dB=function(n){var F=q.f(n.buffer.length>>2); +q.xg(n.buffer,F,3);var O=q.$o(F,n.rect);if(O.Qq(n.rect))return;var I=new q.f(O.X()*4);q.nF(n.buffer,n.rect,I,O); +n.buffer=I;n.rect=O};q.extend=function(n,F,O){if(n.rect.zp(F))return;var I=n.rect.Tq(F),x=q.f(I.X()); +if(O!=null)x.fill(O);q.k9(n.channel,n.rect,x,I);n.rect=I;n.channel=x};q.aeD=function(n,F){if(F.D2()||n.rect.zp(F))return; +var O=n.rect.Tq(F),I=q.f(O.X()*4);q.nF(n.buffer,n.rect,I,O);n.rect=O;n.buffer=I};q.q9=function(n,F,O){if(!O.JX(n))return!1; +var I=Math.floor(n.x)-O.x,x=Math.floor(n.y)-O.y,e=x*O.d+I;return F[e]>128};q.acV=function(n,F,O){if(!O.JX(n))return!1; +var I=Math.floor(n.x)-O.x,x=Math.floor(n.y)-O.y,e=x*O.d+I;return F[4*e+3]>128};q.cO=function(n){if(q.us.length.5)return 0;if(Q>.25)return 1;if(Q>.1)return 2;if(Q>.02143)return 3;if(Q>.00445)return 4;if(Q>65e-5)return 5; +if(Q>415e-6)return 6;if(Q>55e-6)return 7;return 8}function d(Q,J,A,p,U,j){Q[J]=A[p]+(U[j]-A[p]>>1);Q[J+1]=A[p+1]+(U[j+1]-A[p+1]>>1); +Q[J+2]=A[p+2]+(U[j+2]-A[p+2]>>1);Q[J+3]=A[p+3]+(U[j+3]-A[p+3]>>1)}function w(Q,J,A,p,U,j){Q[J]=U[j]+A[p]>>1; +Q[J+1]=U[j+1]+A[p+1]>>1;Q[J+2]=U[j+2]+A[p+2]>>1;Q[J+3]=U[j+3]+A[p+3]>>1}function Z(Q,J,A,p,U,j,b,s,G){var T=0,z=0,m=0,e,$=U[j],o; +d(s,0,Q,J,Q,A);for(e=0;e<$;e++){d(s,(e+1)*4,s,e*4,Q,A)}z=($+1)*4;m+=$;j--;O(Q,J,s,z-4);p[j]=n(Q,J);J-=G; +while(j>0&&p[j-1]0){Z(p,b-4,b,U,T,$,z,m,4)}b+=4}U[J]=U[0];T[J]=T[0];if(U[J-1]0){Z(p,b,s,U,T,J,z,m,4)}}r(p)}function C(){var Q=Math.random(); +if(Q>.659755)return 0;if(Q>.1625)return 10;if(Q>.06)return 20;if(Q>.01)return 30;if(Q>.0035)return 40; +if(Q>65e-5)return 50;if(Q>415e-6)return 60;if(Q>55e-6)return 70;return 80}function W(Q,J,A,p,U,j){var b=C()+1,s=p[U]; +for(var e=1;eU)break;if(p[U-e]A[e]){O(Q,m-j,T,0);A[e-1]=G;z=!1;break}O(Q,m-j,Q,m);A[e-1]=A[e];m+=j}if(z){O(Q,m-j,T,0); +A[U-1]=G}b++;p--;J-=j}}function H(Q,J,A,p,U){var j=0,b=0,s=J*4;for(var e=0;e>>2),d=new Uint8Array(F.length>>>2); +q.aF.u3(F,r,O,I,q.aF.vy[2],0,!0);for(var e=0;e>>2]=w;x[e+0]=F[e+0];x[e+1]=F[e+1];x[e+2]=F[e+2];x[e+3]=F[e+3]}q.aF.B3(_,d,O,I);for(var e=0;e>>2]-50)*(255/205))}for(var e=0,Z=F.length;e>>2),_=new Uint8Array(F.length>>>2),d=new Uint8Array(F.length); +for(var e=0;e>>2]=w;d[e]=F[e];d[e+1]=F[e+1]; +d[e+2]=F[e+2]}q.aF.B3(_,r,O,I);q.aF.u3(F,x,O,I,q.aF.vy[1],0,!0);for(var e=0;e>>2]}for(var e=0,Z=F.length; +e>>8&255,y=v>>>16&255,g=v>>>24&255,Q=~~(Math.random()*8),J=Q%3,A=0,p=0; +if(Q<3){p--}else if(Q>4){p++}if(J==0){A--}else if(J==2){A++}var U=W+A,j=e+p;if(U<0)U=0;else if(U>_-1)U=_-1; +if(j<0)j=0;else if(j>d-1)j=d-1;var v=P[j*_+U],b=v&255,s=v>>>8&255,G=v>>>16&255,T=v>>>24&255;w[C]=Z(L,b); +w[C+1]=Z(H,s);w[C+2]=Z(y,G);w[C+3]=Z(g,T)}}}function F(r,_){return _}function O(r,_){return r>_?_:r}function I(r,_){return r<_?_:r}function x(r,_,d,w,Z){var P=Z[0]; +if(P==0)n(r,_,d,w,F);else if(P==1)n(r,_,d,w,O);else if(P==2)n(r,_,d,w,I);else if(P==3){console.error("Not implemented")}else console.error("Mew mew")}return x}(); +q.y8.a32=function(){var n=[],F=new Uint8Array(512),O=new Float32Array(512),I=new Float32Array(512),x=[1,-1,1,-1,1,-1,0,0],r=[1,1,-1,-1,0,0,1,-1],_=0,d,L=0; +for(;_<256;_++)n[_]=_;while(_!=0){_--;d=Math.floor(Math.random()*_);n[d]^=n[_]^(n[_]=n[d])}function w(w){w=Math.floor(w*65536); +if(w<256){w|=w<<8}for(var e=0;e<256;e++){var g=e+256,Q=n[e]^(e&1?w:w>>8)&255;F[e]=F[g]=Q;Q=Q%8;O[e]=O[g]=x[Q]; +I[e]=I[g]=r[Q]}}function Z(g){return g*g*g*(g*(g*6-15)+10)}function P(g,Q,J){return(1-J)*g+J*Q}function C(g,Q){return g&Q}function W(g,Q){return g%Q}function v(g,Q,J,A,p){var U=Math.floor(g),j=Math.floor(Q),_,b,s,G,T,z; +g=g-U;Q=Q-j;U=U&255;j=j&255;_=U+F[j];G=O[_]*g+I[_]*Q;_=U+F[p(j+1,A)];s=O[_]*g+I[_]*(Q-1);_=p(U+1,J)+F[j]; +T=O[_]*(g-1)+I[_]*Q;_=p(U+1,J)+F[p(j+1,A)];z=O[_]*(g-1)+I[_]*(Q-1);b=Z(g);return P(P(G,T,b),P(s,z,b),Z(Q))}function H(g,_,Q){g[_]=Q}function y(g,Q,J,A,p){var U=Math.min(Math.min(Q,256),Math.min(256,J)),j=U==256||U<8,b=8,s=new Uint32Array(b),G=new Uint32Array(b),T=new Float32Array(b),z=new Float32Array(b),m=1,$=1,o=j?C:W,h=H,X; +for(var e=0;e>>2;x[d+1]=C+2>>>2;x[d+2]=W+2>>>2;x[d+3]=v+2>>>2}}}return n}(); +q.y8.aks=function(){var n=[-1e3,34,51,61,71,80,87,95,101,108,113,119,124,129,134,139,143,148,153,157,161,165,168,172,175,180,183,186,190,194,197,200,203,207,210,213,216,218,222,225,228,230,233,236,239,241,244,247,250,252,255]; +function F(O,I,x,r,_){var d=_[0],w=_[1],Z=w<=50?n[w]/255:1+(255-n[101-w])/255,P=_[2],C=O.length,W=new Float32Array(C),v=0,L,H=1+1/10*d,y=(1-1/H)/2,g=16/256,Q=I-1,e,J,A,p,U=0,j=1,b=255; +for(e=0;e=x||T>=I){return}var A=W[z],m=Z-A,$=Math.random(),o=$/H+y;if(v==0||Math.abs(p-A)>g){L=o<=m?U:b; +v=~~(Math.random()*d)}else if(.1<$){v--}else{v=0}r[z]=L;p=A}if(P==0){for(e=0;e=I)break;s(J,Q-A)}v=0}for(e=1;e=x||J>=I)break;s(A,Q-J)}v=0}}else if(P==1){for(e=0; +e=I)break; +s(J,A)}v=0}for(e=1;e=x||J>=I)break;s(A,J)}v=0}}else{for(e=0;e255?255:C]}return Z}function F(){var d=new Uint8Array(256),e,w; +for(e=75,w=15;w<256;e++,w+=24)d[e]=w;for(;e<256;e++)d[e]=255;return d}function O(d,w,Z,P){x(d,w,Z,11,P)}function I(d,w,Z,P){x(d,w,Z,5,P); +for(var e=0;e>>1)}function r(d,w){var Z=d.length,P; +for(var e=0;e255?255:J}r(Q,d);for(var e=0;e>2); +for(var e=0;e>1,b=j-1,s=U*U,G=0; +for(var e=0;e=J)$=J-1;if(o<0)o=0;else if(o>=A)o=A-1;T+=g[o*J+$]}}Q[G++]=~~(T/s);for(var h=1;h=J)D=J-1;if(o<0)o=0;else if(o>=A)o=A-1;T+=g[o*J+D]-g[o*J+X]}Q[G++]=~~(T/s)}}n=Q}function I(g,Q){var J=g.length; +for(var e=0;e3?(d-3)*10:0;var J=~~(w*.73)+50,A=Math.min(J+Q,128),p=A-J,U=-255*J; +_=r+4;for(var e=0;e<256;e++){var j=e*65;Z[e]=j>=256?255:j;P[e]=Math.max(Math.min(~~(U/p),255),0);U+=255}}function W(g,Q,J,A,p,U,j,b,s,G){var T=p+U-1,z=p>>1,m=T>>1,$=0,o=new Int32Array(p),h=new Int32Array(256),X=new Int32Array(16); +if(!j){m}for(var e=0;e=J)t=J-1;if(N<0)N=0;else if(N>=A)N=A-1; +var M=g[N*J+t];h[M]++;X[M>>>4]++}}var hK=0,bD;for(bD=0;bD<256;bD++){hK+=h[bD];if(hK>=G)break}Q[$++]=bD; +for(var co=1;co=A)N=A-1;if(iM<0)iM=0;else if(iM>=J)iM=J-1;if(hs<0)hs=0;else if(hs>=J)hs=J-1;var S=g[N*J+iM],a=g[N*J+hs]; +h[S]--;X[S>>>4]--;h[a]++;X[a>>>4]++}hK=0;bD=0;while(hK+X[bD>>>4]>>4];bD+=16}for(;bD<256; +bD++){hK+=h[bD];if(hK>=G)break}Q[$++]=bD}}n=Q}function v(g){var Q=g.length,J=new Uint8Array(Q),e=0;for(; +e=J)b=U;for(var s=0;s=A)T=s;var z=g[U+G],m=g[U+T],$=g[j+s],o=g[b+s],h=g[U+s];Q[p++]=Math.min(Math.max(h+2*(4*h-(z+m+$+o)),0),255)}}n=Q}function y(g,Q,J,A,p){C(p); +var U=g.length,j=new Uint8Array(U),b=v(g);O(g,j,Q,J,x);for(var e=0;e0)g[e]=~~((G*s+(255-G)*128)/255);else g[e]=128}n=g;O(g,j,Q,J,3); +W(j,g,Q,J,15,2,!0,0,1,16);W(j,b,Q,J,15,2,!1,0,1,15);for(var e=0;e>1}n=b;H(b,j,J,Q); +L(j,P);O(j,g,Q,J,2);A.set(n)}return y}();q.eq={agU:function(n,F){var e=n.length;n.push(F);var O=e>>>1; +while(O!=0&&n[e][0]>>1}},akG:function(n){if(n.length==2)return n.pop(); +var top=n[1],e=1;n[1]=n.pop();var F=n.length;while(!0){var O=e<<1,I=O+1,x=e;if(OO){console.log(e);throw"e"}O=I;F=F>>>1}}}}; +q.p={};q.p.DF=new Float64Array(256);q.p.b3=new Uint8Array(256*256);q.p.n7=new Uint8Array(256*256);(function(){for(var e=0; +e<256;e++)q.p.DF[e]=255/e;for(var e=0;e<256;e++)for(var n=0;n<256;n++)q.p.b3[e*256+n]=e==0?0:Math.round(n*255/e); +for(var e=0;e<256;e++)for(var n=0;n<256;n++)q.p.n7[e*256+n]=Math.round(e*(255-n)/255)}());q.p.F_=function(n,F,O,I,x,r,_,d){if(d==null)d=ha.gm(); +if("idiv,lbrn,div ,lddg,vLit,lLit,hMix,diff".split(",").indexOf(n)==-1){_=_*d.fill;d.fill=1;d.style=!1}var w="norm,dark,mul ,idiv,lbrn,lite,scrn,div ,lddg,over,sLit,hLit,vLit,lLit,pLit,hMix,diff,smud,fsub,fdiv".split(","),Z="dkCl,lgCl,hue ,sat ,colr,lum ".split(","),P=q.p[n+"F"]; +if(d.ni==null&&n=="norm")q.p.a6N(F,O,I,x,r,_,P,d.rU?1:0);else if(n=="diss")q.p.a9B(F,O,I,x,r,_,P,d.rU?1:0); +else if(w.indexOf(n)!=-1)q.p.aku(F,O,I,x,r,_,P,d);else if(Z.indexOf(n)!=-1)q.p.adr(F,O,I,x,r,_,P,d)}; +q.p.acM=function(n,F,O){var I=n*O+1-O;return I<.001?0:1-Math.min(1,(1-F)/I)};q.p.anP=function(n,F,O){return n*O==1?1:Math.min(1,F/(1-n*O))}; +q.p.m9=function(n){return n<=.25?((16*n-12)*n+4)*n:Math.sqrt(n)};q.p.normF=function(n,F,O){return n}; +q.p.darkF=function(n,F,O){return Math.min(n,F)};q.p["mul F"]=function(n,F,O){return n*F};q.p.idivF=function(n,F,O){var I=n*O+1-O; +return F==1?1:1-F>=I?0:1-(1-F)/I};q.p.lbrnF=function(n,F,O){return Math.max(0,n*O+F-O)};q.p.dkClF=function(n,F,O){var I=q.wO(n)=1-n?1:F/(1-n)};q.p.lddgF=function(n,F,O){n*=O;return Math.min(1,n+F)}; +q.p.lgClF=function(n,F,O){var I=q.wO(n)>q.wO(F)?n:F;O.Q=I.Q;O.l=I.l;O.O=I.O;return O};q.p.overF=function(n,F,O){return q.p.hLitF(F,n,O)}; +q.p.sLitF=function(n,F,O){return n<=.5?F-(1-2*n)*F*(1-F):F+(2*n-1)*(q.p.m9(F)-F)};q.p.hLitF=function(n,F,O){return n<=.5?q.p["mul F"](2*n,F,O):q.p.scrnF(2*n-1,F,O)}; +q.p.vLitF=function(n,F,O){return n<=.5?q.p.acM(2*n,F,O):q.p.anP(2*n-1,F,O)};q.p.lLitF=function(n,F,O){return n<=.5?q.p.lbrnF(2*n,F,O):q.p.lddgF(2*n-1,F,O)}; +q.p.pLitF=function(n,F,O){return n<=.5?q.p.darkF(2*n,F,O):q.p.liteF(2*n-1,F,O)};q.p.hMixF=function(n,F,O){if(O>.99)return n+F<1?0:1; +return Math.min(1,Math.max(0,(F+n*O-O)/(1-O+1e-6)))};q.p.diffF=function(n,F,O){n*=O;return Math.abs(n-F)}; +q.p.smudF=function(n,F,O){return n+F-2*n*F};q.p.fsubF=function(n,F,O){return Math.max(F-n,0)};q.p.fdivF=function(n,F,O){return Math.min(F/n,1)}; +q.p["hue F"]=function(n,F,O){q.p._M(n,q.Il(F),O);q.p.b6(O,q.wO(F),O)};q.p["sat F"]=function(n,F,O){q.p._M(F,q.Il(n),O); +q.p.b6(O,q.wO(F),O)};q.p.colrF=function(n,F,O){q.p.b6(n,q.wO(F),O)};q.p["lum F"]=function(n,F,O){q.p.b6(F,q.wO(n),O)}; +q.p.b6=function(n,F,O){var I=F-q.wO(n);O.Q=n.Q+I;O.l=n.l+I;O.O=n.O+I;q.p.akS(O)};q.p.akS=function(n){var F=n.Q,O=n.l,I=n.O,x=q.iB(F,O,I),E=Math.min(F,O,I),r=Math.max(F,O,I); +if(E<0){var _=x/(x-E);F=x+(F-x)*_;O=x+(O-x)*_;I=x+(I-x)*_}if(r>1){var _=(1-x)/(r-x);F=x+(F-x)*_;O=x+(O-x)*_; +I=x+(I-x)*_}n.Q=F;n.l=O;n.O=I};q.p._M=function(n,F,O){var I=q.p.alf,x=n.Q,r=n.l,_=n.O;if(x==r&&r==_){O.Q=O.l=O.O=0}else if(x>r){if(x>_){if(r>_){O.Q=F; +O.l=I(x,r,_,F);O.O=0}else{O.Q=F;O.O=I(x,_,r,F);O.l=0}}else{O.O=F;O.Q=I(_,x,r,F);O.l=0}}else{if(x<_){if(r>_){O.l=F; +O.O=I(r,_,x,F);O.Q=0}else{O.O=F;O.l=I(_,r,x,F);O.Q=0}}else{O.l=F;O.Q=I(r,x,_,F);O.O=0}}};q.p.alf=function(n,F,O,I){return(F-O)*I/(n-O)}; +q.p.a6N=function(n,F,O,I,x,r,_,d){var w=F.lN(I).lN(x),Z=Math.max(0,w.x-F.x),P=Math.max(0,w.x-I.x),C=Math.max(0,w.y-F.y),W=Math.max(0,w.y-I.y),v=w.d,L=w.v,H=F.d,y=I.d,g=q.p.b3,Q=q.p.n7,J=new Uint32Array(n.buffer),A=new Uint32Array(O.buffer); +for(var e=0;e>>24==0)continue; +if(b>>>24==255&&r==1&&d==0){A[U+j]=J[p+j];continue}var s=A[U+j],G=255*r&255;if(d==0){G=(b>>>24)*r&255; +T=s>>>24}var z=Q[T<<8|G],m=G+z,$=b&255,o=b>>>8&255,h=b>>>16&255,X=s&255,D=s>>>8&255,f=s>>>16&255;A[U+j]=d*(s>>>24)+(1-d)*m<<24|g[m<<8|q.bX(h*G+f*z)]<<16|g[m<<8|q.bX(o*G+D*z)]<<8|g[m<<8|q.bX($*G+X*z)]}}}; +q.p.a5o=function(n,F,O,I,x,r){var _=F.lN(I).lN(x),d=Math.max(0,_.x-F.x),w=Math.max(0,_.x-I.x),Z=Math.max(0,_.y-F.y),P=Math.max(0,_.y-I.y),C=_.d,W=_.v,v=F.d,L=I.d,H=q.p.b3,y=q.p.n7,g=new Uint32Array(n.buffer),Q=new Uint32Array(O.buffer),J=Math.floor(Math.random()*16777215),A=0; +for(var e=0;e>>24==0)continue; +if(b>>24==255&&r==1){Q[U+j]=b;continue}var s=Q[U+j],G=(b>>>24)*r*(1/255),T=(s>>>24)*(1/255),z=T*(1-G),m=G+z,$=b&255,o=b>>>8&255,h=b>>>16&255,X=s&255,D=s>>>8&255,f=s>>>16&255; +A>>>=8;if((j&3)==0)A=q.p.JU(U+j+J);var R=m==0?0:1/m,i=Math.floor(m*(256*255))+(A&255)>>>8,t=Math.floor((h*G+f*z)*R+.5),N=Math.floor((o*G+D*z)*R+.5),M=Math.floor(($*G+X*z)*R+.5); +Q[U+j]=i<<24|t<<16|N<<8|M}}};q.p.$V=function(n,F,O,I,x,r,_,d){var w=q.iB(n,F,O),Z=q.iB(I,x,r),P=Math.min,C=q.p.a89,W=C(w,d,0); +W=P(W,C(n,d,8));W=P(W,C(F,d,16));W=P(W,C(O,d,24));var v=C(Z,d,4);v=P(v,C(I,d,12));v=P(v,C(x,d,20));v=P(v,C(r,d,28)); +v=Math.max(v,1-_);var L=Math.min(W,v);return L<0?0:L>1?1:L};q.p.a89=function(n,F,e){return Math.min((n-F[e])*F[e+1],(n-F[e+3])*F[e+2])}; +q.p.aku=function(n,F,O,I,x,r,_,d){var w=1/255,Z=w*r,P=d.rU?1:0,C=d.fill,W=d.style,v=F.lN(I).lN(x),L=Math.max(0,v.x-F.x),H=Math.max(0,v.x-I.x),y=Math.max(0,v.y-F.y),g=Math.max(0,v.y-I.y),Q=v.d,J=v.v,A=F.d,p=I.d,U=new Uint32Array(n.buffer),j=new Uint32Array(O.buffer); +for(var e=0;e>>24==0)continue; +var z=j[s],m=(T&255)*w,$=(T>>>8&255)*w,o=(T>>>16&255)*w,h=(z&255)*w,X=(z>>>8&255)*w,D=(z>>>16&255)*w,f=r; +if(P==0){f=(T>>>24)*Z;R=(z>>>24)*w}if(d.ni)f*=q.p.$V(m,$,o,h,X,D,R,d.ni);var i=R*(1-f),t=f+i,N=t==0?0:255/t,M=W?1:f,hK=((1-R)*f*m+(1-M)*R*h+M*R*_(m,h,(1+f-M)*C))*N,bD=((1-R)*f*$+(1-M)*R*X+M*R*_($,X,(1+f-M)*C))*N,co=((1-R)*f*o+(1-M)*R*D+M*R*_(o,D,(1+f-M)*C))*N; +t=f*C+R*(1-f*C);var iM=~~(t*255+.5);j[s]=P*(z>>>24)+(1-P)*iM<<24|co<<16|bD<<8|hK}}};q.p.adr=function(n,F,O,I,x,r,_,d){var w=1/255,Z=w*r,P=d.rU?1:0,C=F.lN(I).lN(x),W=Math.max(0,C.x-F.x),v=Math.max(0,C.x-I.x),L=Math.max(0,C.y-F.y),H=Math.max(0,C.y-I.y),y=C.d,g=C.v,Q=new Uint32Array(n.buffer),J=new Uint32Array(O.buffer),A={Q:0,l:0,O:0},p={Q:0,l:0,O:0},U={Q:0,l:0,O:0}; +for(var e=0;e>>8&255)*w,$=(G>>>16&255)*w,o=(T&255)*w,h=(T>>>8&255)*w,X=(T>>>16&255)*w,D=r,f=1; +if(P==0){D=(G>>>24)*Z;f=(T>>>24)*w}if(d.ni)D*=q.p.$V(z,m,$,o,h,X,f,d.ni);var R=f*(1-D),i=D+R,t=255/i; +A.Q=z;A.l=m;A.O=$;p.Q=o;p.l=h;p.O=X;_(A,p,U);var N=(((1-f)*z+f*U.Q)*D+o*R)*t,M=(((1-f)*m+f*U.l)*D+h*R)*t,hK=(((1-f)*$+f*U.O)*D+X*R)*t,bD=P*(T>>>24)+(1-P)*Math.round(i*255); +J[b]=bD<<24|hK<<16|M<<8|N}}};q.p.GR=function(n){n=n^61^n>>>16;n=n+(n<<3);n=n^n>>>4;n=n*668265261;n=n^n>>15; +return(n&16777215)*(1/16777215)};q.p.JU=function(n){n=n^61^n>>>16;n=n+(n<<3);n=n^n>>>4;n=n*668265261; +n=n^n>>>15;return n};q.p.Iu=function(n){this.$f=n};q.p.Iu.prototype.get=function(){var n=this.$f=q.p.JU(this.$f); +return(n&16777215)*(1/16777215)};q.p.a9B=function(n,F,O,I,x,r,_,d){var w=1/255,Z=w*r,P=Math.round(r*(256*256*256/255)),C=F.lN(I).lN(x),W=Math.max(0,C.x-F.x),v=Math.max(0,C.x-I.x),L=Math.max(0,C.y-F.y),H=Math.max(0,C.y-I.y),y=C.d,g=C.v,Q=new Uint32Array(n.buffer),J=new Uint32Array(O.buffer); +for(var e=0;e>>24); +if((q.p.JU(A)&16777215)>=s*P)continue;J[p]=j&16777215|d*(b>>>24)+(1-d)*255<<24}}};q.p.ahr=function(n,F,O){for(var e=0; +e>>2];if(I==0)continue;var x=I*(1/255),r=1/x,_=F[e],d=F[e+1],w=F[e+2],Z=n[e],P=n[e+1],C=n[e+2]; +F[e]=Math.min(255,Math.max(0,Math.round((_-(1-x)*Z)*r)));F[e+1]=Math.min(255,Math.max(0,Math.round((d-(1-x)*P)*r))); +F[e+2]=Math.min(255,Math.max(0,Math.round((w-(1-x)*C)*r)));F[e+3]=255}};q.p.Nb=function(n,F,O,I,x,r,_,d,w,Z,P){if(Z==null)Z=!1; +if(P==null)P=[1,1,1];var C=255<<24|P[2]*16711680|P[1]*65280|P[0]*255,W=~C;if(x&&!F.Qq(r)){var v=q.f(F.X()*4); +v.fill(_);q.k9(x,r,v,F);x=v;r=F}if(Z){if(x==null)q.p.amK(n,F,O,I,x,d,w,C,W);else q.p.adO(n,F,O,I,x,d,w)}else{if(x==null)q.p.a1e(n,F,O,I,x,d,w,C,W); +else q.p.a55(n,F,O,I,x,d,w)}};q.p.a1e=function(n,F,O,I,x,r,_,d,w){var Z=1/255,P=F.lN(I).lN(r),C=Math.max(0,P.x-F.x),W=Math.max(0,P.x-I.x),v=Math.max(0,P.y-F.y),L=Math.max(0,P.y-I.y),H=P.d,y=P.v,g=new Uint32Array(n.buffer),Q=new Uint32Array(O.buffer),J=q.p.b3,A=_*255&255; +for(var e=0;e>>24,T=s>>>24,z=q.bX(A*G+(255-A)*T),m=q.bX(G*A),$=q.bX(T*(255-A)),o=b&255,h=b>>>8&255,X=b>>>16&255,D=s&255,f=s>>>8&255,R=s>>>16&255,i=m*o+D*$,t=m*h+f*$,N=m*X+R*$; +i=J[z<<8|q.bX(i)];t=J[z<<8|q.bX(t)];N=J[z<<8|q.bX(N)];var M=z<<24|N<<16|t<<8|i;Q[U]=w&s|d&M}}};q.p.amK=function(n,F,O,I,x,r,_,d,w){var Z=1/255,P=F.lN(I).lN(r),C=Math.max(0,P.x-F.x),W=Math.max(0,P.x-I.x),v=Math.max(0,P.y-F.y),L=Math.max(0,P.y-I.y),H=P.d,y=P.v,g=new Uint32Array(n.buffer),Q=new Uint32Array(O.buffer),J=q.p.b3,A=_*16777215&16777215; +for(var e=0;e>>24,s=j>>>24,G=q.bX(p*b+(255-p)*s),T=q.bX(b*p),z=q.bX(s*(255-p)),m=U&255,$=U>>>8&255,o=U>>>16&255,h=j&255,X=j>>>8&255,D=j>>>16&255,f=g[G<<8|q.bX(T*m+h*z)],R=g[G<<8|q.bX(T*$+X*z)],i=g[G<<8|q.bX(T*o+D*z)]; +y[J]=G<<24|i<<16|R<<8|f}}};q.p.adO=function(n,F,O,I,x,r,_){var d=1/255,w=F.lN(I).lN(r),Z=Math.max(0,w.x-F.x),P=Math.max(0,w.x-I.x),C=Math.max(0,w.y-F.y),W=Math.max(0,w.y-I.y),v=w.d,L=w.v,H=new Uint32Array(n.buffer),y=new Uint32Array(O.buffer),g=q.p.b3,Q=Math.round(_*257); +for(var e=0;e>>24,G=b>>>24,T=s*U*(1/255),z=G*(255-U)*(1/255),m=j&255,$=j>>>8&255,o=j>>>16&255,h=b&255,X=b>>>8&255,D=b>>>16&255,f=q.p.JU(A+p+g),R=Math.floor((T+z)*256+.5)+(f>>>0&255)>>>8,i=R==0?0:256/(T+z),t=m*T+h*z,N=$*T+X*z,M=o*T+D*z,hK=Math.floor(t*i+.5)+(f>>>8&255)>>>8,bD=Math.floor(N*i+.5)+(f>>>16&255)>>>8,co=Math.floor(M*i+.5)+(f>>>21&248)>>>8; +y[A+p]=R<<24|co<<16|bD<<8|hK}}};q.p.ae$=function(n){return Math.floor(n+Math.random())};q.p.b4=function(n,F,O,I,x,r,_){var d=1/255,w=F.lN(I).lN(r),Z=Math.max(0,w.x-F.x),P=Math.max(0,w.x-I.x),C=Math.max(0,w.y-F.y),W=Math.max(0,w.y-I.y),v=w.d,L=w.v; +for(var e=0;e1+d){m=q.c6.HW(W,z,t,N);D=Math.sqrt(m);R--;i++}else{m=o=X=1e9;for(var e=0;e=G)continue;var iM=q.c6.HW(W,co,t,N);if(iM>1);q.Mo.ic(F,_,O,I,r[1]-1>>1);q.Mo.ic(F,_,O,I,r[2]-1>>1)};q.Mo.afE=function(n,F,O,I,x){var r=q.Mo.rb(x,2),_=q.Mo.rX(O*I); +q.Ct(n,F);q.Mo.ic(F,_,O,I,r[0]-1>>1);q.Mo.ic(F,_,O,I,r[1]-1>>1)};q.Mo.a3h=function(n,F,O,I){var x=q.Mo.rb(I,3),r=q.Mo.rX(F*O*4); +q.Mo.Bq(n,r,F,O,x[0]-1>>1);q.Mo.Bq(n,r,F,O,x[1]-1>>1);q.Mo.Bq(n,r,F,O,x[2]-1>>1)};q.Mo.a8B=function(n,F,O,I,x,r){if(r==null)r=3; +var _=q.Mo.rb(x,r),d=q.Mo.Q4(O*I);q.Ct(n,F);for(var e=0;er||n*O<0&&_r||n*I<0&&_r||n*x<0&&_r?1:0}; +q.mi.acz=function(n,F,O,I){var x=new Float32Array(I),r=0;new Uint32Array(I).fill(0);for(var _=0;_r)r=C}var v=F*O,L=r==0?0:1/r; +for(var e=0;e0&&d>0)x[r+0]=-n-1;if(_>0)x[r+1]=-n;if(_>0&&d0)x[r+6]=n-1;if(d>0)x[r+7]=-1;e++;r+=8}return I}; +q.aF={};q.aF.Wl=function(n){var F=n.slice(0),O=0;for(var e=0;e>>1,P=new Uint32Array(n.buffer),F=new Uint8ClampedArray(F.buffer); +for(var e=0;eO-1)J=O-1;if(A<0)A=0;else if(A>I-1)A=I-1;if(d&&P[A*O+J]>>>24==0){A=e; +J=C}var p=P[A*O+J];W+=(p&255)*Q;v+=(p>>>8&255)*Q;L+=(p>>>16&255)*Q;H+=(p>>>24&255)*Q}if(_){if(W<0)W=-W; +if(v<0)v=-v;if(L<0)L=-L;if(H<0)H=-H}if(d){W=Math.max(0,Math.min(255,W));v=Math.max(0,Math.min(255,v)); +L=Math.max(0,Math.min(255,L));H=Math.max(0,Math.min(255,H))}var U=e*O+C<<2;F[U]=~~(.5+W);F[U+1]=~~(.5+v); +F[U+2]=~~(.5+L);F[U+3]=255-r&F[U+3]|r&~~(.5+H)}};q.aF.jt=function(n,F,O,I){var x=n.length,r=new Uint8Array(x); +q.aF.u3(n,F,O,I,q.aF.vy[4],0,!0);q.aF.u3(n,r,O,I,q.aF.vy[5],0,!0);for(var e=0;e>>1,Q=new Array(y),J=new Array(y); +for(var e=0;ew-P-y-1){U.fill(0);var b=Math.max(j-P,0),s=Math.min(w,j+P+1),G=s-b; +for(var T=0;T=0)I(U,_,z*w+b,z*w+s,-1);var $=T*w+j<<2;v=U[300];if(v!=0)for(var e=0;e<3;e++)d[$+e]=A(H[e],_[$+e],v,W)}}else{for(var e=0; +e=0)O(J,_,z*w+b,z*w+s,-1,g);if(m>>4]+=Z}return n}();q.Bk.xl=function(){function n(C,W,v,L,H,y,g){if(H==0){W.set(C); +return}if(H<=80)F(C,W,v,L,H,y,g);else r(C,W,v,L,H,y,g)}function F(C,W,v,L,H,y,g){var Q=0,J=new Int32Array(512),A=1+2*Math.round(Math.sqrt(H)),p=A>>>1,U=new Array(A); +for(var e=0;ev-H-A-1){J.fill(0); +Q=0;var G=Math.max(s-H,0),T=Math.min(v,s+H+1),z=T-G;for(var m=0;m=0){Q-=z;I(J,C,$*v+G,$*v+T,-1)}if(o=0){Q-=z;O(U,C,$*v+G,$*v+T,-1,p)}if(o>>4]+=L}function r(C,W,v,L,H,y,g){var Q=0,J=new Int32Array(512),A=new Int32Array(1*v),p=new Int32Array(512*v),U=Math.min(H,v),j=Math.min(H,L),b=y[0]; +for(var s=0;s=0)_(p,A,C,v,s-H-1,-1); +J.fill(0);Q=0;for(var G=0;G=0&&A[T]!=0){Q-=A[T]; +w(J,p,T)}if(z0)e--; +e=(e<<4)+15;while(n[e]==0&&e>0)e--;return e},function(n,F,O,I,x){var e=15;while(n[256|e]+F[256|e]==0&&e>0)e--; +e=(e<<4)+15;while(n[e]+F[e]==0&&e>0)e--;return e}];q.Bk.PD=[function(n,F,O,I){var e=0;while(n[256|e]==0&&e<15)e++; +e=e<<4;while(n[e]==0&&e<255)e++;return e},function(n,F,O,I,x){var e=0;while(n[256|e]+F[256|e]==0&&e<15)e++; +e=e<<4;while(n[e]+F[e]==0&&e<255)e++;return e}];q.Bk.qC=.5;q.Bk.Yc=[function(n,F,O,I){var x=~~(.5+q.Bk.qC*O),r=0,e=256; +while(r+n[e]<=x)r+=n[e++];e=e-256<<4;while(r<=x)r+=n[e++];return e-1},function(n,F,O,I,x){var r=~~(.5+q.Bk.qC*I),_=0,e=256; +while(_+n[e]+F[e]<=r){_+=n[e]+F[e];e++}e=e-256<<4;while(_<=r){_+=n[e]+F[e];e++}return e-1}];q.Bk.YZ=[function(n,F,O,I){var x=I[0],r=0,_=0,e=Math.max(0,F-x),d=Math.min(256,F+x+1); +while(e1e-9)P=!1}var L=q.J.In(n),H=q.J.Ue(n)&&L,y=H?1:0; +if(_||P&&C==O+I&&L){q.J.afb(Z,F,O,I,x,r,d,L,w);return}var g=r.d,Q=r.v,J=new Float64Array(2);x=new Uint32Array(x.buffer); +F=new Uint32Array(F.buffer);for(var A=0;AO+1||h<-1||h>I+1; +if(d){o=Math.max(.001,Math.min(O-1,o));h=Math.max(.001,Math.min(I-1,h))}else if(X)continue;var D=W;if(!L){var f=0,R=0; +s=n;j=m+1/O;b=$;G=1/(s[6]*j+s[7]*b+1);f=(s[0]*j+s[1]*b+s[2])*G-T;R=(s[3]*j+s[4]*b+s[5])*G-z;var i=f*f+R*R; +j=m;b=$+1/I;G=1/(s[6]*j+s[7]*b+1);f=(s[0]*j+s[1]*b+s[2])*G-T;R=(s[3]*j+s[4]*b+s[5])*G-z;var t=f*f+R*R; +D=1/Math.sqrt(Math.max(i,t))}if(D<1.1){q.J.Uo(o,h,F,O,I,x,U,y);continue}var N=Math.round(D*2.3);if(!d&&(o<.6||o>O-.6||h<.6||h>I-.6)){N=Math.max(N,5)}if(d&&X)N=1; +var M=1/N,hs=r.x+p,S=r.y+A;s=Z;for(var e=0;e=1||h<0||h>=1)continue; +o=Math.floor(o*O);h=Math.floor(h*I);var bV=h*O+o,a5=F[bV],i9=a5>>>24;hK+=(a5&255)*i9;bD+=(a5>>>8&255)*i9; +co+=(a5>>>16&255)*i9;iM+=i9}if(iM!=0){var dG=1/iM;hK=~~(hK*dG+.5);bD=~~(bD*dG+.5);co=~~(co*dG+.5);iM=~~(iM*M*M+.5); +x[U]=iM<<24|co<<16|bD<<8|hK}}};q.J.afb=function(n,F,O,I,x,r,_,d,w){if(d&&!_&&r.X()>4e6&&w){q.J.agK(n,F,O,I,x,r,_,d,w); +return}var Z=r.x+r.d,P=r.y+r.v,C=0,W=new Uint32Array(x.buffer),v=new Uint32Array(F.buffer),L=n[0]*O,H=n[1]*O,y=n[2]*O,g=n[3]*I,Q=n[4]*I,J=n[5]*I,A=n[6],p=n[7]; +if(d&&!_)for(var U=r.y+.5;U>>2<<2)-1e-9,s=-.1+(A>>>1<<1)-1e-9,G=~~O,T=C==0?0:1/C,z=L==0?0:1/L; +for(var m=0;m0){h=Math.max(h,-$*T); +X=Math.min(X,(O-$)*T)}else{X=Math.min(X,-$*T);h=Math.max(h,(O-$)*T)}if(L==0){}else if(z>0){h=Math.max(h,-o*z); +X=Math.min(X,(I-o)*z)}else{X=Math.min(X,-o*z);h=Math.max(h,(I-o)*z)}if(X<0)X=0;if(h>X)h=X;h=Math.ceil(h); +X=~~X;p=~~(m*J);for(var D=0;D=0&&P=0&&P+1=0&&C=0&&C+1I-1?I-1:P,p=P<-1?0:P>I-2?I-1:P+1,U=C<0?0:C>x-1?x-1:C,j=C<-1?0:C>x-2?x-1:C+1; +W=O[U*I+A];v=O[U*I+p];L=O[j*I+A];H=O[j*I+p]}else{var A=(P+50*I)%I,p=(P+50*I)%I,U=(C+50*x)%x,j=(C+50*x)%x; +W=O[U*I+A];v=O[U*I+p];L=O[j*I+A];H=O[j*I+p]}var b=n-P,s=F-C,G=(1-s)*(1-b)*(W>>>24),T=(1-s)*b*(v>>>24),z=s*(1-b)*(L>>>24),m=s*b*(H>>>24),$=G+T+z+m,o=G*(W&255)+T*(v&255)+z*(L&255)+m*(H&255),h=G*(W>>>8&255)+T*(v>>>8&255)+z*(L>>>8&255)+m*(H>>>8&255),X=G*(W>>>16&255)+T*(v>>>16&255)+z*(L>>>16&255)+m*(H>>>16&255); +if($==0)r[_]=0;else{var D=1/$;o=~~(o*D+.5);h=~~(h*D+.5);X=~~(X*D+.5);$=~~($+.5);r[_]=$<<24|X<<16|h<<8|o}}; +q.J.LC=function(n,F,O,I,x,r){var _=n-.499999,d=F-.499999,w=~~_,Z=~~d,P=_-w,C=d-Z,W=(1-C)*(1-P),v=(1-C)*P,L=C*(1-P),H=C*P,y=Z*I+w<<2,g=(Z+1)*I+w<<2,Q=W*O[y]+v*O[y+4]+L*O[g]+H*O[g+4],J=W*O[y+1]+v*O[y+5]+L*O[g+1]+H*O[g+5],A=W*O[y+2]+v*O[y+6]+L*O[g+2]+H*O[g+6],p=W*O[y+3]+v*O[y+7]+L*O[g+3]+H*O[g+7]; +r[0]=Q;r[1]=J;r[2]=A;r[3]=p};q.J.d5=function(n,F,O,I,x){n-=.499999;F-=.499999;var r=Math.floor(n),_=Math.floor(F),d=n-r,w=F-_,Z=(1-w)*(1-d),P=(1-w)*d,C=w*(1-d),W=w*d,v=(r+50*I)%I,L=(r+1+50*I)%I,H=(_+50*x)%x,y=(_+1+50*x)%x,g=O[H*I+v],Q=O[H*I+L],J=O[y*I+v],A=O[y*I+L]; +if(g==null||A==null)throw"e";return Z*g+P*Q+C*J+W*A};q.J.ps=function(n,F,O,I,x,r,_,d,w,Z,P,C){var W=new Uint32Array(n.buffer),v=new Uint32Array(I.buffer),L=(1+2*Z)/x,H=[],y=[]; +for(var g=0;gF-1?F-1:p)),b=~~(.5+(U<0?0:U>O-1?O-1:U)); +v[J*x+g]=W[b*F+j]}}};q.J.dR=function(n,F,O,I,x,r,_,d,w,Z,P,C){var W=new Uint32Array(n.buffer),v=new Uint32Array(I.buffer),L=1/C,H=[],y=O*4,g=1/y; +for(var Q=0;QF?F:O},afk:function(n,F,O,I,x,r,_,d){var w=O[0],Z=O[1],P=O[2],C=O[3],W=I.d,v=I.v,L=new Float64Array(W*4+8),H=new Float64Array(W*4+8); +for(var y=0,e=0;y>1,j=P.bh.v-O.v>>1,b=P.bh.d,s=-.6*p,G=(-.6+.4)*p,T=(-.6+2*.4)*p,z=(-.6+3*.4)*p; +for(var m=0,e=0;m=1){i=(R<=0?0:v)<<2;F[e]=g[i];F[e+1]=g[i+1];F[e+2]=g[i+2];F[e+3]=g[i+3];continue}i=Math.max(0,Math.min(v-1,Math.round((R+s)*v)))<<2; +h+=g[i];X+=g[i+1];D+=g[i+2];o+=g[i+3];i=Math.max(0,Math.min(v-1,Math.round((R+G)*v)))<<2;h+=g[i];X+=g[i+1]; +D+=g[i+2];o+=g[i+3];i=Math.max(0,Math.min(v-1,Math.round((R+T)*v)))<<2;h+=g[i];X+=g[i+1];D+=g[i+2];o+=g[i+3]; +i=Math.max(0,Math.min(v-1,Math.round((R+z)*v)))<<2;h+=g[i];X+=g[i+1];D+=g[i+2];o+=g[i+3];F[e]=h>>>2; +F[e+1]=X>>>2;F[e+2]=D>>>2;F[e+3]=o>>>2}}};q.W.bQ=function(n,F,O){var I=[];for(var e=0;e>16&255,l:F>>8&255,O:F&255};else if(n[e].v.Type.v.Clry=="BckC")x={Q:O>>16&255,l:O>>8&255,O:O&255}; +else x=q.W.S_(n[e].v.Clr.v);I.push(x)}return I};q.W.S_=function(n){var F,O=n.classID;if(O=="RGBC"){if(n.Rd)F={Q:n.Rd.v,l:n.Grn.v,O:n.Bl.v}; +else F={Q:n.redFloat.v*255,l:n.greenFloat.v*255,O:n.blueFloat.v*255}}else if(O=="HSBC"){F=q.xN(n.H.v.val/360,n.Strt.v/100,n.Brgh.v/100); +F.Q*=255;F.l*=255;F.O*=255}else if(O=="CMYC"){var I=100-n.Cyn.v,x=100-n.Mgnt.v,r=100-n.Ylw.v,_=100-n.Blck.v,d=255*I*_*1e-4,w=255*(.2*I+.8*x)*_*1e-4,Z=255*(.2*x+.8*r)*_*1e-4; +F={Q:d,l:w,O:Z}}else if(O=="Grsc")F={Q:255-n.Gry.v,l:255-n.Gry.v,O:255-n.Gry.v};else if(O=="LbCl"){F=q.TK(n.Lmnc.v,n.A.v,n.B.v)}else console.log(n); +if(isNaN(F.Q))F.Q=F.l=F.O=0;return F};q.W.Vm=function(n){return{classID:"RGBC",Rd:{t:"doub",v:n.Q},Grn:{t:"doub",v:n.l},Bl:{t:"doub",v:n.O}}}; +q.W.aoP=function(n,F,O,I){var x=[],r=1/(O-0);for(var e=0;eb)dT[e]=255-(255-S)*e2}}if(y)console.log("init",Date.now()-H);H=Date.now();if(x*g>0){fU.set(gP); +q.Mo.pp(fU,gP,new gv(0,0,O,I),g)}if(d*Q>0){fU.set(dT);q.Mo.pp(fU,dT,new gv(0,0,O,I),Q)}if(y)console.log("blur",Date.now()-H); +H=Date.now();var eR=q.f(256),gR=q.f(256);for(var e=0;e<256;e++){var bN=e*(1/255),eG=0;eG=(1-Math.pow(1-bN,s))*255; +eR[e]=Math.max(0,Math.min(255,~~(eG+.5)));eG=Math.pow(bN,G)*255;gR[e]=Math.max(0,Math.min(255,~~(eG+.5)))}var ef=new Uint8ClampedArray(F.buffer),fi=new Float32Array(32768); +for(var e=0;e<32768;e++){gw=Math.sqrt(e)*(1/128);if(bH>1)gw=(1-gw)*(bH-1)+1;else gw=gw*(bH-1)+1;fi[e]=gw}for(v=0; +v400)L++;var H=n,y=F,g=w,Q=Math.floor(y.d/L),J=Math.floor(y.v/L); +n=q.f(Q*J*4);q.scale.qJ(H,y.d,y.v,n,Q,J,1/L);w=q.f(Q*J);q.scale.dF(g,y.d,y.v,w,Q,J,1/L);q.round(w,1); +var A=q.$o(w,new gv(0,0,Q,J));if(A.D2())return 1;var p=Math.round((A.d+A.v)/2/15),U=Date.now(),j=q.f(Q*J*4); +q.aaa(n,j);var b=Int16Array,s=new b(Q*J*24),G=new b(64),T=new b(64),z=new b(64),m=new b(64);for(var h=3; +h0){var h=Math.floor(e*dG),X=e-h*2*Q; +i9.push({x:X-Q,y:h-J,G:t[e],ar:-1})}}i9.sort(function(iJ,aT){return aT.G-iJ.G});var ap=new Int32Array(Q*J),bk=[]; +for(var e=0;e>2]=gR+1}if(r)console.log(Date.now()-U,"copied back"); +U=Date.now();q.Mr.VY(gw,fU,_,null,1e3);if(r)console.log(Date.now()-U,"poisson smooth");U=Date.now(); +q.nF(gw,_,I,x);return 0};q.Aa.B0=function(n,F,O,I,x,r){return q.Aa.W4(n+x.x,F+x.y,O,I)&&r[(F+x.y)*O+(n+x.x)]==-1?0:1e9}; +q.Aa.ada=function(n,F,O,I,top,x,r,_){var d=Date.now(),w=[-1,0,0,-1,1,0,0,1],Z=1e99,P=[],C=[],W=2*(_*2*3+_*2),v=null,L=0,H=0,y=0,g=1e99; +while(!0&&Date.now()1){if(n[e]==n[D]){var f=0; +f+=q.Aa.mn(s+T.x,G+T.y,s+p.x,G+p.y,O,I,F,x);f+=q.Aa.mn(h+T.x,X+T.y,h+p.x,X+p.y,O,I,F,x);P[U]=e;P[U+1]=D; +C[U]=f;C[U+1]=f;U+=2}else{var R=top[n[D]],i=j,t=0,N=0,M=0;j++;t+=q.Aa.mn(s+T.x,G+T.y,s+p.x,G+p.y,O,I,F,x); +t+=q.Aa.mn(h+T.x,X+T.y,h+p.x,X+p.y,O,I,F,x);N+=q.Aa.mn(s+R.x,G+R.y,s+p.x,G+p.y,O,I,F,x);N+=q.Aa.mn(h+R.x,X+R.y,h+p.x,X+p.y,O,I,F,x); +M+=q.Aa.mn(s+R.x,G+R.y,s+T.x,G+T.y,O,I,F,x);M+=q.Aa.mn(h+R.x,X+R.y,h+T.x,X+T.y,O,I,F,x);P[U]=e;P[U+1]=i; +C[U]=t;C[U+1]=t;U+=2;P[U]=D;P[U+1]=i;C[U]=N;C[U+1]=N;U+=2;P[U]=i;P[U+1]=_+1;C[U]=M;C[U+1]=0;U+=2}}}P[U]=_; +P[U+1]=e;C[U]=z;C[U+1]=0;U+=2;P[U]=e;P[U+1]=_+1;C[U]=m;C[U+1]=0;U+=2;b+=Math.min(z,m)}if(b>J)continue; +var hK=q.nK.bM(j,U,_,_+1,P,C,J);if(hK.Gh=Z){break}Z=J; +n=Q;if((y&3)==0){if(J*1.03>=g)break;g=J}if((y&3)==0){var co=0*top.length;for(var e=0;eco; +e++){if(n.indexOf(e)!=-1)continue;top.splice(e,1);for(var D=0;De)n[D]--;e--}}}return n}; +q.Aa.a1q=function(n,F,O,I,x,r){for(var e=0;e>1)};q.Aa.anJ=function(n,F,O,I,x,r){var top=[]; +for(var e=0;e<60;e++){var _=q.Aa.Z1(top,25,O,I,x,n,F);if(_==null)break;else top.push(_)}if(top.length==0)return null; +var d=[];for(var e=0;e100){var _;_=q.Aa.Z1(top,0,O,I,x,n,F,w,Z); +if(_==null)return null;top.push(_);C=0}}d.push(P)}return{top:top,zt:d}};q.Aa.mn=function(n,F,O,I,x,r,_,d){if(n==O&&F==I)return 0; +if(n<0||F<0||n>=x||F>=r||O<0||I<0||O>=x||I>=r||d[F*x+n]!=-1||d[I*x+O]!=-1)return 1e7;var w=F*x+n<<2,Z=I*x+O<<2,P=_[w]-_[Z],C=_[w+1]-_[Z+1],W=_[w+2]-_[Z+2]; +return 1+(P*P+C*C+W*W)};q.Aa.W4=function(n,F,O,I){return n>=0&&n=0&&F=I)return x+1}return x};q.Aa.Mz=function(n,F,O,I,x){var r=16,W=0;if(F-n<=r){O.push(99,n,F); +return}q.Aa.gh(n,F,I,x);var _=-1,d=-1;for(var e=4;e<24;e++){var w=x[2*e+1]-x[2*e];if(w>d){d=w;_=e}}var Z=n+F>>1,P=q.Aa.a6u(Z,n,F,I,_),C=-1; +for(var e=n;e<=F;e++)if(I[24*e+_]==P){if(C==-1)C=e;W=e}if(n+8F-W)Z=C;else if(W+1w)I[(r<<1)+1]=_}}}; +q.Aa.Pq=function(n,F,O){var I=0,e=0;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I; +e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I; +e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I; +e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I; +e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I; +e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I; +e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I; +e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I; +e++;I=O[n+e];O[n+e]=O[F+e];O[F+e]=I;e++};q.Aa.Xb=function(n,F,O,I){var x=O+I>>>1,r=n[24*x+F];while(O<=I){while(n[24*O+F]r)I--;if(O<=I){if(n[24*O+F]!=n[24*I+F])q.Aa.Pq(O*24,I*24,n);O++;I--}}return O};q.Aa.a6u=function(n,F,O,I,x){var r=0; +while(F!=O){r=q.Aa.Xb(I,x,F,O);if(n>1; +e>0;e>>=1,x--){for(r=0;r>x&1)!=0;if(_){n+=O+"["+r+"] = "+F+"["+(-e+r)+"] - "+F+"["+r+"]; "}else{n+=O+"["+r+"] = "+F+"["+(e+r)+"] + "+F+"["+r+"]; "}}I=F; +F=O;O=I;n+="\n"}console.log(n)};q.Aa.amg=function(E,n,F){var O=n,I=F,x=O,r=0,e,d,w;while(E>>r!=2)r++; +var _=r;for(e=E>>1;e>0;e>>=1,r--){for(d=0;d>r&1)!=0;if(w)I[d]=O[-e+d]-O[d];else I[d]=O[e+d]+O[d]}x=O; +O=I;I=x}if((_&1)==1)for(e=0;eO)O=r;if(_x)x=_}return[F,I,O,x]};q.anE=function(n,F,O,I,x){function r(S,a,bV,a5){return Math.sqrt((S-bV)*(S-bV)+(a-a5)*(a-a5))}function _(S,a){return S>=0&&S=0&&a=F)return F-1;return S}function w(S){if(S<0)return 0;if(S>=O)return O-1;return S}function Z(e,S){var a=S[3]*(1/255),bV=I[e]+S[0]*a; +if(bV>255)bV=255;I[e]=bV;bV=I[e+1]+S[1]*a;if(bV>255)bV=255;I[e+1]=bV;bV=I[e+2]+S[2]*a;if(bV>255)bV=255; +I[e+2]=bV}function P(S,a,bV){if(!i(S,a))return;if(bV[3]<0)bV[3]=0;Z((a*F+S)*4,bV)}function C(S){var a=S.slice(0,3); +a[3]=0;return a}var W=F/800;function v(S){return Math.round(S*W)}function L(){for(var e=0;e<=300;e++){N[e]=H(e)}}function H(O){var S=.8,a=.2,bV=S*a,a5=O/60%2-1,i9=bV*(1-a5*a5),dG=a-bV,ap; +if(O<60){ap=[bV+dG,i9,0]}else if(O<120){ap=[i9,bV,0]}else if(O<180){ap=[0,bV,i9]}else if(O<240){ap=[0,i9,bV]}else if(O<300){ap=[i9,0,bV]}else{ap=[bV,0,i9]}return[(ap[0]+dG)*255,(ap[1]+dG)*255,(ap[2]+dG)*255]}function y(O){return N[~~O]}function g(S){return 1-Q(S)}function Q(S){return S-~~S}function J(S,a,bV,a5){f(S,a,bV,0,a+1,1,a5)}function A(S,a,bV,a5,i9,dG){f(S,a,bV,0,a5,1,i9,dG)}function p(S){for(var e=0; +ea||bN<=a-i9)break;var eG=(bN-a+i9)/i9;gw[3]=gP-a5*(dG==1?eG:Math.pow(eG,dG)); +Z((gR*F+dV)*4,gw)}cX=w(bH+e2);for(var gR=cX;gR>eR;gR--){var bN=r(dV,gR,gg,bH);if(bN>a||bN<=a-i9)break; +var eG=(bN-a+i9)/i9;gw[3]=gP-a5*(dG==1?eG:Math.pow(eG,dG));Z((gR*F+dV)*4,gw)}}if(ap>0){f(S,a+ap,gw,gw[3],ap,1,0,0,!0)}if(bk>0){f(S,a-i9,t(bV),-bV[3],bk,1,0,0,!0)}}function b(S,a,bV,a5,i9,dG){f(S,a,bV,bV[3],a+1,1,a5,i9,dG)}function s(S,a,bV,a5,i9){if(i9==null)i9=!1; +var dG=S.x,ap=S.y;a5*=hK;if(!i9){a=R(a);bV=R(bV)}var bk=d(dG-a),c2=d(dG+a);for(var gg=bk;gga||dV<=a-bV)break;var ac=(a-dV)/bV,e2=y(300*ac); +e2[3]=a5;Z((fU*F+gg)*4,e2)}gP=w(ap+gw);for(var fU=gP;fU>dT;fU--){var dV=r(gg,fU,dG,ap);if(dV>a||dV<=a-bV)break; +var ac=(a-dV)/bV,e2=y(300*ac);e2[3]=a5;Z((fU*F+gg)*4,e2)}}}function G(M,S){var a=M.Yd,bV=M.tH,a5=S.slice(0),i9=S[3]*hK,dG=Math.abs(bV.y-a.y)>Math.abs(bV.x-a.x); +if(dG){var ap=a.x;a.x=a.y;a.y=ap;ap=bV.x;bV.x=bV.y;bV.y=ap}if(a.x>bV.x){var ap=a;a=bV;bV=ap}var bk=bV.x-a.x,c2=bV.y-a.y,gg=bk==0?1:c2/bk,bH=Math.round(a.x),gw=a.y+gg*(bH-a.x),gP=g(a.x+.5),dT=bH,fU=~~gw; +if(dG){a5[3]=i9*g(gw)*gP;P(fU,dT,a5);a5[3]=i9*Q(gw)*gP;P(fU+1,dT,a5)}else{a5[3]=i9*g(gw)*gP;P(dT,fU,a5); +a5[3]=i9*Q(gw)*gP;P(dT,fU+1,a5)}var dV=gw-gg;bH=Math.round(bV.x);gw=bV.y+gg*(bH-bV.x);gP=Q(bV.x+.5); +var ac=bH,e2=~~gw;if(dG){a5[3]=i9*g(gw)*gP;P(e2,ac,a5);a5[3]=i9*Q(gw)*gP;P(e2+1,ac,a5)}else{a5[3]=i9*g(gw)*gP; +P(ac,e2,a5);a5[3]=i9*Q(gw)*gP;P(ac,e2+1,a5)}if(dG){for(var cX=dT+1;cX<=ac-1;cX++){a5[3]=i9*g(dV);P(~~dV,cX,a5); +a5[3]=i9*Q(dV);P(~~dV+1,cX,a5);dV+=gg}}else{for(var cX=dT+1;cX<=ac-1;cX++){a5[3]=i9*g(dV);P(cX,~~dV,a5); +a5[3]=i9*Q(dV);P(cX,~~dV+1,a5);dV+=gg}}}function T(S,a,bV,a5){for(var e=0;e<4;e++){var i9=S.jb(a+1.3*e,bV); +G(i9,a5,1)}}function aE(S,a){this.x=Math.round(S);this.y=Math.round(a)}var z=Math.PI/180;aE.prototype.jb=function(S,a){S=S*z; +var bV=this.x+a*Math.cos(S),a5=this.y+a*Math.sin(S);return new m(this.x,this.y,bV,a5)};aE.prototype.anl=function(S,a){S=S*z; +var bV=this.Tm+a*Math.cos(S),a5=this.aoM+a*Math.sin(S);return new aE(bV,a5)};function m(S,a,bV,a5){this.Yd=new aE(S,a); +this.tH=new aE(bV,a5)}m.prototype.KX=function(S){var a=S*this.Yd.x+(1-S)*this.tH.x,bV=S*this.Yd.y+(1-S)*this.tH.y; +return new aE(a,bV)};var $=U,o=b,h=J,X=A,D=s,f=j,R=v,i=_,t=C,N=[];L();for(var e=0;er){x=e;r=Math.abs(n[e][I])}q.PS.aiv(n,I,x);for(var e=I+1;e=0;e--){if(n[e][e]==0)return 1;var w=n[e][O]/n[e][e];F[e]=w;for(var d=e-1;d>=0;d--){n[d][O]-=n[d][e]*w; +n[d][e]=0}}return 0};q.PS.aiv=function(n,F,O){var I=n[F];n[F]=n[O];n[O]=I};q.PS.ac6=function(n){var F=n.length,O=q.PS.Bc(F,F); +for(var e=0;e255?255:F};q.e$.transform=function(n,F,O){var I=q.e$.U2,x=n.Q.length;for(var e=0;e>1]=W;w[d+1]=_[P];_[P]=d+1;d+=4;w[d]=P;Z[d+2>>1]=v;w[d+1]=_[C];_[C]=d+1;d+=4}return{s9:w,ad0:Z,aaU:_}}; +q.nK.bM=function(n,F,O,I,x,r,_){var d=1,w=q.nK.vP(n,F,O,I,x,r),Z=w.s9,P=w.ad0,C=w.aaU,W=new Uint32Array(n),v=new q.nK.VV(n),H=1,A=0; +v.push(O);v.push(I);var L=new q.nK.VV(n),y=new Uint8Array(n),g=new Uint32Array(n);y[O]=1;y[I]=2;var Q=new Uint32Array(n),J=new Uint32Array(n); +J[O]=J[I]=0;Q[O]=Q[I]=1;while(!0){var p=-1,z=0,h=1e30;while(!v.LW()&&p==-1){var U=v.top(),j=y[U],b=C[U]-1; +while(b!=-1){var s=Z[b],G=y[s],T=b^j-1<<2;if(P[T+2>>1]!=0){if(G==0){q.nK.Kk(U,b,s,y,g,J,Q);v.push(s)}else if(G==j&&Q[s]<=Q[U]&&J[s]>J[U])q.nK.Kk(U,b,s,y,g,J,Q); +else if(G!=j){p=T}}b=Z[b+1]-1}if(p!=-1)break;v.pop()}if(p==-1){break}H++;var m=p;while(m!=-1){W[z]=m; +z++;m=g[Z[m^4]]-1}var $=z>>1;for(var e=0;e<$;e++){var o=W[e];W[e]=W[z-e-1];W[z-e-1]=o}m=g[Z[p]]-1;while(m!=-1){W[z]=m^4; +z++;m=g[Z[m^4]]-1}for(var e=0;e>1]);A+=h;if(A>=_)return{VD:null,Gh:A};for(var e=0; +e>1]-=h;P[D+2>>1]+=h;if(P[X+2>>1]==0&&y[U]==y[s]){if(y[U]==1){g[s]=0; +L.push(s)}if(y[U]==2){g[U]=0;L.push(U)}}}while(!L.LW()){var U=L.pop(),j=y[U],b=C[U]-1,f=j==1?4:0,R=0,i=0,t=1e9; +while(b!=-1){var s=Z[b],N=b^4,T=b^f;if(y[s]==j&&P[T+2>>1]>0&&q.nK.aoN(s,O,I,g,Z,H,Q,J)+1>1]>0){v.push(s)}if(g[s]==b+1){g[s]=0;L.push(s)}}b=Z[b+1]-1}y[U]=0;v.remove(U)}}var M=[]; +for(var e=0;e>1)}if(y[s]==1&&y[U]!=1){M.push(F+e>>1)}}return{VD:M,Gh:A}}; +q.nK.Kk=function(n,F,O,I,x,r,_){I[O]=I[n];x[O]=F+1;r[O]=r[n]+1;_[O]=_[n]};q.nK.aoN=function(n,F,O,I,x,r,_,d){var w=n,Z=I[n]-1,P=0; +while(Z!=-1&&_[n]!=r){n=x[Z^4];Z=I[n]-1;P++}if(Z==-1&&n!=F&&n!=O)return 1e9;var C=d[n]+P;P=0;Z=I[w]-1; +while(w!=n){d[w]=C-P;P++;_[w]=r;w=x[Z^4];Z=I[w]-1}return C};q.nK.ahj=function(n,F,O,I,x,r){var _=q.nK.vP(n,F,O,I,x,r),d=_.s9,w=_.ad0,Z=_.aaU,P=0,C=0,W=new Uint32Array(n*2),v=new q.nK.co(n),L=0; +while(!0){v.reset();v.push(O);for(var e=0;e>1]>0&&L!=O){W[L<<1]=H+1;W[(L<<1)+1]=y;v.push(L)}y=d[y+1]-1}if(W[I<<1]!=0){break}}if(W[I<<1]==0){break}var g=1e30; +L=I;while(!0){var Q=W[L<<1]-1;if(Q==-1)break;var J=W[(L<<1)+1];g=Math.min(g,w[J+2>>1]);L=Q}L=I;while(!0){var Q=W[L<<1]-1; +if(Q==-1)break;var J=W[(L<<1)+1],A=J^4;w[J+2>>1]-=g;w[A+2>>1]+=g;L=Q}P+=g}var p=[];for(var e=0;e>1)}if((W[L<<1]!=0||L==O)&&W[Q<<1]==0&&Q!=O){p.push(F+e>>1)}}return{VD:p,Gh:P}}; +q.nK.co=function(n){n|=n>>1;n|=n>>2;n|=n>>4;n|=n>>8;n|=n>>16;this.C4=new Uint32Array(n+1);this.Yh=n; +this.V2=0;this.dU=0};q.nK.co.prototype={push:function(n){var F=this.dU;this.C4[F]=n;this.dU=F+1&this.Yh},pop:function(){var n=this.V2,F=this.C4[n]; +this.V2=n+1&this.Yh;return F},LW:function(){return this.V2==this.dU},reset:function(){this.V2=0;this.dU=0}}; +q.nK.VV=function(n){n|=n>>1;n|=n>>2;n|=n>>4;n|=n>>8;n|=n>>16;this.C4=new Uint32Array(n+1);this.IN=new Uint32Array(n+1); +this.Yh=n;this.V2=0;this.dU=0};q.nK.VV.prototype={top:function(){return this.C4[this.V2]},anp:function(){return this.C4[this.dU]},push:function(n){if(this.IN[n]!=0)return; +this.IN[n]=this.dU+1;var F=this.dU;this.C4[F]=n;this.dU=F+1&this.Yh},pop:function(){var n=this.V2,F=this.C4[n]; +this.IN[F]=0;this.V2=n+1&this.Yh;return F},LW:function(){return this.V2==this.dU},remove:function(n){var F=this.IN[n]-1; +if(F==-1)return;this.IN[n]=0;if(F==this.V2){this.pop();return}var O=this.pop();this.C4[F]=O;this.IN[O]=F+1},Fw:function(e){return e+this.Yh+1&this.Yh}}; +q.nK.HQ=function(n,F,O){var I=q.nK.Xb(n,F,O);if(F>>1]; +while(F<=O){while(n[F]I)O--;if(F<=O){q.nK.Pq(n,F,O);F++;O--}}return F};q.nK.Pq=function(n,F,O){var I=n[F]; +n[F]=n[O];n[O]=I};q.oK={};q.oK.a4F=function(n){for(var e=0;e.01){q.oK.w$(n,e); +continue}var C=q.oK.Xq(w);q.J.m(F,C);q.oK.ig(w,[Math.min(C[0],C[2]),Math.min(C[1],C[3]),Math.max(C[0],C[2]),Math.max(C[1],C[3])]); +if(P==2){var W=q.oK.Lq(w),v=new cD(F[0],F[1],F[3],F[4],0,0);v.js();if(v.R==0){W.push(W.shift());v.rotate(Math.PI/2); +v.js()}if(v.R<0){var L=W[0];W[0]=W[1];W[1]=L;L=W[2];W[2]=W[3];W[3]=L}if(v.oQ<0){var L=W[0];W[0]=W[3]; +W[3]=L;L=W[1];W[1]=W[2];W[2]=L}if(I)for(var H=0;H<4;H++)W[H]=W[H]*_;q.oK._6(w,W)}if(P==4){w.keyOriginLineWeight.v*=_; +var y=q.oK.Dt(w);q.J.m(F,y);q.oK.afl(w,y)}}};q.oK.df=function(n,F){var O=F.b;for(var e=0;e=0}; +q.z.Uh=function(n){var F={},O=null,I=0,x={M:2,L:2,Q:4,C:6};for(var e=0;e5||N.type==0||N.type==3)continue;var M=N.pt.Qq(N.I)||N.Cz.Qq(N.Cz);if(!M){var m=N.pt.x*(N.I.y-N.Cz.y)+N.I.x*(N.Cz.y-N.pt.y)+N.Cz.x*(N.pt.y-N.I.y); +if(Math.abs(m)<1e-6)M=!0}if(M)N.type--}return h};q.z.qg=function(){function n(I,x,r,_){if(!_&&I.Cz.Qq(I.I)&&x.pt.Qq(x.I)){r.H.push(x.I.x,x.I.y); +r.s.push("L")}else{r.H.push(I.Cz.x,I.Cz.y,x.pt.x,x.pt.y,x.I.x,x.I.y);r.s.push("C")}}function F(I,x,e,r,_,d){var w=x[e]; +I.H.push(w.I.x,w.I.y);I.s.push("M");for(var Z=e;Z5)continue;var _=I[e].length;if(_==0)continue; +if(e==I.length-1)break;var d=I[e].type==3;F(r,I,e+1,_,d,x);if(!d)r.s.push("Z");e+=_}return r}return O}(); +q.z.anv=function(n){var F=n.H,O=[],I,x=0;for(var e=0;e>>1}}return xW){W=H;C=e}}if(W=0},F=function(I,x,r,_,d,w,Z,P){var C=Z-r,W=P-_,v=d-r,L=w-_,H=I-r,y=x-_,g=C*C+W*W,Q=C*v+W*L,J=C*H+W*y,A=v*v+L*L,p=v*H+L*y,U=1/(g*A-Q*Q),j=(A*J-Q*p)*U,b=(g*p-Q*J)*U; +return j>=0&&b>=0&&j+b<1},O=function(I){var E=I.length>>>1,e=0;if(E<3)return[];var x=[],r=[];for(var e=0; +e3){var d=r[(e+0)%_],w=r[(e+1)%_],Z=r[(e+2)%_],P=I[2*d],C=I[2*d+1],W=I[2*w],v=I[2*w+1],L=I[2*Z],H=I[2*Z+1],y=!1; +if(n(P,C,W,v,L,H)){y=!0;for(var g=0;g<_;g++){var Q=r[g];if(Q==d||Q==w||Q==Z)continue;if(F(I[2*Q],I[2*Q+1],P,C,W,v,L,H)){y=!1; +break}}}if(y){x.push(d,w,Z);r.splice((e+1)%_,1);_--;e=0}else if(e++>3*_)break}x.push(r[0],r[1],r[2]); +return x};return O}();q.z.alD=function(n,F){var O={},I={s:[],H:[]};for(var e=0;eO){var r=O; +O=F;F=r}if(x[F+","+O])return;x[F+","+O]=!0;I.s.push("M","L");I.H.push(n[F],n[F+1],n[O],n[O+1])};q.z.wL=function(n,F){var O=[],I=n.length; +for(var e=0;e=0;e--){var _=Math.pow(10,e);if(5*_*n<=r){I=5*_; +x=10;break}if(2*_*n<=r){I=2*_;x=4;break}if(1*_*n<=r){I=1*_;x=10;break}}if(I==0){I=1;x=10}var d=Math.ceil(I*n),w=q.f(d*q.Mm.qS*4); +q.IW(w,4278190080|O);for(var e=0;e1||I==1&&d>20)for(var e=1;e>16&255;n[F+1]=O>>8&255;n[F+2]=O&255}; +q.Mm.a35=function(n,F,O,I,x){var r=n.Nv.d,_=n.Nv.v,d=q.Mm.qS,w=F&255,Z=F>>8&255,P=F>>16&255,U,j,b,s; +F=Math.round(w*.6)<<16|Math.round(Z*.6)<<8|Math.round(P*.6);q.Mm.a66(Math.round(w*.8)<<16|Math.round(Z*.8)<<8|Math.round(P*.8),O); +var C=this.aa_(n.K,F,O),W=n.jR(0,0),v=n.jR(r,_),L=Math.floor(W.x/C.step)*C.step,H=Math.ceil(v.x/C.step)*C.step,y=Math.floor(W.y/C.step)*C.step,g=Math.ceil(v.y/C.step)*C.step,Q=n.Hl(L,y),J=n.Hl(H,y),A=C.step*n.K,p=Math.ceil(A); +U=n.$R.data;j=new gv(0,0,r,d);b=new gv(0,0,p,d);s=new gv(0,Math.round(d*.08),q.Mm.m1,q.Mm.m1);for(var e=0; +e<(H-L)/C.step;e++){b.x=Math.round(Q.x+e*A);q.nF(C.Qb,b,U,j,b);var G=(L+e*C.step).toString(10);for(var T=0; +T>>24;L+=U;H+=U*(p>>>16&255);y+=U*(p>>>8&255); +g+=U*(p&255)}if(L!=0){var j=1/L;I[W*x+v]=L/(Q*J)<<24|H*j<<16|y*j<<8|g*j}else I[W*x+v]=0}};q.N={};q.N.aeJ=function(n,F,O){var I=128,e=0,x=O.d,r=O.v; +for(var _=0;_=I&&(d==0||n[e-1]>>2]}}}; +q.N.alo=function(n,F,O,I,x,r){var _=O.d,d=O.v,w=0,Z=0,P=_,C=d;if(I){w=I.x-O.x;Z=I.y-O.y;P=w+I.d;C=Z+I.v}var W=new Uint8Array(F.buffer),v=new Uint32Array(F.buffer); +for(var L=Z;L>>1<<24|255;else v[e]=255<<24|(y<<16|y<<8|y)}}; +q.ZZ={};q.ZZ.sh=function(n,F,O){var I,x;if(O=="front"){I=n.rect.clone();x=q.ZZ.anu}if(O=="union"){I=n.rect.Tq(F.rect); +x=q.ZZ.Tq}if(O=="difference"){I=F.rect.clone();x=q.ZZ.a2K}if(O=="intersection"){I=n.rect.lN(F.rect); +x=q.ZZ.lN}if(O=="xor"){I=n.rect.Tq(F.rect);x=q.ZZ.ajb}if(I.D2())return null;var r=q.f(I.X());q.k9(F.channel,F.rect,r,I); +var _=q.f(I.X());q.k9(n.channel,n.rect,_,I);x(_,r,r);var d=q.$o(r,I);if(d.D2())return null;if(!d.Qq(I)){var w=q.f(d.X()); +q.k9(r,I,w,d);r=w;I=d}return{channel:r,rect:I}};q.ZZ.anu=function(n,F,O){for(var e=0;ex+I)break}}; +q.HT.prototype.an_=function(n,F,O,I){var x=Date.now(),r=1.96,d=0;if(O==null)O=5e-5;if(I==null)I=1e9; +var _=1-r,E=this.rows,w=this.q1,Z=this.fN,P=this.t6,C=this.xZ;while(!0){var W=0;for(var e=0;ex+I)break}};q.pH={};q.pH.G0=function(n,F,O){return{t:"Objc",v:{classID:"CrPt",Hrzn:{t:"doub",v:n},Vrtc:{t:"doub",v:F},Cnty:{t:"bool",v:O}}}}; +q.pH.m=function(n,F){for(var e=0;e=F[F.length-1])return O[F.length-1];var e=1;while(F[e]=F[F.length-1])return O[F.length-1]; +var e=1;while(F[e]100)x[1]=.4*x[1];if(x[2]>150)x[1]=.7*x[2]}return x};q.pH.kL=function(n,F){var O=new Uint8Array(n.length); +for(var e=0;eH){var g=y;y=H;H=g}F[e]=W+q.style.amD(H,y,v)}};q.style.amD=function(n,F,O){return(.5-O)*n};q.style.kn=function(n,F,O,I){if(I==null){I=!0; +for(var e=0;e=0;_--)q.style.Un(F,n,O,e+_<<1,1)}for(var r=I-2; +r>=0;r--){var e=r*O;for(var _=0;_<=O-1;_++)q.style.OL(F,n,O,e+_<<1,1);for(var _=1;_<=O-1;_++)q.style.Un(F,n,O,e+_<<1,-1); +for(var _=O-2;_>=0;_--)q.style.Un(F,n,O,e+_<<1,1)}};q.style.Un=function(n,F,O,I,x){var r=(I>>>1)+x<<1,_=n[I],d=n[I+1],w=n[r]+x,Z=n[r+1],P=w*w+Z*Z,C=_*_+d*d; +if(Z!=16383&&(_==16383||Math.sqrt(P)+(.5-F[(I>>>1)+Z*O+w]*(1/255))>>1)+d*O+_]*(1/255)))){n[I]=w; +n[I+1]=Z}};q.style.OL=function(n,F,O,I,x){var r=(I>>>1)+x*O<<1,_=n[I],d=n[I+1],w=n[r],Z=n[r+1]+x,P=w*w+Z*Z,C=_*_+d*d; +if(w!=16383&&(_==16383||Math.sqrt(P)+(.5-F[(I>>>1)+Z*O+w]*(1/255))>>1)+d*O+_]*(1/255)))){n[I]=w; +n[I+1]=Z}};q.style.a2T=function(n,F,O,I){var x=O*I;for(var e=0;e=0;_--)q.style.rm(F,n,O,e+_<<1,1)}for(var r=I-2;r>=0;r--){var e=r*O;for(var _=0;_<=O-1; +_++)q.style.wJ(F,n,O,e+_<<1,1);for(var _=1;_<=O-1;_++)q.style.rm(F,n,O,e+_<<1,-1);for(var _=O-2;_>=0; +_--)q.style.rm(F,n,O,e+_<<1,1)}};q.style.rm=function(n,F,O,I,x){var r=(I>>>1)+x<<1,_=n[I],d=n[I+1],w=n[r]+x,Z=n[r+1],P=w*w+Z*Z,C=_*_+d*d; +if(Z!=16383&&(_==16383||P>>1)+x*O<<1,_=n[I],d=n[I+1],w=n[r],Z=n[r+1]+x,P=w*w+Z*Z,C=_*_+d*d; +if(w!=16383&&(_==16383||P=0;d--)F[d+r-O]=Math.min(F[d+r-O],F[d+r-O+1]);for(var w=I-2;w>=0;w--){var e=w*O+O-1;F[e]=Math.min(F[e],Math.min(F[e+O]+1,F[e+O-1]+Math.SQRT2)); +for(var d=O-2;d>=1;d--){var Z=F[--e],P=Math.min(F[e+1]+1,Math.min(F[e+O-1]+Math.SQRT2,Math.min(F[e+O]+1,F[e+O+1]+Math.SQRT2))); +if(P=0;w--){if(n[w*O+_]>x)d=0;else d++;r[w]=d}d=O+I;for(var w=0; +wx)d=0;else d++;F[w*O+_]=d0)n[e]=Math.max(0,Math.min(255,I+F*2*(q.style.GR(e)-128)))}else for(var e=0; +e0)n[e]=Math.max(0,Math.min(255,I+Math.min(I*3,F*2*(q.style.GR(e)-128))))}}; +q.style.GR=function(n){n=n^61^n>>16;n=n+(n<<3);n=n^n>>4;n=n*668265261;n=n^n>>15;return n&255};q.Sr={}; +q.Sr.XH=function(n,F,O){var I=n.canvas,x=V.Z(),r=Math.floor;if(I.width!=r(F*x)||I.height!=r(O*x))V.$C(I,F,O,n)}; +q.Sr.Tx=function(n,F,O,I,x,r){q.Sr.XH(n,F,O);if(r==null)r=!1;var _=x.channel,d=x.rect,w=!x.isEnabled; +F=Math.floor(F*V.Z());O=Math.floor(O*V.Z());if(F*O==0)return;var Z=n.createImageData(F,O),P=Z.data,C=1/F,W=1/O; +for(var e=0;e=d.x+d.d||g=d.y+d.v)Q=x.color;else Q=_[(g-d.y)*d.d+(y-d.x)];Q=255*(255-x.JP)+Q*x.JP>>>8; +if(r)Q=170+Math.round(.4*(Q-170));P[H]=Q;P[H+1]=Q;P[H+2]=Q;P[H+3]=255}n.putImageData(Z,0,0);if(w)q.Sr.Ow(n,F,O)}; +q.Sr.i6=[];q.Sr.aiV=function(n,F,O,I){var x,r,_,d=V.Z();F=Math.floor(d*F);O=Math.floor(d*O);x=Math.ceil(Math.max(F,O)*.35); +r=F-x;_=O-x;var w=q.Sr.i6[x];if(w==null){var Z=V.w("canvas"),P=Z.getContext("2d");Z.width=Z.height=x; +P.fillStyle="#eeeeee";P.fillRect(0,0,x,x);var C=Math.round(x*.27),W=P.lineWidth=Math.max(1,Math.round(x*.12)),v=W/2; +P.strokeRect(1+v,1+v,x-W-2,x-W-2);P.strokeRect(C+v,C+v,x-C-C-W,x-C-C-W);w=q.Sr.i6[x]=P.getImageData(0,0,x,x)}n.putImageData(w,r,_)}; +q.Sr.NF=[];q.Sr.a5r=function(n,F,O){var I,x,r,_=V.Z();F=Math.floor(_*F);O=Math.floor(_*O);I=Math.ceil(Math.max(F,O)*.35); +x=F-I;r=O-I;var d=q.Sr.NF[I];if(d==null){var w=V.w("canvas"),Z=w.getContext("2d");w.width=w.height=I; +Z.fillStyle="#eeeeee";Z.fillRect(0,0,I,I);Z.lineWidth=1;Z.strokeRect(2.5,2.5,I-5,I-5);var P=Z.createImageData(3,3); +q.IW(P.data,4278190080);P.data[4*4]=P.data[4*4+1]=P.data[4*4+2]=238;Z.putImageData(P,1,1);Z.putImageData(P,I-4,1); +Z.putImageData(P,1,I-4);Z.putImageData(P,I-4,I-4);d=q.Sr.NF[I]=Z.getImageData(0,0,I,I)}n.putImageData(d,x,r)}; +q.Sr.aoj=function(n,F,O,I,x){q.Sr.XH(n,F,O);F=Math.floor(F*V.Z());O=Math.floor(O*V.Z());var r=F/I.d; +if(F*O==0)return;n.fillStyle="#999999";n.setTransform(1,0,0,1,0,0);n.clearRect(0,0,F,O);var _=q.Sr.Hj; +if(_==null){_=q.Sr.Hj=JSON.parse(JSON.stringify(bW.uS.default));_.strokeEnabled.v=!0}_.strokeStyleLineWidth.v.val=1*V.Z()/r; +n.fillStyle="#ffffff";n.scale(r,r);q.Y.xM(x.b,n,0,0);q.Y.xM(x.b,n,0,0,_)};q.Sr.Ou=null;q.Sr.Y8=function(n,F,O,I,x,r,_,d){q.Sr.XH(n,F,O); +F=Math.floor(F*V.Z());O=Math.floor(O*V.Z());if(F*O==0)return;var w=Math.max(F,O),Z=q.Sr.Ou;if(Z==null||Z.width=L||p=y){P[J]=U;P[J+1]=U;P[J+2]=U;P[J+3]=255}else{var j=(p-r.y)*r.d+(A-r.x)<<2,b=x[j+3]*(1/255); +P[J]=x[j+0]*b+U*(1-b);P[J+1]=x[j+1]*b+U*(1-b);P[J+2]=x[j+2]*b+U*(1-b);P[J+3]=255}}if(d!=null)for(var e=0; +e5||r.type==0||r.type==3)continue;if(F!=null&&F.indexOf(x)==-1)continue; +if(O!=null&&O.indexOf(e)==-1)continue;I.push(r.pt.x);I.push(r.pt.y);I.push(r.I.x);I.push(r.I.y);I.push(r.Cz.x); +I.push(r.Cz.y)}return I};q.Y.e4=function(n,F,O,I){var x=0,r=-1;for(var e=0;e5||_.type==0||_.type==3)continue;if(O!=null&&O.indexOf(r)==-1)continue; +if(I!=null&&I.indexOf(e)==-1)continue;_.pt.mT(n[x],n[x+1]);_.I.mT(n[x+2],n[x+3]);_.Cz.mT(n[x+4],n[x+5]); +x+=6}};q.Y.gS=function(n,F,O,I){var x=q.Y.J5(n,O,I);q.z.m(x,F,x);q.Y.e4(x,n,O,I)};q.Y.a51=function(n,F,O,I){var x=q.Y.J5(n,O,I); +q.J.m(F,x);q.Y.e4(x,n,O,I)};q.Y.aaf=function(n,F,O,I){if(O==null&&I==null){var x=q.Y.aap(n,40);for(var e=0; +e5){O.push(JSON.parse(JSON.stringify(I)));continue}var x=q.Y.ahQ(n,e+1,I.length); +x=q.z.iC(x,F);var r=q.Y.aeh(x);e+=I.length;I=JSON.parse(JSON.stringify(I));I.length=r.length;O.push(I); +for(var _=0;_5)continue;var F=n[e].length;if(!(F==4||F==6||F==8)){e+=F; +continue}for(var O=0;O5)continue; +if((d.type==0||d.type==3)&&d.Xu!=-1)r++;if(F!=null&&F.indexOf(r)==-1)continue;if(e==n.length-1)break; +var w=d.type==3,Z=d.length,P=d.Xu,C=q.Y.a8x(n,e+1,Z,w);if(x==null)x=C;else if(O)x=I(x,C);else if(_){if(F!=null||P==0||P==-1||P==2)x=I(x,C); +else if(P==1)x=x;else if(P==3){x=C;_=!1}}else{if(F!=null||P==0||P==-1||P==1)x=I(x,C);else if(P==2)x=x; +else if(P==3)x=x.lN(C)}e+=Z}if(x==null||x.d<0||x.v<0)x=new gv(0,0,0,0);return x};q.Y.a0c=new Float64Array(4); +q.Y.a8x=function(n,e,F,O){var I=q.Y.a0c;I[0]=1e30;I[1]=1e30;I[2]=-1e30;I[3]=-1e30;var x=n[e+F-1];if(!O)q.Y.nx(x.I.x,x.I.y,x.Cz.x,x.Cz.y,n[e].pt.x,n[e].pt.y,n[e].I.x,n[e].I.y,I); +for(var r=e;rC)C=U;if(jW)W=j}if(Zw[2])w[2]=C; +if(W>w[3])w[3]=W};q.Y.oF=function(n,F){var O=n.length-3,I=F%O,x=Math.floor(I);if(F<0||x>=O)return null; +var r=n[3+x],_=n[3+(x+1)%O],d=r.I,w=r.Cz,Z=_.pt,P=_.I,C=I-x,W=1-C,v=W*W*W*d.x+3*W*W*C*w.x+3*W*C*C*Z.x+C*C*C*P.x,L=W*W*W*d.y+3*W*W*C*w.y+3*W*C*C*Z.y+C*C*C*P.y; +return new aE(v,L)};q.Y.Y_=function(n){var F=2,O=q.Y._v(n),I=!1;for(var e=2;e1)n=q.Y.YH(n);var r=q.z.qg(n);return{agy:Typr.U.pathToSVG({crds:r.H,cmds:r.s},F),JI:I?1:0}}; +q.Y.YH=function(n){q.Y.VJ();var F,O=q.Y.lj(n),I=[];for(var e=0;e=0;e--){var d=_[e][0],w=d.hitTest(r,x);if(w!=null)return{FI:e,Yw:O?w.location.index:null}}return{FI:-1}}; +q.Y.x1=function(n,F,O){var I=[[],[],[]];for(var e=0;e5||x.type==0||x.type==3)continue; +var r=O==null?!0:O.indexOf(e)!=-1;if(F.JX(x.I))I[0].push(e);if(F.JX(x.pt)&&r)I[1].push(e);if(F.JX(x.Cz)&&r)I[2].push(e)}return I}; +q.Y.ajk=function(n,F,O){var I=O.slice(0),x=[null,null],r=-1,d=null;for(var e=2;e=F)return I; +I++}return I};q.Y.wb=function(n,F){var O=-1,I=0;for(var e=0;e180?360-L:L; +if(H5)continue; +var r=n[e].length,_;if(e==n.length-1)break;var d=n[e].type==3;if(e==2){if(!q.Y.zz(n))_="subtract";else _="unite"}else{if(n[e].Xu==0)_="exclude"; +if(n[e].Xu==1)_="unite";if(n[e].Xu==2)_="subtract";if(n[e].Xu==3)_="intersect"}if(n[e].Xu!=-1){O=new paper.CompoundPath; +F.push([O,_]);O.fillRule="evenodd";O.fillColor=I}var w=[];for(var Z=0;Zq.Y.w7){q.Y.w7=x}var r=O.d,_=O.v;if(I==null&&q.Y.NE(n)){var d=!0; +for(var e=2;e0)_=!0}if(!r&&d<20)n=q.Y.YH(n)}for(var e=0; +e5)continue;var Z=n[e].length;if(Z==0)continue;if(e==n.length-1)break;var P=n[e].type==3,w=n[e].Xu; +if(w!=-1&&x==null){var C=["xor","source-over","destination-out","source-in"][w];F.globalCompositeOperation=C}if(n[e].Xu!=-1){F.beginPath(); +if(x){var W=x.strokeStyleLineWidth.v.val,v=x.strokeStyleLineAlignment.v.strokeStyleLineAlignment,L=x.strokeStyleLineCapType.v.strokeStyleLineCapType,H=x.strokeStyleLineJoinType.v.strokeStyleLineJoinType,y=x.strokeStyleMiterLimit.v,g=[],Q=x.strokeStyleLineDashSet.v; +for(var J=0;J1||Math.abs(r[e*4]-r[e*4+_])>1)O=!0}return!O}else return n.warpValue.v==0&&n.warpPerspective.v==0&&n.warpPerspectiveOther.v==0}; +q.qF.f=function(n){var F={classID:"warp",warpStyle:{t:"enum",v:{warpStyle:"warpNone"}},warpValue:{t:"doub",v:0},warpPerspective:{t:"doub",v:0},warpPerspectiveOther:{t:"doub",v:0},warpRotate:{t:"enum",v:{Ornt:"Hrzn"}}}; +if(n){F.bounds={t:"Objc",v:{classID:"Rctn",Top:{t:"UntF",v:{type:"#Pxl",val:n.y}},Left:{t:"UntF",v:{type:"#Pxl",val:n.x}},Btom:{t:"UntF",v:{type:"#Pxl",val:n.y+n.v}},Rght:{t:"UntF",v:{type:"#Pxl",val:n.x+n.d}}}}; +F.uOrder={t:"long",v:4};F.vOrder={t:"long",v:4}}return F};q.qF.aas=function(n,F,O,I){for(var e=0;e0)P=P-h*P*I; +else C=C+h*C*I}else if(e==1||e==2)P=P-h*P*I;else if(_==1||_==2)C=C+h*C*I}if(O=="warpTwist"){if((e==1||e==2)&&(_==1||_==2)){var X=I*Math.PI/2,A=1+Math.abs(I)*2,D=P*Math.cos(X)-C*Math.sin(X),f=P*Math.sin(X)+C*Math.cos(X); +P=D*A;C=f*A}}if(O=="warpShellLower"||O=="warpShellUpper"){if(O=="warpShellUpper"){e=3-e;C=-C}if(e>2||e==2&&(_==0||_==3)){if(I>0){var R=j+e/3*2*v; +P=Math.sin(U)*R;C=-J*W-v+Math.cos(U)*R;if(_==1||_==2){P=_==1?-z*R:z*R;C=-J*W-v+T*R}}else{if((_==1||_==2)&&e==3){P=_==1?-z*j:z*j; +C=J*W-T*j+v}else if(e==2){C=v-v*(2/3)*Math.cos(U);P=P+v*(2/3)*Math.sin(U)}}}if(O=="warpShellUpper"){e=3-e; +C=-C}}P+=W;C+=v}w=P,Z=C;n[d]=w+F.x;n[d+1]=Z+F.y}}};q.qF.adE=function(n,F,O){var I=[];for(var x=0;x<4; +x++)I.push(1-O+x/3*2*O);var r=[];for(var x=0;x<4;x++)r.push(1-F+x/3*2*F);var _=[0,0,0,0],d=[0,0,0,0]; +for(var e=0;e<4;e++)for(var x=0;x<4;x++){var w=2*(4*e+x),Z=n[w],P=n[w+1];_[x]+=Z/4;d[x]+=P/4}for(var e=0; +e<4;e++)for(var x=0;x<4;x++){var C=I[x],w=2*(4*e+x),Z=n[w],P=n[w+1],W=_[x],v=d[x];n[w]=W+C*(Z-W);n[w+1]=v+C*(P-v)}var L=n.slice(0); +for(var e=0;e<4;e++)for(var x=1;x<3;x++){var w=2*(4*e+x),Z=n[w],P=n[w+1],H=w+(x==1?-2:2),y=n[H],g=n[H+1]; +n[w]=Z-y;n[w+1]=P-g}var Q=n[0],J=n[1],A=n[8],p=n[9],U=n[16],j=n[17],b=n[24],s=n[25],G=n[6],T=n[7],z=n[14],m=n[15],$=n[22],o=n[23],h=n[30],X=n[31],D=G-Q,f=T-J,R=z-A,i=m-p,t=$-U,N=o-j,M=h-b,hK=X-s; +for(var e=0;e<4;e++){var bD=2*e*4,co=0,iM=0,hs=e==1?.33:.66,S=1-hs;if(e==0){co=D;iM=f}if(e==1){co=S*D+hs*-M; +iM=S*f+hs*-hK}if(e==2){co=S*D+hs*-M;iM=S*f+hs*-hK}if(e==3){co=-M;iM=-hK}n[bD]=n[bD]+co/2;n[bD+1]=n[bD+1]+iM/2; +n[bD+6]=n[bD+6]-co/2;n[bD+7]=n[bD+7]-iM/2}for(var e=0;e<4;e++)for(var x=1;x<3;x++){var w=2*(4*e+x),Z=n[w],P=n[w+1],H=w+(x==1?-2:2),y=n[H],g=n[H+1],C=2*e/3; +n[w]=y+C*Z;n[w+1]=g+C*P}for(var e=1;e<3;e++)for(var x=1;x<3;x++){var w=2*(4*e+x),Z=n[w],P=n[w+1],a=e==1?-8:-16,bV=e==1?16:8,a5=n[w+a],i9=n[w+a+1],dG=n[w+bV],ap=n[w+bV+1],C=e/3; +Z=(1-C)*a5+C*dG;P=(1-C)*i9+C*ap;n[w]=Z;n[w+1]=P}q.z.v8(L,n,n,F)};q.qF.aek=function(n,F){return(4-n)*(1/3)}; +q.qF.a1F=function(n,F){return(1-n)*(3-n)/(3*F)};q.Zm={};q.Zm.a4C=function(n,F,O,I,x,r,_,d,w,Z){for(var P=0; +P>>1; +n[F]=n[F+3]=n[O]=n[O+3]=_;n[F+1]=P;n[F+4]=d;n[O+1]=w;n[O+4]=P;n[F+2]=n[F+5]=n[O+2]=n[O+5]=Z};q.Zm.afj=function(n,F,O,I,x,r){var _=r*3; +for(var e=0;e>2;if(g==L)return d*3+r+_-w>>2;if(g==H)return r*3+d+_-x>>2;return Z*3+I+_-P>>2}; +q.Zm.aP=function(n,F,O,I,x){if(nF&&F>O)return~~(.5+I+(x-I)*(F-n)/(O-n));else return(I+x>>1)+(F+F-n-O>>2)}; +q.Zm.yl=function(n,F,e,O){var I=F[e-O-1],x=F[e-O+1],r=F[e],_=F[e+O-1],d=F[e+O+1],w=n[e-O-1],Z=n[e-O+1],P=n[e],C=n[e+O-1],W=n[e+O+1],v=Math.abs(Z-C)+Math.abs(n[e-O-O+2]-P)+Math.abs(P-n[e+O+O-2])+Math.abs(x-r)+Math.abs(r-_),L=Math.abs(w-W)+Math.abs(n[e-O-O-2]-P)+Math.abs(P-n[e+O+O+2])+Math.abs(I-r)+Math.abs(r-d); +if(v>1<<1; +_+=P[1]>>1<<1}if(n.t50720){var C=n.t50720;d=r+C[0];w=_+C[1]}var W=d-r,v=w-_,L=new Float32Array(W*v*3); +if(n.t277[0]==1){var H=n.t33421;if(H==null){q.Zm.a4C(x,F,O,L,r,_,W,v)}else if(H.length!=2||H[0]!=2||H[1]!=2){console.log("Unknown CFA pattern size",H); +q.Zm.dF(x,F,O,L,r,_,W,v,H[0],n.t33422)}else{var y=n.t33422.join(","),g=0;if(y=="0,1,1,2")g=0;else if(y=="1,0,2,1")g=1; +else if(y=="2,1,1,0")g=2;else if(y=="1,2,0,1")g=3;else throw"Unknown CFA pattern "+y;if((W&1)!=0||(v&1)!=0)throw"e"; +q.Zm.a4S(x,F,O,L,r,_,W,v,g)}}else{for(var Q=0;Q=.92){var A=Math.min(g,J);if(A==g){Q=Math.max(Q,C[0]*g); +J=Math.max(J,C[1]*g)}else{g=Math.max(g,C[4]*J);Q=Math.max(Q,C[5]*J)}}var p=w[0]*g+w[1]*Q+w[2]*J,U=w[4]*g+w[5]*Q+w[6]*J,j=w[8]*g+w[9]*Q+w[10]*J; +if(p<0)p=0;else if(p>1)p=1;if(U<0)U=0;else if(U>1)U=1;if(j<0)j=0;else if(j>1)j=1;p=W[~~(p*999)];U=W[~~(U*999)]; +j=W[~~(j*999)];F[H]=~~(.5+p*255);F[H+1]=~~(.5+U*255);F[H+2]=~~(.5+j*255)}};q.raw.wZ={aal:function(n,F){var O=.5-.5*Math.cos(n*3.2),I=0; +if(F>0){var x=n*.2;I=x*n+(1-x)*O}else{var r=Math.pow(n,.33);I=(1-r)*r+r*(n+(n-O)*.63)}var _=Math.abs(F); +return _*I+(1-_)*n},a64:function(n,F){var O=0;if(F>0){var I=n*1.47,x=Math.pow(n,2.4);O=Math.min(1,x*n+(1-x)*I)}else{var I=n*.68,x=Math.pow(n,3); +O=x*n*.5+(1-x)*I}var r=Math.abs(F);return r*O+(1-r)*n},a5l:function(n,F){var O=0;if(F>0){var I=Math.pow(n,.3),x=n; +O=(1-n)*I+n*x}else{var I=Math.pow(n,2.5),r=n,x=n;O=Math.min(1,(1-r)*I+r*x)}var _=Math.abs(F);return _*O+(1-_)*n}}; +q.raw.aaX=function(n){var F=n.width,O=n.height,I=F*O*n.t277,x=new Uint16Array(I),r=null,_=0;q.raw.adR(n,x); +q.raw.J0(1,n,x,F,O);if(n.t50712){r=n.t50712;_=r.length-1;if(r[_]>65535)throw"too big values"}var d=q.raw.Zv(n),w=q.raw.qP(n); +if(r==null)for(var e=0;e_)Z=_; +Z=r[Z];x[e]=Math.max(0,Z-d)}return x};q.raw.Zv=function(n){var F=n.t50714,O=F?F[0]:0,I=n.t50715,x=n.t50716; +if(I)O+=I[0][0]/I[0][1];if(x)O+=x[0][0]/x[0][1];return Math.round(O)};q.raw.qP=function(n){var F=null,O=0; +if(n.t50712){F=n.t50712;O=F.length-1}var I=n.t50717?n.t50717[0]:(1<>>3,P=I[Z]<<24|I[Z+1]<<16|I[Z+2]<<8|I[Z+3];if((w&7)==0){_=P>>>18; +d=P>>>4&16383}else{_=P>>>14&16383;d=P&16383}}else if(x==12){r=e+(e>>>1);_=I[r]<<4|I[r+1]>>4;d=(I[r+1]&15)<<8|I[r+2]}else if(x==10){var w=e*10,Z=w>>>3; +if((w&7)==0){_=(I[Z]<<2|I[Z+1]>>6)&1023;d=(I[Z+1]<<4|I[Z+2]>>4)&1023}else{_=(I[Z]<<6|I[Z+1]>>2)&1023; +d=(I[Z+1]<<8|I[Z+2]>>0)&1023}}else if(x==8){r=e;_=I[r];d=I[r+1]}F[e]=_;F[e+1]=d}};q.raw.J0=function(n,F,O,I,x){var r=F["t"+[51008,51009,51022][n-1]],P=0; +if(r==null)return;var _=I*x,d=Y.c,w=Y.z6,Z=new Uint8Array(r),cP=Y.c(Z,P);P+=4;for(var C=0;C>1}else if(W==5&&n==1){var y=P,bk=d(Z,y);y+=4; +var c2=d(Z,y);y+=4;var gg=d(Z,y);y+=4;for(var e=0;e>1}}else if(W==7&&n==1){var y=P,gP=Y.sG(Z,y);y+=16;var dT=d(Z,y);y+=4;var fU=d(Z,y); +y+=4;var dV=d(Z,y),ac=d(Z,y+4);y+=8;var e2=d(Z,y);y+=4;var cX=new Uint16Array(e2);for(var e=0;e1e-7); +return O};q.raw.yS=function(n,F){var O=il.j6(F),I=q.raw.a9$,x=n.t50778?n.t50778[0]:0,r=n.t50779?n.t50779[0]:0,_=I(n.t50721,n.t50722,x,r,O.ZG),d=I(n.t50723,n.t50724,x,r,O.ZG); +_=_||[1,0,0,0,1,0,0,0,1];d=d||[1,0,0,0,1,0,0,0,1];var w=n.t50727?[n.t50727[0],0,0,0,n.t50727[1],0,0,0,n.t50727[2]]:[1,0,0,0,1,0,0,0,1]; +return q.e$.multiply(q.e$.oD(w),q.e$.multiply(q.e$.oD(d),q.e$.oD(_)))};q.raw.a9$=function(n,F,O,I,x){if(!n&&!F){return null}else if(n&&!F){return n}else if(xI){return F}else{var r=(1/x-1/I)/(1/O-1/I),_=1-r,d=[]; +for(var e=0;e<9;e++)d[e]=n[e]*r+F[e]*_;return d}};var il={};il.agC={x:.34567,y:.3585};il.Z9=[{Q:0,tL:.18006,K_:.26352,OI:-.24341},{Q:10,tL:.18066,K_:.26589,OI:-.25479},{Q:20,tL:.18133,K_:.26846,OI:-.26876},{Q:30,tL:.18208,K_:.27119,OI:-.28539},{Q:40,tL:.18293,K_:.27407,OI:-.3047},{Q:50,tL:.18388,K_:.27709,OI:-.32675},{Q:60,tL:.18494,K_:.28021,OI:-.35156},{Q:70,tL:.18611,K_:.28342,OI:-.37915},{Q:80,tL:.1874,K_:.28668,OI:-.40955},{Q:90,tL:.1888,K_:.28997,OI:-.44278},{Q:100,tL:.19032,K_:.29326,OI:-.47888},{Q:125,tL:.19462,K_:.30141,OI:-.58204},{Q:150,tL:.19962,K_:.30921,OI:-.70471},{Q:175,tL:.20525,K_:.31647,OI:-.84901},{Q:200,tL:.21142,K_:.32312,OI:-1.0182},{Q:225,tL:.21807,K_:.32909,OI:-1.2168},{Q:250,tL:.22511,K_:.33439,OI:-1.4512},{Q:275,tL:.23247,K_:.33904,OI:-1.7298},{Q:300,tL:.2401,K_:.34308,OI:-2.0637},{Q:325,tL:.24792,K_:.34655,OI:-2.4681},{Q:350,tL:.25591,K_:.34951,OI:-2.9641},{Q:375,tL:.264,K_:.352,OI:-3.5814},{Q:400,tL:.27218,K_:.35407,OI:-4.3633},{Q:425,tL:.28039,K_:.35577,OI:-5.3762},{Q:450,tL:.28863,K_:.35714,OI:-6.7262},{Q:475,tL:.29685,K_:.35823,OI:-8.5955},{Q:500,tL:.30505,K_:.35907,OI:-11.324},{Q:525,tL:.3132,K_:.35968,OI:-15.628},{Q:550,tL:.32129,K_:.36011,OI:-23.325},{Q:575,tL:.32931,K_:.36038,OI:-40.77},{Q:600,tL:.33724,K_:.36051,OI:-116.45}]; +il.j6=function(n){var F=il.Z9,O=2*n.x/(1.5-n.x+6*n.y),I=3*n.y/(1.5-n.x+6*n.y),x=0,r=0,_=0;for(;_<31; +_++){x=I-F[_].K_-F[_].OI*(O-F[_].tL);if(_>0&&x<0){break}r=x}while(_>=F.length)_--;x/=Math.sqrt(1+F[_].OI*F[_].OI); +r/=Math.sqrt(1+F[_-1].OI*F[_-1].OI);var d=r/(r-x),w=1e6/((F[_].Q-F[_-1].Q)*d+F[_-1].Q),Z=O-((F[_].tL-F[_-1].tL)*d+F[_-1].tL),P=I-((F[_].K_-F[_-1].K_)*d+F[_-1].K_),C=Math.sqrt(1+F[_].OI*F[_].OI),W=1/C,v=F[_].OI/C,L=Math.sqrt(1+F[_-1].OI*F[_-1].OI),H=1/L,y=F[_-1].OI/L,g=(W-H)*d+H,Q=(v-y)*d+y,J=Math.sqrt(g*g+Q*Q); +g/=J;Q/=J;var A=(Z*g+P*Q)*-3e3;return{ZG:w,Xn:A}};il.abD=function(n,F){var O=il.Z9,I=1e6/n,x=1;for(; +x<31;x++){if(I>>2;v[e+1]=H;if(H>4095)throw"e"}for(var e=0; +e<16385;e++)L[e]=e;for(var e=0;e<5;e++)for(var y=v[e]+1;y<=v[e+1];y++)L[y]=L[y-1]+(1<>>2); +q.raw.a5b(j,b,p>>>2,U);var s=new Uint8Array(A+p);s.set(new Uint8Array(b.buffer),A);var G=[];UTIF._readIFD(C,s,A,G,0,!1); +var T=G.pop(),z=T.t29458;n.t50728=[z[1]/z[0],1,z[1]/z[3]];n.t50730=[.5];var m=T.t29891;n.t50829=[m[1],m[0],m[3],m[2]]}else if(r.makerNote&&r.makerNote.t8208){var J=r.makerNote,$=J.t8208,o=$.length,h=0,X=new Uint8Array(256); +for(var e=249;e<256;e++)X[e]=e;for(var e=0;e<249;e++)X[e*e*e%249]=e;for(var e=0;e>>2;n.t50714=[P,P,P,P];n.t50717=[w[3]>>>2]}}else if(n.t271[0].startsWith("Canon")){var F=n.data,D=F.slice(0),f=n.t50752,R=[],t=0; +if(f==null||f[0]==0&&f[1]==0)R.push(n.width);else{for(var e=0;e>1)*bD*2; +for(var e=0;e>>1,co=n.height-fU>>>1;n.t50829=[co,t,co+fU,t+dT]}if(J.t12){var eR=q.raw.Bh(J.t12); +cX=[1/eR[0],1,1/eR[1]]}else if(J.t151){var gR=q.raw.agb(J,151),bN=gR[0],db=gR[1],eG=gR[2];if(bN=="0100"&&db>=80)throw"e"; +else if(bN=="0102"){var ef=[];for(var e=0;e<4;e++)ef.push(bk(eG,6+e*2));cX=[ef[1]/ef[0],1,ef[1]/ef[3]]}else if(bN=="0103"&&db>=26){var ef=[]; +for(var e=0;e<4;e++)ef.push(bk(eG,16+e*2));cX=[ef[1]/ef[0],1,ef[3]/ef[2]]}else if(bN=="0204"&&db>=564||bN=="0205"&&db>=284){var A=bN=="0204"?6:14,ef=[]; +for(var e=0;e<4;e++)ef.push(bk(eG,A+e*2));cX=[ef[1]/ef[0],1,ef[1]/ef[3]]}else throw"e"}else console.log("no white balance info"); +if(_=="NIKON D1")cX=[1,1,1];if(cX)n.t50728=cX;var fi=J.t150?J.t150:J.t140;if(fi){var iJ=fi[ep++],aT=fi[ep++],gk; +if(iJ==73||aT==88)ep+=2110;ep+=8;var dm=1<1)gk=Math.floor(dm/(c1-1)); +if(iJ==68&&aT==32&&gk>0){for(e=0;e>>0)*3125+1>>>0;x[3]=x[3]<<1|(x[0]^x[2])>>>31;for(var _=4;_<127; +_++)x[_]=(x[_-4]^x[_-2])<<1|(x[_-3]^x[_-1])>>>31;for(var _=0;_<127;_++)x[_]=Y.c(r,_*4);for(;O>0;O--){x[_&127]=x[_+1&127]^x[_+1+64&127]; +var Z=x[_&127],P=n[d];P^=Z;F[w]=P;d++;w++;_++}};q.raw.acP=function(n,F){var O=Y.su(F,0,4),I=q.raw.alu; +for(var e=0;e>>(e<<3)&255;var d=F[x&255],w=O[_&255];return[d,w,96]};q.raw.agb=function(n,F){var O=n["t"+F],db=O.length,I=q.raw.acP(F,O),x=Y.su(O,0,4),r,_=I[4]; +if(_==null)r=O.slice(4);else{r=new Uint8Array(db-_);var d=q.raw.a2r(n),w=d[0],Z=d[1],P=d[2];for(var e=0; +e1)hs++;for(var S=0;S=250?ep:bD)<<2;fi[iJ]=F[dm];fi[iJ+1]=F[dm+1]; +fi[iJ+2]=F[dm+2]}q.GF(eG,fi,3);if(P)console.log(Date.now()-Z);Z=Date.now();return fi};q.xL.Gh=function(n,F,O,I,x,r,_,d,w){var Z=n>>>16,P=n&65535,C=Z-(O>>>16),W=P-(O&65535),v=Z-(x>>>16),L=P-(x&65535),H=Math.sqrt(C*C+W*W)*_,y=Math.sqrt(v*v+L*L)*d; +if(H+y>=w)return 1e9;var g=q.xL.a19(F,I,r);return g+H+y};q.xL.a19=function(n,F,O){var I=n>>>16,x=n>>>8&255,r=n&255,_=F>>>16,d=F>>>8&255,w=F&255,Z=O>>>16,P=O>>>8&255,C=O&255,W=q.xL.alpha(n,F,O),v=I-(W*_+(1-W)*Z),L=x-(W*d+(1-W)*P),H=r-(W*w+(1-W)*C); +return Math.sqrt(v*v+L*L+H*H)};q.xL.alpha=function(n,F,O){var I=n>>>16,x=n>>>8&255,r=n&255,_=F>>>16,d=F>>>8&255,w=F&255,Z=O>>>16,P=O>>>8&255,C=O&255,W=_-Z,v=d-P,L=w-C,H=I-Z,y=x-P,g=r-C,Q=W*W+v*v+L*L,J=Q==0?.5:(H*W+y*v+g*L)/Q; +return Math.max(0,Math.min(1,J))};q.xL.aaJ=function(n){};q.xL.Xw=function(n,F,O,I,x){var r=[],_=F-1,d=O-1; +for(var w=1;w>>2;console.log(C,L);W=q.f(C.X()); +q.xg(P.zc,W,0);q.GF(F,Z,0);P=q.to(Z,O);P=q.to(P.zc,P.rect);v=q.f(C.X());q.xg(P.zc,v,0);var H=q.fs.a8j(W,v,C,L,x),y=H[0],g=H[1],Q=new gv(0,0,C.d*2,C.v*2); +y=w(y,C,Q,!0);y=w(y,Q,O,!0);g=w(g,C,Q,!0);g=w(g,Q,O,!0);var J=q.f(d);for(var e=0;e>>2,_>>>2);L=I>>>2;W=q.fs.a14(n,r,_);v=q.fs.ahi(F,r,_);if(P)console.log(Date.now()-Z); +Z=Date.now();var H=q.fs.aiw(W,v,C,L,x),y=H[0],g=H[1],Q=H[2],J=H[3];if(P)console.log(Date.now()-Z);Z=Date.now(); +var A=q.f(d);for(var p=0;p<_;p++)for(var U=0;U>>2)*(r>>>2)+(U>>>2),b=e<<2,s=y[j]*F[b]+g[j]*F[b+1]+Q[j]*F[b+2]+J[j]*255; +A[e]=Math.max(0,Math.min(255,~~(.5+s)))}if(P)console.log(Date.now()-Z);Z=Date.now();return A};q.fs.a14=function(n,F,O){var I=F>>>2,x=O>>>2,r=q.f(F*O); +for(var _=0;_>>2,x=O>>>2,r=q.f(F*O*4); +for(var _=0;_F-d-1||P>O-d-1){var e=P*F+C,W=e<<2,v=0;if(PF-d-1)v=8;w[v]+=n[W];w[v+1]+=n[W+1];w[v+2]+=n[W+2];w[v+3]++;x[e]=255}}for(var e=0;e<12;e+=4)for(var L=0; +L<3;L++)Z[e+L]=w[e+L]/w[e+3];var H=new Float32Array(I);for(var e=0;e>>1,_=O>>>1,G=1/Math.sqrt(s*s+_*_); +for(var P=0;P=0;_--)q.Xs.AN(x*r-x+_,1,n,F,O,I);for(var d=r-2;d>=0;d--){q.Xs.AN(d*x+x-1,x,n,F,O,I);for(var _=x-2; +_>=0;_--){var e=d*x+_;q.Xs.AN(e,1,n,F,O,I);q.Xs.AN(e,x,n,F,O,I)}}};q.Xs.AN=function(e,n,F,O,I,x){var r=e+n,_=F[e],d=O[r],w=I[r]; +if(d<_)d=_;else if(_0){var C=w;w=Z;Z=C}var W=r[Z+"-"+w],v=r[w+"-"+d],L=r[d+"-"+Z],H=[Z,W,_,null],y=[w,v,_,H],g=[d,L,_,y]; +H[3]=g;if(W)W[1]=H;if(v)v[1]=y;if(L)L[1]=g;r[Z+"-"+d]=g;r[d+"-"+w]=y;r[w+"-"+Z]=H;O[d]=y;x[e]=y;O[w]=H; +x[e+1]=H;O[Z]=g;x[e+2]=g;I[_]=y}return{Nd:O,Rq:I,AD:x}};q._r.akC=function(n){var F=[],O=n.Rq;for(var e=0; +eL[2]&&L[3]==0&&q._r.PE(n,v,P,W)<0&&q._r.PE(n,W,C,v)<0; +if(g){O[0]=W;I[0]=v;O[3]=r;r[3]=_;_[3]=O;I[3]=d;d[3]=x;x[3]=I;x[2]=Z;_[2]=w;F.Rq[Z]=d;F.Rq[w]=r;F.Nd[C]=_; +F.Nd[P]=x}return g};q._r.a99=function(n,F,O){var I=n[F*2]-n[O*2],x=n[F*2+1]-n[O*2+1];return Math.sqrt(I*I+x*x)}; +q._r.a60=function(n,F,O){var I=O[1],x=O[3],r=x[3],_,d,w=O[2],Z,P=O[0],C=r[0],W=x[0],v;if(I){_=I[3];d=_[3]; +Z=I[2];v=_[0]}var L=n.length>>>1;n[2*L]=(n[2*C]+n[2*P])*.5;n[2*L+1]=(n[2*C+1]+n[2*P+1])*.5;if(!0){var H=w,y=O,g=F.Rq.length,Q=[L,null,H,y],J=[W,Q,g,r]; +Q[1]=J;var A=[L,null,g,J];x[3]=Q;r[3]=A;r[2]=g;F.Rq[H]=x;F.Rq[g]=A;F.Nd[P]=x;F.Nd[W]=r;F.AD.push(Q,J,A)}if(I){var p=Z,U=I,j=g+1; +A[1]=U,U[1]=A;var b=[L,null,p,U],s=[v,b,j,d];b[1]=s;var G=[L,y,j,s];y[1]=G;_[3]=b;d[3]=G;d[2]=j;F.Rq[p]=_; +F.Rq[j]=d;F.Nd[C]=_;F.Nd[v]=d;F.AD.push(b,s,G)}F.Nd[L]=y};q._r.g0=function(n,F){var O=0;while(!0){var I=O; +for(var e=0;e_){r=w;_=Z}}if(_>O){q._r.a60(n,F,r); +x++}}return x!=0};q._r.ac7=function(n,F){var O=[],W=0;for(var e=0;e>>1,L=F.Nd[v],I=L,H=!0; +do{if(I[1]==null){H=!1;break}I=I[1][3]}while(I!=L);if(H){var y=.02;n[e]+=y*O[e];n[e+1]+=y*O[e+1];W+=y*(O[e]*O[e]+O[e+1]*O[e+1])}}return W}; +q._r.a7h=function(n,F,O){var I=q.z.gh(n),x=q._r.hk(n,F);q._r.g0(n,x);for(var r=0;r<300;r++){var _=!1,d=!1; +_=q._r.ajj(n,x,O,5);if(_)d=q._r.g0(n,x);var w=q._r.ac7(n,x);if(!_&&!d&&w<1e-4){break}}return q._r.akC(x)}; +q.vr={};q.vr.j$=function(n){var F=n.Eh,O=n.vZ,I=n.Cj,x=n.eo,r=n.FW,_=n.a_,d=n.r8,w=q.PS.Zf,Q,J,A=0;function Z(E){var a5=new Array(E); +for(var e=0;e>>1,C=Z(F.gu*2),W=Z(F.gu),v=Z(F.gu),L=Date.now(); +for(var e=0;ej)continue;var G=O[U*2],T=O[U*2+1],z=O[j*2],m=O[j*2+1],$=x[U*2],o=x[U*2+1],h=x[j*2],X=x[j*2+1],D=x[b*2],f=x[b*2+1],R=x[s*2],i=x[s*2+1],N=[$,o,h,X,D,f]; +if(p[1])N.push(R,i);var M=w(F.a1p[A],N),hK=M[0],bD=M[1],iM=1/Math.sqrt(hK*hK+bD*bD);hK*=iM;bD*=iM;var hs=z-G,S=m-T; +W[A]=hK*hs+bD*S;v[A]=-bD*hs+hK*S;A++}var a=new Array(P),bV=new Array(P);for(var e=0;e>>1,w=0,L=0,bD=1e3; +for(var e=0;e<_.AD.length;e++)w+=_.AD[e][1]?.5:1;var Z=w+I.length,P=[],C=new q.HT(Z*2,d*2),W=new q.HT(Z,d),v=[[[-1,0,1,0,0,0],[0,-1,0,1,0,0]],[[-1,0,1,0,0,0,0,0],[0,-1,0,1,0,0,0,0]]],H=[],y=[]; +for(var e=0;e<_.AD.length;e++){var g=_.AD[e],Q=g[3][3][0],J=g[0],A=g[3][0],p=g[1]?g[1][3][0]:A;if(g[1]&&Q>J)continue; +var U=F[Q*2],j=F[Q*2+1],b=F[J*2],s=F[J*2+1],G=F[A*2],T=F[A*2+1],z=F[p*2],m=F[p*2+1],$=[[U,j,1,0],[j,-U,0,1],[b,s,1,0],[s,-b,0,1],[G,T,1,0],[T,-G,0,1]]; +if(g[1])$.push([z,m,1,0],[m,-z,0,1]);var o=q.PS.ej($),h=x(linear.invert(x(o,$)),o);h.pop();h.pop();P.push(h); +var X=b-U,D=s-j,f=v[g[1]?1:0];f=q.PS.ba(f,x([[X,D],[D,-X]],h));var R=[Q*2,Q*2+1,J*2,J*2+1,A*2,A*2+1,p*2,p*2+1],i=g[1]?8:6,N=[]; +for(var M=0;M>>1,_=new Array(r); +if(O.length==0){_.fill(0);return _}var d=new Array(r),w=new Array(r);for(var e=0;e=0&&M>=0&&N+M<=1){var hK=1-N-M,bD=A*hK+p*N+U*M,co=j*hK+b*N+s*M; +q.J.LC(bD,co,r,_,d,v);q.vr.a5j(v,w,f*Z+R<<2)}}};q.vr.a5j=function(n,F,O){var I=F[O],x=F[O+1],r=F[O+2],_=F[O+3],d=1-n[3]*(1/255); +F[O]=~~(.5+n[0]+I*d);F[O+1]=~~(.5+n[1]+x*d);F[O+2]=~~(.5+n[2]+r*d);F[O+3]=~~(.5+n[3]+_*d)};q.vr.MW=function(){var n=function(O,I,x,r){var _=r[0],d=r[1],w=r[2],Z=O[_+0],P=O[_+1],C=O[d+0],W=O[d+1],v=O[w+0],L=O[w+1],H=C-Z,y=W-P,g=v-Z,Q=L-P,J=I-Z,A=x-P,p=H*Q-g*y,U=1/(p+1e-9),j=(J*Q-g*A)*U,b=(H*A-J*y)*U; +if(j>=0&&b>=0&&j+b<=1){r[3]=1-j-b;r[4]=j;r[5]=b;return 1}return 0},F=function(O,I,x,r){var _=[0,0,0,0,0,0]; +for(var e=0;e=0;C--){var y=C*F;for(var P=0;P<_;P++){var d=Z[P]; +H[y]=r[y]+Math.min(H[y+F],H[y+F+1]);for(var W=1;W=2){var e=y+W,b=A[p+W-1]+Q(p+W-1,e-1),s=A[p+W-2]+Q(p+W-1,e-2)+Q(p+W-2,e-1); +if(A[p+W]==b){J[e-F]=1;W-=1}else{J[e-F]=0;J[e-F-1]=2;W-=2}}var e=y;if(W==0){J[e-F]=1}else{if(A[p+1]==U){J[e+1-F]=1; +J[e-F]=1}else{J[e+1-F]=0;J[e-F]=2}}y+=d;p+=d}q.il.aoS(C,F,J,r,v,L,!0,x)}if(I){console.log(Date.now()-x,"Matching"); +x=Date.now()}var G=r;return[UZIP.adler(n,0,n.length),n,F,O,_,Z,w,v,L,J,G]};q.il.LV=function(n,F,O,I){var x=n.slice(0),r=x.shift(),_=x.shift(),d=x.shift(),w=x.shift(),Z=x.shift(),P=x.shift(),C=x.shift(),W=x.shift(),v=x.shift().slice(0),L=x.shift(),H=x.shift(),y=Date.now(),g=Math.abs(d-F),Q=Math.floor(g/Z),J=new Uint32Array(Z),p=0,U=1e9,b=0,s=0,G=0; +for(var A=0;A=65280){H[e+R]--;j++;f(D*F+j,D*d+R)}}}}if(I){console.log(Date.now()-y,"Shifting image pixels"); +y=Date.now()}};q.il.aoS=function(n,F,O,I,x,r){var _=0,e=n*F;while(_I*I||U<0||j<0||U>=Q||j>=Q)continue; +var b=g[j*Q+U];L+=p*b;H+=A*b}v.Wr=Math.atan2(H,L)}}function w(P,C,W,v,L){var H=~~(P+.5),y=~~(C+.5);return O(W,v,H-x,H+x,y-x,y+x)}function Z(P,C,W,v,L){n=v; +F=L;if(_.length==0){var H=new q.p.Iu(16200817),J=8,A=0;function y(a){var G=a[0]-a[2],T=a[1]-a[3];return G*G+T*T}function g(){var a=0,bV=0; +while(a===0)a=H.get();while(bV===0)bV=H.get();return Math.sqrt(-2*Math.log(a))*Math.cos(2*Math.PI*bV)}var Q=g,p=[]; +while(A!=r){var U=Math.max(-I,Math.min(I,Q()*J)),j=Math.max(-I,Math.min(I,Q()*J)),b=Math.max(-I,Math.min(I,Q()*J)),s=Math.max(-I,Math.min(I,Q()*J)),G=U-b,T=j-s,z=Math.sqrt(G*G+T*T); +if(z<3||z>12)continue;_.push(U,j,b,s);A++}}var m=20;for(var $=0;$>>3); +o.Mk=N;for(var e=0;e>>3]|=(hs>>1,J=Q>>>1,A=Math.round(g/3); +if(A!=g/3)throw"e";var p=1/(g*g),U=1.2*(g/9);for(var b=Q+1;b=R||H[e+j]>=R)continue;if(H[e-D-j]>=R||H[e-D]>=R||H[e-D+j]>=R)continue;if(H[e+D-j]>=R||H[e+D]>=R||H[e+D+j]>=R)continue; +Z.push({x:~~(s*C.Hg+.5),y:~~(b*C.Hg+.5),a2b:s,amC:b,Td:P,G:R,aig:y[e],Ls:U})}}if(_!=null){Z.sort(function(iM,hs){return hs.G-iM.G}); +Z=Z.slice(0,_)}return Z;var i=[];for(var e=0;eN.G&&(hK.Td==N.Td+1||hK.Td==N.Td-1)){var bD=N.x-hK.x,co=N.y-hK.y;if(bD*bD+co*co<5){t=!1; +break}}}if(t)i.push(N)}console.log(Z.length,i.length);return i}return{agk:x}}();q.zf={};q.zf.a0G=function(n){var F=n.length,O=q.zf.CM(n,!1),x=0,r=1; +throw"e";var I=[];for(var e=0;e>>1);if(P.length<10)return null;var C=q.zf.a6F(r[e],r[d],P,2);Z.push([e,d,P,C])}Z.sort(function(s,G){return G[2].length-s[2].length}); +if(I)console.log("Matches found",Date.now()-x);x=Date.now();var W=[],v=new UnionFind(O);for(var e=0; +e>>1][1]}var b=q.J.uZ(g[F]); +for(var e=0;e_||$==_&&o>>1;H=y-1}else{H=y=I>>>1}for(var e=0;e>>1;else F[e]=(e&3)==3?L[I-1]:L[I-1]-L[0]}}else console.log(O)};q.yN={}; +q.yN.abb=function(n,F,O,I,x){var r=q.yN.hG(n.buffer,F,O).fJ,_=Date.now(),d=new Uint32Array(r.length); +for(var e=0;e>2]=Q.ind}return{Cj:P,fJ:w[1]}};q.yN.hG=function(n,F,O){var I=[],x={},r=F-1,_=O-1,d=0,w=new Uint32Array(n),Z=[-F-1,-F,-F+1,-1,1,F-1,F,F+1,F+F,2,-F-F,-2,F+F-1,F+F+1,F+2,-F+2,-F-F+1,-F-F-1,-F-2,F-2,F+F+2,-F-F+2-F-F-2,F+F-2]; +for(var P=1;P<_;P++)for(var C=1;C>1,p=e+((J&1)==0?1:F),U=v.find(e),j=v.find(p),b=Math.min(L[U]+g/Math.sqrt(H[U]),L[j]+g/Math.sqrt(H[j])); +if(U!=j&&A<=b){v.link(e,p);y--;var s=v.find(e);H[s]=H[U]+H[j];L[s]=A}}var G=[],T={},z=new Uint16Array(x); +for(var e=0;e>2};q.yN.qv=function(){function n(g,Q,J,A,p,U){var j=[],b=U,s=U,G=U>>>2;for(var T=0; +T>>1;if(T>65535)throw T;var z=[];for(var e=0; +e<1e3+J;e++)z.push([]);var m=[0,1,0,-1,-1,0,1,0],h=Math.min(b,5),X=new Uint32Array(T*6);for(var D=0; +D>>o)}var M=Math.min(J,f*p);if(D+h>=b)M=J;while(x!=0){_(z);var hK=z[I].pop(),bD=z[I].pop(),co=bD>>>16,iM=bD&65535,e=co*Q+iM; +if(s[e]==65535){var hs=hK*6,S=e<<2;s[e]=hK;X[hs]+=g[S];X[hs+1]+=g[S+1];X[hs+2]+=g[S+2];X[hs+3]+=iM;X[hs+4]+=co; +X[hs+5]++;var a=co>>>o;if(co!=M-1&&s[e+Q]==65535)r(z,co+1<<16|iM,hK,w(g,Q,U,iM,co+1,X,hs)+a);if(co!=0&&s[e-Q]==65535)r(z,co-1<<16|iM,hK,w(g,Q,U,iM,co-1,X,hs)+a); +if(iM!=0&&s[e-1]==65535)r(z,co<<16|iM-1,hK,w(g,Q,U,iM-1,co,X,hs)+a);if(iM!=Q-1&&s[e+1]==65535)r(z,co<<16|iM+1,hK,w(g,Q,U,iM+1,co,X,hs)+a)}}if(M!=co){var bV=(D+h)*j; +X.fill(0,bV*6,(bV+j)*6);for(var co=(D+h-2)*p;co=bV){s[e]=65535}}}}return{Cj:s,UA:T,x$:X}}q.yN.JL=function(g,Q,J,A,p){var U=g.UA,j=Q*J,b=g.x$,s=g.Cj,G=v(A,s,U,j),T=new UnionFind(U),X=0; +for(var z=1;z>>7);p[s]=j=p[s]|G}}return j!=3};function w(g,Q,J,A,p,U,j){var b=(p*Q+A)*4,s=U[j+5],G=1/s,T=g[b]*s-U[j],z=g[b+1]*s-U[j+1],m=g[b+2]*s-U[j+2],$=A*s-U[j+3],o=p*s-U[j+4],h=Math.sqrt(T*T+z*z+m*m),X=Math.sqrt($*$+o*o); +return~~((h+J*X)*G+.5)}function Z(g,Q,J,A){var p=1/g[J+5],U=1/g[A+5],j=g[J]*p-g[A]*U,b=g[J+1]*p-g[A+1]*U,s=g[J+2]*p-g[A+2]*U,G=g[J+3]*p-g[A+3]*U,T=g[J+4]*p-g[A+4]*U,z=Math.sqrt(j*j+b*b+s*s),m=Math.sqrt(G*G+T*T); +return~~(z+Q*m+.5)}function P(g,Q,J){var A=q.B5(g,new gv(0,0,Q,J)),p=A.rect.d,U=A.rect.v,j=d(A.zc,p,U),b=j.Cj,s=Date.now(),G=new Uint16Array(Q*J); +G.fill(65535);for(var T=0;T>>4,m=g[s+1]>>>4,$=g[s+2]>>>4; +U[G*4400+(z<<8|m<<4|$)]++;U[G*4400+4096]++;U[G*4400+4100+(z<<4|m)]++;U[G*4400+4360+z]++;if(b!=0&&(T=A[e-1])!=G&&C(F[G],T)==-1){F[G].push(T,0); +F[T].push(G,0)}if(j!=0&&(T=A[e-Q])!=G&&C(F[G],T)==-1){F[G].push(T,0);F[T].push(G,0)}}for(var e=0;e>>7)}return p}q.yN.a7N=function(g,Q,J,A,p,U,j){var b=Q*J,s=j[0],F=j[1],G=new UnionFind(A),T=v(p,g,A,b),z=-1,m=!0,$=0; +for(var e=0;eJ){J=U; +Q=p}}return g[Q]}function H(F,g,Q,J){var A=F[Q],p=F[J];W(A,C(A,J));W(p,C(p,Q));for(var e=0;e0)return 1; +else if(b<0)return 0}return 0}function C(j,L){var H=new n,y=j,g=L,b=0,s=1,G;H.color=x[L*r+j];H.sign=w(j,L,x,r)==H.color?"+":"-"; +while(1){H.lK.push(y,g);if(y>H.k8)H.k8=y;if(yH.J1)H.J1=g;if(g>1),g+(s-b-1>>1),x,r)==H.color,z=w(y+(b-s-1>>1),g+(s+b-1>>1),x,r)==H.color; +if(z&&!T){if(d.ex=="right"||d.ex=="black"&&H.sign=="+"||d.ex=="white"&&H.sign=="-"||d.ex=="majority"&&P(y,g,H.color)||d.ex=="minority"&&!P(y,g,H.color)){G=b; +b=-s;s=G}else{G=b;b=s;s=-G}}else if(z){G=b;b=-s;s=G}else if(!T){G=b;b=s;s=-G}}return H}var W=0,v=[]; +while(!0){var W=Z(W);if(W==-1)break;var L=Math.floor(W/r),H=C(W-L*r,L);for(var e=0;ed.a0Y)v.push(H)}for(var e=0;e=0;p--){var U=v[p]; +if(A.anU.k8||A.M4U.J1)continue;if(!ej.a3F(U.lK,A.lK[0]+.5,A.lK[1]+.5))continue; +A.parent=p;break}}return v}function I(x,r){function _(b,s,G,T,z){this.x=b;this.y=s;this.bZ=G;this.BY=T; +this.Ye=z}function d(b,E){return(E+b)%E}function w(b,s,G,T){return b*T-G*s}function Z(b,s,G,T){return b*G+s*T}function P(b,s,G){if(b<=G)return b<=s&&s=0&&M<=1)return M;else if(hK>=0&&hK<=1)return hK; +else return-1}function g(j){var e,b,s;j.Mf=j.lK[0];j.a1z=j.lK[1];j.pV=[];var G=j.pV;G.push(new _(0,0,0,0,0)); +for(e=0;e=0;e--){if(b[e<<1]!=b[S<<1]&&b[(e<<1)+1]!=b[(S<<1)+1])S=e+1;T[e]=S}for(e=E-1; +e>=0;e--){var a=d(e+1,E)<<1;z[0]=z[1]=z[2]=z[3]=0;s=(3+3*(b[a]-b[e<<1])+(b[a+1]-b[(e<<1)+1]))/2;z[s]++; +m=0;$=0;o=0;h=0;S=T[e];hK=e;while(1){N=0;s=(3+3*Math.sign(b[S*2]-b[hK*2])+Math.sign(b[S*2+1]-b[hK*2+1]))/2; +z[s]++;if(z[0]&&z[1]&&z[2]&&z[3]){G[e]=hK;N=1;break}i=b[S*2]-b[e*2];t=b[S*2+1]-b[e*2+1];if(w(m,$,i,t)<0||w(o,h,i,t)>0){break}if(Math.abs(i)<=1&&Math.abs(t)<=1){}else{X=i+(t>=0&&(t>0||i<0)?1:-1); +D=t+(i<=0&&(i<0||t<0)?1:-1);if(w(m,$,X,D)>=0){m=X;$=D}X=i+(t<=0&&(t<0||i<0)?1:-1);D=t+(i>=0&&(i>0||t<0)?1:-1); +if(w(o,h,X,D)<=0){o=X;h=D}}hK=S;S=T[hK];if(!P(S,e,hK)){break}}if(N==0){f=Math.sign(b[S*2]-b[hK*2]);R=Math.sign(b[S*2+1]-b[hK*2+1]); +i=b[hK*2]-b[e*2];t=b[hK*2+1]-b[e*2+1];bD=w(m,$,i,t);co=w(m,$,f,R);iM=w(o,h,i,t);hs=w(o,h,f,R);M=1e7; +if(co<0){M=Math.floor(bD/-co)}if(hs>0){M=Math.min(M,Math.floor(-iM/hs))}G[e]=d(hK+M,E)}}M=G[E-1];j.Oe[E-1]=M; +for(e=E-2;e>=0;e--){if(P(e+1,G[e],M)){M=G[e]}j.Oe[e]=M}for(e=E-1;P(d(e+1,E),M,j.Oe[e]);e--){j.Oe[e]=M}}function J(j){function b(j,e,s){var E=j.GM,i=j.lK,t=j.pV,N,M,hK,bD,co,T,iM,hs,R,S,a,bV,a5,i9,dG=0; +if(s>=E){s-=E;dG=1}if(dG==0){N=t[s+1].x-t[e].x;M=t[s+1].y-t[e].y;bD=t[s+1].BY-t[e].BY;hK=t[s+1].bZ-t[e].bZ; +co=t[s+1].Ye-t[e].Ye;T=s+1-e}else{N=t[s+1].x-t[e].x+t[E].x;M=t[s+1].y-t[e].y+t[E].y;bD=t[s+1].BY-t[e].BY+t[E].BY; +hK=t[s+1].bZ-t[e].bZ+t[E].bZ;co=t[s+1].Ye-t[e].Ye+t[E].Ye;T=s+1-e+E}a=(i[e<<1]+i[s<<1])/2-i[0];bV=(i[(e<<1)+1]+i[(s<<1)+1])/2-i[1]; +i9=i[s<<1]-i[e<<1];a5=-(i[(s<<1)+1]-i[(e<<1)+1]);iM=(bD-2*N*a)/T+a*a;hs=(hK-N*bV-M*a)/T+a*bV;R=(co-2*M*bV)/T+bV*bV; +S=a5*a5*iM+2*a5*i9*hs+i9*i9*R;return Math.sqrt(S)}var e,s,G,T,E=j.GM,z=new Array(E+1),m=new Array(E+1),$=new Array(E),o=new Array(E+1),h=new Array(E+1),X=new Array(E+1),D,f,R; +for(e=0;e0;s--){X[s]=e; +e=o[e]}X[0]=0;z[0]=0;for(s=1;s<=G;s++){for(e=X[s];e<=h[s];e++){f=-1;for(T=h[s-1];T>=o[e];T--){D=b(j,T,e)+z[T]; +if(f<0||D0;s--){e=m[e];j.a5I[s]=e}}function A(j){function b(j,e,D,$,o,ap){var E=j.GM,bk=j.pV,c2=0,R; +while(D>=E){D-=E;c2+=1}while(e>=E){e-=E;c2-=1}while(D<0){D+=E;c2-=1}while(e<0){e+=E;c2+=1}var gg=bk[D+1].x-bk[e].x+c2*bk[E].x,bH=bk[D+1].y-bk[e].y+c2*bk[E].y,gw=bk[D+1].BY-bk[e].BY+c2*bk[E].BY,gP=bk[D+1].bZ-bk[e].bZ+c2*bk[E].bZ,dT=bk[D+1].Ye-bk[e].Ye+c2*bk[E].Ye,f=D+1-e+c2*E; +$[ap]=gg/f;$[ap+1]=bH/f;var fU=(gw-gg*gg/f)/f,dV=(gP-gg*bH/f)/f,ac=(dT-bH*bH/f)/f,e2=(fU+ac+Math.sqrt((fU-ac)*(fU-ac)+4*dV*dV))/2; +fU-=e2;ac-=e2;if(Math.abs(fU)>=Math.abs(ac)){R=Math.sqrt(fU*fU+dV*dV);if(R!=0){o[ap]=-dV/R;o[ap+1]=fU/R}}else{R=Math.sqrt(ac*ac+dV*dV); +if(R!=0){o[ap]=-ac/R;o[ap+1]=dV/R}}if(R==0){o[ap]=o[ap+1]=0}}var s=j.iF,G=j.a5I,E=j.GM,T=j.lK,z=j.Mf,m=j.a1z,$=new Array(s*2),o=new Array(s*2),h=new Array(s),X=new Array(3),e,D,f,R,M,hK,bD,co,iM,hs,S; +j.$U=new F(s);for(e=0;eN[4]){X[0]=-N[1];X[1]=N[0]}else if(N[4]){X[0]=-N[4];X[1]=N[3]}else{X[0]=1; +X[1]=0}var i=X[0]*X[0]+X[1]*X[1],t=1/i;X[2]=-X[1]*bV-X[0]*a;for(R=0;R<3;R++){N[R*3+0]+=X[R]*X[0]*t;N[R*3+1]+=X[R]*X[1]*t; +N[R*3+2]+=X[R]*X[2]*t}}M=Math.abs(a5-a);hK=Math.abs(i9-bV);if(M<=.5&&hK<=.5){j.$U.AW[e<<1]=a5+z;j.$U.AW[(e<<1)+1]=i9+m; +continue}bD=C(N,a,bV);iM=a;hs=bV;if(N[0]!=0){for(S=0;S<2;S++){i9=bV-.5+S;a5=-(N[1]*i9+N[2])/N[0];M=Math.abs(a5-a); +co=C(N,a5,i9);if(M<=.5&&co1?1-1/z:0;$=$*(1/.75)}else{$=4/3}s.Vz[G]=$; +var bD=3*G<<1;if($>=r.a8Y){s.qm[G]=0;s.Pr[bD+0]=s.Pr[bD+1]=0;s.Pr[bD+2]=t;s.Pr[bD+3]=N;s.Pr[bD+4]=M; +s.Pr[bD+5]=hK}else{if($<.55){$=.55}else if($>1){$=1}var co=.5+.5*$;s.qm[G]=1;s.Pr[bD]=W(co,D,t);s.Pr[bD+1]=W(co,f,N); +s.Pr[bD+2]=W(co,R,t);s.Pr[bD+3]=W(co,i,N);s.Pr[bD+4]=M;s.Pr[bD+5]=hK}s.alpha[G]=$;s.FH[G]=.5}s.a2_=1}function U(j){function b(){this.QG=0; +this.X7=0;this.Gj=0;this.Jn=0;this.CX=0;this.OI=0;this.Ls=0;this.alpha=0}function s(j,e,D,eR,gR,iM,hs){var T=j.$U.PW,bN=j.$U.Pr,eG=j.$U.AW; +if(e==D)return 1;var ef=e,t=d(e+1,T),fi=d(ef+1,T),gP=eG[e<<1],dT=eG[(e<<1)+1],ep=eG[t<<1],iJ=eG[(t<<1)+1],aT=iM[fi]; +if(aT==0)return 1;var dm=L(gP-ep,dT-iJ);for(ef=fi;ef!=D;ef=fi){var fi=d(ef+1,T),c1=d(ef+2,T),gk=eG[fi<<1],a8=eG[(fi<<1)+1],bX=eG[c1<<1],bL=eG[(c1<<1)+1]; +if(iM[fi]!=aT)return 1;if(Math.sign(w(ep-gP,iJ-dT,bX-gk,bL-a8))!=aT)return 1;if(Z(ep-gP,iJ-dT,bX-gk,bL-a8)=D){N+=hs[T]}var c5=b_-ap,fK=hy-bk,ez=gx-ap,d6=eJ-bk,ee=d4-ap,c0=cs-bk,gq=w(c5,fK,ez,d6),ei=w(c5,fK,ee,c0),d9=w(ez,d6,ee,c0),ge=gq+d9-ei; +if(ei==gq)return 1;var co=d9/(d9-ge),bD=ei/(ei-gq),iK=ei*co/2;if(iK==0)return 1;var gu=N/iK,M=2-Math.sqrt(4-gu/.3); +eR.X7=W(co*M,ap,b_);eR.Gj=W(co*M,bk,hy);eR.Jn=W(bD*M,d4,gx);eR.CX=W(bD*M,cs,eJ);eR.alpha=M;eR.OI=co; +eR.Ls=bD;b_=eR.X7;hy=eR.Gj;gx=eR.Jn;eJ=eR.CX;eR.QG=0;for(ef=d(e+1,T);ef!=D;ef=fi){fi=d(ef+1,T);var eA=eG[ef<<1],cE=eG[(ef<<1)+1],gk=eG[fi<<1],a8=eG[(fi<<1)+1]; +co=y(b_-ap,hy-bk,gx-b_,eJ-hy,d4-gx,cs-eJ,gk-eA,a8-cE);if(co<-.5)return 1;var iU=H(co,ap,b_,gx,d4),eI=H(co,bk,hy,eJ,cs),dm=L(gk-eA,a8-cE); +if(dm==0)return 1;var ad=w(gk-eA,a8-cE,iU-eA,eI-cE)/dm;if(Math.abs(ad)>gR)return 1;if(Z(gk-eA,a8-cE,iU-eA,eI-cE)<0||Z(eA-gk,cE-a8,iU-gk,eI-a8)<0){return 1}eR.QG+=ad*ad}for(ef=e; +ef!=D;ef=fi){fi=d(ef+1,T);var c_=ef*3+2<<1,eS=fi*3+2<<1,d_=bN[c_],c9=bN[c_+1],ek=bN[eS],fX=bN[eS+1]; +co=y(b_-ap,hy-bk,gx-b_,eJ-hy,d4-gx,cs-eJ,ek-d_,fX-c9);if(co<-.5)return 1;var iU=H(co,ap,b_,gx,d4),eI=H(co,bk,hy,eJ,cs),dm=L(ek-d_,fX-c9); +if(dm==0)return 1;var ad=w(ek-d_,fX-c9,iU-d_,eI-c9)/dm,fo=w(ek-d_,fX-c9,eG[fi<<1]-d_,eG[(fi<<1)+1]-c9)/dm; +fo*=.75*j.$U.alpha[fi];if(fo<0){ad=-ad;fo=-fo}if(ad=0;e--){f=s(j,e,d(D,T),R,r.a44,iM,hs); +if(f){break}if(o[D]>o[e]+1||o[D]==o[e]+1&&$[D]>$[e]+R.QG){m[D]=e;$[D]=$[e]+R.QG;o[D]=o[e]+1;h[D]=R;R=new b}}}X=o[T]; +hK=new F(X);bD=new Array(X);co=new Array(X);D=T;for(e=X-1;e>=0;e--){var ac=d(D,T),e2=e*3+0<<1,cX=ac*3+0<<1; +if(m[D]==D-1){hK.qm[e]=G.qm[ac];hK.Pr[e2]=G.Pr[cX];hK.Pr[e2+1]=G.Pr[cX+1];hK.Pr[e2+2]=G.Pr[cX+2];hK.Pr[e2+3]=G.Pr[cX+3]; +hK.Pr[e2+4]=G.Pr[cX+4];hK.Pr[e2+5]=G.Pr[cX+5];hK.AW[e<<1]=G.AW[ac<<1];hK.AW[(e<<1)+1]=G.AW[(ac<<1)+1]; +hK.alpha[e]=G.alpha[ac];hK.Vz[e]=G.Vz[ac];hK.FH[e]=G.FH[ac];bD[e]=co[e]=1}else{hK.qm[e]="CURVE";hK.Pr[e2]=h[D].X7; +hK.Pr[e2+1]=h[D].Gj;hK.Pr[e2+2]=h[D].Jn;hK.Pr[e2+3]=h[D].CX;hK.Pr[e2+4]=G.Pr[cX+4];hK.Pr[e2+5]=G.Pr[cX+5]; +hK.AW[e<<1]=W(h[D].Ls,G.Pr[cX+4],z[ac<<1]);hK.AW[(e<<1)+1]=W(h[D].Ls,G.Pr[cX+5],z[(ac<<1)+1]);hK.alpha[e]=h[D].alpha; +hK.Vz[e]=h[D].alpha;bD[e]=h[D].Ls;co[e]=h[D].OI}D=m[D]}for(e=0;e"; +for(var e=0;e<_;e++){var Z=x[n[e].color-1].ako.Ko;if((Z>>>24&255)==0)continue;w+=">0&255,W=Z>>8&255,v=Z>>16&255,Z="rgb("+C+","+W+","+v+")";w+="\" fill=\""+Z+"\" fill-rule=\"evenodd\"/>"}w+=""; +return w};ej.a3F=function(n,F,O){var E=n.length>>1,I,x=n[2*E-3]-O,r=n[2*E-2]-F,_=n[2*E-1]-O,d=_>x,w=0; +for(var e=0;ex}for(var e=0;e0&&_>0)continue;if(I<0&&r<0)continue;if(x==_&&Math.min(I,r)<=0)return!0; +if(x==_)continue;var Z=I+(r-I)*-x/(_-x);if(Z==0)return!0;if(Z>0)w++;if(x==0&&d&&_>x)w--;if(x==0&&!d&&_x}return(w&1)==1};ej.fill=function(n,F,O,I){var x=F[n],r=[n],_=0;while(_F.getParameter(F.MAX_TEXTURE_SIZE)){l.Z0=!1;alert("Disabling WebGL")}}; +l.qq=function(n,F){return new Float32Array([(n.x-F.x)/F.d,(n.y-F.y)/F.v,n.d/F.d,n.v/F.v])};l.A2=function(){return this.nd}; +l.wu=function(n,F){var O=l.Vo;O.bindFramebuffer(O.FRAMEBUFFER,l.g2);O.framebufferTexture2D(O.FRAMEBUFFER,O.COLOR_ATTACHMENT0,O.TEXTURE_2D,n.sg,0); +O.viewport(0,0,n.d,n.v);if(F){O.enable(O.SCISSOR_TEST);O.scissor(F.x,F.y,F.d,F.v)}else O.disable(O.SCISSOR_TEST)}; +l.Z2=function(n,F,O){if(O)throw"error";var I=l.Vo;I.disable(I.SCISSOR_TEST);I.bindFramebuffer(I.FRAMEBUFFER,null); +I.viewport(0,0,n,F);if(O){I.enable(I.SCISSOR_TEST);I.scissor(O.x,O.y,Math.round(O.d),Math.round(O.v))}else I.disable(I.SCISSOR_TEST)}; +l.clear=function(){var n=l.Vo;n.clearColor(0,0,0,0);n.clear(n.COLOR_BUFFER_BIT)};l.rF=function(n,F){if(F==null)F=0; +var O=(F>>>0&255)==0,I=(F>>>8&255)==0,x=(F>>>16&255)==0,r=(F>>>24&255)==0,_=(n>>>0&255)*(1/255),d=(n>>>8&255)*(1/255),w=(n>>>16&255)*(1/255),Z=(n>>>24&255)*(1/255),P=l.Vo; +P.colorMask(O,I,x,r);P.clearColor(_,d,w,Z);P.clear(P.COLOR_BUFFER_BIT);P.colorMask(!0,!0,!0,!0)};l.U0=function(n,F,O,I,x){var r=F.lN(I); +if(x)r=r.lN(x);if(r.D2())return;var _=l.Vo;l.wu(n);_.bindTexture(_.TEXTURE_2D,O.sg);_.copyTexSubImage2D(_.TEXTURE_2D,0,r.x-I.x,r.y-I.y,r.x-F.x,r.y-F.y,r.d,r.v)}; +l.Y0=function(e,n,F){var O=l.Jb[e];if(O==null||O.d!=n||O.v!=F){if(O)O.delete();O=new l.zF(n,F)}l.Jb[e]=O; +return O};l.Jb=[];l.L8=function(){this.f1=null;this.bm=null};l.L8.l8=null;l.L8.prototype.Jr=function(n){if(this.bm)return; +this.bm={};var F=l.Vo,O=this.f1,I=this.bm;for(var e=0;e>>1); +F.activeTexture(F["TEXTURE"+(e>>>1)]);F.bindTexture(F.TEXTURE_2D,n[e+1])}F.activeTexture(F.TEXTURE0)}; +l.L8.prototype.Nf=function(n,F){var O=l.Vo,I=O.createShader(O.FRAGMENT_SHADER);O.shaderSource(I,n);O.compileShader(I); +if(!O.getShaderParameter(I,O.COMPILE_STATUS))console.log(O.getShaderInfoLog(I));var x=O.createShader(O.VERTEX_SHADER); +O.shaderSource(x,F);O.compileShader(x);if(!O.getShaderParameter(x,O.COMPILE_STATUS))console.log(O.getShaderInfoLog(x)); +var r=O.createProgram();O.attachShader(r,x);O.attachShader(r,I);O.linkProgram(r);if(!O.getProgramParameter(r,O.LINK_STATUS))console.log("Could not initialise shaders"); +this.f1=r};l.L8.prototype.vM=function(){if(l.L8.l8!=this){l.Vo.useProgram(this.f1);l.L8.l8=this}};l.fL=function(n,F){l.yH++; +l.Jo+=n*F;if(l.SN)console.log("GL.Channels instances: "+l.yH+", memory: "+l.Jo);var O=l.Vo;this.d=n; +this.v=F;this.sg=O.createTexture();this.Lu=null;this.mL(this.sg,n,F)};l.fL.prototype.mL=function(n,F,O){var I=l.Vo; +I.bindTexture(I.TEXTURE_2D,n);I.texParameteri(I.TEXTURE_2D,I.TEXTURE_MIN_FILTER,I.NEAREST);I.texParameteri(I.TEXTURE_2D,I.TEXTURE_MAG_FILTER,I.NEAREST); +I.texParameteri(I.TEXTURE_2D,I.TEXTURE_WRAP_S,I.CLAMP_TO_EDGE);I.texParameteri(I.TEXTURE_2D,I.TEXTURE_WRAP_T,I.CLAMP_TO_EDGE); +I.texImage2D(I.TEXTURE_2D,0,I.ALPHA,F,O,0,I.ALPHA,I.UNSIGNED_BYTE,null)};l.fL.prototype.set=function(n){var F=l.Vo; +F.bindTexture(F.TEXTURE_2D,this.sg);F.pixelStorei(F.UNPACK_ALIGNMENT,1);F.texImage2D(F.TEXTURE_2D,0,F.ALPHA,this.d,this.v,0,F.ALPHA,F.UNSIGNED_BYTE,n); +F.pixelStorei(F.UNPACK_ALIGNMENT,4)};l.fL.prototype.delete=function(){var n=l.Vo;if(this.sg){n.deleteTexture(this.sg); +l.yH--;l.Jo-=this.d*this.v}if(l.SN)if(l.SN)console.log("GL.Channels instances: "+l.yH+", memory: "+l.Jo*4)}; +l.yH=0;l.zF=function(n,F,O){if(O==null)O=!1;l.yH++;l.Jo+=n*F*4;if(l.SN)console.log("GL.Channels instances: "+l.yH+", memory: "+l.Jo); +var I=l.Vo;this.a7i=O;this.d=n;this.v=F;this.sg=I.createTexture();this.Lu=null;this.mL(this.sg,n,F)}; +l.zF.prototype.set=function(n,F){var O=l.Vo;O.disable(O.SCISSOR_TEST);O.bindTexture(O.TEXTURE_2D,this.sg); +if(n==null||n instanceof Uint8Array){var I=this.d*this.v;if(F==null||F.X()*10>I)O.texImage2D(O.TEXTURE_2D,0,O.RGBA,this.d,this.v,0,O.RGBA,O.UNSIGNED_BYTE,n); +else{var x=q.f(F.X()*4);q.nF(n,new gv(0,0,this.d,this.v),x,F);O.texSubImage2D(O.TEXTURE_2D,0,F.x,F.y,F.d,F.v,O.RGBA,O.UNSIGNED_BYTE,x)}}else O.texImage2D(O.TEXTURE_2D,0,O.RGBA,O.RGBA,O.UNSIGNED_BYTE,n)}; +l.zF.prototype.get=function(n){var F=l.Vo;l.wu(this);F.readPixels(0,0,this.d,this.v,F.RGBA,F.UNSIGNED_BYTE,n)}; +l.zF.prototype.ww=function(n){if(n.D2())return;var F=l.Vo;if(this.Lu==null){this.Lu=F.createTexture(); +this.mL(this.Lu,this.d,this.v);l.yH++;l.Jo+=this.d*this.v*4}F.bindFramebuffer(F.FRAMEBUFFER,l.g2);F.bindTexture(F.TEXTURE_2D,this.Lu); +if(n){var O=Math.max(n.x,0),I=Math.max(n.y,0);F.copyTexSubImage2D(F.TEXTURE_2D,0,O,I,O,I,n.d,n.v)}else F.copyTexImage2D(F.TEXTURE_2D,0,F.RGBA,0,0,this.d,this.v,0)}; +l.zF.prototype.mL=function(n,F,O){var I=l.Vo;I.bindTexture(I.TEXTURE_2D,n);I.texParameteri(I.TEXTURE_2D,I.TEXTURE_MIN_FILTER,this.a7i?I.LINEAR:I.NEAREST); +I.texParameteri(I.TEXTURE_2D,I.TEXTURE_MAG_FILTER,I.NEAREST);I.texParameteri(I.TEXTURE_2D,I.TEXTURE_WRAP_S,I.CLAMP_TO_EDGE); +I.texParameteri(I.TEXTURE_2D,I.TEXTURE_WRAP_T,I.CLAMP_TO_EDGE);I.texImage2D(I.TEXTURE_2D,0,I.RGBA,F,O,0,I.RGBA,I.UNSIGNED_BYTE,null)}; +l.zF.prototype.delete=function(){var n=l.Vo;if(this.sg){n.deleteTexture(this.sg);l.yH--;l.Jo-=this.d*this.v*4}if(this.Lu){n.deleteTexture(this.Lu); +l.yH--;l.Jo-=this.d*this.v*4}if(l.SN)if(l.SN)console.log("GL.Channels instances: "+l.yH+", memory: "+l.Jo)}; +l.zF.prototype.clone=function(){var n=l.Vo,F=new l.zF(this.d,this.v);l.wu(this);n.bindTexture(n.TEXTURE_2D,F.sg); +n.copyTexImage2D(n.TEXTURE_2D,0,n.RGBA,0,0,this.d,this.v,0);return F};l.Qr={ak9:" vec3 ocbrn(vec3 a, vec3 b, float f) { vec3 d = (a*vec3(f)+ONE3-vec3(f)); return mix(ONE3 - min(ONE3,(ONE3-b)/d), ZERO3, vec3(vec3(greaterThan(vec3(0.001),d))) ); } ",a2P:" vec3 ocddg(vec3 a, vec3 b, float f) { return mix( min(ONE3, b/(ONE3 - a*f)) , ONE3 , vec3(equal(a*f,ONE3 )) ); } ",x6:"const vec3 ZERO3 = vec3(0.0,0.0,0.0) ;\t\t\tconst vec3 QUAR3 = vec3(0.25,0.25,0.25) ;\t\t\tconst vec3 HALF3 = vec3(0.5,0.5,0.5) ;\t\t\tconst vec3 ONE3 = vec3(1.0,1.0,1.0) ;",h0:" float hueDiff(float shue, float hue) { \t\t\t\tfloat df = hue-shue, adf=abs(df), df0 = df-1.0, df1 = df+1.0; \t\t\t\tif(abs(df0) < adf) df = df0; \t\t\t\telse if(abs(df1) < adf) df = df1; \t\t\t\treturn df; \t\t\t}",o7:" float hueCF(float hueS, float hue0) { \t\t\t\tfloat df = hueDiff(hue0, hueS)*6.0; \t\t\t\treturn max(0.0, min(1.0, (df<0.0) ? 1.0+df : 1.0-df )); } ",Il:"float sat(vec3 c) { return max(c.x,max(c.y,c.z)) - min(c.x,min(c.y,c.z)); }",wO:"float lum(vec3 c) { return dot(c, vec3(0.3,0.59,0.11)); } ",m9:"vec3 D (vec3 x) { return mix( sqrt(x), ((16.0*x-12.0)*x+4.0)*x , vec3(lessThanEqual(x,QUAR3)) ); }",a0S:"float midSat (vec3 v, float s) { return ((v.y-v.z)*s)/(v.x-v.z); }",_M:"vec3 setSat (vec3 c, float s) \t\t\t{\t\t\t\tvec3 o;\t\t\t\tif(c.r==c.g && c.g==c.b) o = ZERO3;\t\t\t\telse if(c.r>c.g) {\t\t\t\t\tif(c.r>c.b) {\t\t\t\t\t\tif(c.g>c.b)\to = vec3(s, midSat(c.rgb,s), 0.0); \t\t\t\t\t\telse\to = vec3(s, 0.0, midSat(c.rbg,s)); \t\t\t\t\t}\t\t\t\t\telse\t\to = vec3(midSat(c.brg,s), 0.0, s); \t\t\t\t} else {\t\t\t\t\tif(c.rc.b)\to = vec3(0.0, s, midSat(c.gbr,s)); \t\t\t\t\t\telse\t o = vec3(0.0, midSat(c.bgr,s), s); \t\t\t\t\t}\t\t\t\t\telse\t\t o = vec3(midSat(c.grb,s), s, 0.0);\t\t\t\t}\t\t\t\treturn o;\t\t\t}",am_:"vec3 clipCol(vec3 c) \t\t\t{ \t\t\t\tvec3 o = c; float l = lum(c); \t\t\t\tfloat n = min(c.r,min(c.g,c.b)); \t\t\t\tfloat x = max(c.r,max(c.g,c.b)); \t\t\t\tif(n<0.0) o = l + (o-l)*(l/(l-n));\t\t\t\tif(x>1.0) o = l + (o-l)*(1.0-l)/(x-l);\t\t\t\treturn o;\t\t\t}",b6:"vec3 setLum (vec3 c, float l) { return clipCol(c+l-lum(c)); } ",lm:"bool in01(vec2 c) { return (0.0<=c.x) && (c.x<=1.0) && (0.0<=c.y) && (c.y<=1.0); }",hash:"float hash(vec2 v) { return fract(sin(dot(v ,vec2(12.9898,78.233))) * 43758.5453); }",Px:"vec3 rgbToHsl (vec3 rgb) {\t\t\t\tfloat r = rgb.r, g = rgb.g, b = rgb.b; \t\t\t\tfloat mx = max(r, max(g, b)), mn = min(r, min(g, b)); \t\t\t\tfloat h, s, l = (mx + mn) * 0.5;\t\t\t\t\t\t\t\tif(mx == mn) h = s = 0.0; \t\t\t\telse{ \t\t\t\t\tfloat d = mx - mn; \t\t\t\t\ts = l > 0.5 ? d / (2.0 - mx - mn) : d / (mx + mn); \t\t\t\t\t\t\t\t\t\tif(mx==r) h = (g - b) / d + (g < b ? 6.0 : 0.0); \t\t\t\t\telse if(mx==g) h = (b - r) / d + 2.0; \t\t\t\t\telse if(mx==b) h = (r - g) / d + 4.0; \t\t\t\t\t\t\t\t\t\th /= 6.0; \t\t\t\t} \t\t\t\treturn vec3(h,s,l); }",OQ:"vec3 hslToRgb (float h, float s, float l){\t\t\t\tfloat r, g, b;\t\t\t\t\t\t\t\tif(s == 0.0) r = g = b = l; \t\t\t\telse{ \t\t\t\t\tfloat q = l < 0.5 ? l * (1.0 + s) : l + s - l * s; \t\t\t\t\tfloat p = 2.0 * l - q; \t\t\t\t\tr = hue2rgb(p, q, h + 1.0/3.0); \t\t\t\t\tg = hue2rgb(p, q, h); \t\t\t\t\tb = hue2rgb(p, q, h - 1.0/3.0); \t\t\t\t} \t\t\t\treturn vec3(r,g,b); } ",Ir:"float hue2rgb(float p, float q, float t){ \t\t\t\tif(t < 0.0) t += 1.0;\t\t\t\tif(t > 1.0) t -= 1.0;\t\t\t\tif(t < 1.0/6.0) return p + (q - p) * 6.0 * t; \t\t\t\tif(t < 1.0/2.0) return q; \t\t\t\tif(t < 2.0/3.0) return p + (q - p) * (2.0/3.0 - t) * 6.0; \t\t\t\treturn p;\t}",sy:"vec3 rgbToHsv(vec3 rgb){\t\t\t\t\tfloat r = rgb.r, g = rgb.g, b = rgb.b; \t\t\t\tfloat mx = max(r, max(g, b)), mn = min(r, min(g, b)); \t\t\t\tfloat h, s, v = mx; \t\t\t\t\t\t\t\tfloat d = mx - mn; \t\t\t\ts = mx == 0.0 ? 0.0 : d / mx; \t\t\t\t\t\t\t\tif(mx == mn) h = 0.0; \t\t\t\telse if(mx==r) h = (g - b) / d + (g < b ? 6.0 : 0.0); \t\t\t\telse if(mx==g) h = (b - r) / d + 2.0; \t\t\t\telse if(mx==b) h = (r - g) / d + 4.0; \t\t\t\t\t\t\t\th /= 6.0; \t\t\t\treturn vec3(h,s,v); }",xN:"vec3 hsvToRgb(float h, float s, float v) { \t\t\t\tfloat r, g, b, f, p, q, t, i; \t\t\t\ti = floor(h * 6.0); \t\t\t\tf = h * 6.0 - i; \t\t\t\tp = v * (1.0 - s); \t\t\t\tq = v * (1.0 - f * s); \t\t\t\tt = v * (1.0 - (1.0 - f) * s); \t\t\t\t\t\t\t\tif (i==0.0) { r = v, g = t, b = p; }\t\t\t\telse if(i==1.0) { r = q, g = v, b = p; }\t\t\t\telse if(i==2.0) { r = p, g = v, b = t; }\t\t\t\telse if(i==3.0) { r = p, g = q, b = v; }\t\t\t\telse if(i==4.0) { r = t, g = p, b = v; }\t\t\t\telse if(i==5.0) { r = v, g = p, b = q; }\t\t\t\t\t\t\t\treturn vec3(r,g,b); }",Kj:"\t\tfloat srgbUngamma(float x) {\t\t\treturn (x<0.04045) ? (x / 12.92) : pow( ( x + 0.055 ) / 1.055, 2.4);\t\t}\t\tfloat xyzScale(float x) {\t\t\treturn (x>0.008856) ? pow(x,1.0/3.0) : (903.3*x+16.0)*(1.0/116.0); \t\t}\t\tvec3 rgbToLab(vec3 rgb) {\t\t\tbool ok = true;\t\t\trgb.r = srgbUngamma(rgb.r); \t\t\trgb.g = srgbUngamma(rgb.g); \t\t\trgb.b = srgbUngamma(rgb.b); \t\t\tok = ok && 0.0318<=rgb.r && rgb.r<=0.0319; \t\t\tok = ok && 0.127 <=rgb.g && rgb.g<=0.128 ; \t\t\tok = ok && 0.3047<=rgb.b && rgb.b<=0.305; \t\t\t\t\t\tmat3 srgb2xyz = mat3(0.4360747164307918, 0.222504478679176, 0.013932173981751634, 0.3850649153329662, 0.7168786002139355, 0.09710452396580642, 0.14308038098632878, 0.06061692340677909, 0.7141732835334675); \t\t\t\t\t\tvec3 xyz = srgb2xyz*rgb; \t\t\tok = ok && 0.106<=xyz[0] && xyz[0]<=0.107; \t\t\t\t\t\txyz=xyz*vec3(100.0/96.72, 100.0/100.0, 100.0/81.427); \t\t\txyz.x = xyzScale(xyz.x); \t\t\txyz.y = xyzScale(xyz.y); \t\t\txyz.z = xyzScale(xyz.z); \t\t\t\t\t\treturn vec3(116.0*xyz.y-16.0, 500.0*(xyz.x-xyz.y), 200.0*(xyz.y-xyz.z)); \t\t} \t\tfloat labSimilar(vec3 lab, vec3 mnm, vec3 mxm, float lim) {\t\t\tfloat L=lab.x, a=lab.y, b=lab.z; \t\t\tfloat dl = ((L1.0?1.0:mi);\t\t}"}; +l.Ju={mI:{},Z4:"\t\t\tattribute vec2 verPos;\t\t\tvarying vec2 sCoord;\t\t\tvoid main(void) {\t\t\t\tsCoord = verPos;\t\t\t\tgl_Position = vec4(vec2(-1.0,-1.0) + 2.0*verPos, 0.0, 1.0);\t\t\t}"}; +l.Ju.Yn=function(n,F){var O=dK.fe,I=[O.$l,O.$v,O.sP,O.Vx,O.xr,O.Yx,O.ib,O.ZQ].indexOf(n.type),x=l.Ju.mI[n.type]; +if(x==null)x=l.Ju.mI[n.type]=new l.mI[I];x.vM();x.lf(F,n);l.Vo.drawArrays(l.Vo.TRIANGLES,0,6)};l.mI=[]; +l.mI[0]=function(){l.L8.call(this);this.HX={};var n="\t\t\tprecision mediump float;\t\t\t"+l.Qr.wO+"\t\t\t"+l.Qr.x6+"\t\t\tuniform sampler2D source;\t\t\tuniform sampler2D map;\t\t\tuniform float toGray;\t\t\tuniform float presLum;\t\t\t\t\t\tvarying vec2 sCoord;\t\t\t\t\t\tvoid main(void) {\t\t\t\tvec4 src = texture2D(source, sCoord); \t\t\t\tfloat olum = lum(src.rgb); \t\t\t\tsrc.rgb = toGray * vec3(olum) + (1.0-toGray)*src.rgb; \t\t\t\tfloat r = texture2D(map, vec2(src.r, 0)).r;\t\t\t\tfloat g = texture2D(map, vec2(src.g, 0)).g;\t\t\t\tfloat b = texture2D(map, vec2(src.b, 0)).b;\t\t\t\tvec3 col = vec3(r,g,b); \t\t\t\tif(presLum==1.0) { \t\t\t\t\tfloat nlum = lum(col); \t\t\t\t\tif(olum>nlum) col += (olum-nlum)/(1.0-nlum)*(ONE3-col); \t\t\t\t\telse if(nlum==0.0) col = ZERO3; \t\t\t\t\telse col = (olum/nlum) * col; \t\t\t\t}\t\t\t\tgl_FragColor = vec4(col,src.w);\t\t\t\t\t\t\t}"; +this.Nf(n,l.Ju.Z4)};l.mI[0].prototype=new l.L8;l.mI[0].prototype.lf=function(n,F){var O={Q:F.Ub,l:F.O8,O:F.QP,R:q.f(F.Ub.length)},I=O.Q.length; +if(this.HX["m"+I]==null){this.HX["m"+I]={abp:new l.zF(I,1),zc:q.f(I*4)}}var x=this.HX["m"+I];q.Eb(O,x.zc,0); +var r=x.abp;r.set(x.zc);this.Jr(["source","map","toGray","presLum"]);var _=l.Vo,d=this.bm;_.uniform1f(d.toGray,F.Nn?1:0); +_.uniform1f(d.presLum,F.Q7?1:0);this.et([d.source,n,d.map,r.sg])};l.mI[1]=function(){l.L8.call(this); +this.ake=new l.zF(256,1);this.aar=q.f(256*4);var n="\t\t\t\tprecision mediump float;\t\t\t\t"+l.Qr.Ir+"\t\t\t\t"+l.Qr.Px+"\t\t\t\t"+l.Qr.OQ+"\t\t\t\t\t\t\t\tuniform sampler2D source;\t\t\t\tuniform sampler2D map;\t\t\t\tuniform float cfa; \t\t\t\tuniform float cfb; \t\t\t\tuniform int colorize; \t\t\t\t\t\t\t\tvarying vec2 sCoord;\t\t\t\t\t\t\t\tvoid main(void) { \t\t\t\t\tvec4 src = texture2D(source, sCoord);\t\t\t\t\tvec3 rgb = src.rgb;\t\t\t\t\tfloat mn=min(rgb.r,min(rgb.g,rgb.b)), mx = max(rgb.r,max(rgb.g,rgb.b));\t\t\t\t\t\t\t\t\t\tvec3 hsl = rgbToHsl(rgb); \t\t\t\t\tfloat h = hsl.r, s = hsl.g, l = hsl.b; \t\t\t\t\t\t\t\t\t\tvec4 mapv = texture2D(map, vec2(h, 0));\t\t\t\t\tfloat nh = mapv.r; \t\t\t\t\tfloat sc = mapv.g*2.0-1.0; \t\t\t\t\tfloat lc = mapv.b*2.0-1.0; \t\t\t\t\t\t\t\t\t\tfloat cf = -lc, tv=mn;\t\t\t\t\tif(0.00.0) sc = pow(tan((3.14159265359/2.0)*sc),1.3);\t\t\t\t\t\tns = min(s * (1.0 + sc), 1.0); \t\t\t\t\t} \t\t\t\t\t\t\t\t\t\tgl_FragColor = vec4(hslToRgb(nh,ns,l),src.w); \t\t\t\t\t\t\t\t\t}"; +this.Nf(n,l.Ju.Z4)};l.mI[1].prototype=new l.L8;l.mI[1].prototype.lf=function(n,F){q.Eb({Q:F.ab4,l:F.A3,O:F.a7w,R:q.f(256)},this.aar); +this.ake.set(this.aar);this.Jr(["source","map","cfa","cfb","colorize"]);var O=l.Vo,I=this.bm;O.uniform1f(I.cfa,F.ams); +O.uniform1f(I.cfb,F.yy);O.uniform1i(I.colorize,F.akZ);this.et([I.source,n,I.map,this.ake.sg])};l.mI[2]=function(){l.L8.call(this); +var n="\t\t\tprecision mediump float;\t\t\t"+l.Qr.Ir+"\t\t\t"+l.Qr.sy+"\t\t\t"+l.Qr.xN+"\t\t\t"+l.Qr.Px+"\t\t\t"+l.Qr.OQ+"\t\t\t\t\t\tuniform sampler2D source;\t\t\tuniform float vib; \t\t\tuniform float sat; \t\t\tconst float PI = 3.141592653; \t\t\t\t\t\tvarying vec2 sCoord;\t\t\t\t\t\tvoid main(void) { \t\t\t\tvec4 src = texture2D(source, sCoord); \t\t\t\tvec3 hsl = rgbToHsv(src.rgb); \t\t\t\tfloat h=hsl.r, s=hsl.g, l=hsl.b; \t\t\t\t\t\t\t\tfloat sk0 = 0.0, sk1 = 45.0/360.0; \t\t\t\tfloat skin = (h2OI;5g7:@5nVPLIGeVMX`|njge-'&-$V&)/$BbHB4D%GNx`KSI=_f_menp%E+%vwKB4&'XQY``edhootpjxp&%*'vhxY{#>5HINMDXX]YnVW",qc:0,bT:1,cw:2,pM:3}; +l.filter.Yn=function(n,F){var O=l.filter,I=[O.qc,O.bT,O.cw,O.pM].indexOf(n.type),x=l.filter.cT[n.type]; +if(x==null)x=l.filter.cT[n.type]=new l.cT[I];x.vM();x.lf(F,n);l.Vo.drawArrays(l.Vo.TRIANGLES,0,6)};l.cT=[0,0,0,0,0,0,0]; +l.cT[3]=function(){l.L8.call(this);var n="1%* !*709;O@;=ETOUgQZ`Uk5rnllx~|2)y)/.*:\\qPGFOOCH!^ZXXdjh}wij<-y+~T2.,,8>{wuu\"(&;5'(ZJ<@=JtRNLLX^\\qbYo2!tvv'@N,(&&286K<3IkZNPP`z(fThremi%~pqC4+]-06+d/?BBXEM2TTdugYZ.|v,\" qrF5)X,#=OAWACCSlkYoY[[k&!6pfx||{0!w2D-$>P<\\J`HhWioTKewc$s(o0|14JNDEJX>:,-_OE7G@qi[MN!pdo&|vhi<, ,>42$%WG=/H*8FySLTp\\g{&))4:;7CC;$0CSRPXZ_cg]Wd]quw~$}'-/50=wm $$#7-~8y(6L\\RRiYLP^}gZfo.z/Dr{\"v-;1#)d/3AH?cORDJ$UUygY_~>45:6,*{|O?6;6f5>D9O]T[$yz ~ubjb?66;Iw$*B$-3(>LIob).\"|^$(>C72s(+,\"rzrOFFKK+3+e77[PuiRDJehh0gY_'!gvx\"y\",~W&28P2;A6LZV}p7<0+k26LQE@!6KCBGC9'06+AO6NuTiKSK&WW{o6*rdj&)(P(y GA(79B:BL?wIImiU]Bddt&wij>5s,B3H2$*T[\\a]`c]DSU^V^h[4rde9(nz$Q, 6599/^sZIHQQEJsja4cfla+ykl>7u.D5GK.?3Vk:CI>TbIM)PTh obft4my#A.BW&/5*@N3K?wmnvpMYb!h$,-7>2nz$B~EMNTWS0>CC /#KO,8A_G?=]kcM\\Pyi[\\/'9384Iw!'{2@49>iW6:t@DRYPj-p{~^bpwn6os;D|!/6-PJgP[:>y|rsx+~ %2#ae1ko}%{?H $KNc2;A6LZAX!ww||chm7ry0En&L(-(H]'>S04}M?H'VV\\b0i\\hq=#"; +this.Nf(V.by(n),V.by(l.filter.Z4))};l.cT[3].prototype=new l.L8;l.cT[3].prototype.lf=function(n,F){this.Jr("source iwh tdep rrad spec nois poly0 poly1".split(" ")); +var O=l.Vo,I=this.bm;O.uniform2fv(I.iwh,F.Rl);O.uniform1f(I.tdep,F.ahg);O.uniform1f(I.rrad,F.akP);O.uniform2fv(I.spec,F.ah5); +O.uniform3fv(I.nois,F.ac5);O.uniformMatrix4fv(I.poly0,!1,F.aaM);O.uniformMatrix4fv(I.poly1,!1,F.akV); +this.et([I.source,n]);var x=O.LINEAR;O.activeTexture(O.TEXTURE0);O.texParameteri(O.TEXTURE_2D,O.TEXTURE_MIN_FILTER,x); +O.texParameteri(O.TEXTURE_2D,O.TEXTURE_MAG_FILTER,x);O.activeTexture(O.TEXTURE0)};l.cT[0]=function(){l.L8.call(this); +var n="1%* !*709;O@;=ETOUgQZ`Uk5|uqoo{\" 5,|,21-=_tSJIRRFK$kd`^^jpn$}opB3 1%ZB;755AGEZTFGyiYT.unjhhtzx.w!'{2@7/3;5mUO=Q[NVRmgYZ,|sFux~sM5~(.#9G23E'?;AOZm_QR$th$}|$mv|q(62M?_E=1GFJJ@o%kZYbbV[%{o-{mn@9AHHMLCVW\\X\\?PDgo\\#jT]cXn|x5&F,$w.-11'VkRA@II=BkbVsbTU' z//43*=>C?C&7+NVCiQ;DJ?Uc`zl-rj^tswwm=R9('00$)RI=ZI;^DWXd\\S;Sn_ epe!~n)$9!zlm@0\"6V<.286-;;O=bTFGyqyTk(#`x31(8r*DA~7ROF.E_\\:Rlgj g]Seiih|drz1xs>$AV>?D>:75SD;FNj\\XUSztszdmsh~-({6V5g7:@5\\`QEzbc"; +this.Nf(V.by(n),V.by(l.filter.Z4))};l.cT[0].prototype=new l.L8;l.cT[0].prototype.lf=function(n,F){this.Jr(["source","iwh","ld","shine"]); +var O=l.Vo,I=this.bm;O.uniform2fv(I.iwh,F.Rl);O.uniform3fv(I.ld,F.a1H);O.uniform1f(I.shine,F.aly);this.et([I.source,n,I.tang,F.Wt])}; +l.cT[1]=function(){l.L8.call(this);var n="1%* !*709;O@;=ETOUgQZ`Uk5|uqoo{\" 5,|,21-=_tSJIRRFK$kd`^^jpn$}opB3 1%ZB;755AGEZDMSH^lYfY4{tpnnz!~4}'-\"8F,?9FJEAya[I]gZb^ysef8) R\"%+ YA+4:/ES?;PHjLU[Pfths*!jsyn%3'3E?>E/8>3IWM?X:HVl-ribj'r}2PpV@IORXp\\w-tn`a3$u|]0P6*I.3`H2;A6LZQqt$]V^z'**/+@(\"stF7}M@`F-LlRLXf^DWQ^b]Yv$|hdyq4r\")@,L:MQ>^a_:IPgSsbtxe&)$9!vl~##\"6,0,7OP\\\\acjhmi~fglfb_]{lcnv3%!}{C=& qrF5{++AaG?3IHLLBq'm\\[ddX]'}tGvy t?D>:75SD;FNj\\XUSztszdmsh~-x+S-&'0'S?89B9u]GPVKaofmx9~338F.(yzN=494IiOG;QPTTJy/udcll`e/&|O~\"(|DYA;-._P:GYy_tsxuvfZpossi9N5%t%!H?6h8;A6]eSWmZLM~w#$.(/0:14I1+|}O@(FfL6CpXBNTlQYbp]4*8 lB;G/{@CD>=D>01bSGYy_V)X[aV0wams,mv|q(6,YOPUcKAmfgjmns\"i_z}~xw~xjk=.~x7W=RQVSTD8NMQQGv,rbRb^&|p,4\"&<)z{MFQR\\V]^h_bw_LLpP^f|e_*e-C:;@<65<-'bU93lTUZB`!fWQ+rfx'<\"rl5w)|R:$-3(>LGRrXSDKLP_uc|2ypup&4I/*?-!76::0_t[JIRRFKtk_z0wnu,A~E-yy>,Z\\+=QK1D:9Fx`afN*|Yf4{|\"ltjT$u~]--39IiOFKFefrrwyah|2yz"; +this.Nf(V.by(n),V.by(l.filter.Z4))};l.cT[2].prototype=new l.L8;l.cT[2].prototype.lf=function(n,F){this.Jr(["source","tang","iwh","sigma","expo"]); +var O=l.Vo,I=this.bm;O.uniform2fv(I.iwh,F.Rl);O.uniform1f(I.sigma,F.amp);O.uniform1f(I.expo,F.a2v);this.et([I.source,n,I.tang,F.Wt]); +var x=O.LINEAR;O.activeTexture(O.TEXTURE0);O.texParameteri(O.TEXTURE_2D,O.TEXTURE_MIN_FILTER,x);O.texParameteri(O.TEXTURE_2D,O.TEXTURE_MAG_FILTER,x); +O.activeTexture(O.TEXTURE0)};l.p={};l.p.AY={};l.p.me=null;l.p.N4=null;l.p.jA=null;l.p.$p=function(n,F,O,I,x,r,_,d){if(d==null)d=ha.gm(); +if("idiv,lbrn,div ,lddg,vLit,lLit,hMix,diff".split(",").indexOf(n)==-1){_=_*d.fill;d.fill=1;d.style=!1}var w=n+(d.ni?"1":""); +if(l.p.AY[w]==null)l.p.AY[w]=new l.p.db(n,d.ni!=null);var Z=l.p.AY[w],P=O.lN(x).lN(r);P.offset(-x.x,-x.y); +if(P.D2())return;var C=l.Vo;l.wu(I,P);I.ww(P);Z.vM();Z.lf(F.sg,I.Lu,l.qq(O,x),_,d.fill,d.style?1:0,d.rU?1:0,d.ni?new Float32Array(d.ni):null); +C.drawArrays(C.TRIANGLES,0,6)};l.p.t_=function(n,F,O,I,x,r,_,d,w,Z,P){if(l.p.me==null)l.p.me=new l.p.WX(!0,!0); +if(l.p.N4==null)l.p.N4=new l.p.WX(!0,!1);if(l.p.jA==null)l.p.jA=new l.p.WX(!1,!0);var C=Z?1:0,W=n?x?l.p.me:l.p.N4:l.p.jA,v=new Float32Array(P?[P[0],P[1],P[2],1]:[1,1,1,1]),L=F?F.lN(I).lN(d):I.lN(d); +if(L.D2())return;L.offset(-I.x,-I.y);var H=l.Vo;l.wu(O,L);O.ww(L);W.vM();if(n==null)W.lf(null,O.Lu,x.sg,l.qq(I,I),l.qq(r,I),_/255,w,C,v); +else if(x)W.lf(n.sg,O.Lu,x.sg,l.qq(F,I),l.qq(r,I),_/255,w,C,v);else W.lf(n.sg,O.Lu,null,l.qq(F,I),null,_/255,w,C,v); +H.drawArrays(H.TRIANGLES,0,6)};l.p.a2m=function(n,F,O){if(l.p.a3N==null)l.p.a3N=new l.p.KU;var I=l.p.a3N,x=new gv(0,0,n.d,n.v),r=l.Vo; +l.wu(F);F.ww(x);I.vM();I.lf(x,n.sg,F.Lu,O.sg);r.drawArrays(r.TRIANGLES,0,6)};l.p.wZ={norm:"return a;",diss:"return a;",dark:"return min(a,b);","mul ":"return a*b;",idiv:" vec3 d = (a*vec3(f)+ONE3-vec3(f)); return mix(mix(ONE3-((ONE3-b)/max(d,vec3(1e-6))), ZERO3, vec3(greaterThanEqual(ONE3-b,d)) ), ONE3 , vec3(equal(b,ONE3) )); ",lbrn:"return max(ZERO3, a*f+b-f);",dkCl:"return ( lum(a)lum(b) ? a : b );",over:"return mix( a+(2.0*b -1.0)-a*(2.0*b-1.0) , 2.0*b*a , step(-HALF3,-b) );",sLit:"return mix( b+(2.0*a -1.0)*(D(b)-b) , b-(1.0-2.0*a)*b*(1.0-b) , step(-HALF3,-a) );",hLit:"return mix( b+(2.0*a -1.0)-b*(2.0*a-1.0) , 2.0*a*b , step(-HALF3,-a) );",vLit:" return mix( ocddg(2.0*a-1.0,b,f) , ocbrn(2.0*a,b,f) , vec3(greaterThanEqual(HALF3,a))); ",lLit:"return mix( min(ONE3, (2.0*a-1.0)*f+b) , max(ZERO3, 2.0*a*f+b-f) , step(-HALF3,-a));",pLit:"return mix( max(2.0*a-1.0,b) , min(2.0*a, b) , step(-HALF3,-a) );",hMix:"if(f>0.99) return vec3(greaterThanEqual(a+b,ONE3)); return min( ONE3, max(ZERO3, (b+a*f-f)/(1.0-f+1e-6) )) ; ",diff:"return abs(a*f-b);",smud:"return a+b-2.0*a*b;",fsub:"return max(b-a, ZERO3);",fdiv:"return min(b/a, ONE3);","hue ":"return setLum( setSat(a, sat(b)) , lum(b) ); ","sat ":"return setLum( setSat(b, sat(a)) , lum(b) ); ",colr:"return setLum( a, lum(b) ); ","lum ":"return setLum( b, lum(a) ); "}; +l.p.db=function(n,F){l.L8.call(this);var O="\t\t\tprecision mediump float;\t\t\t"+l.Qr.x6+"\t\t\t\t\t\tuniform sampler2D source;\t\t\tuniform sampler2D target;\t\t\tuniform float alpha;\t\t\tuniform float fill;\t\t\tuniform float style;\t\t\tuniform float keepBGA;\t\t\t"+(F?"uniform vec4 blIf[10];":"")+"\t\t\t\t\t\tvarying vec2 tCoord;\t\t\tvarying vec2 sCoord;\t\t\t\t\t\t\t\t\t"+l.Qr.Il+"\t\t\t"+l.Qr.wO+"\t\t\t"+l.Qr.m9+"\t\t\t"+l.Qr.ak9+"\t\t\t"+l.Qr.a2P+"\t\t\t"+l.Qr.a0S+"\t\t\t"+l.Qr._M+"\t\t\t"+l.Qr.am_+"\t\t\t"+l.Qr.b6+"\t\t\t"+l.Qr.hash+"\t\t\t"+(F?l.Qr.$V:"")+"\t\t\t\t\t\tvec3 BB(vec3 a, vec3 b, float f) { "+l.p.wZ[n]+" } \t\t\t\t\t\tvoid main(void) {\t\t\t\tvec4 tgt = texture2D(target, tCoord);\t\t\t\tvec4 src = texture2D(source, sCoord);",I="\t\t\tattribute vec2 verPos;\t\t\tuniform vec4 srct;\t\t\tvarying vec2 tCoord;\t\t\tvarying vec2 sCoord;\t\t\tvoid main(void) {\t\t\t\ttCoord = verPos;\t\t\t\tsCoord = (verPos-srct.xy)/srct.zw;\t\t\t\tgl_Position = vec4(vec2(-1.0,-1.0) + 2.0*verPos, 0.0, 1.0);\t\t\t}"; +if(n=="diss")O+="\t\t\t\t\tgl_FragColor = (hash(tCoord) >= (keepBGA + (1.0-keepBGA)*src.w)*alpha ? tgt : vec4(src.xyz, keepBGA*tgt.w + (1.0-keepBGA))); }"; +else O+=" \t\t\t\t\tfloat as = (keepBGA + (1.0-keepBGA)*src.w) * alpha, at = keepBGA + (1.0-keepBGA)*tgt.w; \t\t\t\t\t"+(F?" as*=blendIf(src,tgt,blIf); ":"")+"\t\t\t\t\tfloat ats = at * (1.0-as), ao = as + ats, iao = (ao==0.0) ? 0.0 : (1.0/ao); \t\t\t\t\tfloat ccf = (style==1.0) ? 1.0 : as; \t\t\t\t\tvec3 ncl = ( (1.0-at)*as*src.xyz + (1.0-ccf)*at*tgt.xyz + ccf*at*BB(src.xyz, tgt.xyz, (1.0+as-ccf)*fill) ) * iao;\t\t\t\t\tgl_FragColor = vec4(ncl, keepBGA*tgt.w + (1.0-keepBGA)*(as*fill + at*(1.0-as*fill)));\t\t\t\t\t\t\t}"; +this.Nf(O,I)};l.p.db.prototype=new l.L8;l.p.db.prototype.lf=function(n,F,O,I,x,r,_,d){this.Jr("srct alpha source target fill style keepBGA blIf".split(" ")); +var w=l.Vo,Z=this.bm;w.uniform4fv(Z.srct,O);w.uniform1f(Z.alpha,I);w.uniform1f(Z.fill,x);w.uniform1f(Z.style,r); +w.uniform1f(Z.keepBGA,_);if(d)w.uniform4fv(Z.blIf,d);this.et([Z.source,n,Z.target,F])};l.p.WX=function(n,F){l.L8.call(this); +this.alM=n;this.f2=F;var O="\t\t\tprecision mediump float;\t\t\t\t\t\tuniform sampler2D source;\t\t\tuniform sampler2D target;\t\t\tuniform sampler2D weight;\t\t\tuniform vec4 cswitch;\t\t\tuniform float wcolor;\t\t\tuniform float awg; /* additional weight */\t\t\tuniform float dissv;\t\t\t\t\t\tvarying vec2 tCoord;\t\t\tvarying vec2 sCoord;\t\t\tvarying vec2 wCoord;\t\t\t\t\t\t"+l.Qr.lm+"\t\t\t"+l.Qr.hash+"\t\t\t\t\t\tvoid main(void) {\t\t\t\tvec4 tgt = texture2D(target, tCoord);\t\t\t\tvec4 src = "+(n?"texture2D(source, sCoord)":"vec4(0.0)")+"; \t\t\t\tfloat wg = awg "+(F?"* (in01(wCoord) ? texture2D(weight, wCoord).w : wcolor)":"")+";\t\t\t\t"+(n?"":"wg = 1.0-wg;")+"\t\t\t\tfloat hwg = hash(tCoord)>=wg ? 0.0 : 1.0; wg = dissv*hwg + (1.0-dissv)*wg; \t\t\t\tfloat as = wg*src.w, at = (1.0-wg)*tgt.w, ao = as+at;\t\t\t\t\t\t\t\tvec4 nc = vec4( (as*src.xyz + at*tgt.xyz)/ao, ao ); \t\t\t\tgl_FragColor = "+(F?"nc":"cswitch*nc + (1.0- cswitch)*tgt")+"; \t\t\t}",I="\t\t\tattribute vec2 verPos;\t\t\tvarying vec2 tCoord;\t\t\tvarying vec2 sCoord;\t\t\tvarying vec2 wCoord;\t\t\t\t\t\tuniform vec4 srct;\t\t\tuniform vec4 wrct;\t\t\tvoid main(void) {\t\t\t\ttCoord = verPos;\t\t\t\tsCoord = (verPos-srct.xy)/srct.zw;\t\t\t\twCoord = (verPos-wrct.xy)/wrct.zw;\t\t\t\tgl_Position = vec4(vec2(-1.0,-1.0) + 2.0*verPos, 0.0, 1.0);\t\t\t}"; +this.Nf(O,I)};l.p.WX.prototype=new l.L8;l.p.WX.prototype.lf=function(n,F,O,I,x,r,_,d,w){if(this.f2)this.Jr("srct wrct wcolor awg dissv source target weight cswitch".split(" ")); +else this.Jr("srct awg dissv source target cswitch".split(" "));var Z=l.Vo,P=this.bm;Z.uniform4fv(P.srct,I); +if(this.f2){Z.uniform4fv(P.wrct,x);Z.uniform1f(P.wcolor,r)}else{Z.uniform4fv(P.cswitch,w)}Z.uniform1f(P.awg,_); +Z.uniform1f(P.dissv,d);var C=[P.source,n,P.target,F];if(this.f2)C.push(P.weight,O);this.et(C)};l.p.KU=function(){l.L8.call(this); +var n="\t\t\tprecision mediump float;\t\t\t\t\t\tuniform sampler2D prev;\t\t\tuniform sampler2D next;\t\t\tuniform sampler2D alpha;\t\t\t\t\t\tvarying vec2 coord;\t\t\t\t\t\t\t\t\tvoid main(void) {\t\t\t\tvec3 or = texture2D(prev , coord).rgb;\t\t\t\tvec3 ir = texture2D(next , coord).rgb; \t\t\t\tfloat al = texture2D(alpha, coord).w; \t\t\t\tgl_FragColor = vec4( (ir-(1.0-al)*or)*(1.0/al) ,1.0 ); \t\t\t}",F="\t\t\tattribute vec2 verPos;\t\t\tvarying vec2 coord;\t\t\t\t\t\tuniform vec4 rct;\t\t\tvoid main(void) {\t\t\t\tcoord = verPos;\t\t\t\tgl_Position = vec4(vec2(-1.0,-1.0) + 2.0*verPos, 0.0, 1.0);\t\t\t}"; +this.Nf(n,F)};l.p.KU.prototype=new l.L8;l.p.KU.prototype.lf=function(n,F,O,I){this.Jr(["rct","prev","next","alpha"]); +var x=l.Vo,r=this.bm;x.uniform4fv(r.rct,[0,0,1,1]);this.et([r.prev,F,r.next,O,r.alpha,I])};var c={}; +c.Fq=function(n,F,O){this.name=n;this.id=F;this.ta=null;if(O!=null)this.lp=O};c.Fq.prototype.fM=function(n,F,O,I,x){}; +c.Fq.prototype.enable=function(n,F,O,I,x,r){var _=new k(V.E.P,!0);_.data={e:V.U.VC,dx:"default"};F.A(_)}; +c.Fq.prototype.disable=function(n,F,O,I,x){};c.Fq.prototype.Dw=function(n,F,O,I,x){return!1};c.Fq.prototype.XS=function(n,F,O,I,x){}; +c.Fq.prototype.Zp=function(n,F,O,I,x){};c.Fq.prototype.RL=function(n,F,O,I,x){};c.Fq.prototype._X=function(n,F,O,I,x){}; +c.Fq.prototype.e9=function(n,F,O,I,x){};c.Fq.prototype.Ka=function(n,F,O,I){};c.Fq.prototype.jv=function(n,F,O,I){}; +c.Fq.prototype.Xe=function(n,F){};c.Fq.prototype.cQ=function(n,F){};c.Fq.prototype.wl=function(n,F,O,I,x){}; +c.Fq.prototype.XW=function(n,F){};c.Fq.prototype.JF=function(n,F){return!1};c.Fq.prototype.jn=function(n,F){return!1}; +c.Fq.prototype.A5=function(){return!1};c.Fq.prototype.CD=function(n,F){return!0};c.Fq.prototype.gj=function(){return null}; +c.Fq.prototype.fu=function(n,F,O){};c.Fq.prototype.bE=function(){return!1};c.Fq.prototype.VG=function(n,F,O,I){}; +c.Fq.prototype.track=function(n){var F=new k(V.E.JA,!0);F.data=n;n.Vw=!0;this.ta.A(F)};c.Fq.Ji=function(n,F,O,I,x){c.Fq.Li(n,F,[hl.get([12,41]).charAt(0)+": "+q.Mm.xp(O.d,I.gC,x,I.d,!0),hl.get([12,42]).charAt(0)+": "+q.Mm.xp(O.v,I.gC,x,I.v,!0)],I)}; +c.Fq.Li=function(n,F,O,I){var x=14,r=130,_=O.length*17+8,d=new gv(n,F-_,r,_),w=c.Fq.MV;if(w==null)w=c.Fq.MV=document.createElement("canvas"); +w.width=r;w.height=_;var Z=w.getContext("2d");Z.fillStyle="rgba(0,0,1,1)";Z.fillRect(0,0,r,_);Z.font=x+"px monospace"; +Z.fillStyle="rgba(255,255,255,1)";for(var e=0;eMath.abs(_); +if(Z&&I[2]){var P=Math.round(2*r/x);d+=P;O.x-=r-.5*P*x}if(!Z&&!I[2]&&w!=-1){var P=Math.round(.25*_); +w+=P;O.y-=_-4*P}d=Math.max(1,d);w=I[1]==-1?-1:Math.max(0,Math.min(100,w));var C=I[3];C.Brsh.v.Dmtr.v.val=d; +if(w!=-1)C.Brsh.v.Hrdn.v.val=w;this.NB=[d,w,Z,C,O];var W=cb.UD(C,F.ke.J$,x),v=W[1];v.x=Math.round(this.wh.x-v.d/2); +v.y=Math.round(this.wh.y-v.v/2);n.M.zi=[W];var L=n.a.jR(this.wh.x,this.wh.y);n.M.vY={k1:[],b0:[L.x-d/2,L.y,L.x+d/2,L.y]}; +if(w!=-1)n.M.vY.b0.push(L.x+50/x,L.y-w/2,L.x+50/x,L.y+w/2);n.zB=!0};c.P6.prototype.e9=function(n,F,O,I,x){if(this.id==c.B_)return; +if(this.wh){this.wh=null;this.X6(JSON.parse(JSON.stringify(this.NB[3])));n.M.zi=[];n.M.vY=null;n.zB=!0; +return}var r=new k(V.E.P,!0);r.data={e:V.U.hO,T:this.id,a7v:"showBrushOpts",RK:new aE(x.Ux+4,x.fw)}; +F.A(r)};c.P6.prototype.X6=function(n){var F=new k(V.E.P,!0);F.data={e:V.U.g7,b9:cf.jZ,JM:n};this.caller.A(F)}; +c.P6.Lz=function(n,F,O,I,x){if(n==null)n="FrgC";if(F==null)F="norm";if(O==null)O=1;if(x==null)x=!1;var r={classID:"Fl",Usng:{t:"enum",v:{FlCn:n}},Opct:{t:"UntF",v:{type:"#Prc",val:Math.round(O*100)}},PrsT:{t:"bool",v:x},Md:{t:"enum",v:{BlnM:fk.Pw(F)}}}; +if(n=="Clr")r.Clr={t:"Objc",v:I};if(n=="contentAware")r.contentAwareColorAdaptationFill={t:"bool",v:!0}; +return{oI:"fill",Mk:r}};c.P6.prototype.fM=function(n,F,O,I,x){this.ta=F;var r=O.P4.length;if(r==0&&!O.f7())return; +var _=r!=0?-1-O.P4[0]:O.C[0],d=O.t[_];if(n.e=="fromAction"){var w=n.zC,Z=w.Mk;if(w.oI=="fill"){var P=Z.PrsT?Z.PrsT.v:!1,C=d.add.lspf,H; +if(P){d.add.lspf=C==null?1:C|1}var W=(Z.Opct?Z.Opct.v.val:100)/100,v=Z.Md?fk.X4(Z.Md.v.BlnM):"norm",L=Z.Usng.v.FlCn; +if(L=="contentAware"){if(O.N==null){alert("Select an area to heal first.");return}if(!O.f7())return; +this.Pa(O);this.p2(O,0);var y=O.N,g=q.f(y.rect.X()*4);q.GF(y.channel,g,3);this.cx(O,"sheal",g,y.rect,y.rect); +this.D(O,y.rect);this.finish(O,y.rect)}else{if(L=="FrgC")H=x.nE;else if(L=="BckC")H=x.sI;else if(L=="Blck")H=0; +else if(L=="Wht")H=16777215;else if(L=="Gry")H=8421504;else if(L=="Clr"){var Q=q.W.S_(Z.Clr.v);H=Q.Q<<16|Q.l<<8|Q.O}var J=H>>16&255,A=H>>8&255,p=H>>0&255; +this.VW(O,d,O.N,J,A,p,Math.round(255*W),v,[2,3])}if(P){d.add.lspf=C==null?0:C}}else if(w.oI=="delete"){var U=_<0?1:d.vE,y=O.N,T; +if(y==null)return;var j=_<0?O.TM[-_-1]:U<=0?null:U==1?d.B1():d.Fa(O).r,b=U<=0?d.rect:j.rect,s=U<=0?y.rect.lN(b):y.rect.clone(); +if(s.D2())return;var G=s.X();if(U<=0){T=q.f(G*4);q.nF(d.buffer,d.rect,T,s)}else{T=q.f(G);j.extend(s); +q.k9(j.channel,j.rect,T,s)}if(0<=_&&d.WF(O,y)){if(U<=0){q.IW(T,0);q.nF(d.HG.I6,d.HG.Fe,T,s)}else{T.fill(255); +q.k9(d.HG.I6,d.HG.Fe,T,s)}}else{if(U<=0){var z=q.f(T.length>>2);q.xg(T,z,3);q.p.b4(q.CZ(y.rect.X()),y.rect,z,s,y.channel,s,1); +q.GF(z,T,3)}else{var m=q.f(y.rect.X()),J=x.sI>>>16&255,A=x.sI>>8&255,p=x.sI>>0&255;m.fill(Math.round(q.iB(J,A,p))); +q.p.b4(m,y.rect,T,s,y.channel,s,1)}}this.LY(O,!0,[2,2],_,U,s,T)}}if(n.e=="stroke"){var $=n.al7,y=O.N; +if(y==null){y={rect:d.rect.clone(),channel:q.f(d.rect.X())};q.xg(d.buffer,y.channel,3)}var o=ha.Yj($),h=c.pQ.qK(y,Math.ceil(o[0]),Math.ceil(o[1])),H=q.W.S_($.Clr.v),J=Math.round(H.Q),A=Math.round(H.l),p=Math.round(H.O); +this.VW(O,d,h,J,A,p,Math.round(255*$.Opct.v.val/100),fk.X4($.Md.v.BlnM),[14,9])}if(n.e=="fillBMP"){this.wG(O,d,O.N,n.Tv,n.QP,n.WL)}if(n.e=="draw"){var X=n.SS,D=X.rect; +this.Pa(O);var f=O.t[O.C[0]];if(n.acX&&f&&f.vE<=0&&O.P4.length==0){D=ci.ED.s4(X,O);f.buffer=X.buffer.slice(0); +f.rect=D.clone()}else{var R=this.ka.bmode;this.ka.bmode="norm";this.cx(O,"draw",X.buffer,D,D.lN(new gv(0,0,O.d,O.v))); +this.ka.bmode=R}this.D(O,D);O._y=!0;this.finish(O,D,n.WL,n.acX)}};c.P6.prototype.VW=function(n,F,O,I,x,r,_,d,w){var Z=O==null?new gv(0,0,n.d,n.v):O.rect,P=_<<24|r<<16|x<<8|I<<0,C=q.f(Z.X()*4); +q.IW(C,P);this.wG(n,F,O,C,d,w)};c.P6.prototype.wG=function(n,F,O,I,x,r){var _=n.P4.length!=0?-1-n.P4[0]:n.C[0],d=_<0?1:F.vE,w=_<0?n.TM[-1-_]:d<=0?null:d==1?F.B1():F.Fa(n).r,Z=d<=0?F.rect:w.rect,P=O==null?new gv(0,0,n.d,n.v):O.rect,C=O==null?q.cO(n.d*n.v):O.channel,W=P.X(),v,L=null; +if(d<=0){v=q.f(W*4);q.nF(F.buffer,F.rect,v,P)}else{v=q.f(W);w.extend(P);q.k9(w.channel,w.rect,v,P)}if(O!=null)q.DM(C,I); +if(d>0){L=q.f(W);q.L2(I,L)}if(0<=_&&O&&F.WF(n,O)){var H=F.HG.Cv,y=F.HG.Cv.slice(0);if(d<=0)q.Ct(I,y); +else q.Ct(L,y);var g=new hS([2,3],this);g.data={e:"drawtemp",$:n.C[0],vH:d,adB:H,ad$:y};n.p$(g);this.Xe(g.data,n)}else{if(d<=0){var Q; +if(F.LF(0)){Q=q.f(P.X());q.xg(v,Q,3)}q.p.F_(x,I,P,v,P,P,1);if(F.LF(0))q.GF(Q,v,3)}else q.p.b4(L,P,v,P,C,P,1); +this.LY(n,!0,r,_,d,P,v)}};c.P6.prototype.JF=function(n){if(u.yg.indexOf(n)!=-1)return!0;return!1};c.P6.prototype.Ka=function(n,F,O,I){var x=this.ka.brush,r=I.q(u.pI),_=r!=this.U5,d=c.P6.fC(x,I); +if(d!=null)this.X6(d);if(!I.q(u.ep)&&I.gT()!=-1){var w=V.SU(Math.round(this.ka.opacity*100),I.gT())/100; +this._f({opacity:w},F)}if(this.id==c.QT&&_&&n!=null){var Z=this.ka.qsmode;if(Z==2)Z=n.N==null?0:1;else Z=2; +this._f({qsmode:Z},F)}this.U5=r;if(_){if(n)this.uN=n.a.K;this.pa(O,I)}};c.P6.fC=function(n,F){var O=n.Brsh.v.Dmtr.v.val,I=n.Brsh.v.Hrdn!=null?n.Brsh.v.Hrdn.v.val:-1,x=O,r=I,_=F.q(u.MQ); +if(F.q(u.Ag)){if(_)I=25*Math.floor((I-1)/25);else{if(O<=10)O--;else if(O<=50)O=5*Math.floor((O-1)/5); +else if(O<=100)O=10*Math.floor((O-1)/10);else if(O<=200)O=25*Math.floor((O-1)/25);else if(O<=400)O=50*Math.floor((O-1)/50); +else O=100*Math.floor((O-1)/100)}}if(F.q(u.lA)){if(_)I=25*Math.ceil((I+1)/25);else{if(O<10)O++;else if(O<50)O=5*Math.ceil((O+1)/5); +else if(O<100)O=10*Math.ceil((O+1)/10);else if(O<200)O=25*Math.ceil((O+1)/25);else if(O<400)O=50*Math.ceil((O+1)/50); +else O=100*Math.ceil((O+1)/100)}}O=Math.max(1,O);I=Math.max(0,Math.min(100,I));if(r==-1)I=-1;if(O!=x||I!=r){var d=JSON.parse(JSON.stringify(n)); +d.Brsh.v.Dmtr.v.val=O;if(r!=-1)d.Brsh.v.Hrdn.v.val=I;return d}return null};c.P6.prototype.pa=function(n,F,O,I){if(n.ke.list.length==0)return; +var x=this.id,r;if((x==c.it||x==c._s||x==c.pY||x==c.$a)&&(F!=null&&F.q(u.pI)||this.ka.alt[0]))r="crosshair"; +else{var _=this.uN,d=this.ka.brush;if((x==c.it||x==c._s)&&O&&this.jd&&this.jd.length==this.GS.X()*4){var w=O.a.jR(I.x,I.y),Z=this.E2(w),P=this.jd,C=this.GS,W=new gv(C.x+Z.x,C.y+Z.y,C.d,C.v),v=cb.UD(d,n.ke.J$,_),L=v[0],H=v[1],y=Math.ceil(H.d/_),g=new gv(Math.round(w.x-y/2),Math.round(w.y-y/2),y,y),Q=q.f(g.X()*4),J,A; +q.nF(P,W,Q,g);if(_==1){J=Q;A=g}else{var p=new cD(_,0,0,_,0,0),U=c.V.oo([Q,g],p,!0);A=H.clone();A.x=U.rect.x; +A.y=U.rect.y;if(A.Qq(U.rect))J=U.buffer;else{J=q.f(A.X()*4);q.nF(U.buffer,U.rect,J,A)}}var j=this.ka.opacity/255; +for(var e=0;e>>1,P=new gv(Math.round(d.x)-Z,Math.round(d.y)-Z,w,w),C=q.f(P.X()*4); +q.IW(16777215);for(var e=0;e0){Z=q.f(r.X()*4);c.P6.AA(_,r,0,Z,r)}var P=new hS(O,this);P.data=[{$:I,vH:x,j:r,aN:Z}];if(d)P.data.Wu=[n.N,null]; +if(w)P.data.Wu=[this.xA,n.N];n.p$(P);if(F)this.Xe(P.data,n);else if(d)n.N=null;ci.WD.JB(n,P.data)};c.P6.prototype.cQ=function(n,F){this.Sb(n,F,!1)}; +c.P6.prototype.Xe=function(n,F){this.Sb(n,F,!0)};c.P6.prototype.Sb=function(n,F,O){if(n.e=="drawtemp"){var I=O?n.ad$:n.adB,x=F.t[n.$]; +x.HG.Cv=I;x.ah(F,0,0,F.N);x.D();F._y=!0}else{ci.WD.rN(F,n);if(n.Wu){F.N=n.Wu[O?1:0];F.NX=!0}}F.D()}; +c.P6.prototype._t=function(n){this.cx(n,this.W6,this.IY.El(),this.IY.nJ(),this.IY.nj());this.D(n)};c.P6.prototype.cx=function(n,F,O,I,x){var r=this.ka,_=n.t[n.C[0]],d=n.P4.length!=0?n.TM[n.P4[0]]:_.vE<=0?null:_.vE==1?_.B1():_.Fa(n).r,w=q.f(x.X()*4),Z,P=_.LF(0); +if(d==null){if(this.id==c.ac&&F=="heal")q.nF(_.buffer,_.rect,w,x);else q.nF(this.Jc,this.oq,w,x);if(P){Z=q.f(x.X()); +q.xg(w,Z,3)}}else{c.P6.AA(this.Jc,this.oq,d.color,w,x)}if(n.N&&F!="qselect"){var C=x.lN(n.N.rect),W=q.f(C.X()*4); +if(F=="copy"){var v=q.f(C.X());q.k9(n.N.channel,n.N.rect,v,C);q.nF(w,x,W,C);q.p.Nb(O,I,W,C,v,C,0,C,1,!1)}else{q.nF(O,I,W,C); +q.oh(n.N.channel,n.N.rect,W,C)}O=W;I=C}function L(g,c2){var bH=Math.max(c2.x,Math.min(c2.x+c2.d-1,g.x)),gw=Math.max(c2.y,Math.min(c2.y+c2.v-1,g.y)); +return new aE(bH,gw)}if(F=="idraw"||F=="ierase"){if(this.B6==null)this.B6=q.f(this.oq.X());var H=this.ka.samp,y=this.GL.sI,g=L(this.vD,x),Q=H==0?g:this.py,J=Q.x,A=Q.y,p=c.hB.QR(this.Jc,this.oq,[Q,new aE(J-2,A),new aE(J+2,A),new aE(J,A-2),new aE(J,A+2)]); +if(H==2)p=[[y>>>16&255,y>>>8&255,y>>>0&255,255]];var U=c.hB.xi(w,x,g,p,this.ka.wconf),j=q.f(x.X());q.k9(this.B6,this.oq,j,x); +q.ZZ.Tq(U,j,j);q.k9(j,x,this.B6,this.oq);q.oh(j,x,O,I);F=F.slice(1)}if(F=="erase"&&(ci.WD.KI(n)!=16777215||d))F="draw"; +if(F=="draw")q.p.F_(r.bmode,O,I,w,x,x,r.opacity);else if(F=="erase"){var b=q.f(x.X()*4);q.nF(O,I,b,x); +if(d==null){var s=q.f(x.X());q.xg(b,s,3);q.Ny(s,r.opacity);q.uZ(s);q.oh(s,x,w,x)}else{q.IW(b,0,4278190080); +q.p.F_("norm",b,x,w,x,x,r.opacity)}}else if(F=="clone"||F=="heal"){var G=this.Md(),T=this.GS.clone(); +T.offset(G.x,G.y);var z=x.clone();z.EM(1,1);var m=q.f(z.X()*4),$=q.f(z.X());q.nF(O,I,m,z);q.xg(m,$,3); +q.IW(m,0);if(d==null){q.nF(this.jd,T,m,z);var o=q.f(z.X());q.xg(m,o,3);q.yr(o,$)}else c.P6.AA(this.jd,T,d.color,m,z); +if(F=="clone"){q.GF($,m,3);q.p.F_(r.bmode,m,z,w,x,x,r.opacity)}if(F=="heal"){var h=$.slice(0);q.round(h,20); +var X=q.f(z.X()*4);if(d==null)q.nF(this.Jc,this.oq,X,z);else c.P6.AA(this.Jc,this.oq,d.color,X,z);q.p.Nb(m,z,X,z,h,z,0,z,1,!1); +q.Mr.VY(X,h,z);q.p.Nb(X,z,w,x,$,z,0,x,1,!1)}}else if(F=="dodge"||F=="burn"){var m=q.f(x.X()*4),R=1,i=0,t=0,N=0; +q.nF(O,I,m,x);var D=x.X()*4,f=c.P6.Na;if(this.U5){if(F=="dodge")F="burn";else F="dodge"}var M=r.rng; +if(F=="dodge"){i=[1-R/2,1,1+R][M];t=[1,1/(1+R),1][M];N=[R/2,0,0][M]}if(F=="burn"){i=[1/(1-R/2),1,1-R/2][M]; +t=[1,1+R,1][M];N=[-(R/2)/(1-R/2),0,0][M]}for(var e=0;e>>1)*a5]=$[(i9>>>1)*a5+a5-1]=0;c.Ae.Sy(bk,!0);n.N={rect:bV,channel:bk.N.slice(0)};n.NX=!0}if(d==null){if(P)q.GF(Z,w,3); +q.nF(w,x,_.buffer,_.rect)}else c.P6.ZX(w,x,d)};c.P6.Md=function(){return null};c.P6.Na=function(n,F,O,I,x){var r=n*(1/255),_=I+F*Math.pow(r,O),d=Math.round(_*x+r*(255-x)); +return Math.max(0,Math.min(255,d))};c.P6.AA=function(n,F,O,I,x){var r=q.f(x.X());r.fill(O);q.k9(n,F,r,x); +I.fill(255);q.GN(r,I)};c.P6.ZX=function(n,F,O){var I=q.f(F.X());q.L2(n,I);q.k9(I,F,O.channel,O.rect)}; +c.pQ=function(n,F,O){c.Fq.call(this,n,F,O);this.ka={Tb:"front",RI:0,GV:{OI:0,x:3,y:2},yZ:[16,!0,!0]}; +this.nh=new aE(-1,-1);this.v4=new aE(-1,-1);this.IF="default";this.ta=null;this.aoJ=!0;this.Sl=!1;this.xI=!1; +this.U5=!1;this.CK=0;this.rp=0;this.oL=!1;this.P_=null;this.sf=null;this.Pb=!1};c.pQ.prototype=new c.Fq; +c.pQ.prototype.ahX=function(){var n=this.ka,F=[{front:0,union:1,difference:2,intersection:3}[n.Tb],n.RI]; +if(this.id==c.qR)F.push(n.yZ);return F};c.pQ.prototype.ahC=function(n,F,O){var I=this.ka;I.Tb=["front","union","difference","intersection"][n[0]]; +I.RI=n[1];I.yZ=n[2];var x=new k(V.E.P,!0);x.data={e:V.U.hO,T:this.id,NJ:I};O.A(x)};c.pQ.md={key:""}; +c.pQ.n4=function(n,F){var O={oI:n,Mk:{classID:"setd",null:{t:"obj ",v:[{t:"prop",v:{classID:"Chnl",keyID:"fsel"}}]}}}; +if(F)O.Mk.T=F;return O};c.pQ.ZA=function(n,F){return c.pQ.n4("set",{t:"Objc",v:{classID:n,Top:{t:"UntF",v:{type:"#Pxl",val:F.y}},Left:{t:"UntF",v:{type:"#Pxl",val:F.x}},Btom:{t:"UntF",v:{type:"#Pxl",val:F.y+F.v}},Rght:{t:"UntF",v:{type:"#Pxl",val:F.x+F.d}}}})}; +c.pQ.TS=function(n,F){var O=[],I=[],r="set";for(var e=0;e>>1)),D=s.y-T.y,f=D+s.v-1,R=Math.max(D,Math.min(f,D+f>>>1)),i=Math.max(o,0),t=Math.min(h,m),N=Math.max(D,0),M=Math.min(f,$); +z.fill(128);if(0<=D)for(var hK=i;hK>>2);q.xg(bN,eG,3);_={channel:eG,rect:gR.clone()}}else{if(eR.r==null)eR.o3(O);var ef=dG==1?eR.B1():eR.r; +_=c.pQ.az(ef,w)}this.track(c.pQ.sw(j,["Trsp","Msk"][dG],eR.getName()))}else if(r=="frompath"){var fi=O.Y1(),ep=fi[1],fi=fi[0]; +if(cX==null)if(fi.length==0||ep.length==0)return;var iJ=fi[ep[0]];if(cX!=null)for(var e=0;e1||this.rp>1?F:null; +var I=this.nh,x=this.v4;if(O){I.x=Math.max(0,Math.min(n.d,I.x));I.y=Math.max(0,Math.min(n.v,I.y));x.x=Math.max(0,Math.min(n.d,x.x)); +x.y=Math.max(0,Math.min(n.v,x.y))}var r=c.vb.YW(I,x,F,!0,this.ka.GV),_=r[0].x,d=r[0].y;return new gv(_,d,r[1].x-_,r[1].y-d)}; +c.pQ.prototype.XS=function(n,F,O,I,x){if(this.c0())return;this.ta=F;this.Sl=!1;this.xI=I.q(u.MQ);this.U5=I.q(u.pI); +this.CK=this.xI?0:1;this.rp=this.U5?0:1;this.nh=n.a.jR(x.x,x.y);this.nh=c.eB.J_(n,this.nh,O);if(this.Ql(n,this.nh,I)){this.oL=!0; +this.P_=n.N.rect.clone();return}this.R3(n,O,I,x);n.a.LL=new gv};c.pQ.prototype.Ql=function(n,F,O){var I=O.q(u.MQ),x=O.q(u.pI); +if(n.N&&!I&&!x&&this.ka.Tb=="front")return q.q9(F,n.N.channel,n.N.rect);return!1};c.pQ.prototype.RL=function(n,F,O,I,x){this.ta=F; +if(this.Pb)return;var r=n.a.jR(x.x,x.y);if(aE.sl(this.nh,r)*n.a.K>5)this.Sl=!0;if(I.q(u.cf)){if(this.sf==null)this.sf=new aE(r.x-this.nh.x,r.y-this.nh.y); +this.nh.x=r.x-this.sf.x;this.nh.y=r.y-this.sf.y}else this.sf=null;this.v4=r;if(!this.oL)this.v4=c.eB.J_(n,this.v4,O); +if(this.Ql(n,this.v4,I))this.rL(F,"move");else this.rL(F,this.IF);if(this.oL){var _=this.P_.clone(); +_.x+=this.v4.x-this.nh.x;_.y+=this.v4.y-this.nh.y;var d=c.eB.VO(n,_,O);n.N.rect.x=Math.round(this.v4.x-this.nh.x+this.P_.x+d[0]); +n.N.rect.y=Math.round(this.v4.y-this.nh.y+this.P_.y+d[1]);n.NX=!0;c.eB.BU(n,_,d);return}this.BO(n,O,I,x); +if(n.a.LL)n.a.LL=this.nJ(n,I)};c.pQ.prototype.c0=function(){return!1};c.pQ.prototype._X=function(n,F,O,I,x){n.a.LL=null; +this.v4=n.a.jR(x.x,x.y);this.v4=c.eB.J_(n,this.v4,O);if(this.oL){this.oL=!1;if(this.v4.Qq(this.nh)&&this.Xg()=="front"){this.ZY(F,V.E.JA,c.pQ.YN()); +return}this.hM(n,this.P_,n.N.rect.clone());if(n!=null&&n.M.iA){n.M.iA=null;n.zB=!0}return}this.lu(n,O,I,x); +c.pQ.$A(F,O)};c.pQ.prototype.hM=function(n,F,O){var I=n.mG();if(I!=null&&I.T==this&&I.data.e=="movesel"){}else{I=new hS([7,7],this); +I.data={e:"movesel",NG:F};n.p$(I)}I.data.Si=O;this.Xe(I.data,n)};c.pQ.prototype.Zp=function(n,F,O,I,x){this.Pb=!0}; +c.pQ.prototype.e9=function(n,F,O,I,x){var r=new k(V.E.P,!0);r.data={e:V.U.hO,T:this.id,$d:x,m4:n,Hs:O}; +F.A(r);this.Pb=!1};c.pQ.prototype.Ka=function(n,F,O,I){var x=I.q(u.MQ),r=I.q(u.pI);if(this.Sl){if(this.CK==0&&!x)this.CK++; +if(this.CK==1&&x)this.CK++;if(this.rp==0&&!r)this.rp++;if(this.rp==1&&r)this.rp++}if(n!=null&&n.N!=null){var _=I.vo(); +if(_.x!=0||_.y!=0){var d=n.N.rect.clone();d.x+=_.x;d.y+=_.y;this.hM(n,n.N.rect.clone(),d)}}var w=c.pQ.d$(this.ka.Tb,x,r),Z=new k(V.E.P,!0); +Z.data={e:V.U.hO,T:this.id,Tb:w};F.A(Z)};c.pQ.prototype.finish=function(n,F,O,I){var x=n.N,r=this.getSelection(n,F,O,I); +if(r==null)r=c.pQ.YN();else{var _=this.ka.RI,d=this.Xg();if(_!=0)r.Mk.Fthr={t:"UntF",v:{type:"#Pxl",val:_}}; +if(d!="front"&&d!="xor")r.oI={union:"addTo",difference:"subtractFrom",intersection:"interfaceWhite"}[d]}this.ZY(this.ta,V.E.JA,r); +this.nh.mT(-1,-1);this.v4.mT(-1,-1)};c.pQ.prototype.Xg=function(){return c.pQ.d$(this.ka.Tb,this.xI,this.U5)}; +c.pQ.d$=function(n,F,O){if(F)n="union";if(O)n="difference";if(F&&O)n="intersection";return n};c.pQ.prototype.getSelection=function(n,F,O,I){return null}; +c.pQ.prototype.R3=function(n,F,O,I){};c.pQ.prototype.BO=function(n,F,O,I){};c.pQ.prototype.lu=function(n,F,O,I){}; +c.pQ.prototype.cQ=function(n,F){var O=n.e;if(O=="changesel")F.N=n.xA;if(O=="movesel")F.N.rect=n.NG;if(n.rk){if(n.ahO){F.P4=[F.TM.length]; +F.TM.push(n.ahO)}else{F.TM.pop();F.P4=[]}}if(n.XC){F.f$=JSON.parse(n.XC[0]);F.a5=JSON.parse(n.XC[1])}F.NX=!0}; +c.pQ.prototype.Xe=function(n,F){var O=n.e;if(O=="changesel")F.N=n.pi;if(O=="movesel")F.N.rect=n.Si;if(n.rk){if(n.acB){F.P4=[F.TM.length]; +F.TM.push(n.acB)}else{F.TM.pop();F.P4=[]}}if(n.XC){F.f$=JSON.parse(n.aaO[0]);F.a5=JSON.parse(n.aaO[1])}F.NX=!0}; +c.pQ.prototype.wl=function(n){this.ka=n};c.pQ.prototype.Hr=function(n){var F=q.z.Wk(n.H);if(F.D2())return null; +var O=V.w("canvas","");O.width=F.d;O.height=F.v;var I=O.getContext("2d");I.beginPath();I.translate(-F.x,-F.y); +Typr.U.pathToContext({cmds:n.s,crds:n.H},I);I.closePath();I.fill();var x=q.f(F.X()),r=I.getImageData(0,0,O.width,O.height); +q.xg(r.data,x,3);return{rect:F,channel:x}};c.pQ.TX=function(n,F,O,I,x){if(O)F=Math.round(F*.7);var r=Math.ceil(2.6*F),_=n.rect.clone(); +_.EM(r,r);if(I&&!x)_=_.lN(I);var d=q.f(_.X()),w=q.f(d.length);q.k9(n.channel,n.rect,w,_);q.Mo.MU(w,d,_,F); +if(O){var Z=d.length;for(var e=0;e1e-9||!C||r||d)W=this.o4(n,F,!0,P,1,I);var L=new hS(this.name,this),H=new gv(0,0,n.d,n.v); +L.data={NG:H,Si:x,w3:W,ON:P,ql:n.a.n.clone(),dj:c.jz.Cm(n,x,H,!1)};n.p$(L);this.Xe(L.data,n);this.track(c.jz.FK([I.x,I.y,I.d,I.v]))}; +c.jz.prototype.abR=function(n,F){var O=q.J.N5(F),I=q.J.nn(O),x=q.J.fK(O),r=x.hb,_=x.i9,d=Math.atan2(x.O,x.R); +x.rotate(d);var w=new gv(r,_,x.R,x.oQ);if(!I){function Z(J,e,A){var p=J[e]-J[A],U=J[e+1]-J[A+1];return Math.sqrt(p*p+U*U)}var P=Z(F,0,2),C=Z(F,4,6),W=Math.max(P,C),v=Z(F,2,4),L=Z(F,6,0),H=Math.max(v,L),y=c.jz.aeF(F,n.d/2,n.v/2),g,Q; +if(isNaN(y)||y==Infinity||y==-Infinity||Math.min(y,1/y)<.1)y=(P+C)/(v+L);if(W/H>y){g=W*1;Q=g/y}else{Q=H*1; +g=Q*y}w.d=g;w.v=Q}w.x=Math.round(w.x);w.y=Math.round(w.y);w.d=Math.round(w.d);w.v=Math.round(w.v);return w}; +c.jz.aeF=function(n,F,O){var I=n[0]-F,x=n[1]-O,r=n[2]-F,_=n[3]-O,d=n[6]-F,w=n[7]-O,Z=n[4]-F,P=n[5]-O,C=((x-P)*d-(I-Z)*w+I*P-x*Z)/((_-P)*d-(r-Z)*w+r*P-_*Z),W=((x-P)*r-(I-Z)*_+I*P-x*Z)/((w-P)*r-(d-Z)*_+d*P-w*Z),v=-((W*w-x)*(C*_-x)+(W*d-I)*(C*r-I))/((W-1)*(C-1)); +function L(y){return y*y}var H=Math.sqrt((L(C-1)+L(C*_-x)/v+L(C*r-I)/v)/(L(W-1)+L(W*w-x)/v+L(W*d-I)/v)); +if(C==1&&W==1)H=Math.sqrt((L(_-x)+L(r-I))/(L(w-x)+L(d-I)));return H};c.jz.prototype.disable=function(n,F,O,I){if(n==null)return; +if(this.MO)this.MO.clear(n);this.MO=null;this.ZY(F,V.E.P,{e:V.U.hO,T:this.id,bl:!1})};c.jz.prototype.ZY=function(n,F,O,I){var x=new k(F,!0); +x.data=O;if(I)x.T=I;n.A(x)};c.IC=function(){c.jz.call(this,[10,2],c.qa,"tools/rcrop")};c.IC.prototype=new c.jz; +c.k7=function(){c.jz.call(this,[10,39],c.Af,"tools/pcrop")};c.k7.prototype=new c.jz;c.oG=function(){c.P6.call(this,[10,21],c.PY,"tools/dodge"); +this.W6="dodge"};c.oG.prototype=new c.P6;c.oG.prototype.XS=function(n,F,O,I,x){this.yW(n,O,I,x,this.ka.expo/Math.PI); +if(this.IY==null)return;this._t(n)};c.oG.prototype.RL=function(n,F,O,I,x){this.K9(n,F,O);if(this.wh)this.dh(n,O,x); +if(this.IY==null)return;if(!x.rt)return;this.ID(n,O,I,x);this._t(n)};c.ew=function(){c.P6.call(this,[10,3],c.CV,"tools/eraser"); +this.W6="erase"};c.ew.prototype=new c.P6;c.ew.prototype.XS=function(n,F,O,I,x){this.yW(n,O,I,x,this.ka.flow); +if(this.IY==null)return;this._t(n)};c.ew.prototype.RL=function(n,F,O,I,x){this.K9(n,F,O);if(this.wh)this.dh(n,O,x); +if(this.IY==null)return;if(!x.rt)return;var r=this.ID(n,O,I,x);this._t(n)};c.pG=function(){c.P6.call(this,[10,45],c.a91,"tools/beraser"); +this.W6="ierase"};c.pG.prototype=new c.P6;c.pG.prototype.XS=function(n,F,O,I,x){if(this.Dk(I,F,x))return; +this.yW(n,O,I,x,this.ka.flow);if(this.IY==null)return;this._t(n)};c.pG.prototype.RL=function(n,F,O,I,x){this.K9(n,F,O); +if(this.wh)this.dh(n,O,x);if(this.IY==null)return;if(!x.rt)return;this.ID(n,O,I,x);this._t(n)};c.BV=function(){c.pQ.call(this,[10,15],c.FT,"tools/rselect"); +this.IF="crosshair"};c.BV.prototype=new c.pQ;c.BV.prototype.BO=function(n,F,O,I){if(!I.rt||!this.Sl)return; +var x=this.nJ(n,O,!0);n.M.qD=q.z.om(x);n.zB=!0;c.Fq.Ji(I.x+10,I.y-10,x,n,F)};c.BV.prototype.lu=function(n,F,O,I){n.M.qD=null; +n.M.s3=[];n.zB=!0;this.finish(n,F,O,I)};c.BV.prototype.getSelection=function(n,F,O,I){if(this.nh.Qq(this.v4)||!this.Sl)return null; +var x=this.nJ(n,O,!0);if(x.D2())return null;return c.pQ.ZA("Rctn",x)};c.Jp=function(){c.pQ.call(this,[10,4],c.alm,"tools/eselect"); +this.IF="crosshair"};c.Jp.prototype=new c.pQ;c.Jp.prototype.BO=function(n,F,O,I){if(!I.rt||!this.Sl)return; +var x=this.nJ(n,O);n.M.qD=c.Jp.i4(x);n.zB=!0;c.Fq.Ji(I.x+10,I.y-10,x,n,F)};c.Jp.prototype.lu=function(n,F,O,I){n.M.qD=null; +n.M.s3=[];n.zB=!0;this.finish(n,F,O,I)};c.Jp.prototype.getSelection=function(n,F,O,I){if(this.nh.Qq(this.v4)||!this.Sl)return null; +var x=this.nJ(n,O);if(!x.G3(new gv(0,0,n.d,n.v)))return null;return c.pQ.ZA("Elps",x)};c.Jp.i4=function(n){var F=n.x,O=n.y,I=n.x+n.d,x=n.y+n.v,r=(F+I)/2,_=(O+x)/2,d=(F-I)/2,w=(O-x)/2,Z=.5522848,P={H:[r,_-w],s:["M","C","C","C","C"]}; +P.H.push(r+Z*d,_-w,r+d,_-Z*w,r+d,_);P.H.push(r+d,_+Z*w,r+Z*d,_+w,r,_+w);P.H.push(r-Z*d,_+w,r-d,_+Z*w,r-d,_); +P.H.push(r-d,_-Z*w,r-Z*d,_-w,r,_-w);return P};c.pm=function(){c.Fq.call(this,[10,5],c.SQ,"tools/eyedropper"); +this.aR=!1;this.q5=1};c.pm.prototype=new c.Fq;c.pm.prototype.jn=function(n){return n.rt};c.pm.prototype.fM=function(n,F,O,I,x){if(n.e=="pickhere")this.Mp(O,F,x,I,n.anC)}; +c.pm.prototype.XS=function(n,F,O,I,x){this.aR=!0;this.Mp(n,F,O,I,x)};c.pm.prototype.RL=function(n,F,O,I,x){if(this.aR)this.Mp(n,F,O,I,x)}; +c.pm.prototype._X=function(n,F,O,I,x){this.aR=!1};c.pm.prototype.Mp=function(n,F,O,I,x){var r=c.pm.cD(n,x,this.q5),_=new k(V.E.P); +_.data={e:V.U.g7,b9:cf.dM,G1:0,G:r};F.A(_)};c.pm.cD=function(n,F,O){var I=n.a.jR(F.x,F.y),x=Math.floor(I.x),r=Math.floor(I.y),_=(O-1)/2,d=Math.max(0,x-_),w=Math.max(0,r-_),Z=Math.min(n.d,x+_+1),P=Math.min(n.v,r+_+1),C=(Z-d)*(P-w),W=n.dH(),v=0,L=0,H=0; +for(var x=d;x2){var v;if(n.N)v=n.N.rect;else v=new gv(0,0,n.d,n.v);var L=q.f(v.X()*4),H=this.ka,y=H.fg;if(y!="Lnr"){P*=2; +w=this.y$}q.W.Vt(H.W,L,v,[W*1/P,C*1/P,-C*1/P,W*1/P],w.x,w.y,H.Ay,bW.W.types.indexOf(y),O.nE,O.sI,null,H.anY); +var g=Math.round(H.c1*256),Q=L.length;if(g!=256)for(var e=0;e>>8;var J=new k(V.E.S); +J.T=c.CV;J.data={e:"fillBMP",Tv:L,QP:H.amo,WL:this.name};F.A(J)}n.M.qD=null;n.M.Ri=[];n.zB=!0;this.Yb=!1}; +c.AG.J6=function(n,F){if(n.Qq(F))return n;var O=F.x-n.x,I=F.y-n.y,x=Math.abs(O),r=Math.abs(I);if(x>r)r=x/2>r?0:x; +if(r>x)x=r/2>x?0:r;x=O>0?x:-x;r=I>0?r:-r;var _=Math.sqrt(O*O+I*I)/Math.sqrt(x*x+r*r);return new aE(n.x+x*_,n.y+r*_)}; +c.AG.JC=function(n,F,O,I,x,r,_){if(_==null)_=V.w("canvas","");var d=_.getContext("2d");_.width=F;_.height=O; +var w=new gv(0,0,F,O),Z=q.f(F*O*4);q.GE(Z,F,O,4);var P=Math.sin(I),C=Math.cos(I),W=q.f(F*O*4);q.W.Vt(n,W,w,[C*1/F,P*1/F,-P*1/O,C*1/O],F/2,O/2,!1,0,x,r); +q.p.F_("norm",W,w,Z,w,w,1);var v=d.getImageData(0,0,F,O);q.Ct(Z,v.data);d.putImageData(v,0,0);return _.toDataURL()}; +c.AG.a65=function(n,F,O){var I=JSON.parse(JSON.stringify(n));for(var e=0;e>16&255,l:_>>8&255,O:_&255})}}return I}; +c.GO=function(){c.Fq.call(this,[10,7],c.Ud,"tools/hand");this.T4=new aE(0,0);this.q_=null};c.GO.prototype=new c.Fq; +c.GO.prototype.fM=function(n,F,O,I,x){var r=n.e;if(r=="setcls"){O.a.o=n.o;O.zB=!0;O.T3=!0}if(r=="scroll"&&!I.q(u.pI)){if(I.q(u.ep))c.GO.OH(O,O.a.n.x-n.dt.y,O.a.n.y-n.dt.x); +else c.GO.OH(O,O.a.n.x-n.dt.x,O.a.n.y-n.dt.y)}};c.GO.prototype.enable=function(n,F,O,I){this.q_=null; +var x=new k(V.E.P,!0);x.data={e:V.U.VC,dx:"grab"};F.A(x)};c.GO.prototype.XS=function(n,F,O,I,x){this.q_=n.a.n.clone(); +this.T4.mT(x.x,x.y)};c.GO.prototype.RL=function(n,F,O,I,x){if(!x.rt)return;if(this.q_==null)this.XS(n,F,O,I,x); +c.GO.OH(n,this.q_.x+(x.x-this.T4.x),this.q_.y+(x.y-this.T4.y))};c.GO.prototype._X=function(n,F,O,I,x){this.q_=null}; +c.GO.OH=function(n,F,O){var I=n.a.K;if(n.d*I=0;e--){var O=n.t[e];if(O.add.TySh&&O.rect.JX(F)&&n.sz(e)){var I=O.LF(2)||O.LF(31); +return I?-2:e}}return-1};c.Zh.prototype.XS=function(n,F,O,I,x){this.KH=n;this.Hs=O;this.caller=F;var r=n.a.jR(x.x,x.y),_=this.fO==null; +if(_){var d=c.Zh.Ix(n,r);if(d==-2){alert(hl.get([6,57,0]));return}if(d>=0){if(!cJ.Xk(n.t[d].add.TySh,O.sH)){alert("Fonts not loaded yet"); +return}this.C$(n,F,O,[d])}else{this.iR=!0;this.o1=x;return}}var w=_?-1:bt.oB(this.fO.add.TySh.Vb),Z=this.wI?this.wI:this.MO; +if(Z&&Z.XS(n,O,I,r)&&q.qF.x9(this.fO.add.TySh.Gp)||!_&&q.z.oJ(r,this.fO.rect)>20/n.a.K&&(w==0||w==1)){this.qn=!0; +this.ii=r;this.aiM=this.fO.add.TySh.m.clone();if(this.Pu==-1&&this.EN==-1)this.Pu=this.EN=this.ck(r)}else{if(this.J3==null){alert("Fonts not loaded yet"); +return}this.VT=!0;this.Pu=this.EN=this.ck(r);var P=Date.now();if(P-this.a8L>300)this.eZ=0;this.eZ++; +this.a8L=P;if(this.eZ==2)this.a72();if(this.eZ==3)this.ak7();if(this.eZ>1){this.VT=!1}}this.Fh();this.A4(n)}; +c.Zh.prototype.C$=function(n,F,O,I){var x=n.t[I[0]];this.fO=x;this.ZY(F,V.E.P,{e:V.U.hO,T:this.id,ma:"showactive"}); +this.de=I;n.C=I.slice(0);n.Mu();n.wD=!0;this.CB=this.Ty(n,I);this.y2(x.add.TySh);this.kq(n,O)};c.Zh.prototype.y2=function(n){if(bt.oB(n.Vb)!=1)return; +var F=bt.Kp(n.Vb);F=new gv(0,0,F[2]-F[0],F[3]-F[1]);var O=[F.x,F.y,F.x+F.d,F.y,F.x+F.d,F.y+F.v,F.x,F.y+F.v]; +q.z.m(O,n.m,O);this.MO=new g_(O,!1,!1,!1,!0)};c.Zh.prototype.a72=function(){var n=bt.fQ(this.fO.add.TySh.Vb); +this.Pu=this.YM(n,this.Pu);this.EN=this.Ms(n,this.Pu)};c.Zh.prototype.YM=function(n,F){var O=" \t\n,.?!_-+=@#$%^&*'\"(){}[]\\/<>:;|",I=[]; +for(var e=0;e=0;e--)if(I.indexOf(n.charAt(e))!=-1==x)return e+1; +return 0};c.Zh.prototype.Ms=function(n,F){var O=" \t\n,.?!_-+=@#$%^&*'\"(){}[]\\/<>:;|",I=[];for(var e=0; +e20/n.a.K)d="move";else if(c.Zh.Ix(n,r)>=0)d="text"; +if(d!=this.gO){this.gO=d;this.pa(F)}}var C=this.o1;if(this.iR&&Math.min(x.x-C.x,x.y-C.y)>4/n.a.K){this.iR=!1; +this.B7(n,F,O,I,x);_=this.fO;this.qn=!0;this.MO=new g_(null,!1,!1,!1,!0);var W=n.a.jR(this.o1.x,this.o1.y); +W.x=Math.round(W.x);W.y=Math.round(W.y);this.MO.XS(n,O,I,W)}if(this.qn){var v=_.add.TySh;if(this.wI){this.wI.RL(n,O,I,r); +var L=q.J.fK(q.J.N5(this.wI.PZ(),this.a6E));v.m=L;this.kq(n,O);bt.Sg(v)}else if(this.MO){this.MO.RL(n,O,I,r); +var H=v.m.clone(),y=Math.atan2(H.O,H.R);H.rotate(y);var L=q.J.fK(q.J.N5(this.MO.PZ())),g=Math.atan2(L.O,L.R); +L.rotate(g);if(!isNaN(L.R)&&L.R*L.oQ-L.O*L.Pr!=0){var Q=new gv(0,0,L.R/H.R,L.oQ/H.oQ),J=Math.round(Q.d),A=Math.round(Q.v),p=v.Vb.Curve; +if(p){var U=bt.Kp(v.Vb),j=new cD(J/U[2],0,0,A/U[3],0,0);q.z.m(p.Points,j,p.Points);bt.Sg(v)}bt.Ar(v.Vb,[0,0,J,A]); +v.m=q.J.fK(q.J.N5(this.MO.PZ(),Q));this.kq(n,O);bt.Sg(v)}}else{var b=r.x-this.ii.x,s=r.y-this.ii.y;v.m=this.aiM.clone(); +var G=new aE(v.m.hb+b,v.m.i9+s);G=c.eB.J_(n,G,O);v.m.hb=G.x;v.m.i9=G.y;this.kq(n,O)}}if(this.VT)this.EN=this.ck(r); +if(this.qn||this.VT)this.A4(n)};c.Zh.prototype.B7=function(n,F,O,I,x){var r=n.Y1(),_=r[0],d=r[1],w=n.Kv(); +w.add.lnsr="rend";var Z=n.t.slice(0);w.V9("Text layer "+Z.length);this.fO=w;var P=n.C.length==0?n.t.length-1:n.C[n.C.length-1],C=P+1; +if(Z[P].add.lsct==ho.x7)C--;this.CB={ft:Z.slice(0),xA:n.C.slice(0)};Z.splice(C,0,w);n.C=[C];this.Pu=this.EN=0; +n.xc(Z);this.CB.Dn=Z.slice(0);this.CB.pi=n.C.slice(0);this.ZY(F,V.E.P,{e:V.U.hO,T:this.id,ma:"showactive"}); +var W=n.a.jR(x.x,x.y);w.add.TySh=bt.Cc(W.x,W.y,O.tV);var v=w.add.TySh,L=v.Vb;bt.yv(v,this.mX);if(x.rt)bt.li(L,1); +else{bt.li(L,0);var H=_[d.pop()],y=H?H.add.vmsk:null;if(y){y=y.clone();var g=y.b,J,A;for(var e=0;e0&&I.charAt(this.Pu-1)!=x.charAt(this.Pu-1))this.Pu--}var d=I.substring(0,this.Pu),w=I.substring(this.EN,I.length),Z=x.substring(this.Pu,x.length-w.length); +bt.od(O.Vb,this.Pu,this.EN);bt.bw(O.Vb,this.Pu,Z);var P=this.KQ(this.Hs,O),W=-1,v=Array.from(Z);for(var e=0; +e128&&P.Bw.Font!=null){var L=P.D0[P.Bw.Font].Name,H=this.Hs.sH.m2(W,L,P.D0); +if(L!=H){bt.Zu(P,H);C=!0}}if(this.lX!=null&&Z==this.lX){var y=JSON.parse(this.ajo);P.Bw=y.Bw;P.D0=y.D0; +C=!0}bt.F$(O.Vb,this.Pu,this.Pu+Z.length-1,P);this.Pu=this.EN=d.length+Z.length;var g=this.KH,Q=this.kq(g,this.Hs,!0); +if(Q)this.A4(g,!0);if(C)this.Fh()};c.Zh.prototype.alF=function(n){if(this.fO==null||this.Kd)return;if(this.fO==null)return; +var F=u,O=0,I=0,g=!1;if(F.NW(n.code,F.nv))O=1;if(F.NW(n.code,F.q8))O=-1;if(F.NW(n.code,F.dE))I=-1;if(F.NW(n.code,F.ZW))I=1; +var x=n.ctrlKey||n.metaKey,r=F.NW(n.code,u.a71),_=F.NW(n.code,u.ae0);if(F.NW(n.code,u.Ma)&&x){this.h5(this.KH,this.caller); +return}if(F.NW(n.code,u.BS)){n.preventDefault();var d=this.eL,w=d.value,Z=d.selectionStart,P=d.selectionEnd; +d.value=w.substring(0,Z)+"\t"+w.substring(P);d.selectionStart=d.selectionEnd=Z+1;this.qx(null);return}if((F.NW(n.code,F.Te)||F.NW(n.code,F.Tm))&&x){var C=this.Pu,W=this.EN; +if(C>W){var v=C;C=W;W=v}var L=this.fO.add.TySh,H=bt.fQ(L.Vb);if(C!=W){this.lX=H.slice(C,W);this.ajo=JSON.stringify(this.Hs.tV)}}var y=bt.fQ(this.fO.add.TySh.Vb); +if(O!=0||I!=0||r||_){n.preventDefault();var Q=this.Pu;if(O!=0){if(x&&O==-1)Q=this.YM(y,this.Pu-1);else if(x&&O==1)Q=this.Ms(y,this.Pu); +else{var d=this.eL,w=d.value;Q=this.Pu+O;if(Q!=0&&w.codePointAt(Q-1)>65535)Q+=O}}else if(I!=0){var J=this.J3.Y7(this.Pu); +if(I==-1&&J.Re==0)Q=0;else if(I==1&&J.Re==this.J3.a7z()-1)Q=99999999999;else Q=this.J3.tP(new aE(J.j.x+J.j.d/2,0),J.Re+I)}else if(r){var A=this.Pu-1; +while(A>0&&y.charCodeAt(A)!=10)A--;Q=A==0?0:A+1}else if(_){var A=this.Pu;while(A1&&O.q(u.pI)){x.H.pop();x.H.pop();x.H.push(this.v4.x,this.v4.y); +n.M.qD=x;n.zB=!0}return}x.s.push("L");x.H.push(this.v4.x,this.v4.y);this.dJ=this.v4;if(this.Sl){n.M.qD=x; +n.zB=!0}};c.OE.prototype.A5=function(){return this.bK!=null};c.OE.prototype.c0=function(){return this.bK!=null}; +c.OE.prototype.Ka=function(n,F,O,I){c.pQ.prototype.Ka.call(this,n,F,O,I);if(this.bK&&this.rp>1&&this.ii&&!this.ii.rt&&!I.q(u.pI))this.PG(n,O,I)}; +c.OE.prototype.lu=function(n,F,O,I){this.ii=I;var x=this.bK;if(x==null)return;if(this.rp>1&&O.q(u.pI)){x.s.push("L"); +x.H.push(this.v4.x,this.v4.y);return}this.PG(n,F,O)};c.OE.prototype.PG=function(n,F,O){this.finish(n,F,O,this.ii); +this.bK=null;n.M.qD=null;n.zB=!0};c.OE.prototype.getSelection=function(n,F,O,I){if(this.nh.Qq(this.v4)||!this.Sl)return null; +return c.pQ.TS(this.bK.H)};c.eB=function(){c.Fq.call(this,[10,11],c.AK,"tools/move");this.Ya=new aE(0,0); +this.EX=new aE(0,0);this.c_=null;this.w6=null;this.$i=new aE(0,0);this.qE=null;this.GL=null;this.ta=null; +this.SH=0;this.Vy=null;this.ot=[];this.lE=null;this.Yb=!1;this.e=0;this.YF=null;this.nB=null;this.tA=null; +this.ld=!1;this.ka={Xi:!1,Dm:!1,vY:!1};this.a78=!1;this.a0A=!1;this.MO=null;this.Vk=null;this.amV=null; +var n=[];for(var e=0;eW?[23,3]:[23,4];if(W==0)P=[11,15,0]}else if(r=="gidsFromLayer"){var v=[[],[]];for(var e=0; +e")U++;var j=O.root.Dv(U),b=j; +while(j.parent!=null){j=j.parent;if(g.indexOf(j.index)!=-1)b=j}var s=A.indexOf(b.index);if(s==-1){s=A.length; +A.push(b.index)}J[e]=s}var G=[],T=[],z=[];for(var e=0;ex.y)r.push(w,x.y,w,I.y); +if(dx.x)r.push(x.x,Z,I.x,Z);if(_128}if(!w&&(!this.ld&&this.ka.Xi||this.ld&&this.ka.Xi&&(O.q(u.MQ)||n.C.length<2))){var y=this.a6m(n,d,O); +if(!y){n.C=[];n.a5=null;n._y=n.xT=!0;this.e=3;this.YF=new gv;this.Yb=!0;return}}if(O.q(u.pI)&&!w){var W=new k(V.E.S); +W.T=c.lo;W.data={e:K.bn,a8K:!0};F.A(W)}}if(n.P4.length!=0){this.e=4;this.lE=n.TM[n.P4[0]].rect.clone(); +this.Yb=!0;return}this.Vy=n.aV(r==null,r,null,!0);for(var e=0;e>2);q.xg(Q.HG.Cv,j,3)}else j=n.N.channel.slice(0); +var b={rect:Q.HG.JI.clone(),channel:j};this.tA=new hS(J?[12,53]:[12,54],this);this.tA.data={e:1,$:n.C[0],HG:Q.HG,Rd:p,hU:U,xA:n.N,pi:b,oQ:new aE(0,0)}; +n.p$(this.tA);n.N=b;n.NX=!0}}this.Yb=!0;this.lE=c.V.nJ(n)};c.eB.prototype.a6m=function(n,F,O){var I=n.root.q9(new aE(Math.floor(F.x),Math.floor(F.y))); +if(I){if(I.$.add.vmsk)n.zB=!0;var x=n.t.indexOf(I.$);if(O.q(u.MQ)){var r=n.C.indexOf(x);if(r==-1)n.C.push(x); +else if(n.C.length>1)n.C.splice(r,1)}else if(n.C.indexOf(x)==-1){this.Yk(n,x)}}return I!=null};c.eB.prototype.Yk=function(n,F){n.t[F].vE=0; +n.C=[F];n.a5=null;n.Mu();n.wD=!0;n._y=!0};c.eB.prototype.RL=function(n,F,O,I,x){this.c_=x;var r=n.a.jR(x.x,x.y),W,v; +if(this.w6&&this.e<2)r=this.w6.sQ(r,I);if(!this.Yb){if(O.Yt&&O.Kc.fT){var _=this.OW(n,r),d="default"; +if(_)d=["col-resize","row-resize"][_[0]];else if(this.MO){var w=this.MO.n5(r,n.a.K);if(w)d=w}this.pa(d,F)}this.NS(n,r); +return}var Z=this.EX,P=Math.round(r.x-Z.x)-this.$i.x,C=Math.round(r.y-Z.y)-this.$i.y;if(this.lE){if(this.e==2){r=c.eB.J_(n,r,O,[!1,n.N?n.N.rect:this.lE,!0])}else{v=this.lE.clone(); +v.offset(this.$i.x+P,this.$i.y+C);W=c.eB.VO(n,v,O);P+=Math.round(W[0]);C+=Math.round(W[1])}}this.$i.x+=P; +this.$i.y+=C;this.$K(n,P,C,r,null,I.q(u.MQ));this.NS(n,r);if(W)c.eB.BU(n,v,W)};c.eB.prototype.OW=function(n,F){F=[F.x,F.y]; +for(var e=0;e<2;e++)for(var O=0;O0){var Q=Z.add.GdFl;if(Q==null)Q=Z.add.PtFl;if(Z.zX()&&!Z.uW()&&Z.add.vmsk!=null&&q.Y.zz(Z.add.vmsk.b)&&Z.add.vmsk.JP==255&&(Q==null||Q.Algn&&Q.Algn.v)){Z.rect.offset(d,w)}else Z.o3(n); +var J=n.root.zT(Z.Yg(n),n,F[e]);r=r.Tq(J);J.offset(-d,-w);r=r.Tq(J);if(Z.add.SoCo||Z.add.GdFl||Z.add.PtFl||dK.get(Z.add)!=null)r=r.Tq(_); +Z.HP()}}n.D(r)};c.eB.a5G=function(n,F){var O=[];for(var e=0;e>>r),F.x+F.d],[F.y,F.y+(F.v>>>r),F.y+F.v]],O,I); +return _};c.eB.YS=function(n,F,O,I){if(I==null)I=[!0,null,!0];var x=[0,0,1e9,1e9];if(!O.vf)return x; +var r=JSON.parse(JSON.stringify(F));for(var _=0;_<2;_++){var d=1e9,w=F[_],Z=0;for(var P=0;P>>1; +if(Math.abs(W.x-F)>>1; +if(Math.abs(W.y-F)>>1),W.y+(H>>>1),W.x+v,W.y+H]; +for(var e=0;e<6;e+=2)if(Math.abs(b[e+I]-F)>>1,H>>>1,v,H]; +for(var e=0;e<6;e+=2)if(Math.abs(b[e+I]-F)n.d||F.y<0||F.y>n.v)return null; +var _=new gv(0,0,n.d,n.v);if(x==null&&_.Qq(I.rect))r=I.buffer;else{r=q.f(_.X()*4);if(x==null)q.nF(I.buffer,I.rect,r,_); +else c.P6.AA(x.channel,x.rect,x.color,r,_)}var d=c.hB.xi(r,_,F,null,O),w=q.$o(d,_),Z=q.f(w.X());q.k9(d,_,Z,w); +return{rect:w,channel:Z}};c.hB.QR=function(n,F,O){var I=F.d,x=F.v,_=0,d=0,w=0,Z=0;n=new Uint32Array(n.buffer); +var r=[],P=O.length;for(var e=0;e>8&255,H>>16&255,H>>>24])}return r}; +c.hB.xi=function(n,F,O,I,x){n=new Uint32Array(n.buffer);var r=F.d,_=F.v,d=r*_;if(I==null)I=c.hB.QR(n,F,[O]); +var w=Math.round(O.x-.5-F.x),Z=Math.round(O.y-.5-F.y),P=Z*r+w,C=Date.now(),W=q.f(r*_),v=x[0],L=1/v,H=x[1]&&v>0?255:0; +if(x[2]){var y=q.f(W.length),g=new Uint32Array(d),Q=1;g[0]=w<<16|Z;y[P]=1;while(Q>0){var J=g[Q-1];Q--; +var A=J>>>16,p=J&65535,e=p*r+A,U=c.hB.tM(n[e],I);if(U>v){var j=H*(1-Math.max(0,Math.min(1,(U-v)*L))); +W[e]=~~j}else{W[e]=255;if(p!=_-1&&y[e+r]==0){g[Q++]=A<<16|p+1;y[e+r]=1}if(p!=0&&y[e-r]==0){g[Q++]=A<<16|p-1; +y[e-r]=1}if(A!=r-1&&y[e+1]==0){g[Q++]=A+1<<16|p;y[e+1]=1}if(A!=0&&y[e-1]==0){g[Q++]=A-1<<16|p;y[e-1]=1}}}}else{for(var e=0; +e0&&(W[e-1]==255||p>0&&W[e-r-1]==255||p<_-1&&W[e+r-1]==255)||A0&&W[e-r+1]==255||p<_-1&&W[e+r+1]==255)||p>0&&W[e-r]==255||p<_-1&&W[e+r]==255)){var U=c.hB.tM(n[e],I),j=H*(1-Math.max(0,Math.min(1,(U-v)*L))); +W[e]=~~j}}}return W};c.hB.tM=function(n,F){var O=F.length,I=c.hB.KB(n,F[0]),e=1;while(e!=O){I=Math.min(I,c.hB.KB(n,F[e])); +e++}return I};c.hB.KB=function(n,F){var O=n&255,I=n>>>8&255,x=n>>>16&255,r=n>>>24&255;if(F[3]==0)return r<5?0:255; +var _=Math.max(Math.abs(O-F[0]),Math.max(Math.abs(I-F[1]),Math.abs(x-F[2])));return r==0?255:_};c.bt=function(n,F){if(F)c.P6.call(this); +else if(n)c.P6.call(this,[10,49],c.ac,"tools/camove");else c.P6.call(this,[10,26],c.B_,"tools/patch"); +this.dJ=null;this.bK=null;this.n=null;this.bp=null;this.Vr=new aE;this.L3=null;this.FJ=null};c.bt.prototype=new c.P6; +c.bt.prototype.XS=function(n,F,O,I,x){var r=n.a.jR(x.x,x.y);if(n.N&&q.q9(r,n.N.channel,n.N.rect)){var _=new gv(0,0,n.d,n.v),d=_.lN(n.N.rect); +if(!n.f7()||d.D2())return;if(!0){var w=q.f(d.X());q.k9(n.N.channel,n.N.rect,w,d);n.N={channel:w,rect:d}}this.Pa(n); +this.p2(n);this.bp=r;this.Vr=new aE(r.x-n.N.rect.x,r.y-n.N.rect.y);this.FJ=q.f(n.N.rect.X()*4);this.FJ.fill(255); +if(this.ka.patch==1){var Z=n.t[n.C[0]];Z.hz(n,n.N,!0);if(Z.HG==null)this.bp=null}this.L3=n.N.rect.clone()}else{this.bK={H:[r.x,r.y],s:["M"]}; +this.dJ=r}};c.bt.prototype.RL=function(n,F,O,I,x){var r=n.a.jR(x.x,x.y);if(this.bp){if(this.ka.patch==1){if(n.P4.length==0){var _=n.t[n.C[0]].HG,d=r.x-this.Vr.x,w=r.y-this.Vr.y; +c.eB.d6(n,n.C[0],Math.round(d-_.JI.x),Math.round(w-_.JI.y))}}else this.pj(n,r,"clone")}if(this.dJ){this.bK.s.push("L"); +this.bK.H.push(r.x,r.y);this.dJ=r;n.M.qD=this.bK;n.zB=!0}};c.bt.prototype._X=function(n,F,O,I,x){var r=n.a.jR(x.x,x.y); +if(this.bp){var _=n.N.rect.clone();if(this.id==c.ac){var d=n.t[n.C[0]];d.jB(n,d.HG);n.N.rect=this.L3.clone(); +var w=q.f(n.N.rect.X()*4);q.GF(n.N.channel,w,3);this.cx(n,"sheal",w,n.N.rect,n.N.rect);n.N.rect=_;_=_.Tq(this.L3)}this.pj(n,r,"heal"); +this.finish(n,_,null,null,!0);n.D(_);this.bp=null}if(this.dJ){var Z=c.pQ.d$(this.ka.setop,I.q(u.MQ),I.q(u.pI)),P=new k(V.E.JA,!0); +if(this.bK.H.length<=4)P.data=c.pQ.YN();else P.data=c.pQ.TS(this.bK.H,Z);F.A(P);this.dJ=null;n.M.qD=null; +n.zB=!0}};c.bt.prototype.Md=function(){return this.n};c.bt.prototype.wl=function(n,F,O,I,x){c.P6.prototype.wl.call(this,n,F,O,I,x); +this.pa(x,I)};c.bt.prototype.pa=function(n,F){var O="auto;";if(F!=null&&F.q(u.MQ)&&!F.q(u.pI)||this.ka.setop=="union")O="copy"; +var I=new k(V.E.P,!0);I.data={e:V.U.VC,dx:O};if(this.caller)this.caller.A(I)};c.bt.prototype.pj=function(n,F,O){var I=new aE(Math.round(this.bp.x-F.x),Math.round(this.bp.y-F.y)); +if(this.ka.patch==1)I.mT(-I.x,-I.y);this.n=I;this.cx(n,O,this.FJ,n.N.rect,n.N.rect);this.D(n,n.N.rect)}; +c.Xj=function(){c.bt.call(this,!0);this.ka.patch=1};c.Xj.prototype=new c.bt(!0,!0);c.NP=function(){c.P6.call(this,[10,13],c.aji,"tools/pbucket")}; +c.NP.prototype=new c.P6;c.NP.prototype.enable=function(n,F,O,I){var x=new k(V.E.P,!0);x.data={e:V.U.VC,dx:"default"}; +F.A(x)};c.NP.prototype.XW=function(n,F){};c.NP.prototype._X=function(n,F,O,I,x){if(this.Dk(I,F,x))return; +if(!n.f7())return;var r=n.a.jR(x.x,x.y),_=c.hB.rz(n,r,this.ka.wconf);if(_==null)return;var d=q.f(_.rect.X()*4); +q.IW(d,(O.nE&255)<<16|(O.nE>>8&255)<<8|(O.nE>>16&255)<<0);q.GF(_.channel,d,3);this.Pa(n);this.cx(n,"draw",d,_.rect,_.rect); +this.D(n,_.rect);this.finish(n,_.rect)};c.Iq=function(){c.pQ.call(this,[10,14],c.am3,"tools/plasso"); +this.IF="crosshair";this.f9=[];this.Mc=null;this.bK=null;this.a3K=0};c.Iq.prototype=new c.pQ;c.Iq.prototype.disable=function(n,F,O,I){this.KT(n)}; +c.Iq.prototype.R3=function(n,F,O,I){this.f9=[u.lW,u.pf]};c.Iq.prototype.JF=function(n){return this.f9.indexOf(n)!=-1}; +c.Iq.prototype.jn=function(n){return this.bK!=null};c.Iq.prototype.c0=function(){return this.bK!=null}; +c.Iq.prototype.A5=function(){return this.bK!=null};c.Iq.prototype.BO=function(n,F,O,I){if(this.bK==null)return; +var x=this.bK,r=x.H,_=r.length-2,d=this.v4;if(this.rp>1&&O.q(u.pI)&&I.rt){r.push(0,0);x.s.push("L"); +_+=2}else if(O.q(u.MQ))d=c.AG.J6(new aE(r[_-2],r[_-1]),d);r[_]=d.x;r[_+1]=d.y;n.M.qD=x;n.zB=!0};c.Iq.prototype.lu=function(n,F,O,I){var x=Date.now(); +if(this.bK==null)this.bK={H:[this.v4.x,this.v4.y,this.v4.x,this.v4.y],s:["M","L"]};else{this.BO(n,F,O,I); +if(x-this.a3K<250||aE.sl(this.v4,new aE(this.bK.H[0],this.bK.H[1]))<5*V.Z()/n.a.K){this.Mc=this.bK;this.finish(n,F,O,I); +this.KT(n);return}this.bK.s.push("L");this.bK.H.push(this.v4.x,this.v4.y)}this.a3K=x;n.M.qD=this.bK}; +c.Iq.prototype.KT=function(n){this.bK=null;this.f9=[];if(n!=null){n.M.qD=null;n.zB=!0}};c.Iq.prototype.Ka=function(n,F,O,I){c.pQ.prototype.Ka.call(this,n,F,O,I); +if(I.q(u.YE)&&this.bK==null&&this.Mc&&n.N!=null){var x=new k(V.E.S);x.T=c.dA;x.data={e:"h_stepbck"}; +F.A(x);this.R3(n,O,I,null);this.bK=this.Mc;return}if(this.bK==null)return;if(I.q(u.lW)||I.q(u.pf)){this.bK.H.pop(); +this.bK.H.pop();this.bK.s.pop();this.BO(n,O,I)}if(I.q(u.Ma)){if(this.bK.H.length>4){this.Mc=this.bK; +this.finish(n,O,I)}this.bK=null}if(I.q(u.YE)){this.bK=null}n.M.qD=this.bK;n.zB=!0};c.Iq.prototype.getSelection=function(n,F,O,I){return c.pQ.TS(this.bK.H)}; +c.Jf=function(){c.pQ.call(this,[10,10],c.a9k,"tools/mlasso");this.IF="crosshair";this.f9=[];this.b=[]; +this.W8=[];this.Oc=[];this.d7=null;this.UZ=null;this.r6=null;this.SH=0;this.TL=0};c.Jf.prototype=new c.pQ; +c.Jf.prototype.disable=function(n,F,O,I){this.clear(n)};c.Jf.prototype.jn=function(n){return this.b.length!=0}; +c.Jf.prototype.A5=function(){return this.b.length!=0};c.Jf.prototype.JF=function(n){return this.f9.indexOf(n)!=-1}; +c.Jf.prototype.R3=function(n,F,O,I){this.f9=[u.lW,u.pf];var x=this.cl(this.nh,n);if(this.b.length!=0&&(aE.sl(x,this.b[0])<4*V.Z()/n.a.K||Date.now()-this.SH<300)){this.zH(n,this.b[0]); +this.finish(n,F,O);this.clear(n);return}this.SH=Date.now();if(this.b.length!=0)x=this.GI(x,n);else{var r=n.d,_=n.v,d=q.f(r*_),w=n.dH(),Z=r*_*4; +for(var e=0;e>>2]=~~(.5+q.iB(w[e],w[e+1],w[e+2])*(w[e+3]*(1/255)));this.d7=q.mi.amX(d,r,_); +this.r6=new Uint16Array(d.length)}this.zH(n,x);this.TL=O.q(u.pI)?1:0;this.lx(n)};c.Jf.prototype.zH=function(n,F){var O=this.b; +this.W8[O.length]=this.Oc.length;if(O.length!=0){q.mi.HC(this.UZ,F.y*n.d+F.x);var I=this.hm(n,F);I.reverse(); +var x=c.Jf.lZ(n,I);this.Oc=this.Oc.concat(x)}O.push(F);this.EV(n)};c.Jf.prototype.EV=function(n){var F=this.b[this.b.length-1],O=F.y*n.d+F.x; +this.UZ=q.mi.a3g(this.d7.CU,this.d7.AU,O);this.r6.fill(0)};c.Jf.prototype.cl=function(n,F){return new aE(Math.floor(Math.max(0,Math.min(F.d-1,n.x))),Math.floor(Math.max(0,Math.min(F.v-1,n.y))))}; +c.Jf.prototype.clear=function(n){this.Oc=[];this.b=[];this.W8=[];this.d7=null;this.UZ=null;this.r6=null; +if(n!=null){n.M.qD=null;n.M.Ri=[];n.zB=!0}this.f9=[]};c.Jf.prototype.BO=function(n,F,O,I){var x=this.b,r=x.length; +if(r==0)return;var _=this.GI(this.cl(this.v4,n),n),d=this.hm(n,_);for(var e=0;e30&&aE.sl(Z,x[r-1])>20){this.zH(n,Z);return}this.r6[w]++}if(this.TL==1&&I.rt)this.zH(n,_); +this.lx(n)};c.Jf.prototype.lx=function(n){var F=this.b;if(F.length!=0){var O=this.GI(this.cl(this.v4,n),n),I=this.hm(n,O); +I.reverse();var x=c.Jf.lZ(n,I),r=this.Oc.concat(x),_=n.M.qD={H:r,s:["M"]};for(var e=2;e5e3){console.log(r); +throw"e"}}return r};c.Jf.lZ=function(n,F){var O=[],I=n.d;for(var e=0;e=O||P<0||P>=I)continue; +q.mi.HC(this.UZ,P*O+Z);if(this.UZ.Gh[P*O+Z]O||F*x*1/2>I)x*=1/2;if(n*x*2/3>O||F*x*2/3>I)x*=1/2;else if(n*x>O||F*x>I)x*=2/3; +return x};c.yi.cF=function(n,F){var O=c.yi.Ip(n);if(F&&O==0)return n;if(!F&&O==c.yi.dk.length-1)return n; +return c.yi.dk[F?O-1:O+1]};c.yi.Ip=function(n){var F=0;while(c.yi.dk[F]>n)F++;return F};c.yi.jg=function(n,F,O,I){var x=n.KH; +if(I==0||I==null){I=c.yi.cF(n.K,O);if(I==n.K)return}var r=n.jR(F.x,F.y);if(x.d*I<=n.Nv.d&&x.v*I<=n.Nv.v){n.n.mT(0,0); +n.K=I}else{var _=n.eY(),d=n.K/I;_.translate(-r.x,-r.y);_.scale(d,d);_.translate(r.x,r.y);n.cL(_)}};c.yi.prototype.fM=function(n,F,O,I,x){if(n.e=="pzoom"){if(typeof n.G=="string")return; +n={e:"zoom",K:n.G/100}}var r=0,_=!1,d=null;if(n.e=="adapt"){var w=0;if(n.G=="pixel")w=1;if(n.G=="fitscr"){var w=0,Z=O.a.Nv.d,P=O.a.Nv.v; +w=Math.min((Z-14)/O.d,(P-14)/O.v)}d=new aE(Math.round(O.a.Nv.d/2),Math.round(O.a.Nv.v/2));r=w;c.yi.jg(O.a,d,_,r); +O.T3=!0}if(n.e.startsWith("multi")){function C(s){var G=s[0].x-s[1].x,T=s[0].y-s[1].y;return Math.sqrt(G*G+T*T)}function W(s){return new aE((s[0].x+s[1].x)/2,(s[0].y+s[1].y)/2)}var v=n.z1,L=W(v); +if(n.e=="multidown"){this.WS=[v,O.a.K,O.a.jR(L.x,L.y)]}else{r=this.WS[1]*C(v)/C(this.WS[0]);if(r>=1)r=Math.min(32,Math.round(r)); +else{var H=0,y=1e9,g=c.yi.dk;for(var e=0;eU){_=!1; +this.Jh=Math.min(this.Jh-U,U-1)}else return;c.yi.jg(O.a,d,_,r);O.T3=!0}if(n.e=="zoom"){d=n.c_?n.c_:new aE(Math.round(O.a.Nv.d/2),Math.round(O.a.Nv.v/2)); +if(n.K!=null)r=n.K;else _=n.Tk;c.yi.jg(O.a,d,_,r);O.T3=!0}if(n.e=="mskView"){var j=O.t[O.C[0]],b=j.vE==3?j.Fa(O).r:j.B1(); +if(n.G==0){O.a.o=[1,1,1];b.wC=!1}if(n.G==1){O.a.o=[1,1,1];b.wC=!0}if(n.G==2){O.a.o=[0,0,0];b.wC=!0}for(var e=0; +e>>16&255,l:n>>>8&255,O:n>>>0&255}); +this.ta.A(F)}};c.M2.prototype.fM=function(n,F,O,I,x){this.ta=F;if(n.e=="newfill"){if(n.j5==0){var r=new k(V.E.P,!0); +r.data={e:V.U.n$,cU:"colorpicker",eF:x.nE,KC:this.acN.bind(this)};F.A(r)}}else if(n.e=="pathedit"){var _=n.G1,d="",w=O.Hi.slice(0),Z=O.f$.slice(0),P=O.Hi.slice(0),C=O.f$.slice(0); +if(_=="rnm"){var W=-1-n.FI,v=w[W],L=fj.kh(n.name,v.add);if(W!=0)P[W]=L;else{C=[P.length];P.push(L);P[0]=fj.kh("Work Path")}d="Rename"}else if(_=="new"){P.push(fj.kh("Path "+w.length)); +C=[P.length-1];d="New"}else if(_=="del"){if(C.length==0)return;C.sort(function(s,X){return s-X});if(C[0]==0){P[0]=fj.kh(w[0].name); +C=C.slice(1)}var H=0;while(C.length!=0){P.splice(C[0]-H,1);C=C.slice(1);H++}d="Delete"}else if(_=="fromsel"){var y=P[0]=fj.kh("Work Path"); +C=[0];if(O.N==null)return;var g=O.N.channel.slice(0);for(var e=0;e128?2:1;var Q=O.N.rect.clone(); +Q.EM(1,1);var J=q.f(Q.X());q.k9(g,O.N.rect,J,Q);var A=ej.CO(J,Q.d,Q.v,Math.round(Q.X()*5e-4)),p=ej.Y1(A),U=new cD(1,0,0,1,-1+O.N.rect.x,-1+O.N.rect.y); +for(var e=0;e0){var r=["SoCo","GdFl","PtFl"][x-1];for(var e=0;e<3;e++)delete n.add[["SoCo","GdFl","PtFl"][e]]; +n.add[r]=F.Gk}};c.vb=function(n,F,O,I){c.M2.call(this,n,F,O);this.ka={tmode:1,shape:fH.tc(),pshape:0,binop:0,crad:0,irad:40,length:4,sides:5,width:5,tolr:5,tsiz:300,cstr:{OI:0}}; +this.a9H=I;this.aG=null;this.DJ=null;this.oR=null};c.vb.prototype=new c.M2;c.vb.prototype.jn=function(n){return n.rt&&this.id!=c.oy}; +c.vb.prototype.enable=function(n,F,O,I,x){this.GL=O;var r=new k(V.E.P,!0);r.data={e:V.U.VC,dx:"crosshair"}; +F.A(r)};c.vb.prototype.RW=function(n,F,O,I){};c.vb.prototype.XS=function(n,F,O,I,x){var r=this.ka.tmode; +if(r!=2)this.XN(F,O);if(r==2&&!n.f7())return;var _=n.a.jR(x.x,x.y);_=c.eB.J_(n,_,O);this.oR=[_.x,_.y]; +this.aG=_;this.DJ=new aE(0,0)};c.vb.prototype.tz=function(n,F,O){var I=[this.aG.clone(),F.clone()];if(this.a9H)I=c.vb.YW(I[0],I[1],O,!0,this.ka.cstr); +if(n)n.a.LL=new gv(I[0].x,I[0].y,I[1].x-I[0].x,I[1].y-I[0].y);return this.RW(I[0],I[1],O.q(u.MQ),this.oR)}; +c.vb.prototype.Uu=function(n,F,O){var I=n.a.jR(F.x,F.y),x=this.ka.cstr;if(x.OI==2){var r=new gv(I.x-x.x,I.y-x.y,x.x,x.y),_=c.eB.VO(n,r,O); +I.x+=_[0];I.y+=_[1];c.eB.BU(n,r,_)}else I=c.eB.J_(n,I,O);return I};c.vb.prototype.RL=function(n,F,O,I,x){if(this.aG==null)return; +var r=this.oR,_=r.length,d=x?this.Uu(n,x,O):new aE(r[_-2],r[_-1]);if(I.q(u.cf))this.aG=d.ba(this.DJ); +else this.DJ=d.ba(this.aG);r.push(d.x,d.y);if(this.ka.shape==null)this.ka.shape=O.zx[0];var w=this.tz(n,d,I)[0],Z=q.z.qg(w); +n.M.qD=Z;if(this.id!=c.oy&&this.id!=c.d0&&this.id!=c.SK)c.Fq.Ji(x.x+10,x.y-10,n.a.LL,n,O);n.zB=!0};c.vb.prototype.akz=function(n,F,O,I){var x=n[4].clone(); +if(I){x.x-=F/2;x.y-=O/2}var r=this.RW(x,new aE(x.x+F,x.y+O),!1,this.oR);this.OB(n[0],n[1],n[2],r)};c.vb.prototype.OB=function(n,F,O,I){var x=new k(V.E.JA,!0); +x.data=c.vb.v$(I[1],O);F.A(x);if(I[1].v.classID=="customShape"&&I[1].v.Nm.v.startsWith("--")){var r=n.Y1(),_=r[0],d=r[1],w=_[d.pop()],Z=w.add.vmsk,P=w.add.vogk,C=Z.clone(); +C.b=I[0];this.No(n,w.FI,C,P)}};c.vb.prototype._X=function(n,F,O,I,x){if(this.aG==null)return;var r=this.Uu(n,x,O),_=this.ka.binop,d=this.ka.tmode,w=this.oR,Z=w.length; +if(this.id==c.oy&&Z<=4){}else if(Z<=4){r.x=Math.round(r.x);r.y=Math.round(r.y);var P=new k(V.E.P);P.data={e:V.U.n$,cU:"createshape",afI:this.akz.bind(this),a5z:this.name,abw:[n,F,O,I,r]}; +F.A(P)}else if(Z!=2){var C=this.tz(n,r,I),W=C[0];if(d==0&&W.length>2){W[2].Xu=[1,2,3,0][_];var v=n.Y1(!0),L=v[0],H=v[1],y=L[H.pop()],g=y.add.vmsk,Q=y.add.vogk,J=g.clone(),A=g.clone(),p=JSON.stringify(Q); +A.b=A.b.concat(W.slice(2));A.C=[q.Y._v(A.b)-1];var U=q.oK.tW(C[1]);Q.push(U?U:q.oK.CZ());this.No(n,y.FI,A,Q); +this.pR(n,this.name,y.FI,J,A,null,p,JSON.stringify(Q))}else if(d==1){this.OB(n,F,O,C)}else if(d==2){var A=new K.X9; +A.b=A.b.concat(W.slice(2));var j=A.B1(),b=q.f(j.rect.X()*4);q.IW(b,(O.nE&255)<<16|(O.nE>>8&255)<<8|(O.nE>>16&255)<<0); +q.GF(j.channel,b,3);var s=new k(V.E.S,!0);s.T=c.pY;s.data={e:"draw",SS:{buffer:b,rect:j.rect.clone()},WL:this.name}; +F.A(s)}}this.aG=null;n.M.qD=null;n.M.iA=null;n.M.s3=[];n.a.LL=null;n.zB=!0};c.vb.prototype.wl=function(n,F,O,I,x){for(var O in n)this.ka[O]=n[O]}; +c.vb.YW=function(n,F,O,I,x){var r=n.x,_=n.y,d=F.x,w=F.y;if(x&&x.OI==2){if(I){d=Math.round(d);w=Math.round(w)}r=d-x.x; +_=w-x.y}else{var Z=0;if(x&&x.OI==1)Z=x.y/x.x;else if(O&&O.q(u.MQ))Z=1;if(Z!=0){if(I){if(rr?r+W:r-W;w=w>_?_+W*Z:_-W*Z}if(O&&O.q(u.pI)){r-=d-r;_-=w-_}}var n=new aE(r,_),F=new aE(d,w); +if(I)c.vb.amF(n,F);return[n,F]};c.vb.amF=function(n,F){if(n.x>F.x){var O=n.x;n.x=F.x;F.x=O}if(n.y>F.y){var O=n.y; +n.y=F.y;F.y=O}n.x=Math.floor(n.x);n.y=Math.floor(n.y);F.x=Math.ceil(F.x);F.y=Math.ceil(F.y)};c.vb.a8R=function(){return{classID:"Mk",null:{t:"obj ",v:[{t:"Clss",v:{classID:"contentLayer"}}]},Usng:{t:"Objc",v:{classID:"contentLayer",Type:{t:"Objc",v:{}}}}}}; +c.vb.Lz=function(n,F){var O=c.vb.a8R();if(F==null)F=JSON.parse(JSON.stringify(bW.BR[n]));ci.ED.KW(F,O.Usng.v.Type.v,n); +return{oI:"make",Mk:O}};c.vb.v$=function(n,F){var O=F.XU,I=JSON.parse(JSON.stringify(F.tF));if(O.he==0)I.fillEnabled.v=!1; +var x=c.vb.Lz(Math.max(0,O.he-1),O.Gk);x.Mk.Usng.v.Shp=n;x.Mk.Usng.v.strokeStyle={t:"Objc",v:I};return x}; +c.Gz=function(){c.M2.call(this,[10,29],c.O_,"tools/pen");this.IS=null;this.vq=null;this.fz=1;this.aca=0; +this.Vs=null;this.g_=!1;this.jX=!1;this.P$=!1};c.Gz.prototype=new c.M2;c.Gz.prototype.jn=function(n){return this.IS!=null}; +c.Gz.prototype.Ka=function(n,F,O,I){c.M2.prototype.Ka.call(this,n,F,O,I);if(!I.q(u.pI))this.P$=!1};c.Gz.prototype.XS=function(n,F,O,I,x){this.XN(F,O); +var r=n.a.jR(x.x,x.y),v,L;r.x=Math.round(r.x);r.y=Math.round(r.y);var _=c.eB.J_(n,r,O),d=n.Y1(this.fz==0),w=d[0],Z=d[1],P=w[Z.pop()],C=P?P.add.vmsk:null,W=4*V.Z()/n.a.K; +if(C)v=q.Y.q9(C.b,r,!0,W);var H=I.q(u.pI);if(this.fz==1&&(C==null||C.oE.length==0&&v.FI==-1)){var y=new k(V.E.JA,!0),g=q.oK.Wd("customShape",[0,0,1,1],null,null,null,"--"); +y.data=c.vb.v$(g,O);F.A(y);d=n.Y1(!0);w=d[0];Z=d[1];P=w[Z.pop()];C=P.add.vmsk;C.b=C.b.slice(0,2)}var Q=P.add.vogk; +this.IS=C.clone();this.vq=JSON.stringify(Q);var J=C.b,A=q.Y._v(J);L=q.Y.x1(C.b,new gv(r.x-W,r.y-W,W*2,W*2),C.oE); +v=q.Y.q9(C.b,r,!0,W);var p=L[0].length+L[1].length+L[2].length;if(v.FI!=-1&&L[0].length==0){var U=q.Y.fR(J,v.FI); +while(J[U].length<=v.Yw){v.Yw-=J[U].length;U+=J[U].length+1}J[U].length++;J.splice(U+2+v.Yw,0,{type:4,pt:_.clone(),I:_.clone(),Cz:_.clone()}); +C.oE=[U+2+v.Yw]}else if(p!=0&&H){var j=0;for(var e=0;e<3;e++)if(L[e].length!=0){j=L[e][0];this.jX=e==1; +break}if(L[0].length!=0){var b=C.b.length-1,s=C.b[j];s.Cz=s.I.clone();var G=s.type>=3?3:0;if(j!=b){s.pt=s.I.clone(); +s.type=G+1;this.P$=!0}else s.type=G+2}C.oE=[j]}else if(L[0].length==1&&J[L[0][0]-1]&&J[L[0][0]-1].Xu==null){var j=L[0][0],U=q.Y.S8(J,j); +U=q.Y.fR(J,U);var T=U+J[U].length;if(j!=T){J[U].length--;J.splice(j,1);T--}C.oE=[T]}else{var z=0;if(C.oE.length!=1){C.C=[A]; +J.push({type:3,length:1,Xu:[1,2,3,0][this.aca],sa:0,g9:0,Qy:0});z=J.length;Q.push(q.oK.CZ())}else{var m=C.oE[0],$=q.Y.S8(J,m),U=q.Y.fR(J,$); +m=U+J[U].length;if(aE.sl(r,J[U+1].I)0}else{var y=this.lE.clone(),g=y.x,Q=y.y;y.offset(r.x-this.qH.x,r.y-this.qH.y); +y.x=Math.round(y.x);y.y=Math.round(y.y);var J=c.eB.VO(n,y,O),A=new cD(1,0,0,1,y.x-g+J[0],y.y-Q+J[1]); +q.Y.gS(d.b,A,d.C);q.oK.m(w,q.J.EC(A),d.C);c.eB.BU(n,y,J)}this.No(n,_.FI,d,w)}else{var p=this.qH;n.M.qD=q.z.om(new gv(p.x,p.y,r.x-p.x,r.y-p.y)); +n.zB=!0}};c.L9.prototype._X=function(n,F,O,I,x){if(this.qH==null)return;var r=n.a.jR(x.x,x.y),_=this.bK,d=_?_.add.vmsk:null; +if(this.ki){var w=JSON.stringify(_.add.vogk);if(!this.qH.Qq(r))this.pR(n,"Move Paths",_.FI,this.IS,d,null,this.vq,w); +if(n!=null&&n.M.iA){n.M.iA=null;n.zB=!0}}else{if(d){var Z=this.qH,P=new gv(Z.x,Z.y,r.x-Z.x,r.y-Z.y),C=q.Y.aif(d.b,P); +if(I.q(u.MQ)){for(var e=0;eZ+P)r[v]+=C}this.fv(I,x);I.oE=[]}this.No(this.Dh,this.bK.FI,I,x); +if(n=="cancel")this.KT()};c._V.prototype.disable=function(n,F,O,I){this.$N(n)};c._V.prototype.XS=function(n,F,O,I,x){this.$N(n); +var r=n.a.jR(x.x,x.y),C,W,v;this.m5=r.clone();var _=n.Y1(),d=_[0],w=_[1];if(w.length==0)return;var Z=4*V.Z()/n.a.K,P=new gv(r.x-Z,r.y-Z,Z*2,Z*2); +for(var L=0;L>>1);n.M.dl.push(G.x,G.y); +n.zB=!0}}}};c._V.prototype.$N=function(n){if(n&&n.M.dl.length!=0){n.M.dl=[];n.M.ye=[];n.zB=!0}};c._V.prototype._X=function(n,F,O,I,x){var r=n.a.jR(x.x,x.y),_=this.bK,d=_?_.add.vmsk:null,w=_?_.add.vogk:null; +if(this.pB!=-1){if(Date.now()-this.SH<300){var Z=d.b[this.pB],P=this.BH,C=null;if(P==0){var W=Z.pt.Qq(Z.I),v=Z.Cz.Qq(Z.I); +if(!W&&!v){C="Anchor Type";if(Z.type==1||Z.type==4)Z.type++;else{Z.type--;Z.Cz=Z.I.add(Z.I.ba(Z.pt))}}else{C="Add Handles"; +if(W&&v){Z.pt.x-=30;Z.Cz.x+=30}else if(W)Z.pt=Z.I.add(Z.I.ba(Z.Cz));else if(v)Z.Cz=Z.I.add(Z.I.ba(Z.pt))}}else{C="Remove Handle"; +if(P==1)Z.pt.mc(Z.I);else Z.Cz.mc(Z.I)}this.fv(d,w);this.No(n,_.FI,d,w);this.pR(n,C,_.FI,this.IS,d,null,this.vq,JSON.stringify(w))}else if(!this.m5.Qq(r)){this.pR(n,"Drag Anchors",_.FI,this.IS,d,null,this.vq,JSON.stringify(w))}this.SH=Date.now()}else if(this.qH!=null){var L=this.qH,H=new gv(L.x,L.y,r.x-L.x,r.y-L.y); +if(H.d<0)H.x+=H.d;if(H.v<0)H.y+=H.v;H.d=Math.abs(H.d);H.v=Math.abs(H.v);var y=q.Y.x1(d.b,H);d.oE=y[0].concat(I.q(u.MQ)?d.oE:[]); +n.M.qD=null}this.KT();n.zB=!0};c._V.prototype.KT=function(){this.bK=null;this.IS=null;this.qH=null;this.pB=this.BH=-1; +this.w6=null};c._V.prototype.fv=function(n,F){for(var e=0;e=H){v.C.splice(e,1); +e--}v.oE=[];this.No(n,d.FI,v,Z);this.pR(n,"Delete Anchors",d.FI,W,v.clone(),!0,P,JSON.stringify(Z))}}; +c._V.prototype.pR=function(n,F,O,I,x,r,_,d){var w=n.mG();if(r&&w!=null&&w.T==this&&w.data.abS&&w.data.GK==O&&JSON.stringify(w.data.CF.oE)==JSON.stringify(I.oE)){w.data.Gm=x; +w.data.$L=d}else{var w=new hS(F,this);w.data={GK:O,CF:I,Gm:x,abS:r,ajv:_,$L:d};n.p$(w)}};c.Rect=function(){c.vb.call(this,[10,32],c.tq,"tools/rect",!0)}; +c.Rect.prototype=new c.vb;c.Rect.prototype.RW=function(n,F,O){var I=this.ka.crad,x=F.x-n.x,r=F.y-n.y; +return[q.Y.jP.Rect(n.x,n.y,x,r,I),q.oK.Wd("Rctn",[n.x,n.y,F.x,F.y],[I,I,I,I])]};c.BT=function(){c.vb.call(this,[10,33],c.kP,"tools/ellipse",!0)}; +c.BT.prototype=new c.vb;c.BT.prototype.RW=function(n,F,O){var I=F.x-n.x,x=F.y-n.y;return[q.Y.jP.BT(n.x,n.y,I,x),q.oK.Wd("Elps",[n.x,n.y,F.x,F.y])]}; +c.es=function(){c.vb.call(this,[10,34],c.d0,"tools/pshape",!1)};c.es.prototype=new c.vb;c.es.prototype.RW=function(n,F,O){var I=this.ka.pshape,x=this.ka.crad,r=this.ka.irad/100,_=this.ka.sides,d=this.ka.width,w=this.ka.tsiz,Z=this.ka.length,y; +F=F.clone();if(O){if(Math.abs(F.x-n.x)2)I.push(-1-n.f$[e]); +var x=[],r=n.a.o;if(r[0]+r[1]+r[2]==3)if(O!=null||I.length==0||n.a5!=null&&n.a5.length!=0)x=n.aV(F,O,null,!0); +x=x.concat(I);for(var e=0;e=0&&!_.rect.D2()){this.H0=1;this.xA=n.N; +this.Rd=_.HG;this.hU=!1;if(!_.WF(n,n.N)){this.hU=!0;_.hz(n,n.N,!1)}this.gX={aN:_.HG.Cv,j:_.HG.JI}}else{this.H0=0; +this.eP=c.V.cq(n,this.t,null,O);for(var e=0;e=0)I=n.N.rect.clone();else for(var e=0;e=0){_=n.t[r];d=_.rT(n,O,I)}else if(r>-1e3){_=n.Hi[-1-r]; +d=[2]}else{x.push([null,null,null,null,null,null,null,n.TM[-1e3-r].clone()]);continue}var w=[];if(d.indexOf(0)!=-1){var Z={FL:[_.buffer.slice(0),_.rect.clone()]}; +w.push(Z);if(_.z3()){var P=_.Fa(n);Z.amh=P.buffer.slice(0);Z.a7o=P.rect.clone()}}else w.push(null);if(d.indexOf(1)!=-1)w.push(_.B1().clone()); +else w.push(null);if(d.indexOf(2)!=-1)w.push({dv:_.add.vmsk.clone(),uS:_.add.vstk?JSON.parse(JSON.stringify(_.add.vstk)):null,Gk:_.add.vstk?c.M2.n3(n,r):null,oK:_.add.vogk?JSON.parse(JSON.stringify(_.add.vogk)):null}); +else w.push(null);if(_.add.TySh&&w[0]){bt.FE(_.add.TySh);w.push(_.add.TySh.m.clone())}else w.push(null); +if(_.add.SoLd&&w[0])w.push(JSON.parse(JSON.stringify(_.add.SoLd)));else w.push(null);if(d.indexOf(3)!=-1)w.push(_.Fa(n).r.clone()); +else w.push(null);if(_.add.lmfx)w.push(JSON.stringify(_.add.lmfx));else w.push(null);x.push(w)}return x}; +c.V.Q0=function(n,F,O){for(var e=0;e1; +if(b)j=!1;var s=j?U.C:null,G=b?U.oE:null;if(p){var T=q.qF.Bo(_);q.J.m(C,T);q.Y.aaf(U.b,T,s,G)}else q.Y.a51(U.b,C,s,G); +if(H.add.vstk&&d){H.add.vstk.strokeStyleLineWidth.v.val=y[2].uS.strokeStyleLineWidth.v.val*v;var z=y[2].Gk; +if(z&&z.he==3){z=JSON.parse(JSON.stringify(z));var m=z.Gk.phase.v;z.Gk.Scl.v.val=Math.round(z.Gk.Scl.v.val*v); +m.Hrzn.v=Math.round(m.Hrzn.v*v);m.Vrtc.v=Math.round(m.Vrtc.v*v);c.M2.pK(H,z)}}if(H.add.vogk){H.add.vogk=JSON.parse(JSON.stringify(y[2].oK)); +if(p||b)q.oK.a4F(H.add.vogk);else q.oK.m(H.add.vogk,C,O.length>1?[]:U.C,d)}U.RI*=v;H.add.vmsk=U;if(H.add.vogk)q.oK.df(H.add.vogk,H.add.vmsk)}if(y[3]){var $=y[3].clone(); +$.concat(W);H.add.TySh.m=$;bt.Sg(H.add.TySh);var o=new h2(H.add.TySh.Vb,F.sH),h=cJ.mH(o,H.add.TySh); +H.rect=h.j;H.buffer=h.zc}if(y[4]){var X=H.add.SoLd,D=c.V.ns(y[4].nonAffineTransform);q.J.m(C,D);var f=q.z.Wk(D); +if(g_.AT(D)){if(_){var R=q.z.gh(q.qF.Bo(y[4].warp.v)),i=q.J.N5(D,R),t=q.z.gh(q.qF.Bo(_));D=[t.x,t.y,t.x+t.d,t.y,t.x+t.d,t.y+t.v,t.x,t.y+t.v]; +q.J.m(i,D);X.warp.v=_}var N=q.J.N5(D),M=D;if(!q.J.nn(N)){N[6]=N[7]=0;M=[0,0,1,0,1,1,0,1];q.J.m(N,M)}X.Trnf=c.V.uB(M); +X.nonAffineTransform=c.V.uB(D);if(X.filterFX)X.filterFX=JSON.parse(JSON.stringify(y[4].filterFX));c.V.Rw(X,W); +H.aY(n,x==0)}}if(y[5])c.V.w4(n,y[5],H.Fa(n).r,x,C,_);if(y[7])c.V.w4(n,y[7],H,x,C,_);if(0<=L){if(x!=0)H.t7(); +H.o3(n);H.D()}}n.D()};c.V.oo=function(n,F,O,I,x,r){if(O==null)O=!1;return c.V.Kb(n,O?0:1,q.J.EC(F),null,I,x,r,O)}; +c.V.Kb=function(n,F,O,I,x,r,_,d){if(d==null)d=!1;if(d&&_)throw"e";var w={},W=0,v=.3;if(I&&!q.qF.x9(I)){var Z=q.qF.Bo(I); +q.J.m(O,Z);w.rect=q.z.Wk(Z);w.buffer=q.f(w.rect.X()*4);q.uY.drawImage(Z,n[0],n[1].d,n[1].v,w.buffer,w.rect,F==0); +return w}q.zZ(n);var P=n[0],C=n[1],L=C.X()*c.V.GW(q.J.fK(O));if(d&&L>4e6)v=L>8e6?2.2:1.2;while(W+316&&q.J.nn(O)&&c.V.GW(q.J.fK(O))1e5||w.rect.v>1e5||w.rect.X()>3e4*3e4)return null; +var p=w.rect.X()*4;if(x&&x.byteLength>=p&&p>=x.byteLength>>2){w.buffer=new Uint8Array(x)}else{w.buffer=q.f(p)}q.J.drawImage(J,P,C.d,C.v,w.buffer,w.rect,F==0,r,d); +if(F==2&&w.buffer){var U=w.rect.d,j=w.rect.v,b;b=[0,-1,0,-1,16,-1,0,-1,0];b=q.aF.Wl(b);var s=w.buffer.slice(0); +q.aF.u3(s,w.buffer,U,j,b,255,!1,!0)}if(w.buffer)return w};c.V.w4=function(n,F,O,I,x,r){if(F.color==255)q.uZ(F.channel); +var _=F.rect,d=q.f(_.X()*4);q.GF(F.channel,d,3);var w=c.V.Kb([d,_],I,x,r);if(w){O.rect=w.rect;O.channel=q.f(w.rect.X()); +q.xg(w.buffer,O.channel,3);O.j8=!0}if(F.color==255){q.uZ(F.channel);if(w)q.uZ(O.channel)}};c.V.Rw=function(n,F){var O=n.filterFX; +if(O)O=O.v.filterFXList;if(O)O=O.v;if(O)for(var I=0;I>>1)+I.C[x]);n.M.dl=n.M.dl.concat(I.a_);if(this._F[3])q.z.concat(n.M.qD,q.z.alD(I.FW,I.Cj))}n.zB=!0}; +c.Hh.yU=function(n,F,O){var I=n.buffer,x=n.rect,r=n.a67,_=bS.tc("rigidTransform");if(r)for(var e=0;e<4; +e++){_["PuX"+e].v=r[e*2];_["PuY"+e].v=r[e*2+1]}var d=_.puppetShapeList.v,w=q.vr.als(I,x.d,x.v,F[1],F[2]),Z=[]; +for(var P=0;P>>1)+Q.C[J]); +for(var J=0;J=w[2]||w[1]>=w[3]){n.splice(e,1); +e--;continue}c.Fz.En(n,e,w)}};c.Fz.VT=function(n,F){var O=n.l_;for(var e=0;e1e6,_=new k(V.E.P,!0);_.data={e:V.U.DH,kA:r};if(x)O.A(_);setTimeout(function(){var d=c.Ae.fU(n); +for(var w in d)F[w]=d[w];var _=new k(V.E.P,!0);_.data={e:V.U.QD,kA:r};if(x)O.A(_)},30)}};c.Ae.v3=function(n){var F=n.C[0],O=n.t[F],I=O.rect,x=I.d,r=I.v,_=x*r,d=O.buffer; +return[F,I.x,I.y,x,r,d[0],d[1],d[2],d[3]].join(",")};c.Ae.fU=function(n){var F=n.C[0],O=n.t[F],I=O.rect,x=I.d,r=I.v,_=x*r,d=O.buffer,w=Date.now(),Z=q.f(_); +Z.fill(128);var P=q.yN.qv(d,x,r);console.log(Date.now()-w);var C={key:c.Ae.v3(n),Ko:d,rect:I.clone(),HL:x,Sa:r,H9:12,agA:!1,WG:Z,Ld:P,N:q.f(_),fJ:null,Pm:null,SM:null}; +c.Ae.Sy(C);return C};c.Ae.Sy=function(n,F){var O=n.HL,I=n.Sa,x=0,r=0,_=Date.now(),d=n.fJ!=null&&q.yN.abl(n.Ld.Cj,n.fJ.Cj,n.fJ.UA,n.WG); +x=Date.now()-_;_=Date.now();if(!d&&!n.agA){n.fJ=q.yN.JL(n.Ld,O,I,n.WG,n.H9);if(!q.yN.abl(n.Ld.Cj,n.fJ.Cj,n.fJ.UA,n.WG)){n.agA=!0; +console.log("conflict")}n.Pm=q.yN.agV(n.Ko,O,I,n.fJ.Cj,n.fJ.UA);n.SM=[n.Pm[0].slice(0),[]];r=Date.now()-_; +_=Date.now()}var _=Date.now();if(F){n.SM[0].set(n.Pm[0]);var w=n.Pm[1],Z=n.SM[1];for(var P=0;P=1)iM=(W.x-M)/bD;if(Math.abs(co)>=1)hs=(W.y-hK)/co;if(x)iM=hs=(iM+hs)/2;var S=new cD; +S.translate(-M,-hK);S.scale(iM,hs);S.translate(M,hK);s=G.slice(0);q.z.m(s,S,s)}else{if(this.qj()){W.x=Math.round(W.x); +W.y=Math.round(W.y)}var a=[0,1,2,5,8,7,6,3],bV=a[(a.indexOf(Z)+4)%8],a5=[];for(var e=0;e<3;e++)for(var z=0; +z<3;z++)a5.push(new aE(z/2,e/2));var J=this.Fd,i9=this.OY(W,G),dG=this.OY(w,G),ap=r&&(this.TJ==4||this.TJ==9)?this.OY(J,G):a5[bV],bk=new cD,c2=new cD,iM=(i9.x-ap.x)/(dG.x-ap.x); +if(iM==0)iM=1e-4;var hs=(i9.y-ap.y)/(dG.y-ap.y);if(hs==0)hs=1e-4;if(this.a7F){iM=Math.max(iM,0);hs=Math.max(hs,0)}if(Z==0||Z==2||Z==6||Z==8){if(x||this.a4e)bk.scale(iM,iM); +else bk.scale(iM,hs)}if(Z==1||Z==3||Z==5||Z==7){var gg=this.a4e;if(Z==1||Z==7)bk.scale(gg?hs:1,hs);else bk.scale(iM,gg?iM:1); +if(this.ajN&&_){if(Z==1||Z==7)c2.Pr=(i9.x-ap.x)/(i9.y-ap.y);else c2.O=(i9.y-ap.y)/(i9.x-ap.x)}}var S=new cD; +S.translate(-ap.x,-ap.y);S.concat(bk);S.concat(c2);S.translate(ap.x,ap.y);s=[0,0,1,0,1,1,0,1];q.z.m(s,S,s); +var f=q.J.N5(G);q.J.m(f,s)}if(g_.AT(s))this.AZ=s}this.s6(n,F);if(v)c.eB.BU(n,L,v)};g_.m6=function(n,F,O,I,x,r){var _=O-n,d=I-F,w=x-n,Z=r-F,P=_*_+d*d,C=w*_+Z*d,W=C/P,v=n+W*_,L=F+W*d,H=x-v,y=r-L; +return[v,L,Math.sqrt(H*H+y*y)]};g_.prototype.qj=function(){var n=this.AZ;return Math.abs(n[1]-n[3])<1e-6&&Math.abs(n[2]-n[4])<1e-6||Math.abs(n[0]-n[2])<1e-6&&Math.abs(n[3]-n[5])<1e-6}; +g_.AT=function(n){return q.z.go(n)||q.z.go([n[6],n[7],n[4],n[5],n[2],n[3],n[0],n[1]])};g_.prototype._X=function(n,F,O,I){this.tU=-1; +this.wM=null;n.M.iA=null;n.M.s3=[];n.zB=!0};g_.prototype.Ka=function(n,F,O){var I=O.vo();if(I.x||I.y){var x=new cD(1,0,0,1,I.x,I.y); +q.z.m(this.AZ,x,this.AZ);this.s6(n,F);return!0}return!1};g_.prototype.xK=function(n){if(n==null)n=this.AZ; +var F=n[6]-n[0],O=n[7]-n[1],I=n[4]-n[2],x=n[5]-n[3],r=[n[0],n[1],n[2],n[3],n[0]+F/2,n[1]+O/2,n[2]+I/2,n[3]+x/2,n[6],n[7],n[4],n[5]],_=[]; +for(var e=0;e<3;e++){var d=e*4,w=r[d+0],Z=r[d+1],P=r[d+2],C=r[d+3];_.push(new aE(w,Z));_.push(new aE(w+(P-w)/2,Z+(C-Z)/2)); +_.push(new aE(P,C))}return _};g_.prototype.s6=function(n,F,O){if(O==null)O=!1;var I=this.xK(),x=I[0],r=I[2],_=I[6],d=I[8]; +n.M.qD={s:[],H:[]};n.M.qD.s.push("M","L","L","L","Z");n.M.qD.H.push(x.x,x.y,r.x,r.y,d.x,d.y,_.x,_.y); +if(this.a1I){var w=r.ba(x),Z=_.ba(x),P=d.ba(r),C=d.ba(_);for(var e=0;e<3;e++){n.M.qD.s.push("M","L","M","L"); +var W=(e+1)*.25;n.M.qD.H.push(x.x+w.x*W,x.y+w.y*W,_.x+C.x*W,_.y+C.y*W);n.M.qD.H.push(x.x+Z.x*W,x.y+Z.y*W,r.x+P.x*W,r.y+P.y*W)}}n.a.LL=new gv(0,0,aE.sl(I[0],I[2]),aE.sl(I[0],I[6])); +if(this.tU!=-1&&this.tU<9&&this.wM){var v=n.a.Hl(this.wM.x,this.wM.y);c.Fq.Ji(v.x+10,v.y-10,n.a.LL,n,F)}if(!O){n.M.Ri=[]; +for(var e=0;en.index;e--)this.cG(O);if(n.index>O.ok)for(var e=O.ok; +e1)O.C.splice(R,1);O.C.sort(function(w,iy){return w-iy});L.Mk.selectionModifier={t:"enum",v:{selectionModifierType:"addToSelection"}}; +f=_}else if(I.q(u.MQ)&&!I.q(u.pI)&&n.Co>0){r=n.Co==1?K.ub:n.Co==2?K.r4:K.Vd;escape=!0}else if((I.q(u.MQ)||n.aln==1)&&O.C.length>0){var i=Math.min(_,O.C[0]),t=Math.max(_,O.C[O.C.length-1]); +O.C=[];for(var e=i;e<=t;e++)if(O.t[e].add.lsct!=ho.bu)O.C.push(e);L.Mk.selectionModifier={t:"enum",v:{selectionModifierType:"addToSelectionContinuous"}}; +f=_}else{f=_;var h=O.t[_];if(h&&h.Ja()&&n.ak0)h.add.lsct=ho.x7;else if(O.C.length==1&&O.C[0]==_&&n.Co==h.vE){return}O.C=[_]; +O.Mu()}if(f!=null&&f")b_++;this.track({oI:"delete",Mk:{classID:"Dlt",null:aV.hd("Lyr",!0)}}); +var w=new hS([6,31],this);w.data={e:K.a$,ft:O.t.slice(0),Dn:cp,Um:O.C.slice(0),tu:[b_]};O.p$(w);this.Xe(w.data,O)}if(r==K.cb){var o=n.a21?n.a21:O.C,hy=0,d4=!1; +if(o.length==0)return;if(o.length==1&&O.t[o[0]].Z8==0){alert(hl.get([15,7,5]));return}var gx=[];for(var e=0; +e0){if(ei.add.lnk2==null)ei.add.lnk2=[]; +for(var e=0;e7;for(var fX=0;fX=0;e--)if(iJ[e]>=cp.length)iJ.splice(e,1);var w=new hS([6,40],this);w.data={e:K.a$,ft:O.t.slice(0),Dn:cp,Um:O.C.slice(0),tu:iJ}; +O.p$(w);this.Xe(w.data,O)}if(r==K.GZ){var hD=O.C.length;if(hD<2){alert("Select two or more layers."); +return}if(!O.w1())return;var iM=O.t[O.C[0]].clone(),cp=[];for(var e=0;e2e6){alert("Blended areas are too large."); +return}for(var e=1;e1&&hY!=-1){console.log("separating an open path into a new layer");h=h.clone();fv=h.add.vmsk; +hQ=fv.b;var P=hQ[hY].length,ga=h.clone();ga.add.lyid=O.Xf();fv.b=hQ.slice(0,2).concat(hQ.slice(hY,hY+P+1)); +fv.C=[];h.o3(O);h.D();var fQ=ga.add.vmsk.b;ga.add.vmsk.b=fQ.slice(0,hY).concat(fQ.slice(hY+P+1,fQ.length)); +ga.add.vmsk.C=[];ga.o3(O);cp[e]=h;cp.splice(e+1,0,ga);for(var fX=0;fXe)fi[fX]++; +var el=fi.indexOf(e);if(el!=-1){fi.splice(el+1,0,e+1)}}}}if(cp.length!=O.t.length){var w=new hS("Splitting open paths",this); +w.data={e:K.a$,ft:O.t.slice(0),Dn:cp,Um:O.C.slice(0),tu:fi};O.p$(w);this.Xe(w.data,O)}}if(r==K.tI){this.fM({e:K.D4},F,O,I,x); +var ep=O.C.slice(0),c4=O.t.slice(0),eA=O.aV();if(eA.length==0)return;O.uJ(eA,!1,n.ty);var w=new hS([6,36,0],this); +w.data={e:K.a$,ft:c4,Dn:O.t.slice(),Um:ep,tu:O.C.slice(0)};O.p$(w);this.Xe(w.data,O)}if(r==K.Za){var bk=d.add.SoLd; +if(bk==null)return;var aT=bk.Idnt.v,dX=O.V7(aT);dX.dH(!1);var cT=dX.yO[0],hf=dX.yO[1];if(q.Dd(cT)){alert("The smart object contains transparency."); +return}var bq=fx.rM("jpg").eJ([[cT.buffer]],hf.d,hf.v,[90]);this.fM({e:K.iD,KH:O,data:new Uint8Array(bq),id:aT,ty:"jpg"},F,O,I,x); +console.log(O.add);return}if(r==K.iD){var iK=n.KH.V7(n.id),ez=iK.clone();ez.raw=n.data;if(n.ty){ez.Z7=" "; +ez.he=" ";ez.fA=ez.fA+"."+n.ty}else{ez.Z7="8BIM";ez.he="8BPB";ez.fA=ez.fA+".psd"}ez.dH(!1);iK.dH(!1); +var w=new hS([6,36,1],this);w.data={e:K.iD,id:n.id,X5:iK,HR:ez};n.KH.p$(w);this.Xe(w.data,n.KH)}if(r==K.NR){var w=new hS([6,36,4],this); +w.data={e:r,$:_,ZN:d.add.SoLd.Impr.v.classID,Qj:n.Qj};O.p$(w);this.Xe(w.data,O)}if(r==K.vQ){var ea,eP; +if(n.Cx){ea=n.KH;eP=n.Cx}else{n.KH.lq();n.KH.tQ();n.KH.D();n.KH.nu();n.KH.dH();ea=fx.rM("PSD").eJ(n.KH,0,0,[!0,!0]); +eP=n.KH.name}if(!(ea instanceof ArrayBuffer))throw"e";ea=new Uint8Array(ea);var R=n.sO!=null?n.sO:O.C[O.C.length-1]+1,ds=O._C(ea,eP,0,0,!0),cp=O.t.slice(0); +cp.splice(R,0,ds);var w=new hS([6,36,2],this);w.data={e:K.a$,ft:O.t.slice(),Dn:cp,Um:O.C.slice(0),tu:[cp.indexOf(ds)]}; +O.p$(w);this.Xe(w.data,O)}if(r==K.eO&&n.G1=="merge"){var c8=[],f$=O.root.children,fJ=0;for(var e=0;e=2)c8=iP;if(c8.length<2){alert("At least two animation folders needed (whose layers start with \"_a_\").",3500); +return}var cx=[];for(var e=0;e1){var bZ=parseInt(cI.pop());if(!isNaN(bZ)&&bZ!=0)eF=bZ}gR[0].push(h);gR[1].push(eF);gR[2]+=eF}}c9.sort(function(w,iy){return iy[2]-w[2]}); +var hL=c9[0],f2=hL[2];for(var eq=1;eq>>1;if(dC<17){var J=a0.length-1;if(e==0)a0[1]+=dC; +else if(e==a0.length-1)a0[J-1]+=dC;else{a0[e-1]+=a6;a0[e+1]+=dC-a6}a0.splice(e,1);e--}}var aY=[],eY=new gv(0,0,O.d,O.v); +for(var e=0;e.5}else if(n.target!=null){eT=n.target; +dA=!0;O.wD=!0}else{var ce=n.G1;dA=ce>1;if(ce==0){eT=O.t.length-1}if(ce==1){eT=dc[dc.length-1]+1;var P=O.pO(eT); +if(P.indexOf(e8)==-1)eT+=P.length-1}if(ce==2){eT=dc[0]-1;var P=O.pO(eT);if(P.indexOf(e8)==-1)eT-=P.length-1}if(ce==3){eT=0}if(eT<0||eT>O.t.length-1)return; +O.wD=!0}if(dc.indexOf(eT)!=-1&&!fE)return;var a9=O.t[eT],cp=[];if(fE)cp=O.t.slice(0);else for(var e=0; +e.8)bE-=O.pO(eT).length-1; +var gb=[],ai=fE?O.QH(h9?null:e8):null;for(var e=0;e0){var dm=w.data.Mk={classID:"setd",null:aV.hd("contentLayer",!0),T:{t:"Objc",v:{}}},ic=["SoCo","GdFl","PtFl"][iS.he-1]; +ci.ED.KW(iS.Gk,dm.T.v,iS.he-1);this.track({oI:"set",Mk:dm})}}if(n.BP&&iS.he==3)O.CI(ha.Yi(iS.Gk.Ptrn.v,x.a6)); +if(!n.BP){var hN=iS.strokeStyleContent.v;if(hN.classID==bW.uS.Ul[2])O.CI(ha.Yi(hN.Ptrn.v,x.a6))}this.Xe(w.data,O)}}; +ci.ED.KW=function(n,F,O){var I=[bW.ez,bW.KK,bW.dC][O];if(F.classID==null)F.classID=["solidColorLayer","gradientLayer","patternLayer"][O]; +for(var e=0;e=0?F.t[g]:F.Hi[-1-g];d.add.vogk=JSON.parse(y[e+1]);q.oK.df(d.add.vogk,d.add.vmsk); +if(g>=0)d.o3(F)}F.D()}if(O==K.yp){I.add.artb=JSON.parse(n.a5h);F.D()}if(O==K._a){F.N=n.xA;F.TM=n.Es.slice(0); +F.P4=n.$k.slice(0);F.zB=F.T3=!0}if(O==K.cb){var Q=n.alp;for(var e=0;e=0?F.t[g]:F.Hi[-1-g];d.add.vogk=JSON.parse(y[e+1]);q.oK.df(d.add.vogk,d.add.vmsk); +if(g>=0)d.o3(F)}F.D()}if(O==K.yp){I.add.artb=JSON.parse(n._8);F.D()}if(O==K._a){F.N=n.pi;F.TM=n._l.slice(0); +F.P4=n.Wj.slice(0);F.zB=F.T3=!0}if(O==K.cb){var Q=n.ah$;for(var e=0;e>L;if((H&1)==1)H--; +else H++;v.capturedInfo.v=(H<255)Z=255-Math.round((_-255)*255/(_-x))}return[Math.max(x,0),Math.min(_,255),w,Z,100]};ci.WD.prototype.fM=function(n,F,O,I,x){var r=n.e; +if(r=="auto"){var _=n.C6,d=ci.WD.getData(O);for(var e=0;e>>2,_=q.oN(O),d=.001*x; +if(I==0||I==2)r=[[0,255,0,255,100],ci.WD.IG(_[1],d,x,I==2),ci.WD.IG(_[2],d,x,I==2),ci.WD.IG(_[3],d,x,I==2)]; +if(I==1)r=[ci.WD.IG(_[0],d*.33,x,!1),[0,255,0,255,100],[0,255,0,255,100],[0,255,0,255,100]];var w=bS.tc("levl"); +for(var e=0;e<4;e++)hd.K8(w,e,r[e]);return w};ci.WD.prototype.Cg=function(n,F,O,I){if(this.WR==null){if(n.qm=="aply")O.t[O.C[0]].extend(new gv(0,0,O.d,O.v)); +this.WR=ci.WD.getData(O,null,n.qm=="fade"?O.mG().data:null);if(n.qm=="aply")this.WR[0].Qb=O.dH()}if(n.e=="edit"){this.l8=[n.qm,n.K_]; +var x=this.WR[0],r=ci.WD.a1_(n.qm,n.K_,x.aN),_=dK.k6(n.qm,r);if(n.qm=="fade"||n.qm=="aply")_=n.K_;if(_!=null){for(var e=0; +e>>16,l:n>>>8&255,O:n&255}}; +ci.WI.prototype.a3_=function(n,F,O,I){if(this.WR==null){var x=bS.wE(n.qm,n.K_);this.WR=ci.WD.getData(O,x.x!=0||x.y!=0)}if(n.e=="edit"){var r=JSON.stringify(n.K_); +if((n.K_==null||r!=this.Gl)&&n.st!=!0)for(var e=0;e1)w=1+Math.tan(Math.PI/2*r/101);var Z=(1-w)/2,P=q.e$.AQ(d,d,d),C=[w,0,0,Z,0,w,0,Z,0,0,w,Z,0,0,0,1],W=q.e$.multiply(P,C),v=new q.zF(256); +for(var e=0;e<256;e++)v.Q[e]=e;q.e$.transform(v,v,W);I={type:O.$l,Ub:v.Q,O8:v.Q,QP:v.Q,Nn:!1,Q7:!1}}else{var L=1024,H=-30+60*(r+100)/200,y=[]; +for(var e=0;e<4;e++)y.push(q.pH.G0(e/3*255,e/3*255,!0));y[1].v.Hrzn.v=64;y[1].v.Vrtc.v=64-H;y[2].v.Hrzn.v=128+64; +y[2].v.Vrtc.v=128+64+H;y.sort(function(hD,hf){return hD.v.Hrzn.v-hf.v.Hrzn.v});var g=q.pH.Sz(y,L);function Q(hD,L){var y=[],E=3; +for(var e=0;eU&&j>1)j--;A[e]=j*p}J=A}var b=new Uint8Array(L);for(var e=0; +e0){F=Math.max(a5/Math.E,F); +F=F*Math.exp(a5/1.75+bV/Math.PI);F=(1-dG)*F+dG*1}else{F=F*Math.exp(-a5*1.75+bV/Math.PI);F=F+-dG*1.14}F=Math.pow(F,1/i9); +F=Math.max(0,Math.min(1,F));b[e]=Math.round(F*255)}I={type:O.$l,Ub:b,O8:b,QP:b,Nn:!1,Q7:!1}}if(n=="vibA"){I={type:O.sP,b9:[F.vibrance?F.vibrance.v:0,F.Strt?F.Strt.v:0]}}if(n=="hue2"){var bk=[],c2=[],gg=[],bH=F.Clrz?F.Clrz.v:!1; +for(var e=0;e<256;e++){bk[e]=e/255;c2[e]=0;gg[e]=0}var gw=cy.yL(F,0),gP=dK.yf(gw[1]/100);if(bH){var dT=gw[0]/360; +for(var e=0;e<256;e++){bk[e]=dT;c2[e]=gP}}else{for(var e=0;e<256;e++){var fU=bk[e],dV=c2[e];bk[e]+=gw[0]/360; +for(var j=0;j<6;j++){var ac=cy.yL(F,j+1),e2=ac.i$,cX=ac.S1,dG=0;for(var eR=1;eR<4;eR++)if(cX[eR]1)gk--;if(gk<0)gk++;a8=dK.aho(a8);a8=(1+a8)*.5; +bX=(1+bX)*.5;aT[e]=Math.round(255*gk);dm[e]=Math.round(255*a8);c1[e]=Math.round(255*bX)}var bL=gw[2]/100,c_=bL<0?-bL:bL,eS=bL<0?0:1; +I={type:O.$v,ab4:aT,A3:dm,a7w:c1,ams:c_*eS,yy:1-c_,aba:gw[2]/100,akZ:bH?1:0}}if(n=="nvrt"){var b=new Uint8Array(256); +for(var e=0;e<256;e++)b[e]=255-e;I={type:O.$l,Ub:b,O8:b,QP:b,Nn:!1,Q7:!1}}if(n=="post"){var c$=F.Lvls.v,b=new Uint8Array(256),dG=c$/255.001,cp=255/(c$-1); +for(var e=0;e<256;e++)b[e]=Math.floor(e*dG)*cp;I={type:O.$l,Ub:b,O8:b,QP:b,Nn:!1,Q7:!1}}if(n=="grdm"){var b_=F.Grad.v,hy=F.Rvrs,gx=q.W.bQ(b_.Clrs.v,0,0),L=1024,eJ=q.W.Pp(b_,gx,L,hy?hy.v:!1),d4=q.f(L),cs=q.f(L),en=q.f(L); +q.xg(eJ,d4,0);q.xg(eJ,cs,1);q.xg(eJ,en,2);I={type:O.$l,Ub:d4,O8:cs,QP:en,Nn:!0,Q7:!1}}if(n=="selc"){var cm=new Float32Array(9*3*2),c5=F.EU,fK=F.Mthd?F.Mthd.v.CrcM=="Absl":!1; +for(var j=0;j<9;j++){var ez=j*6,d6=hh.yL(F,j),ee=d6[0]/100,c0=d6[1]/100,gq=d6[2]/100,ei=d6[3]/100;if(fK){cm[ez]=cm[ez+1]=cm[ez+2]=1; +cm[ez+3]=ee*(1+ei)+ei;cm[ez+4]=c0*(1+ei)+ei;cm[ez+5]=gq*(1+ei)+ei}else{cm[ez+0]=(1+ee)*(1+ei);cm[ez+1]=(1+c0)*(1+ei); +cm[ez+2]=(1+gq)*(1+ei)}}I={type:O.Yx,aje:cm}}if(n=="blwh"){var d9="Rd Yllw Grn Cyn Bl Mgnt".split(" "),I=[],cE=0,iU=0; +for(var e=0;e<6;e++)I.push(F[d9[e]].v);I.push(F.useTint.v,F.tintColor.v);var ge=[];for(var e=0;e<6;e++)ge.push((I[e]-50)/50); +var iK=q.W.S_(I[7]);iK.Q/=255;iK.l/=255;iK.O/=255;var gu=q.sy(iK.Q,iK.l,iK.O),bX=q.wO(q.OQ(gu.Sa,1,.5)),eA=gu.Ls*gu.K_; +if(bX==.5)cE=iU=.5;else{cE=eA*(.5-bX)/(.5/bX-1);iU=1-eA*(.5-bX)-1/(2*(1-bX));iU/=1-1/(2*(1-bX))}I={type:O.ib,a6R:ge,Xn:I[6]?1:0,al$:gu.Sa,wO:bX,a0j:eA,Mf:cE,a8y:iU}}if(n=="blnc"){console.log(F); +var G=[],eI=["ShdL","MdtL","HghL"];for(var e=0;e<3;e++){if(F[eI[e]]==null){G[e]=[0,0,0];continue}var c$=F[eI[e]].v,ad=c$[0].v/100,d_=c$[1].v/100,c9=c$[2].v/100,ek=F.PrsL==null||F.PrsL.v?(Math.min(ad,d_,c9)+Math.max(ad,d_,c9))/2:0; +G[e]=[ad-ek,d_-ek,c9-ek]}var t=[q.f(256),q.f(256),q.f(256)];for(var j=0;j<3;j++)for(var e=0;e<256;e++){var U=e*(1/255),fX=0,H=0,fo=0; +H=G[2][j];fo=Math.abs(H);if(H<0)fX=Math.pow(U,Math.SQRT2);else fX=1.63*(Math.pow(U+.04,.5)-.2);U=fo*fX+(1-fo)*U; +H=G[1][j];fo=Math.abs(H);if(H<0)fX=Math.pow(U,2);else fX=Math.min(2.35*(Math.pow(U+.09,.5)-.3),Math.pow(U,1/2)); +U=fo*fX+(1-fo)*U;H=G[0][j];fo=Math.abs(H);if(H<0)fX=U<.4?0:Math.pow((U-.4)/.6,Math.SQRT2);else fX=Math.pow(U,Math.SQRT2/2); +U=fo*fX+(1-fo)*U;U=Math.max(0,Math.min(1,U));t[j][e]=Math.round(U*255)}I={type:O.$l,Ub:t[0],O8:t[1],QP:t[2],Nn:!1,Q7:!1}}if(n=="phfl"){var eY=q.W.S_(F.Clr.v),hG=[eY.Q/255,eY.l/255,eY.O/255],aY=F.Dnst.v/100,t=[q.f(256),q.f(256),q.f(256)]; +for(var j=0;j<3;j++)for(var e=0;e<256;e++){var U=e*(1/255),gK=U*hG[j];gK=Math.max(0,Math.min(1,gK)); +U=aY*gK+(1-aY)*U;t[j][e]=Math.round(U*255)}I={type:O.$l,Ub:t[0],O8:t[1],QP:t[2],Nn:!1,Q7:F.PrsL.v}}if(n=="thrs"){var b=q.f(256); +for(var e=F.Lvl.v;e<256;e++)b[e]=255;I={type:O.$l,Ub:b,O8:b,QP:b,Nn:!0,Q7:!1}}if(n=="mixr"){var b$=dK.Jz(F),W=[]; +for(var e=0;e300*300&&n.type!=x.$l&&n.type!=x.ZQ){I=I.clone();I.x=I.y=0;var _=l.Y0(0,I.d,I.v);_.set(F); +l.wu(_,I);_.ww(I);dK.Yn(n,_.Lu,I);_.get(O);return}if(n.type==x.ZQ){var d=n.acC,w=n.CU;ICC.U.applyLUT(d,w,F,O); +var Z=F.length;for(var e=0;e>>8&255)*(1/255),H=(M>>>16&255)*(1/255),hK=M>>>24,bD=Math.min(I,L,H),co=Math.max(I,L,H),iM=0,hs=0,S=0; +iM=q.Px(I,L,H).Sa;var a=~~(iM*255+.5),bV=n.ab4[a]*(1/255),a5=n.A3[a]*(1/255)*2-1,i9=n.a7w[a]*(1/255)*2-1,g=-i9,dG=bD; +if(0.5?c2/(2-(co+bD)):c2/(co+bD)}var gg=a5; +if(n.akZ==0){a5=N[Math.floor((1+a5)*127.5)];gg=Math.min(hs*(1+a5),1)}var p=q.OQ(bV,gg,S);I=p.Q;L=p.l; +H=p.O;t[e]=hK<<24|H*255<<16|L*255<<8|I*255}}if(n.type==x.xr){q.Ct(F,O);var i=new Uint32Array(F.buffer),t=new Uint32Array(O.buffer),Z=i.length,bH=n.H9,gw=1/bH,gP={LG:n.BQ[0],R:n.BQ[1],O:n.BQ[2]},dT={LG:n.HJ[0],R:n.HJ[1],O:n.HJ[2]}; +for(var e=0;e>>8&255,ac=M>>>16&255,I=fU*(1/255),L=dV*(1/255),H=ac*(1/255),hK=M>>>24,e2=q.Kj(fU,dV,ac),cX=q.FG(e2,gP,dT,bH,gw); +if(cX==0)continue;var y=q.Px(I,L,H),bV=2+y.Sa+cX*n.shift[0];y.Sa=bV-~~bV;y.Ls=Math.max(0,Math.min(1,y.Ls+cX*n.shift[1])); +y.AU=Math.max(0,Math.min(1,y.AU+cX*n.shift[2]));var p=q.OQ(y.Sa,y.Ls,y.AU);I=p.Q;L=p.l;H=p.O;t[e]=hK<<24|H*255<<16|L*255<<8|I*255}}if(n.type==x.sP){var i=new Uint32Array(F.buffer),t=new Uint32Array(O.buffer),Z=i.length,eR=n.b9[0]/100,gR=n.b9[1]/100; +for(var e=0;e>>8&255)*(1/255),H=(M>>>16&255)*(1/255),hK=M>>>24,y=q.sy(I,L,H),iM=y.Sa,hs=y.Ls,S=y.K_,bN=0,eG=45/360,ef=iM16777215?Y.a2x(F):n.Fltr.v.classID};bS.__=[{Gk:"GEfc"},{Gk:"LnCr"},{Gk:"LqFy",dP:!0},{NL:"3D",Yf:["lightFilterGradient"]},{NL:[24,2],Yf:"Avrg,Blr ,BlrM,boxblur,GsnB,Bokh,MtnB,RdlB,surfaceBlur".split(",")},{NL:[24,4],Yf:"Dspl,Pnch,Plr ,Rple,Shr ,Sphr,Twrl,Wave".split(",")},{NL:[24,6],Yf:["AdNs","Dspc","DstS","Mdn "]},{NL:[24,8],Yf:"ClrH,Crst,Frgm,Mztn,Msc ,Pntl".split(",")},{NL:[24,10],Yf:["Clds","DfrC","LnsF"]},{NL:[24,12],Yf:["Shrp","ShrE","ShrM","smartSharpen","UnsM"]},{NL:[24,14],Yf:"Dfs ,Embs,FndE,oilPaint,Slrz,TrcC,Wnd ".split(",")},{NL:[24,16],Yf:"HghP,Mxm ,Mnm ,Ofst,Rept,Ctoa".split(",")},{NL:"Fourier",Yf:["dDFT","iDFT"]}]; +bS.ZU={LqFy:"LqFy",Avrg:"Avrg","Blr ":"blurEvent",BlrM:"blurMethod",boxblur:"boxblur",GsnB:"gaussianBlur",MtnB:"motionBlur",RdlB:"radialBlur",surfaceBlur:"surfaceBlur",lightFilterGradient:"lightFilterGradient",adaptCorrect:"adaptCorrect",Pnch:"pinch","Plr ":"polar",Rple:"ripple","Shr ":"shear",Sphr:"spherize",Twrl:"twirl",Wave:"wave",AdNs:"addNoise",DstS:"dustAndScratches","Mdn ":"median",ClrH:"colorHalftone",Crst:"",Frgm:"",Mztn:"mezzotint","Msc ":"mosaic",Pntl:"",Clds:"clouds",DfrC:"differenceClouds",LnsF:"LnsF",Shrp:"sharpen",ShrM:"sharpenMore",smartSharpen:"smartSharpen",UnsM:"unsharpMask",FndE:"findEdges",oilPaint:"oilPaint",HghP:"highPass","Mxm ":"maximum","Mnm ":"minimum",Ofst:"offset"}; +bS.vO={AddNoise:"AdNs",Average:"Avrg",Blur:"Blr ",BlurMore:"BlrM",Clouds:"Clds",DifferenceClouds:"DfrC",DustAndScratches:"DstS",GaussianBlur:"GsnB",HighPass:"HghP",Maximum:"Mxm ",Minimum:"Mnm ",MotionBlur:"MtnB",Offset:"Ofst",Pinch:"Pnch",PolarCoordinates:"Plr ",Ripple:"Rple",Sharpen:"Shrp",SharpenMore:"ShrM",Twirl:"Twrl",UnsharpMask:"UnsM"}; +bS.Ac={rigidTransform:c.bU};bS.names={lightFilterGradient:"Normal Map",rigidTransform:[10,46],LnCr:[24,1,1,0],LqFy:[24,1,0,0],GEfc:[24,0],Avrg:[24,3,0],"Blr ":[24,3,1],BlrM:[24,3,2],boxblur:[24,3,3],GsnB:[24,3,4],Bokh:[24,3,5],MtnB:[24,3,6],RdlB:[24,3,7],surfaceBlur:[24,3,10],Dspl:[24,5,0],Pnch:[24,5,1],"Plr ":[24,5,2],Rple:[24,5,3],"Shr ":[24,5,4],Sphr:[24,5,5],Twrl:[24,1,0,1,3],Wave:[24,5,6],AdNs:[24,7,0],Dspc:[24,7,1],DstS:[24,7,2],"Mdn ":[24,7,3],ClrH:[24,9,0],Crst:[24,9,1],Frgm:[24,9,3],Mztn:[24,9,4],"Msc ":[24,9,5],Pntl:[24,9,6],Clds:[24,11,0],DfrC:[24,11,1],LnsF:[24,11,2],Shrp:[24,13,0],ShrE:[24,13,1],ShrM:[24,13,2],smartSharpen:[24,13,3],UnsM:[24,13,4],"Dfs ":[24,15,0],Embs:[24,15,1],FndE:[24,15,3],oilPaint:[24,15,4],Slrz:"Solarize",TrcC:"Trace Contour","Wnd ":"Wind",HghP:[24,17,1],"Mxm ":[24,17,2],"Mnm ":[24,17,3],Ofst:[24,17,4],Rept:[24,17,5],Ctoa:"Color to Alpha",dDFT:"Fourier Transform",iDFT:"Inverse Fourier Transform",adaptCorrect:["VAR0/VAR1",[19,6,0],[19,6,2]]}; +bS.tc=function(n){var F=null;if(n=="GEfc")F={__name:"Filter Gallery",classID:"GEfc",GEfs:{t:"VlLs",v:[{t:"Objc",v:ax.tc("GlwE")}]}}; +if(n=="LqFy"){var O={HL:5,Sa:5,map:new Float32Array(5*5*2)},I=new Uint8Array(gT.t3(O)),x=[];for(var e=0; +eF.x)F.x=r.x; +if(r.y>F.y)F.y=r.y}return F};bS.wE=function(n,F){var O=0,I=0;if(["GsnB","boxblur","smartSharpen","UnsM","HghP"].indexOf(n)!=-1){var x=F.Rds.v.val; +O=I=x*2.57}if(n=="MtnB")O=I=F.Dstn.v.val;if("Ofst,Rept,LqFy,Dspl,Pnch,Rple,Shr ,Sphr,Twrl,Wave,RdlB,Clds,DfrC,Plr ,LnCr,Wnd ,lightFilterGradient,rigidTransform,Frgm".split(",").indexOf(n)!=-1){O=I=1e4}if(n=="GEfc")return ax.wE(F); +return new aE(Math.ceil(O),Math.ceil(I))};bS.sN=function(){return{t:"Objc",v:{classID:"filterFXStyle",enab:{t:"bool",v:!0},validAtPosition:{t:"bool",v:!0},filterMaskEnable:{t:"bool",v:!0},filterMaskLinked:{t:"bool",v:!0},filterMaskExtendWithWhite:{t:"bool",v:!0},filterFXList:{t:"VlLs",v:[]}}}}; +bS.Lk=function(n,F){var O={Q:F.nE>>16,l:F.nE>>8&255,O:F.nE&255},I={Q:F.sI>>16,l:F.sI>>8&255,O:F.sI&255},x=bS.names[n]; +if(x==null)x=dK.names[n];var r=n;for(var _ in dK.kK)if(dK.kK[_]==n)r=_;var d={t:"Objc",v:{classID:"filterFX",Nm:{t:"TEXT",v:hl.get(x)},blendOptions:{t:"Objc",v:{classID:"blendOptions",Opct:{t:"UntF",v:{type:"#Prc",val:100}},Md:{t:"enum",v:{BlnM:"Nrml"}}}},enab:{t:"bool",v:!0},hasoptions:{t:"bool",v:!0},FrgC:{t:"Objc",v:q.W.Vm(O)},BckC:{t:"Objc",v:q.W.Vm(I)},filterID:{t:"long",v:r.length==4?Y.aob(r):777}}},w=bS.tc(n); +if(w)d.v.Fltr={t:"Objc",v:w};return d};bS.mV=function(n,F,O,I,x,r,_,d){var w=O*I*4;q.Bk.ai$(n,F,O,I,x,r,_)}; +bS.jJ=function(n,F,O,I){q.VE(O);if(n<1){var x=Math.round(n*5),r=[1,2,1,2,[40,26,13,6,4,2][x],2,1,2,1]; +r=q.aF.Wl(r);var _=O.slice(0);q.aF.u3(_,O,I.d,I.v,r,255)}else F(O,I,n);q.xR(O)};bS.a7M=function(n,F,O,I){for(var e=0; +e>>1,r=16384,_=128,w=100;while(_>>1,r=16384,_=128;while(_=R&&hD=R)N[bg]=0}function iM(i5,bg){var fV=t[i5],hD=t[bg]; +if(fV>R&&hD<=R)N[bg]=0;if(fV<=R&&hD>R)N[i5]=0}if(i)for(var m=1;mgP)gw[e]=255-gw[e];if(gw[e+1]>gP)gw[e+1]=255-gw[e+1];if(gw[e+2]>gP)gw[e+2]=255-gw[e+2]}}if(n=="Wnd "){var C=F.rect,W=C.d,v=C.v,dT=["Wnd","Blst","Stgr"],fU=O.WndM.v.WndM; +q.y8.cU(F.buffer,W,v,r.buffer,[dT.indexOf(fU),O.Drct.v.Drct!="Left"])}if(n=="Bokh"){var C=F.rect,W=C.d,v=C.v,L=W*v,H=L*4,dV=F.buffer.slice(0),ac=O.BkDi.v.BtDi,e2=O.BkDc,cX=O.BkDp.v/255; +if(ac=="BeIn")cX=0;var eR=57*(.3+.7*((W+v)/2)/1750)*(O.BkIb.v/100)*(1+.2*Math.pow(cX,.1)),E=parseInt(O.BkIs.v.BtIs.slice(3)),gR=-O.BkIr.v*Math.PI/180,bN=[]; +for(var e=0;e<8;e++){var eG=gR+e*(Math.PI*2/E),ef=gR+(e+1)*(Math.PI*2/E),fi=Math.cos(eG),ep=Math.sin(eG),iJ=Math.cos(ef),aT=Math.sin(ef),dm=[0,0,0]; +q.PS.bM([[fi,ep,1,0],[iJ,aT,1,0],[1,1,1,1]],dm);if(dm[2]>0){dm[0]*=-1;dm[1]*=-1;dm[2]*=-1}bN.push(dm[0],dm[1],dm[2],0)}if(ac=="BeIn"){q.IW(dV,0,16777215); +cX=1}else if(ac=="BeIt"&&e2.v.BtDc=="BeCt"){}else{var c1;if(ac=="BeIt"&&e2.v.BtDc=="BeCm")c1=_[1];else if(ac=="BeIa")c1=_[2][e2.v]; +if(c1==null){q.IW(dV,0,16777215)}else{var gk;if(c1.rect.Qq(C))gk=c1.channel;else gk=c1.Uz(C);q.GF(gk,dV,3)}}if(l.Z0){var a8=dV,bX=W,bL=v,c_=1,eS=(O.BkSb.v==0||O.BkSt.v==255)&&ac=="BeIn"; +if(!eS){var c$=0;for(var e=0;e2e3){alert("too large radius");return}}while(eS&&3*(eR/c_)*(eR/c_)*W*v>500*2e3*2e3){var b_=q.B5(dV,new gv(0,0,bX,bL)); +dV=b_.zc;bX=b_.rect.d;bL=b_.rect.v;c_*=2}var s=Date.now(),hy=l.Y0(0,bX,bL);hy.set(dV);var gx=l.Y0(1,W,v); +l.wu(gx);l.filter.Yn({type:l.filter.pM,Rl:new Float32Array([1/bX,1/bL]),ahg:cX,akP:eR/c_,ah5:new Float32Array([O.BkSb.v/100,O.BkSt.v/255]),ac5:new Float32Array([O.BkNa.v/100,O.BkNt.v.BtNt=="BeNu"?0:1,O.BkNm.v?1:0]),aaM:new Float32Array(bN.slice(0,16)),akV:new Float32Array(bN.slice(16))},hy.sg); +gx.get(r.buffer);var eJ=r.buffer;for(var e=0;e>>2,iK=c0.indexArray.v.length>>>2,gu=new Float32Array(d4(c0.originalVertexArray.v)); +for(var e=0;e>>1;d6+=~~(iK/3)}var c9=F.rect,W=c9.d,v=c9.v;q.vr.mH(hy,W,v,r.buffer,W,v,en,cm,fK,c5); +q.xR(r.buffer)}if(n=="lightFilterGradient"){function ek(hQ){var fV=1/Math.sqrt(hQ[0]*hQ[0]+hQ[1]*hQ[1]+hQ[2]*hQ[2]); +hQ[0]*=fV;hQ[1]*=fV;hQ[2]*=fV}var W=F.rect.d,v=F.rect.v,L=W*v,s=Date.now(),fX=q.f(L),hD=.3,hf=.7;q.L2(r.buffer,fX); +var fo=q.f(L);q.Mo.MU(fX,fo,r.rect,16);var eY=q.f(L);q.Mo.MU(fX,eY,r.rect,8);var hG=fX,b=new Float32Array(L),aY=O.Dtl.v,gK=aY[2].v,b$=aY[1].v,c4=aY[0].v,gA=O.Scl.v*40*O.textureScale.v/(gK+b$+c4); +gK*=gA;b$*=gA;c4*=gA;for(var e=0;e>1;E|=E>>2;E|=E>>4;E|=E>>8;E|=E>>16;return E+1}var W=F.rect.d,v=F.rect.v,ea=bq(Math.max(W,v)),eP=ea>>>1,ds=new gv(0,0,ea,ea),c8=new gv(0,0,W,v); +c8.y=ea-v>>>1;var f$=W>>>1,gi=new gv(0,c8.y,f$,v),ar=new q.zF(W*v);q.WU(F.buffer,ar);var iP=new Float64Array(ea*ea),cx=new Float64Array(ea*ea),gk=q.f(ea*ea); +FFT.init(ea);var gU=[ar.Q,ar.l,ar.O];for(var e=0;e<3;e++){var eF=gU[e];gk.fill(0);if(n=="dDFT"){q.k9(eF,c8,gk,ds); +bS.a7M(gk,ea,iP,cx);q.k9(gk,ds,eF,c8,gi);gi.x+=f$;ds.x-=eP-f$;q.k9(gk,ds,eF,c8,gi);gi.x-=f$;ds.x+=eP-f$}else{q.k9(eF,c8,gk,ds,gi); +gi.x+=eP;c8.x+=eP-f$;q.k9(eF,c8,gk,ds,gi);gi.x-=eP;c8.x-=eP-f$;bS.akO(gk,ea,iP,cx);q.k9(gk,ds,eF,c8)}}q.Eb(ar,r.buffer)}if(n=="Avrg"){var cI=0,bZ=0,hL=0,f2=0,eq=1; +for(var e=0;e0)fh=Math.max(0,fh-a0);else fh=Math.min(0,fh+a0);r.buffer[e]=Math.max(0,Math.min(255,fJ+fh))}}if(n=="HghP")for(var e=0; +eaF?0:255}}}q.Eb(ar,r.buffer)}if(n=="Msc "){var dJ=O.ClSz.v.val,W=F.rect.d,v=F.rect.v,e9=Math.ceil(W/dJ),ht=Math.ceil(v/dJ),fe=q.f(e9*ht*4); +q.scale.qJ(F.buffer,W,v,fe,e9,ht,1/dJ);q.scale.qJ(fe,e9,ht,r.buffer,W,v,dJ)}if(n=="Clds"||n=="DfrC"){var W=r.rect.d,v=r.rect.v,L=W*v,gh=q.f(L); +if(n=="Clds")q.IW(r.buffer,4278190080);var hE=q.f(256*4);for(var e=0;e<256;e++){var hs=e<<2,f1=e/255,cE=1-f1; +hE[hs]=Math.round(f1*I.Q+cE*x.Q);hE[hs+1]=Math.round(f1*I.l+cE*x.l);hE[hs+2]=Math.round(f1*I.O+cE*x.O)}q.y8.a32(F.buffer,W,v,gh); +var ic=r.buffer;for(var e=0;e1,W=F.rect.d,v=F.rect.v,gO=q.aF.vy[by],dr=F.buffer.slice(0); +if(!au)q.VE(dr);q.aF.u3(dr,r.buffer,W,v,gO,255,!1,au);if(!au)q.xR(r.buffer)}if(n=="MtnB"){var eo=-O.Angl.v*Math.PI/180,df=O.Dstn.v.val/2,s=Date.now(),W=F.rect.d,v=F.rect.v,C=F.rect.clone(); +C.x=C.y=0;if(l.Z0){var s=Date.now(),bu=r.buffer;bu.set(F.buffer);q.VE(bu);var e8=l.Y0(0,W,v);e8.set(bu); +var t=q.f(4);t[0]=Math.round(128+127*Math.cos(eo));t[1]=Math.round(128+127*Math.sin(eo));new Uint32Array(bu.buffer).fill(new Uint32Array(t.buffer)[0]); +var eT=l.Y0(1,W,v);eT.set(bu);l.wu(e8,C);e8.ww(C);l.filter.Yn({type:l.filter.cw,Wt:eT.sg,Rl:new Float32Array([1/W,1/v]),amp:df/2,a2v:1},e8.Lu); +e8.get(bu);q.xR(bu)}else{var ba=new cD;ba.rotate(eo);var ap=c.V.oo([F.buffer,F.rect],ba,!1,null,!0); +bS.jJ(df,q.Mo.o6,ap.buffer,ap.rect);ba.uZ();ap=c.V.oo([ap.buffer,ap.rect],ba,!1,r.buffer.buffer,!0,r.rect)}console.log(Date.now()-s)}if(n=="RdlB"){var W=F.rect.d,v=F.rect.v,bV=O.Amnt.v,dA=O.BlrM.v.BlrM=="Zm",eM=O.Cntr.v,h9=eM.Hrzn.v,fE=eM.Vrtc.v,a5=Math.max(h9,1-h9)*W,i9=Math.max(fE,1-fE)*v,cw=Math.sqrt(a5*a5+i9*i9),dc=2*Math.PI*cw*1.5,ce=Math.round(dc),a9=Math.round(cw),gi=new gv(0,0,ce,a9),bE=q.f(ce*a9*4),gb=dA?4:1,ai=dA?.6:8*((W+v)/2)/1400,ao=.1,c_=1,i4=1; +q.J.ps(F.buffer,W,v,bE,ce,a9,h9,fE,gb,ao,c_,i4);var cC=dA?q.f(ce*a9*4):null;if(dA){q.J.ej(bE,cC,ce,a9); +var eH=cC;cC=bE;bE=eH;gi.d=a9;gi.v=ce}bS.jJ(ai*bV,q.Mo.o6,bE,gi);if(dA){q.J.ej(bE,cC,a9,ce);var eH=cC; +cC=bE;bE=eH;gi.d=ce;gi.v=a9}q.J.dR(bE,ce,a9,r.buffer,W,v,h9,fE,gb,ao,c_,i4)}if(n=="Plr "){var W=F.rect.d,v=F.rect.v; +if(O.Cnvr.v.Cnvr=="RctP")q.J.dR(F.buffer,W,v,r.buffer,W,v,.5,.5,1,0,2,W/v);else q.J.ps(F.buffer,W,v,r.buffer,W,v,.5,.5,1,0,2,W/v)}if(n=="FndE"){var W=F.rect.d,v=F.rect.v; +q.aF.jt(F.buffer,r.buffer,W,v)}if(n=="oilPaint"){var S=O.LghD.v*Math.PI/180,cv=[Math.cos(S),Math.sin(S),.001],D=[O.stylization.v,O.cleanliness.v,O.brushScale.v,O.microBrush.v,O.lightingOn.v,O.specularity.v,cv],C=F.rect.clone(); +C.x=C.y=0;q.FO.filter(F.buffer,C,r.buffer,D)}if(n=="Ofst"){var W=F.rect.d,v=F.rect.v,dN=new Uint32Array(F.buffer.buffer),b5=new Uint32Array(r.buffer.buffer),aA=O.Hrzn.v,bR=O.Vrtc.v,d8=O.Fl.v.FlMd; +q.IW(b5,0);if(d8=="Bckg"||d8=="Rpt"){var gi=F.rect.clone();gi.offset(aA,bR);q.nF(dN,gi,b5,r.rect)}if(d8=="Rpt"){var fi,ep,iJ,aT,gn; +aA=Math.max(-W,Math.min(W,aA));bR=Math.max(-v,Math.min(v,bR));fi=aA>0?aA:0;iJ=aA>0?W:W+aA;ep=bR>0?0:bR+v; +aT=bR>0?bR:v;gn=bR>0?0:W*(v-1);for(var m=ep;m0?0:W+aA; +iJ=aA>0?aA:W;ep=bR>0?bR:0;aT=bR>0?v:v+bR;gn=aA>0?0:W-1;for(var m=ep;m=0&&bR>=0){fi=0;iJ=aA;ep=0;aT=bR;gn=0}if(aA>=0&&bR<0){fi=0;iJ=aA;ep=v+bR;aT=v;gn=W*(v-1)}if(aA<0&&bR>=0){fi=W+aA; +iJ=W;ep=0;aT=bR;gn=W-1}if(aA<0&&bR<0){fi=W+aA;iJ=W;ep=v+bR;aT=v;gn=W*v-1}for(var m=ep;m0?eO/c9:c9/eO,i4=h9+hH*bn*a5,it=fE+hH*bn*i9,e=m*f4.HL+z<<1; +f4.map[e]=i4-z;f4.map[e+1]=it-m}}}else if(n=="Dspl"&&eB.length!=0){ew=O.UndA.v.UndA=="WrpA"?2:1;var fN=O.DspF.v.pth,iE; +for(var e=0;e>>1,o=$==0?2:1;ax.zu(Q.map,z,w,Z,o);ax.aq(z,Q.map,w,Z,o); +if($!=0){var h=ax.qb.indexOf(O.SDir.v.StrD),X=[1,1,1,0][h],D=[-1,0,1,1][h],f=2*$+1,R=1/f;for(var s=0; +s1)ax.jJ(bV,a5,i9,d,hs-1);if(n=="PlsW"){var gw=new Uint8Array(bV.buffer);for(var e=0;e>>1,eR=Z>>>1; +for(var e=0;e>>1,d9,[],0);q.aF.jt(cE,r.buffer,w,Z);q.Ct(r.buffer,cE); +q.uZ(cE);q.IW(cE,4278190080,16777215);bS.mV(cE,r.buffer,w,Z,O.EdgW.v>>>1,q.Bk.ap,[],0);var iU=O.EdgB.v/10; +for(var e=0;e>>2]=~~(.5+(eY[e]+eY[e+1]+eY[e+2])*(1/3));var hG=fo.slice(0);q.Mo.CH(hG,fo,d,ad); +var aY=Math.PI/d_,gK=new Float64Array(w),i=new Float64Array(w),b$=new Float64Array(2*w);for(var G=0; +G>>1))*aY;gK[G]=hy*hy;i[G]=Math.cos(hy);var X=G<<1;b$[X]=Math.sin(X*(1/4.5));b$[X+1]=Math.sin((X+1)*(1/4.5))}for(var s=0; +s>>1))*aY,t=Math.cos(b_),f7=b_*b_;for(var G=0;G46)q.round(fo); +ax.rh(fo,r.buffer,I,x)}for(var e=0;e=O?O-1:v,H=(w*O+L)*2,y=r[e];C+=y*n[H];W+=y*n[H+1]}F[P]=C; +F[P+1]=W}};ax.aq=function(n,F,O,I,x){var r=ax.Gt(x),_=6,d=13;for(var w=0;w=I?I-1:v,H=(L*O+Z)*2,y=r[e];C+=y*n[H];W+=y*n[H+1]}F[P]=C; +F[P+1]=W}};function fk(){}fk.uv=[2,5,5,7,4,4];fk.Dy="norm,diss,dark,mul ,idiv,lbrn,dkCl,lite,scrn,div ,lddg,lgCl,over,sLit,hLit,vLit,lLit,pLit,hMix,diff,smud,fsub,fdiv,hue ,sat ,colr,lum ".split(","); +fk.Cs="Nrml Dslv Drkn Mltp CBrn linearBurn darkerColor Lghn Scrn CDdg linearDodge lighterColor Ovrl SftL HrdL vividLight linearLight pinLight hardMix Dfrn Xclu blendSubtraction blendDivide H Strt Clr Lmns".split(" "); +fk.w9=[[15,10,0],[15,10,1],[15,10,2],[15,10,3],[15,10,4],[15,10,5],[15,10,6],[15,10,7],[15,10,8],[15,10,9],[15,10,10],[15,10,11],[15,10,12],[15,10,13],[15,10,14],[15,10,15],[15,10,16],[15,10,17],[15,10,18],[15,10,19],[15,10,20],[15,10,21],[15,10,22],[15,10,23],[15,10,24],[15,10,25],[15,10,26]]; +fk.aT=["normal",null,"darken","multiply","color-burn",null,null,"lighten","screen","color-dodge",null,null,"overlay","soft-light","hard-light",null,null,null,null,"difference","exclusion",null,null,"hue","saturation","color","luminosity"]; +fk.X4=function(n){if(n=="passThrough")return"pass";return fk.Dy[fk.Cs.indexOf(n)]};fk.Pw=function(n){if(n=="pass")return"passThrough"; +return fk.Cs[fk.Dy.indexOf(n)]};fk.getName=function(n){return fk.w9[fk.Dy.indexOf(n)]};function K(){this.rect=null; +this.mf="norm";this.opacity=255;this.fc=!1;this.Cq=0;this.Z8=0;this.wx=[];for(var e=0;e<10;e++)this.wx.push(0,0,255,255); +this.name=null;this.add={};this.buffer=null;this.SA=null;this.IQ=null;this.r=null;this.a8=null;this.a4z=30; +this.bk=K.Br();this.afY=K.Br();this.a5y=K.Br();this.a4E=K.Br();this.vE=0;this.qI=!1;this.HG=null;this.KJ=new K.Nc}K.Br=function(){var n=V.w("canvas"); +n.width=n.height=30;return n.getContext("2d")};K.Nc=function(){this.on=!0;this.hv=!0;this.hs=q.f(0); +this.ag1=q.f(0);this.L4=null;this.d8={};this.a0q=null;this.Ws=null;this.LH=null;this.Wm=null;this.ff=null; +this.M0=null;this.U4=null;this.lT=null;this.Ey=null;this.dr=null;this.th=null;this.cC=null;this.e_=!1}; +K.Nc.prototype.V8=function(){this.on=!1;this.hv=!1;this.L4=null;this.e_=l.Z0};K.Nc.prototype.aip=function(){ha.cg(this.d8); +this.hs=q.f(0);this.ag1=q.f(0);if(this.Wm)this.Wm.delete();if(this.ff)this.ff.delete();this.Wm=null; +this.ff=null;var n=[this.M0,this.U4,this.lT,this.Ey,this.dr,this.th];for(var e=0;e<6;e++)if(n[e]!=null&&n[e]instanceof l.zF)n[e].delete(); +this.M0=null;this.U4=null;this.lT=null;this.Ey=null;this.dr=null;this.th=null};K.prototype.D=function(n){if(n==null)n=this.rect.clone(); +if(this.KJ.L4==null)this.KJ.L4=n;else this.KJ.L4=this.KJ.L4.Tq(n)};K.prototype.Ja=function(){return this.add.lsct==ho.x7||this.add.lsct==ho.OC}; +K.prototype.zX=function(){var n=this.add;return n.SoCo!=null||n.GdFl!=null||n.PtFl!=null};K.prototype.HP=function(){var n=this.add.lmfx; +if(n==null)return;var F=["GrFl","patternFill"];for(var e=0;e>2);q.xg(r.Cv,d,3);if(!q.Qq(F.channel,d))return!1; +var w=q.f(_.d*_.v*4);q.nF(r.I6,r.Fe,w,_);q.p.F_("norm",r.Cv,r.JI,w,_,_,1);return q.Qq(w,this.buffer)}if(r.vE==1||r.vE==3){var Z=r.vE==1?this.B1():this.Fa(n).r; +if(!_.Qq(Z.rect))return!1;var P=q.f(_.X());P.fill(Z.color);q.k9(r.I6,r.Fe,P,_);q.p.b4(r.Cv,r.JI,P,_,F.channel,_,1); +return q.Qq(P,Z.channel)}};K.prototype.ah=function(n,F,O,I){var x=this.HG;x.JI.offset(F,O);var r=x.Fe.Tq(x.JI); +if(x.vE<=0){var _=q.f(r.X()*4);q.nF(x.I6,x.Fe,_,r);q.p.F_("norm",x.Cv,x.JI,_,r,r,1);this.buffer=_;this.rect=r; +this.D()}else{var d=this.vE==1?this.B1():this.Fa(n).r,w=q.f(r.X());w.fill(d.color);q.k9(x.I6,x.Fe,w,r); +q.p.b4(x.Cv,x.JI,w,r,I.channel,r,1);d.channel=w;d.rect=r.clone();if(this.vE==1){d.j8=!0;this.o3(n)}if(this.vE==3)this.D()}}; +K.prototype.Gf=function(){var n=[-1,0,1,2];if(this.r)n.push(-2);if(this.a8)n.push(-3);return n};K.prototype.getName=function(){return this.add.luni?this.add.luni:this.name}; +K.prototype.V9=function(E){this.add.luni=this.name=E};K.prototype.rq=function(n){var F=this.add.lnsr,O=this.add.TySh; +if(F=="rend"&&O)this.V9(bt.fQ(O.Vb).replace(/(?:\r\n|\r|\n)/g," ").slice(0,32))};K.prototype.Y9=function(){return(this.Cq&1<<1)==0}; +K.prototype.R9=function(){return(this.Cq&1<<4)==0};K.prototype.o_=function(){return(this.Cq&1<<5)!=0}; +K.prototype.a7a=function(){var n=this;if(n.add.lnsr!="bgnd"){n.add.lnsr="bgnd";n.V9("Background");n.add.lspf=1<<2}}; +K.prototype.aoC=function(){var n=this;if(n.add.lnsr=="bgnd"){delete n.add.lnsr;n.V9("Layer 0");n.add.lspf=0}}; +K.prototype.LF=function(n){var F=this.add.lspf;return F==null?!1:(F>>n&1)!=0};K.prototype.tt=function(n){if(n&&!this.Y9())this.Cq-=2; +if(!n&&this.Y9())this.Cq+=2};K.prototype.NN=function(){var n=this.add.lmfx;if(n==null)return!1;for(var F in n){if(F=="masterFXSwitch")continue; +if(F=="Scl")continue;if(F=="classID")continue;if(n[F].v.length>0)return!0}return!1};K.prototype.z3=function(){return this.add.SoLd!=null&&this.add.SoLd.filterFX!=null}; +K.prototype.C8=function(){var n=this.add.lmfx;if(n==null)return!1;if(!n.masterFXSwitch.v)return!1;for(var F in n){if(F=="masterFXSwitch")continue; +if(F=="Scl")continue;if(F=="classID")continue;var O=n[F].v;for(var e=0;e1){var w=q.Y.J5(_.b,null,_.oE); +d=q.z.gh(w)}else d=q.Y.if(_.b,_.C.length!=0?_.C:null)}else d=q.Y.if(_.b);x=x.Tq(d)}if(r.indexOf(3)!=-1)x=x.Tq(this.Fa(n).r.nJ()); +if(r.length==0&&this.zX())x=new gv(0,0,n.d,n.v);return x};K.prototype.MC=function(){var n=this.add.artb,F=n.artboardBackgroundType.v,O=0; +if(F==1)O=4294967295;else if(F==2)O=4278190080;else if(F==3)O=0;else if(F==4){O=n.Clr.v;O=255<<24|O.Bl.v<<16|O.Grn.v<<8|O.Rd.v}else throw F; +return O};K.prototype.Fn=function(){var n=this.add.artb.artboardRect.v,F=n.Btom.v,O=n.Left.v,I=n.Rght.v,top=n.Top.v; +return new gv(O,top,I-O,F-top)};K.prototype.Hp=function(n){var F=K.DO(n);if(this.add.artb==null)this.add.artb={classID:"artboard",artboardRect:{t:"Objc",v:null},artboardBackgroundType:{t:"long",v:1}}; +this.add.artb.artboardRect.v=F};K.DO=function(n){var F={classID:"classFloatRect",Top:{t:"doub",v:0},Left:{t:"doub",v:0},Btom:{t:"doub",v:0},Rght:{t:"doub",v:0}}; +F.Btom.v=n.y+n.v;F.Left.v=n.x;F.Rght.v=n.x+n.d;F.Top.v=n.y;return F};K.prototype.rT=function(n,F,O){var I=[],x=this,r=this.qI; +if(!F&&x.qI&&O){I.push(2)}else if(x.vE<=0||F){if(x.R9())if(!this.rect.D2())I.push(0);if(x.B1()&&!x.B1().rect.D2())if(x.B1().Tu||F)I.push(1); +if(x.add.vmsk)if(x.add.vmsk.Tu||F)I.push(2);if(x.z3()&&x.Fa(n).r&&!x.Fa(n).r.rect.D2())I.push(3)}else if(x.vE==1){I.push(1); +if(x.B1().Tu&&!x.B1().rect.D2()){if(x.R9())if(!this.rect.D2())I.push(0);if(x.add.vmsk)if(x.add.vmsk.Tu)I.push(2)}}else if(x.vE==3&&!x.Fa(n).r.rect.D2())I.push(3); +if(x.add.artb&&I.indexOf(0)==-1)I.push(0);I.sort();return I};K.prototype.B1=function(){var n=this;return n.a8?n.a8:n.add.vmsk&&n.add.vmsk.isEnabled?null:n.r}; +K.prototype.Fa=function(n){var F=this.add.SoLd.placed.v,O=n.add.FEid;if(O==null)return null;for(var e=0; +e3e4*3e4)F=new gv(0,0,100,100); +if(n&&n[O].v[O]!="strokeStyleAlignInside"){var x=1;if(n[I].v[I]=="strokeStyleMiterJoin"){var r=q.Y.aoE(this.b),_=r/2,d=Math.sin(_),w=Math.cos(_); +w/=d;d=1;var x=Math.sqrt(w*w+d*d);if(isNaN(x)||x<1)x=1}x*=n[O].v[O]=="strokeStyleAlignOutside"?1:.5; +var Z=Math.ceil(n.strokeStyleLineWidth.v.val*x);Z=Math.min(Z,600);F.EM(Z,Z)}F=q.z.Me(F);var P=new K.FZ; +P.color=q.Y.zz(this.b)?0:255;P.Tu=this.Tu;P.isEnabled=this.isEnabled;P.Qe=!0;P.rect=F;P.JP=this.JP;P.RI=this.RI; +P.channel=q.f(P.rect.X());if(!F.D2())q.Y.ah3(this.b,P.channel,P.rect,n);if(n==null){this.a8=P;this.j8=!1}return P}; +K.X9.prototype.clone=function(){var n=new K.X9;n.Tu=this.Tu;n.isEnabled=this.isEnabled;n.JP=this.JP; +n.RI=this.RI;n.b=K.X9.jI(this.b);n.AZ=this.AZ.slice(0);n.Ay=this.Ay;n.C=this.C.slice(0);n.oE=this.oE.slice(0); +return n};K.X9.prototype.concat=function(n){var F=n.b.slice(2);if(F.length==0)return;F[0].Xu=3;this.b=this.b.concat(F)}; +K.X9.jI=function(n){var F=[];for(var e=0;e5||O.type==0||O.type==3)F.push(JSON.parse(JSON.stringify(O))); +else F.push({type:O.type,pt:O.pt.clone(),I:O.I.clone(),Cz:O.Cz.clone()})}return F};K.X9.aha=function(n,F,O){if(n.length!=F.length)return!1; +for(var e=2;eF.K_.length)F.K_=n.slice(0); +if(this.depth!=0)n.pop()};hw.prototype.a6s=function(){var n=0;if(this.$.Ja()){for(var e=0;e=0;e--){var E=this.children[e],I=E.q9(n,F);if(I&&F==null)return I}return null}else if(O.add.TySh&&O.rect.JX(n)||q.acV(n,O.buffer,O.rect)){if(F==null)return this; +else F.push(this.index)}return null};hw.prototype.ah8=function(n){var F=this.$;if(!F.Y9()||F.LF(2)||F.LF(31))return null; +var O=F.add.vmsk;if(O&&O.isEnabled){var I=q.Y.q9(O.b,n).FI;if(I!=-1)return{am1:this,adn:I}}if(F.Ja()){for(var e=this.children.length-1; +e>=0;e--){var E=this.children[e],x=E.ah8(n);if(x)return x}return null}return null};hw.prototype.$Z=function(n,F){n.push(this.index); +if(this.$.Ja()){n.push(this._j);if(F)if(this.$.vE==1&&this.$.B1().Tu==!1)return;for(var e=0;eF.v){x=O;r=Math.floor(O*(F.v/F.d))}else{x=Math.floor(O*(F.d/F.v));r=O}if(I.zX()&&I.add.vmsk==null||I.add.TySh)x=r=Math.max(r,16); +else{x=Math.max(x,6);r=Math.max(r,6)}var _=r,d=I.zX()&&I.add.vmsk;if(d){var w=I.rect.clone(),C,W;if(w.D2())w=new gv(0,0,20,20); +var Z=w.d,P=w.v;if(Z>P){C=O;W=Math.floor(O*(P/Z))}else{C=Math.floor(O*(Z/P));W=O}if(C*W==0)C=W=16;q.Sr.Y8(I.bk,C,W,w,I.buffer,I.rect,!1); +q.Sr.a5r(I.bk,C,W);_=W}else if(I.add.TySh){q.Sr.a2i(I.bk,_,_,I.add.TySh)}else if(I.add.SoCo){_=Math.max(16,Math.min(x,r)); +q.Sr.anU(I.bk,_,_,I.add.SoCo)}else if(I.add.GdFl){q.Sr.ano(I.bk,_,_,I.add.GdFl)}else if(I.add.PtFl){q.Sr.a56(I.bk,_,_,I.add.PtFl,n)}else if(dK.get(I.add)!=null){q.Sr.a6Z(I.bk,_,_,I.add)}else if(I.add.SoLd){q.Sr.Y8(I.bk,x,r,F,I.buffer,I.rect,!1); +q.Sr.aiV(I.bk,x,r,I.add.SoLd)}else if(I.Ja()){_=16}else{if(I.R9())q.Sr.Y8(I.bk,x,r,F,I.buffer,I.rect,!1); +else{q.Sr.aa4(I.bk,_,_)}}var v=I.B1();if(v)q.Sr.Tx(I.afY,x,r,F,v);if(I.z3()&&I.Fa(n)&&I.Fa(n).r){var L=I.Fa(n).r; +q.Sr.Tx(I.a4E,x,r,F,L)}if(!d&&I.add.vmsk){q.Sr.Tx(I.a5y,x,r,F,I.add.vmsk.B1(),!0)}if(I.add.vmsk||v)_=Math.max(_,r); +I.a4z=Math.max(_,16);if(I.Ja()&&I.add.lsct==ho.x7)for(var e=0;e0||_.fill!=1||r.C8())){this.ky(n,F,O,I); +return}var w=r.Ja()&&r.mf=="pass"&&(x.length>0||_.fill!=1||r.C8()),Z=r.rect,P=r.buffer;if(r.Ja()){Z=this.nJ(I,!1); +var W=q.f(Z.X()*4);C=q.f(Z.X());this.ky(W,Z,O,I);q.xg(W,C,3)}else if(d){Z=F.clone();C=q.f(Z.X());C.fill(255)}else{Z=r.rect; +C=q.f(Z.X());q.xg(P,C,3)}if(r.uW()){var v=r.r.Uz(Z);q.yr(v,C)}if(r.C8())L=ha.gG(r.add.lmfx,r.add.fxrp,C,Z,I); +if(r.C8())ha.zN(r.add.lmfx,L,Z,n,F,O);if(r.Ja()){P=q.f(Z.X()*4);if(r.mf=="pass")q.nF(n,F,P,Z);if(w){var W=q.f(Z.X()*4); +this.ky(W,Z,O,I);var H=q.f(Z.X());q.xg(W,H,3);q.oh(H,Z,P,Z)}this.ky(P,Z,O,I)}if(d){P=n.slice(0);q.IW(P,4278190080,16777215); +var y=dK.get(r.add),g=dK.k6(y,r.add[y]);dK.Fl(g,P,P,Z)}var Q=P.slice(0);q.IW(Q,4278190080,16777215); +for(var e=0;ep.or.d)p=A[e]; +var U=q.f(p.or.d*p.or.v*4);q.nF(n,F,U,p.or)}ha.xd(r.add.lmfx,L,Z,n,F,O,J,U,p?p.or:null)}q.p.Nb(J,Z,n,F,C,Z,0,O,1,r.mf=="diss")}; +hw.prototype.ky=function(n,F,O,I){var x=this.children;for(var e=0;er||!_&&r.indexOf(this.index)==-1)){return}var d=this.$,w=ha.NY(d),Z=hw.bm,P=d.zX()?d.B1():d.r; +if(!d.Y9())return;if(d.uW()&&P.rect.D2()){return}if(d.add.vstk==null&&this.nJ(I,!1).D2()&&d.add.artb==null){return}var C=this.nJ(I,!0).lN(O); +if(!F.Qq(O)&&!O.G3(C)&&d.add.artb==null)return;if(d.Ja()&&d.add.artb){var W=d.Fn();O=O.lN(W);var v=d.MC(); +if(v!=0){if(l.Z0){l.wu(n,O);l.rF(v);l.rF(v)}else q.a4i(n,F,O,v)}}var L=hw.ur(d,x,w);if(!L){this.PA(n,F,O,I,x,r); +return}d.KJ.M0=Z.xh(d.KJ.M0,C.d,C.v);Z.k9(n,F,d.KJ.M0,C,O);this.PA(d.KJ.M0,C,O,I,x,r);Z.Nb(d.KJ.M0,C,n,F,null,null,0,O,d.opacity/255,d.mf=="diss",w.fr)}; +hw.ur=function(n,F,O){if(O.fr[0]*O.fr[1]*O.fr[2]==0)return!0;return n.opacity!=255&&(F.length!=0||n.Ja()||n.C8())}; +hw.a02={KJ:{}};hw.prototype.PA=function(n,F,O,I,x,r){var _=this.$,d=ha.NY(_),w=dK.get(_.add)!=null,Z=hw.bm,P=hw.ur(_,x,d),C=P?1:_.opacity/255,W=_.zX()?_.B1():_.r,v=_.Ja()&&_.mf=="pass"&&!(x.length>0||d.fill!=1||_.C8()),L=!_.Ja()&&!w&&!_.C8()&&x.length==0,H=w&&!_.C8()&&x.length==0,p=null,U=null,j=null,T; +if(v||L||H){var y=n,g=F;if(_.uW()){g=this.nJ(I,!1);y=_.KJ.Ey=Z.xh(_.KJ.Ey,g.d,g.v);Z.k9(n,F,_.KJ.Ey,g)}if(v)this.DN(y,g,O,I,r); +if(L)Z.F_(_.mf,_.MM(I),_.rect,y,g,O,C,d);if(H){var Q=_.uW()&&W.S_()==0?W.nJ().clone():g.clone(),J=_.KJ; +if(Q.Qq(new gv(0,0,I.d,I.v)))J=hw.a02;J.lT=this.ks(y,g,J.lT,Q,_.add);d.rU=!0;Z.F_(_.mf,J.lT,Q,y,g,O,C,d)}if(_.uW())Z.Nb(y,g,n,F,_.BA(),W.nJ(),W.S_(),O,1,_.mf=="diss"); +_.KJ.V8();return}var A=_.Ja()&&_.mf=="pass"&&(x.length>0||d.fill!=1||_.C8()),Q=_.rect;if(_.Ja()){Q=this.nJ(I,!1); +j=_.KJ.lT=Z.xh(_.KJ.lT,Q.d,Q.v);Z.IW(j,0);this.DN(j,Q,Q,I,r);U=Z.xh(_.KJ.U4,Q.d,Q.v);Z.k9(j,Q,U,Q)}else if(w){Q=_.uW()&&W.S_()==0?W.nJ().clone():F.clone(); +U=Z.xh(_.KJ.U4,Q.d,Q.v);Z.IW(U,4294967295)}else{Q=_.rect;p=_.MM(I);U=Z.xh(_.KJ.U4,Q.d,Q.v);Z.k9(p,Q,U,Q)}_.KJ.U4=U; +if(_.uW())Z.am7(_.BA(),W.nJ(),W.S_(),U,Q);if(_.C8())if(_.KJ.L4||_.KJ.hv||_.KJ.e_!=l.Z0||_.KJ.on||_.Ja()){var b=q.f(Q.d*Q.v); +if(ha.Uj(_.add.lmfx)){if(l.Z0){if(!_.Ja()&&_.B1()==null&&_.rect.Qq(Q))q.xg(_.buffer,b,3);else{var s=q.f(Q.d*Q.v*4); +U.get(s);q.xg(s,b,3)}}else q.xg(U,b,3)}if(_.KJ.hv||_.KJ.e_!=l.Z0||!q.Qq(b,_.KJ.hs)){var G=null;if(_.zX()&&_.add.vmsk&&_.add.vmsk.isEnabled&&_.add.vmsk.B1().color==0)G=_.add.vmsk.B1().rect; +ha.aan(_.KJ.d8,b,Q,_.add.lmfx,_.add.fxrp,I,G);_.KJ.hs=b}}if(_.C8())ha.zN(_.add.lmfx,_.KJ.d8,Q,n,F,O); +if(_.Ja()){p=Z.xh(_.KJ.Ey,Q.d,Q.v);Z.IW(p,0);if(_.mf=="pass")Z.k9(n,F,p,Q);if(A)Z.qw(j,Q,p,Q);this.DN(p,Q,O,I,r); +_.KJ.Ey=p}if(w){p=_.KJ.Ey=this.ks(n,F,_.KJ.Ey,Q,_.add)}if(_.Ja()||w)T=p;else{T=Z.xh(_.KJ.Ey,Q.d,Q.v); +Z.k9(p,Q,T,Q,O);_.KJ.Ey=T}Z.IW(T,4278190080,16777215);for(var e=0;e$.or.d)$=m[e]; +_.KJ.th=Z.xh(_.KJ.th,$.or.d,$.or.v);Z.k9(n,F,_.KJ.th,$.or,O);_.KJ.cC=Z.xh(_.KJ.cC,$.or.d,$.or.v)}ha.xd(_.add.lmfx,_.KJ.d8,Q,n,F,O,z,_.KJ.th,_.KJ.cC,$?$.or:null)}if(!l.Z0){var o=q.f(Q.X()); +q.xg(U,o,3);U=o}Z.Nb(z,Q,n,F,U,Q,0,O,1,_.mf=="diss");_.KJ.V8()};hw.prototype.ks=function(n,F,O,I,x){var r=dK.get(x),_; +if(r)_=dK.k6(r,x[r]);var d=hw.bm;O=d.xh(O,I.d,I.v);if(!(l.Z0&&F.Qq(I)))d.k9(n,F,O,I);if(_){if(l.Z0){var w=I.clone(); +w.x=w.y=0;if(F.Qq(I)){l.wu(O,w);dK.Yn(_,n.sg,w)}else{l.wu(O,I);O.ww(I);dK.Yn(_,O.Lu,w)}}else dK.Fl(_,O,O,I)}return O}; +hw.prototype.DN=function(n,F,O,I,x){var r=this.children;for(var e=0;e1.0001; +if(C){W.d=Math.round(W.d/v);W.v=Math.round(W.v/v);W.x=Math.round((this.d-W.d)/2);W.y=Math.round((this.v-W.v)/2)}else if(x&&fx.TG(n.buffer)=="pdf"&&this.gC!=144){var v=144/this.gC; +W.d=Math.round(W.d/v);W.v=Math.round(W.v/v);C=!0}P.buffer=q.f(P.rect.X()*4);if(!C)q.Ct(w.yO[0],P.buffer)}P.add.SoLd={classID:"null",Idnt:{t:"TEXT",v:r},Impr:{t:"Objc",v:{__name:"None",classID:"none"}},placed:{t:"TEXT",v:Z},PgNm:{t:"long",v:1},totalPages:{t:"long",v:1},frameStep:{t:"Objc",v:{classID:"null",numerator:{t:"long",v:0},denominator:{t:"long",v:600}}},duration:{t:"Objc",v:{classID:"null",numerator:{t:"long",v:0},denominator:{t:"long",v:600}}},frameCount:{t:"long",v:1},Annt:{t:"long",v:16},Type:{t:"long",v:2},Trnf:null,nonAffineTransform:null,warp:{t:"Objc",v:q.qF.f(P.rect)},Sz:{t:"Objc",v:{classID:"Pnt",Wdth:{t:"doub",v:P.rect.d},Hght:{t:"doub",v:P.rect.v}}},Rslt:{t:"UntF",v:{type:"#Rsl",val:72}}}; +var L=q.z.om(P.rect).H;P.add.SoLd.Trnf=c.V.uB(L);P.add.SoLd.nonAffineTransform=c.V.uB(L);if(C)P.aY(this,!1); +return P};fj.prototype.dH=function(n){if(n!=null){this.D();this.nu(n);var F=this.buffer;if(l.Z0)this.QF.get(F); +else F=F.slice(0);this.D();this.nu();return F}if(this.L4){this.nu();this.L4=null}if(l.Z0&&this.eg){this.QF.get(this.buffer); +this.eg=null;this.T3=!0}return this.buffer};fj.prototype.qY=function(){for(var e=0;e"); +F.add.lsct=ho.bu;F.Cq=24;return F};fj.prototype.qr=function(){return this.ok!=this.qs};fj.prototype.p$=function(n){while(this.history.length>this.ok+1)this.history.pop(); +if(this.qs>this.ok)this.qs=-1;if(n.T.id!=c.rY){this.Po=!0;if(this.M$.lastAppliedComp){delete this.M$.lastAppliedComp; +this.T3=!0}}this.history.push(n);this.ok++;this.T3=!0;var F=dW.$m()?60:30,O=0;for(var e=this.history.length-1; +e>=0;e--){var I=this.history[e];if(I.N$)continue;O++;if(O==F){this.ok-=e;this.history=this.history.slice(e); +break}}};fj.prototype.mG=function(){if(this.ok!=this.history.length-1)return null;return this.history[this.history.length-1]}; +fj.prototype.aV=function(n,F,O,I){if(n==null)n=!1;var x=F!=null?[F]:this.C.slice(0);if(I){var r=[];for(var e=0; +e2){var x=I.Hi[0];x.FI=-1; +F.push(x);if(I.f$.indexOf(0)!=-1)O.push(F.length-1)}var _=I.a5==null;if(_)I.a5=[];for(var e=I.C.length-1; +e>=0;e--){var d=I.t[I.C[e]],w=d.add.TySh;if(d.add.vmsk!=null&&(d.qI||d.zX())){var x=fj.kh("\""+d.getName()+"\" Shape Path",d.add); +x.FI=I.C[e];F.push(x);if(_)I.a5.push(r);if(I.a5.indexOf(r)!=-1)O.push(F.length-1);r++}if(n!=!0&&w&&w.add&&q.qF.x9(w.Gp)){var x=fj.kh("\""+d.getName().slice(0,10)+"..\" Text Path",w.add); +x.FI=1e6+I.C[e];F.push(x);O.push(F.length-1);r++}}if(O.length==0&&n){I.Hi[0].FI=-1;I.f$=[0];O.push(F.length); +F.push(I.Hi[0])}return[F,O]};fj.prototype.pO=function(e,n){var F=[],E=this.root.Dv(e);if(E)E.$Z(F,n); +return F};fj.prototype.tQ=function(){this.root.JC(this,new gv(0,0,this.d,this.v),32)};fj.prototype.xc=function(n){for(var e=0; +e1e3){var F=this.root.children; +for(var e=0;e>>8&255)<<8|P>>>16;w.rect=new gv(0,0,O,I);w.buffer=q.f(O*I*4); +q.IW(w.buffer,{Wht:4294967295,BckC:255<<24|P}[Z])}d.buffer=q.f(O*I*4);return d};function h0(n){this.KH=n; +this.K=0;this.hp=1;this.n=new aE(0,0);this.YR=new aE(0,0);this.VH=0;this.o=[1,1,1];this.Nv=new gv(0,0,1,1); +this.am$=new gv(0,0,n.d,n.v);this.LL=null;this.xj=null;this.Ih=new Uint32Array(0);this.$R=null;this.bs=null; +this.LN=q.f(0);this.Cr=null;this.Iz=null}h0.prototype.eY=function(n){var F=new cD,O=this.Nv,I=this.KH,x=n?this.hp:this.K,r=n?this.YR:this.n,_=Math.round((O.d-I.d*x)/2+r.x),d=Math.round((O.v-I.v*x)/2+r.y); +F.translate(-_,-d);F.scale(1/x,1/x);var w=I.d/2,Z=I.v/2;F.translate(-w,-Z);F.rotate(this.VH);F.translate(w,Z); +return F};h0.prototype.cL=function(n){var F=this.Nv,O=this.KH,I=Math.atan2(-n.O,n.R),x=O.d/2,r=O.v/2; +n.translate(-x,-r);n.rotate(-I);n.translate(x,r);var _=1/n.GW();n.scale(_,_);var d=-n.hb,w=-n.i9,Z=Math.round(d-(F.d-O.d*_)/2),P=Math.round(w-(F.v-O.v*_)/2); +if(Math.abs(_-Math.round(_))<1e-6)_=Math.round(_);this.VH=I;this.K=_;this.n=new aE(Z,P)};h0.prototype.jR=function(n,F){var O=this.eY(); +return O.Pz(new aE(n,F))};h0.prototype.Hl=function(n,F){var O=this.eY();O.uZ();return O.Pz(new aE(n,F))}; +function bW(){}bW.order="ebbl FrFX IrSh IrGl ChFX SoFi GrFl patternFill OrGl DrSh".split(" ");bW.jV="ebblMulti frameFXMulti innerShadowMulti IrGlMulti ChFXMulti solidFillMulti gradientFillMulti patternFillMulti OrGlMulti dropShadowMulti".split(" "); +bW.names=[[14,4],[14,9],[14,1],[14,3],[14,8],[14,5],[14,6],[14,7],[14,2],[14,0]];bW.Ig=["DrSh","IrSh","SoFi","GrFl","FrFX"]; +bW.ez=["Clr"];bW.KK="Grad Rvrs Type Algn Angl Dthr Scl Ofst".split(" ");bW.dC=["Ptrn","Scl","Algn","phase"]; +bW.Pg={g$:"{\"t\":\"Objc\",\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":255,\"t\":\"doub\"},\"Grn\":{\"v\":0,\"t\":\"doub\"},\"Bl\":{\"v\":0,\"t\":\"doub\"}}}",mC:"{\"t\":\"Objc\",\"v\":{\"classID\":\"Grdn\",\"Nm\":{\"v\":\"Two Color\",\"t\":\"TEXT\"},\"GrdF\":{\"v\":{\"GrdF\":\"CstS\"},\"t\":\"enum\"},\"Intr\":{\"v\":4096,\"t\":\"doub\"},\"Clrs\":{\"v\":[{\"v\":{\"classID\":\"Clrt\",\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":0,\"t\":\"doub\"},\"Grn\":{\"v\":0,\"t\":\"doub\"},\"Bl\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},\"Type\":{\"v\":{\"Clry\":\"UsrS\"},\"t\":\"enum\"},\"Lctn\":{\"v\":0,\"t\":\"long\"},\"Mdpn\":{\"v\":50,\"t\":\"long\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"Clrt\",\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":255,\"t\":\"doub\"},\"Grn\":{\"v\":255,\"t\":\"doub\"},\"Bl\":{\"v\":255,\"t\":\"doub\"}},\"t\":\"Objc\"},\"Type\":{\"v\":{\"Clry\":\"UsrS\"},\"t\":\"enum\"},\"Lctn\":{\"v\":4096,\"t\":\"long\"},\"Mdpn\":{\"v\":50,\"t\":\"long\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"},\"Trns\":{\"v\":[{\"v\":{\"classID\":\"TrnS\",\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},\"Lctn\":{\"v\":0,\"t\":\"long\"},\"Mdpn\":{\"v\":50,\"t\":\"long\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"TrnS\",\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},\"Lctn\":{\"v\":4096,\"t\":\"long\"},\"Mdpn\":{\"v\":50,\"t\":\"long\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"}}}",v5:"{\"t\":\"Objc\",\"v\":{\"classID\":\"Grdn\",\"Nm\":{\"v\":\"Foreground to Background\",\"t\":\"TEXT\"},\"GrdF\":{\"t\":\"enum\",\"v\":{\"GrdF\":\"CstS\"}},\"Intr\":{\"t\":\"doub\",\"v\":4096},\"Clrs\":{\"t\":\"VlLs\",\"v\":[{\"t\":\"Objc\",\"v\":{\"classID\":\"Clrt\",\"Type\":{\"t\":\"enum\",\"v\":{\"Clry\":\"FrgC\"}},\"Lctn\":{\"t\":\"long\",\"v\":0},\"Mdpn\":{\"t\":\"long\",\"v\":50}}},{\"t\":\"Objc\",\"v\":{\"classID\":\"Clrt\",\"Type\":{\"t\":\"enum\",\"v\":{\"Clry\":\"BckC\"}},\"Lctn\":{\"t\":\"long\",\"v\":4096},\"Mdpn\":{\"t\":\"long\",\"v\":50}}}]},\"Trns\":{\"t\":\"VlLs\",\"v\":[{\"t\":\"Objc\",\"v\":{\"classID\":\"TrnS\",\"Opct\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":100}},\"Lctn\":{\"t\":\"long\",\"v\":0},\"Mdpn\":{\"t\":\"long\",\"v\":50}}},{\"t\":\"Objc\",\"v\":{\"classID\":\"TrnS\",\"Opct\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":100}},\"Lctn\":{\"t\":\"long\",\"v\":4096},\"Mdpn\":{\"t\":\"long\",\"v\":50}}}]}}}",fm:"{\"t\":\"Objc\",\"v\":{\"classID\":\"Ptrn\",\"Nm\":{\"v\":\"orangeslices\",\"t\":\"TEXT\"},\"Idnt\":{\"v\":\"c7acb22a-47a6-11de-919a-bf574370eaaf\",\"t\":\"TEXT\"}}}"}; +bW.Pg.g$="\"Clr\": "+bW.Pg.g$;bW.Pg.W="\"Grad\":"+bW.Pg.mC+",\"Rvrs\":{\"v\":false,\"t\":\"bool\"},\"Type\":{\"v\":{\"GrdT\":\"Lnr\"},\"t\":\"enum\"},\"Algn\":{\"v\":true,\"t\":\"bool\"},\"Angl\":{\"v\":{\"type\":\"#Ang\",\"val\":90},\"t\":\"UntF\"},\"Scl\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},\"Ofst\":{\"v\":{\"classID\":\"Pnt\",\"Hrzn\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"Vrtc\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"}},\"t\":\"Objc\"},\"Dthr\":{\"v\":false,\"t\":\"bool\"}"; +bW.Pg.fm="\"Ptrn\":"+bW.Pg.fm+",\"Scl\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},\"Algn\":{\"v\":true,\"t\":\"bool\"},\"phase\":{\"v\":{\"classID\":\"Pnt\",\"Hrzn\":{\"v\":0,\"t\":\"doub\"},\"Vrtc\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"}"; +bW.default="{ \"classID\": \"null\", \"Scl\": {\"t\": \"UntF\", \"v\": { \"type\": \"#Prc\",\"val\": 100} }, \"masterFXSwitch\": {\"t\": \"bool\",\"v\": true} }"; +bW.E5=["{\"classID\":\"ebbl\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"hglM\":{\"t\":\"enum\",\"v\":{\"BlnM\":\"Scrn\"}},\"hglC\":{\"t\":\"Objc\",\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"t\":\"doub\",\"v\":255},\"Grn\":{\"t\":\"doub\",\"v\":255},\"Bl\":{\"t\":\"doub\",\"v\":255}}},\"hglO\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":75}},\"sdwM\":{\"t\":\"enum\",\"v\":{\"BlnM\":\"Mltp\"}},\"sdwC\":{\"t\":\"Objc\",\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"t\":\"doub\",\"v\":0},\"Grn\":{\"t\":\"doub\",\"v\":0},\"Bl\":{\"t\":\"doub\",\"v\":0}}},\"sdwO\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":75}},\"bvlT\":{\"t\":\"enum\",\"v\":{\"bvlT\":\"SfBL\"}},\"bvlS\":{\"t\":\"enum\",\"v\":{\"BESl\":\"InrB\"}},\"uglg\":{\"t\":\"bool\",\"v\":true},\"lagl\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Ang\",\"val\":120}},\"Lald\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Ang\",\"val\":30}},\"srgR\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":100}},\"blur\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Pxl\",\"val\":5}},\"bvlD\":{\"t\":\"enum\",\"v\":{\"BESs\":\"In\"}},\"TrnS\":{\"t\":\"Objc\",\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"t\":\"TEXT\",\"v\":\"Linear\"},\"Crv\":{\"t\":\"VlLs\",\"v\":[{\"t\":\"Objc\",\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"t\":\"doub\",\"v\":0},\"Vrtc\":{\"t\":\"doub\",\"v\":0}}},{\"t\":\"Objc\",\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"t\":\"doub\",\"v\":255},\"Vrtc\":{\"t\":\"doub\",\"v\":255}}}]}}},\"antialiasGloss\":{\"t\":\"bool\",\"v\":false},\"Sftn\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Pxl\",\"val\":0}},\"useShape\":{\"t\":\"bool\",\"v\":false},\"MpgS\":{\"t\":\"Objc\",\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"t\":\"TEXT\",\"v\":\"Linear\"},\"Crv\":{\"t\":\"VlLs\",\"v\":[{\"t\":\"Objc\",\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"t\":\"doub\",\"v\":0},\"Vrtc\":{\"t\":\"doub\",\"v\":0}}},{\"t\":\"Objc\",\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"t\":\"doub\",\"v\":255},\"Vrtc\":{\"t\":\"doub\",\"v\":255}}}]}}},\"AntA\":{\"t\":\"bool\",\"v\":false},\"Inpr\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":28}},\"useTexture\":{\"t\":\"bool\",\"v\":false},\"InvT\":{\"t\":\"bool\",\"v\":false},\"Algn\":{\"t\":\"bool\",\"v\":true},\"Scl\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":100}},\"textureDepth\":{\"t\":\"UntF\",\"v\":{\"type\":\"#Prc\",\"val\":100}},\"Ptrn\":{\"t\":\"Objc\",\"v\":{\"classID\":\"Ptrn\",\"Nm\":{\"t\":\"TEXT\",\"v\":\"orangeslices\"},\"Idnt\":{\"t\":\"TEXT\",\"v\":\"c7acb22a-47a6-11de-919a-bf574370eaaf\"}}},\"phase\":{\"t\":\"Objc\",\"v\":{\"classID\":\"Pnt\",\"Hrzn\":{\"t\":\"doub\",\"v\":0},\"Vrtc\":{\"t\":\"doub\",\"v\":0}}}}","{\"classID\":\"FrFX\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Nrml\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},\"Styl\":{\"v\":{\"FStl\":\"OutF\"},\"t\":\"enum\"},\"PntT\":{\"v\":{\"FrFl\":\"SClr\"},\"t\":\"enum\"},\"Sz\":{\"v\":{\"type\":\"#Pxl\",\"val\":3},\"t\":\"UntF\"},"+bW.Pg.g$+","+bW.Pg.W+","+bW.Pg.fm+"}","{\"classID\":\"IrSh\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Mltp\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\": 75},\"t\":\"UntF\"},\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":0,\"t\":\"doub\"},\"Grn\":{\"v\":0,\"t\":\"doub\"},\"Bl\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},\"uglg\":{\"v\":true,\"t\":\"bool\"},\"lagl\":{\"v\":{\"type\":\"#Ang\",\"val\":120},\"t\":\"UntF\"},\"Dstn\":{\"v\":{\"type\":\"#Pxl\",\"val\":5},\"t\":\"UntF\"},\"Ckmt\":{\"v\":{\"type\":\"#Pxl\",\"val\":0},\"t\":\"UntF\"},\"blur\":{\"v\":{\"type\":\"#Pxl\",\"val\":5},\"t\":\"UntF\"},\"Nose\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"AntA\":{\"v\":false,\"t\":\"bool\"},\"TrnS\":{\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"v\":\"Linear\",\"t\":\"TEXT\"},\"Crv\":{\"v\":[{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":0,\"t\":\"doub\"},\"Vrtc\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":255,\"t\":\"doub\"},\"Vrtc\":{\"v\":255,\"t\":\"doub\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"}},\"t\":\"Objc\"}}","{\"classID\":\"IrGl\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Scrn\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\": 75},\"t\":\"UntF\"},\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":255,\"t\":\"doub\"},\"Grn\":{\"v\":255,\"t\":\"doub\"},\"Bl\":{\"v\":189.99710083007812,\"t\":\"doub\"}},\"t\":\"Objc\"},\"GlwT\":{\"v\":{\"BETE\":\"SfBL\"},\"t\":\"enum\"},\"Ckmt\":{\"v\":{\"type\":\"#Pxl\",\"val\":0},\"t\":\"UntF\"},\"blur\":{\"v\":{\"type\":\"#Pxl\",\"val\":5},\"t\":\"UntF\"},\"ShdN\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"Nose\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"AntA\":{\"v\":false,\"t\":\"bool\"},\"glwS\":{\"v\":{\"IGSr\":\"SrcE\"},\"t\":\"enum\"},\"TrnS\":{\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"v\":\"Linear\",\"t\":\"TEXT\"},\"Crv\":{\"v\":[{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":0,\"t\":\"doub\"},\"Vrtc\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":255,\"t\":\"doub\"},\"Vrtc\":{\"v\":255,\"t\":\"doub\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"}},\"t\":\"Objc\"},\"Inpr\":{\"v\":{\"type\":\"#Prc\",\"val\":50},\"t\":\"UntF\"}}","{\"classID\":\"ChFX\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Mltp\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\": 50},\"t\":\"UntF\"},\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":0,\"t\":\"doub\"},\"Grn\":{\"v\":0,\"t\":\"doub\"},\"Bl\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},\"AntA\":{\"v\":false,\"t\":\"bool\"},\"Invr\":{\"v\":true,\"t\":\"bool\"},\"lagl\":{\"v\":{\"type\":\"#Ang\",\"val\":19},\"t\":\"UntF\"},\"Dstn\":{\"v\":{\"type\":\"#Pxl\",\"val\":11},\"t\":\"UntF\"},\"blur\":{\"v\":{\"type\":\"#Pxl\",\"val\":14},\"t\":\"UntF\"},\"MpgS\":{\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"v\":\"Gaussian\",\"t\":\"TEXT\"},\"Crv\":{\"v\":[{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":0,\"t\":\"doub\"},\"Vrtc\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":32,\"t\":\"doub\"},\"Vrtc\":{\"v\":7,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":64,\"t\":\"doub\"},\"Vrtc\":{\"v\":38,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":96,\"t\":\"doub\"},\"Vrtc\":{\"v\":101,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":128,\"t\":\"doub\"},\"Vrtc\":{\"v\":166,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":159,\"t\":\"doub\"},\"Vrtc\":{\"v\":209,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":191,\"t\":\"doub\"},\"Vrtc\":{\"v\":235,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":223,\"t\":\"doub\"},\"Vrtc\":{\"v\":248,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":255,\"t\":\"doub\"},\"Vrtc\":{\"v\":255,\"t\":\"doub\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"}},\"t\":\"Objc\"}}","{\"classID\":\"SoFi\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Nrml\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},"+bW.Pg.g$+"}","{\"classID\":\"GrFl\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Nrml\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},"+bW.Pg.W+"}","{\"classID\":\"patternFill\",\"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Nrml\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\":100},\"t\":\"UntF\"},"+bW.Pg.fm+"}","{\"classID\":\"OrGl\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Scrn\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\": 75},\"t\":\"UntF\"},\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":255,\"t\":\"doub\"},\"Grn\":{\"v\":255,\"t\":\"doub\"},\"Bl\":{\"v\":189.99710083007812,\"t\":\"doub\"}},\"t\":\"Objc\"},\"GlwT\":{\"v\":{\"BETE\":\"SfBL\"},\"t\":\"enum\"},\"Ckmt\":{\"v\":{\"type\":\"#Pxl\",\"val\":0},\"t\":\"UntF\"},\"blur\":{\"v\":{\"type\":\"#Pxl\",\"val\":5},\"t\":\"UntF\"},\"Nose\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"ShdN\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"AntA\":{\"v\":false,\"t\":\"bool\"},\"TrnS\":{\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"v\":\"Linear\",\"t\":\"TEXT\"},\"Crv\":{\"v\":[{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":0,\"t\":\"doub\"},\"Vrtc\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":255,\"t\":\"doub\"},\"Vrtc\":{\"v\":255,\"t\":\"doub\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"}},\"t\":\"Objc\"},\"Inpr\":{\"v\":{\"type\":\"#Prc\",\"val\":50},\"t\":\"UntF\"}}","{\"classID\":\"DrSh\", \"enab\":{\"v\":true,\"t\":\"bool\"}, \"Md\":{\"v\":{\"BlnM\":\"Mltp\"},\"t\":\"enum\"},\"Opct\":{\"v\":{\"type\":\"#Prc\",\"val\": 57},\"t\":\"UntF\"},\"Clr\":{\"v\":{\"classID\":\"RGBC\",\"Rd\":{\"v\":0,\"t\":\"doub\"},\"Grn\":{\"v\":0,\"t\":\"doub\"},\"Bl\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},\"uglg\":{\"v\":true,\"t\":\"bool\"},\"lagl\":{\"v\":{\"type\":\"#Ang\",\"val\":120},\"t\":\"UntF\"},\"Dstn\":{\"v\":{\"type\":\"#Pxl\",\"val\":27},\"t\":\"UntF\"},\"Ckmt\":{\"v\":{\"type\":\"#Pxl\",\"val\":0},\"t\":\"UntF\"},\"blur\":{\"v\":{\"type\":\"#Pxl\",\"val\":13},\"t\":\"UntF\"},\"Nose\":{\"v\":{\"type\":\"#Prc\",\"val\":0},\"t\":\"UntF\"},\"AntA\":{\"v\":false,\"t\":\"bool\"},\"TrnS\":{\"v\":{\"classID\":\"ShpC\",\"Nm\":{\"v\":\"Line\xE1rn\xED\",\"t\":\"TEXT\"},\"Crv\":{\"v\":[{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":0,\"t\":\"doub\"},\"Vrtc\":{\"v\":0,\"t\":\"doub\"}},\"t\":\"Objc\"},{\"v\":{\"classID\":\"CrPt\",\"Hrzn\":{\"v\":255,\"t\":\"doub\"},\"Vrtc\":{\"v\":255,\"t\":\"doub\"}},\"t\":\"Objc\"}],\"t\":\"VlLs\"}},\"t\":\"Objc\"},\"layerConceals\":{\"v\":true,\"t\":\"bool\"}}"]; +bW.W={types:"Lnr Rdl Angl Rflc Dmnd shapeburst".split(" "),names:[[19,0,0],[19,0,1],[19,0,2],[19,0,3],[19,0,4],[19,0,5]]}; +bW.stroke={types:["InsF","CtrF","OutF"],names:[[19,5,2],[19,5,1],[19,5,0]],Ne:["SClr","GrFl","Ptrn"],aeq:[[13,0],[12,37],[12,62]]}; +bW.aQ={types:["SfBL","PrBL"],names:[[19,1,0],[19,1,1]],aK:["SrcC","SrcE"],a7Y:[[19,5,1],[12,69]]};bW.FN={types:["OtrB","InrB","Embs","PlEb","strokeEmboss"],style:[[19,2,0],[19,2,1],[19,2,2],[19,2,3],[19,2,4]],k4:["SfBL","PrBL","Slmt"],adM:[[19,3,0],[19,3,1],[19,3,2]],dir:[[19,4,0],[19,4,1]]}; +bW.uS={wq:["strokeStyleButtCap","strokeStyleRoundCap","strokeStyleSquareCap"],RD:["strokeStyleAlignInside","strokeStyleAlignCenter","strokeStyleAlignOutside"],join:["strokeStyleMiterJoin","strokeStyleRoundJoin","strokeStyleBevelJoin"],Ul:["solidColorLayer","gradientLayer","patternLayer"],default:{classID:"strokeStyle",strokeStyleVersion:{t:"long",v:2},strokeEnabled:{t:"bool",v:!1},fillEnabled:{t:"bool",v:!0},strokeStyleLineWidth:{t:"UntF",v:{type:"#Pnt",val:4.38}},strokeStyleLineDashOffset:{t:"UntF",v:{type:"#Pnt",val:0}},strokeStyleMiterLimit:{t:"doub",v:100},strokeStyleLineCapType:{t:"enum",v:{strokeStyleLineCapType:"strokeStyleButtCap"}},strokeStyleLineJoinType:{t:"enum",v:{strokeStyleLineJoinType:"strokeStyleMiterJoin"}},strokeStyleLineAlignment:{t:"enum",v:{strokeStyleLineAlignment:"strokeStyleAlignCenter"}},strokeStyleScaleLock:{t:"bool",v:!1},strokeStyleStrokeAdjust:{t:"bool",v:!1},strokeStyleLineDashSet:{t:"VlLs",v:[]},strokeStyleBlendMode:{t:"enum",v:{BlnM:"Nrml"}},strokeStyleOpacity:{t:"UntF",v:{type:"#Prc",val:100}},strokeStyleContent:{t:"Objc",v:JSON.parse("{\"classID\":\"solidColorLayer\","+bW.Pg.g$+"}")},strokeStyleResolution:{t:"doub",v:72}}}; +bW.BR=[{classID:"null",Clr:JSON.parse(bW.E5[5]).Clr},{classID:"null",Grad:JSON.parse(bW.E5[6]).Grad,Dthr:{t:"bool",v:!1},Rvrs:{t:"bool",v:!1},Angl:{t:"UntF",v:{type:"#Ang",val:60}},Type:{t:"enum",v:{GrdT:"Lnr"}},Algn:{t:"bool",v:!0},Scl:{t:"UntF",v:{type:"#Prc",val:100}},Ofst:{t:"Objc",v:{classID:"Pnt",Hrzn:{t:"UntF",v:{type:"#Prc",val:0}},Vrtc:{t:"UntF",v:{type:"#Prc",val:0}}}}},{classID:"null",Ptrn:JSON.parse(bW.E5[7]).Ptrn,Algn:{v:!0,t:"bool"},Scl:{v:{type:"#Prc",val:100},t:"UntF"},phase:{v:{classID:"Pnt",Hrzn:{v:0,t:"doub"},Vrtc:{v:0,t:"doub"}},t:"Objc"}}]; +var ha={};ha.OA=function(n,F){function O(n,W){if(n==null)return null;var v=n[W].v,L;if(v.length!=0){L=v[0].v; +if(!L.enab.v)L=null}return L}var I=F.SoCo,x=F.GdFl,r=O(n,"solidFillMulti"),_=O(n,"gradientFillMulti"); +if(r==null&&_==null)return[I,x];var d=ha.ajl;if(I&&r&&_==null){var w=JSON.parse(JSON.stringify(I));w.Clr.v=d(r.Clr.v,I.Clr.v,r); +return[w,null]}if(x&&r&&_==null){var Z=JSON.parse(JSON.stringify(x)),P=Z.Grad.v.Clrs.v;for(var e=0;e0&&W.blur.v.val>0)_=Math.max(_,Math.ceil(W.Ckmt.v.val*W.blur.v.val/100)); +if(w=="OrGl"&&W.enab.v&&W.Ckmt.v.val>0&&W.blur.v.val>0&&W.GlwT.v.BETE=="SfBL")_=Math.max(_,Math.ceil(W.Ckmt.v.val*W.blur.v.val/100)); +if(w=="OrGl"&&W.enab.v&&W.blur.v.val>0&&W.GlwT.v.BETE=="PrBL")_=Math.max(_,W.blur.v.val);if(w=="FrFX"&&W.enab.v&&W.Sz.v.val>0){if(W.Styl.v.FStl=="OutF")_=Math.max(_,W.Sz.v.val); +if(W.Styl.v.FStl=="CtrF")_=Math.max(_,Math.ceil(W.Sz.v.val/2));d=Math.max(d,ha.Yj(W)[1])}}}var v=new ha.yR(O,I,_,ha.Uj(n)),L=-I.x,H=-I.y,y={type:{},all:[]}; +for(var g=0;g=0;Q--){var J=n[Z].v[Q].v;if(!J.enab.v)continue;var A=J.blur?J.blur.v.val:0,p=J.Ckmt?J.Ckmt.v.val/100:0,U=A*p; +if(w=="DrSh"){var j=v.Sh(U,A-U,!0),b=j.PB,s=j.j;s.offset(L,H);ha.WC(b,J,!1);ha.nI(s,J,x,0);var G=q.f(s.X()*4); +ha.kD(G,J.Clr.v);q.GF(b,G,3);var T={zc:G,jC:s,QP:fk.X4(J.Md.v.BlnM),Tb:J.Opct.v.val/100,anB:J.layerConceals.v}; +y.type[w].push(T);y.all.push(T)}if(w=="IrSh"){var j=v.Sh(U,A-U,!1);ha.nI(j.j,J,x,0);var s=v.rect().clone(),b=q.f(s.X()); +b.fill(255);q.k9(j.PB,j.j,b,s);ha.WC(b,J,!0);var G=q.f(s.X()*4);ha.kD(G,J.Clr.v);q.GF(b,G,3);s.offset(L,H); +var T={zc:G,jC:s,QP:fk.X4(J.Md.v.BlnM),Tb:J.Opct.v.val/100};y.type[w].push(T);y.all.push(T)}if(w=="GrFl"){var G=q.f(v.rect().X()*4); +ha.XV(J,G,v.rect(),x,null,r);var s=v.rect().clone();s.offset(L,H);var T={zc:G,jC:s,QP:fk.X4(J.Md.v.BlnM),Tb:J.Opct.v.val/100}; +y.type[w].push(T);y.all.push(T)}if(w=="SoFi"){var G=q.f(v.PB().length*4);ha.kD(G,J.Clr.v);var s=v.rect().clone(); +s.offset(L,H);var T={zc:G,jC:s,QP:fk.X4(J.Md.v.BlnM),Tb:J.Opct.v.val/100};y.type[w].push(T);y.all.push(T)}if(w=="ebbl"){var z=!1; +if(z)console.log(J);var m=Date.now(),$=J.bvlS.v.BESl;if($=="strokeEmboss"){var o=n.frameFXMulti.v;if(o.length==0)continue; +o=o[0].v;if(!o.enab.v)continue;var h=o.Styl.v.FStl;if(h=="OutF")$="OtrB";if(h=="CtrF")$="Embs";if(h=="InsF")$="InrB"}var A=J.blur.v.val; +if(A==0)A=.7;if($=="Embs"||$=="PlEb")A/=2;var X=["OtrB","InrB","Embs","PlEb","strokeEmboss"],D=["SfBL","PrBL","Slmt"],f=["In","Out"],R=J.bvlT.v.bvlT!="SfBL"?A:A*.45,i=Math.round(A),t=v.rect().clone(),N=t.clone(); +N.EM(i,i);var M=N.d,hK=N.v,bD=M*hK,iM=q.f(bD);q.k9(v.PB(),t,iM,N);var hs=new Float64Array(bD),S=new Float64Array(bD); +q.style.sq(iM,hs,M,hK);q.uZ(iM);q.style.sq(iM,S,M,hK);if(z)console.log("distTransform computed",Date.now()-m); +for(var e=0;eR)S[e]=R}if(z)console.log("summing + cropping",Date.now()-m); +if(J.bvlT.v.bvlT=="SfBL"){var bV=Math.pow(A*.21,1.22);if(!0)bV=Math.max(bV,2);var a5=q.Mo.rb(bV,2);q.Mo.lC(S,hs,N,a5[0]>>>1); +q.Mo.lC(hs,S,N,a5[1]>>>1)}if(z)console.log("blurring",Date.now()-m);var i9=S,dG=i9.slice(0);if(J.useShape.v){var ap=Math.min(100,J.Inpr.v.val+1)/100; +if($!="OtrB"&&$!="InrB")ap=1;var bk=q.pH.Sz(J.MpgS.v.Crv.v,2e3),c2=Math.round(2e3/ap);bk=q.pH.a3j(bk,c2,$=="InrB"); +var gg=.5/R;for(var e=0;e0)eG[e]=c$;if(cp>0)ef[e]=cp}if(z)console.log("raycasting",Date.now()-m); +if(J.Sftn.v.val!=0){q.Mo.QA(eG,hs,N,J.Sftn.v.val*.43);var b_=hs,hs=eG,eG=b_;if(fi){q.Mo.QA(ef,hs,N,J.Sftn.v.val*.43); +var b_=hs,hs=ef,ef=b_}else q.Ct(eG,ef)}if(z)console.log("softening",Date.now()-m);var bk=q.pH.Sz(J.TrnS.v.Crv.v,1024); +for(var e=0;e0){var j=v.Sh(c4,0,!0);f7=j.PB;if(f7.length0){var j=v.Sh(b$,0,!1);gA=q.f(s.X());gA.fill(255);q.k9(j.PB,j.j,gA,s)}s.offset(L,H); +var G=q.f(s.X()*4),aZ=J.PntT.v.FrFl;if(aZ=="SClr")ha.kD(G,J.Clr.v);if(aZ=="GrFl")ha.XV(J,G,s,x,v.a6c(b$,c4)); +if(aZ=="Ptrn")ha.qO(J,G,s,x,F);var T={zc:G,jC:s,QP:fk.X4(J.Md.v.BlnM),Tb:J.Opct.v.val/100,wd:f7,k0:gA}; +y.type[w].push(T);y.all.push(T)}}}return y};ha.t4=function(n){var F=1/Math.sqrt(n.x*n.x+n.y*n.y+n.Jw*n.Jw); +n.x*=F;n.y*=F;n.Jw*=F};ha.D8=function(n,F){return{x:n.y*F.Jw-n.Jw*F.y,y:n.Jw*F.x-n.x*F.Jw,Jw:n.x*F.y-n.y*F.x}}; +ha.acx=function(n,F){return n.x*F.x+n.y*F.y+n.Jw*F.Jw};ha.gR=function(n,F){var O=F.Nose.v.val/100;if(O>0)for(var e=0; +ex){var r=q.pH.ZE(F.TrnS.v.Crv.v,256,!0);q.mr(n,r)}if(O!=null&&F.Nose.v.val>0)q.style.ox(n,F.Nose.v.val/100,O)}; +ha.kD=function(n,F,O){if(O==null)O=255;var I=q.W.S_(F),x=O<<24|I.O<<16|I.l<<8|I.Q,r=new Uint32Array(n.buffer); +r.fill(x)};ha.nI=function(n,F,O,I){var x=F.uglg&&F.uglg.v?O.ai():F.lagl.v.val;x=x*Math.PI/180+I;var r=Math.cos(x)*F.Dstn.v.val,_=Math.sin(x)*F.Dstn.v.val; +n.x-=Math.round(r);n.y+=Math.round(_)};ha.Lv=function(n){if(n==null)return null;var F=n.frameFXMulti.v; +if(F.length==0)return null;F=F[0].v;var O=JSON.parse(JSON.stringify(bW.uS.default));ha.WW(F,O);return O}; +ha.WW=function(n,F){var O=bW.stroke.Ne.indexOf(n.PntT.v.FrFl),I=[bW.ez,bW.KK,bW.dC][O],x=F.strokeStyleContent.v={classID:bW.uS.Ul[O]}; +for(var e=0;e=6)this.uD(this.q6(x))};cb.prototype.Di=function(n){if(n==null)n=1;n=Math.max(.05,Math.min(5,n)); +if(isNaN(n)){alert("Pressure is not a number");throw"e"}return n};cb.prototype.uD=function(n){this.Kh=n; +this.Bj=this.Bj.Tq(n)};cb.prototype.finish=function(){var n=this.mj,F=n.length,O;if(F==4)O=this.On(n[F-2],n[F-1],this.BE[(F>>1)-1],!0); +if(F>4)O=this.q6(F+2);if(O)this.uD(O)};cb.prototype.q6=function(n){var F=this.mj,O=this.BE,I=F[n-6],x=F[n-5],r=F[n-4],_=F[n-3],d=O[(n>>1)-3],w=O[(n>>1)-2],Z=new aE(0,0),P=new aE(0,0); +if(8<=n)Z=cb.ym(F[n-8],F[n-7],I,x,r,_);if(n<=F.length)P=cb.ym(F[n-2],F[n-1],r,_,I,x);var C=I+Z.x,W=x+Z.y,v=r+P.x,L=_+P.y,H=new gv; +for(var e=0;e<10;e++){var y=(e+1)*.1,g=1-y,Q=g*g*g*I+3*y*g*g*C+3*y*y*g*v+y*y*y*r,J=g*g*g*x+3*y*g*g*W+3*y*y*g*L+y*y*y*_,A=this.On(Q,J,d+y*(w-d)); +H=H.Tq(A)}return H};cb.ym=function(n,F,O,I,x,r){var _=n-O,d=F-I,w=x-O,Z=r-I,P=Math.sqrt(_*_+d*d),C=Math.sqrt(w*w+Z*Z),W=Math.acos((_*w+d*Z)/(P*C))/Math.PI,v=.35,L=.1; +W=L+W*(v-L);var H=x-n,y=r-F,g=Math.sqrt(H*H+y*y),Q=W*C/g;return new aE(H*Q,y*Q)};cb.prototype.On=function(n,F,O,I){var x=new gv,r=this.nD.adC; +if(r==null)r=0;if(r==0||I){x=this.hn(n,F,O);return x}var _=this.v4,d=n-_.x,w=F-_.y,Z=Math.sqrt(d*d+w*w); +d/=Z;w/=Z;if(Z>r){var P=_.x+d*(Z-r),C=_.y+w*(Z-r);x=this.hn(P,C,O);this.v4.mT(P,C)}return x};cb.prototype.hn=function(n,F,O){var I=new gv,x=new aE(n,F),r=this.O.Brsh.v.Dmtr.v.val,_=this.nD.XQ,d=x.ba(this.vD); +d.normalize(1);var w=aE.sl(this.vD,x),Z=-this.a9T,P=this.vD.clone(),C=this.nD.yc;while(!0){var W=this.Nr+(O-this.Nr)*(Math.max(0,Z)/w),v=this.E3()*(C[1]?W:1),L=this.a59()*(v+this.amN)/2; +if(_==cb.GD)L=1;if(Z+L0?1:-1;var g=P.clone();g.y+=d.y>0?1:-1;if(aE.sl(y,H)1)d.Ls=1-(d.Ls-1);d.K_=d.K_+_;if(d.K_<0)d.K_=-d.K_; +if(d.K_>1)d.K_=1-(d.K_-1);F=q.xN(d.Sa,d.Ls,d.K_)}return F};cb.prototype.t4=function(n){return Math.max(0,Math.min(1,n))}; +cb.prototype.e5=function(){this.$f++;return cb.hash(this.$f)};cb.Bs=function(n){return{Q:(n>>16&255)/255,l:(n>>8&255)/255,O:(n>>0&255)/255}}; +cb.hash=function(n){n=n^61^n>>16;n=n+(n<<3);n=n^n>>4;n=n*668265261;n=n^n>>15;return(n&16777215)/16777215}; +cb.sC=[];cb.abU=function(n,E){var F=n.GW(),O=E.GW();if(F2500){r=d; +break}}var w=Math.round(this.O.Brsh.v.Dmtr.v.val);if(r){r.rect.x=Math.round(r.NG.x-r.iF.hb+n.hb);r.rect.y=Math.round(r.NG.y-r.iF.i9+n.i9); +if(x){r.rect.x=Math.round(F.x-r.rect.d/2);r.rect.y=Math.round(F.y-r.rect.v/2)}r.CR=Date.now()}else{var Z; +if(x&&w<=3){Z={buffer:q.f(w*w*4),rect:new gv(Math.round(F.x-w/2),Math.round(F.y-w/2),w,w)};q.IW(Z.buffer,4278190080)}else if(n.R==1&&n.O==0&&n.Pr==0&&n.oQ==1){Z={buffer:this.xE.Us,rect:this.xE.Py.clone()}; +Z.rect.x=Math.round(n.hb);Z.rect.y=Math.round(n.i9)}else Z=c.V.oo([this.xE.Us,this.xE.Py],n);if(x){for(var e=0; +e127?255:0}if(Z==null)Z={buffer:q.f(0),rect:new gv};var P=n.hb-Math.floor(n.hb),C=n.i9-Math.floor(n.i9); +r={Us:Z.buffer,WG:q.f(Z.rect.X()),rect:Z.rect,NG:Z.rect.clone(),iF:n,bp:cb.xS(n.hb,n.i9),CR:Date.now()}; +q.xg(r.Us,r.WG,3);I.push(r);O.X+=Z.rect.X();if(I.length>2e3||O.X>100*100*400){console.log("pruning",O.X,I.length); +I.sort(function(v,L){return L.CR-v.CR});while(I.length>1e3||O.X>100*100*200){var W=I.pop();O.X-=W.rect.X()}}}O.P0=I; +O.CR=Date.now();cb.sC.push(O);cb.sC.sort(function(v,L){return L.CR-v.CR});while(cb.sC.length>3)cb.sC.pop(); +return r};cb.xS=function(n,F){return new aE(n-Math.floor(n),F-Math.floor(F))};cb.a2a=function(n,F){var O=F.x,I=F.y,x=Math.abs(O-n.x),r=Math.abs(I-n.y); +if(Math.abs(O-1-n.x)>>1)+1); +for(var e=0;e_*2){var X=new gv(x.x,x.y,Math.floor(x.d/2),Math.floor(x.v/2)),D=c.V.oo([I,x],new cD(X.d/x.d,0,0,X.v/x.v,0,0)); +r*=X.d/x.d;x=D.rect;I=D.buffer}return{aaK:r,Py:x,Us:I}};cb.eX=[];cb.QR=function(n){if(cb.eX[n])return cb.eX[n]; +var F=Math.pow(n,.55),O=new Float64Array(8e3),I=0,x=8e3;for(var e=0;e<8e3;e++){var r=cb.a5R(e*(1.55/4e3),F); +if(r>=1)I=e;else if(r<=0&&x==8e3)x=e;O[e]=r}var _=[O,I,x];cb.eX[n]=_;return _};cb.a5R=function(n,F){var O=nC||U>W)&&J[j+2]){j+=2;A=J[j];p=J[j+1].d;U=J[j+1].v}if(p*U!=0){var b=q.f(p*U*4); +q.GF(A,b,3);var s=new ImageData(new Uint8ClampedArray(b.buffer),p,U);d.putImageData(s,Math.round((C-p)/2),Math.round((W-U)/2))}}else{}return _.toDataURL()}; +cb.UD=function(n,F,O,I){if(O==0)O=1;var x=n.Brsh.v,r=x.Dmtr.v.val,_=x.Dmtr.v.val=Math.min(I!=null?Math.round(I*2.6):3e3,r*O),d=x.Hrdn?x.Hrdn.v.val/100:1,w=I!=null?I:Math.round(_*(1+.55*(1-d)))+4,C; +w=Math.max(15,Math.min(w,3e3));var Z=new gv(0,0,w,w),P=new cb(n,F,null,{c1:1},16711712,0,Z);x.Dmtr.v.val=r; +P.moveTo(Z.d/2,Z.v/2);var W=P.El(),v=P.nJ();if(Z.Qq(v))C=W;else{C=q.f(Z.X()*4);q.nF(W,v,C,Z)}return[C,Z,_]}; +cb.xn=function(n,F,O,I){var x=cb.UD(n,F,O),r=x[0].slice(0),_=x[1],d=x[2],w=_.X(),Z=q.f(w);q.xg(r,Z,3); +var P=q.f(w);q.N.aeJ(Z,P,_);if(d<3||q.gZ(P,0)||I&&d>12){var C=_.d,W=C>>>1,v=P,L=255;for(var e=0;e<4; +e++){v[C*(W-6+e)+W]=L;v[C*W+W-6+e]=L;v[C*W+W+6-e]=L;v[C*(W+6-e)+W]=L}}var H=[1,2,1,2,8,2,1,2,1];H=q.aF.Wl(H); +q.aF.G6(P,Z,_.d,_.v,H);q.IW(r,4294967295);q.GF(Z,r,3);for(var e=0;e80?255:0;if(w==3)for(var e=0;e128?v:-1);if(Z[L]==null){Z[L]=1;if(F.rs(I[C].Name,v)==null)w=!1}}P+=r[e]}return w}; +cJ.amQ=function(n,F,O){var I=new cD;for(var e=0;e>>3,x=n.TextOnPathTRange,r=n.Reversed,P=0,C=0; +if(r){var _=F.slice(0);for(var e=0;e>>3)+y)}P=Q; +C=J}}var A=Z.length,p=Z[A-1],U=h2.Ml(x[0],w),j=h2.Ml(x[1]%I,w),b=Z[U%A],s=Z[j%A];if(b>=s)s+=p;return[d,w,Z,p,b,s]}; +h2.Ml=function(n,F){var e=0;while(F[e]65535)r--;return r}for(var y=0;yA+W/2||b==1&&n.x65535?2:1; +return U}}}}}};h2.prototype.Y7=function(n){var F={j:new gv,Re:0},O=0;for(var I=0;Ir)r=_}if(r>1424)x=h2.a2n(I,F);return x};h2.uX=function(n,F,O,I,x,r,_){this.ga=[]; +this.Oc=[];this.bp=new aE(0,0);this.lU=null;this.ga=null;this.u9=bt.aiB(n,I);var d=this.u9,C=0,L="",J=0,A=1,i=0; +if(I!=0){var w=d.SpaceBefore;if(w!=null)r[0]+=w}var Z=n.EngineDict.ParagraphRun.RunLengthArray,P=Z[I]; +for(var e=0;e0&&h[X-1].Dz==H)X--; +O[C+s+H].Sv=b.length+(T?X:h.length-X-1)}for(var H=0;H>>1;for(var e=0;e=co)iM=e;else if(iM!=-1&&j2&&(D==6||!hK))this.a7W(iM,bV,f,i9,W,dG);else{var bk=dG;for(var e=iM; +e=n;e--)if(O[e].ih||O[e].Ez)r-=O[e].j.d;else break;if(I==1)for(var e=n; +e=n;e--)if(O[e].ih||O[e].Ez){if(O[e].ih){w--}}else break; +if(x==1)for(var e=n;e>>2);H[g>>>2]=C==0?d:w;O.fribidi_get_bidi_types(y,W,Q);O.fribidi_get_bracket_types(y,W,Q,J); +O.fribidi_get_par_embedding_levels_ex(Q,J,W,g,A);var p=L.slice(A,A+W);O.free(y);return p};h2.v7=2;var Z=new k(V.E.P,!0); +Z.data={e:V.U.g7,ve:"add",b9:cf.hx,pb:null};da.J7.A(Z)})}Typr.U.initHB("code/external/hb.wasm",n);return!1}; +function bt(){}bt.hw=function(n){return JSON.parse(JSON.stringify(n))};bt.hy=function(n,F){for(var O in F)n[O]=F[O]}; +bt.Cc=function(n,F,O){var I=bt.qN();if(O)bt.F$(I,0,0,O);var x={m:new cD(1,0,0,1,Math.round(n),Math.round(F)),Vb:I}; +x.$z=bt.EF();x.Gp=q.qF.f();x.Qa=new gv;return x};bt.aH=function(n){var F=["CharacterDirection",0];for(var e=0; +e=0?2:n.EngineDict.Rendered.Shapes.Children[0].ShapeType}; +bt.li=function(n,F){var O=n.EngineDict.Rendered.Shapes.Children[0];O.ShapeType=F;var I=O.Cookie.Photoshop; +I.ShapeType=F;I.Base.ShapeType=F;if(F==0){delete I.BoxBounds;I.PointBase=[0,0]}if(F==1){delete I.PointBase; +I.BoxBounds=[0,0,1,1]}};bt.Kp=function(n){return n.EngineDict.Rendered.Shapes.Children[0].Cookie.Photoshop.BoxBounds}; +bt.Ar=function(n,F){n.EngineDict.Rendered.Shapes.Children[0].Cookie.Photoshop.BoxBounds=F};bt.a6p=function(n,F){return bt.alH(n,bt.UN(n,F))}; +bt.UN=function(n,F){var O=n.EngineDict.StyleRun.RunLengthArray;return bt.DU(O,F).aD};bt.alH=function(n,F){var O=n.ResourceDict.StyleSheetSet[0].StyleSheetData,I={}; +for(var x in O)I[x]=O[x];var r=n.EngineDict.StyleRun.RunArray[F].StyleSheet.StyleSheetData;bt.hy(I,r); +return I};bt.aiB=function(n,F){var O=n.ResourceDict.ParagraphSheetSet[0].Properties,I={};for(var x in O)I[x]=O[x]; +var r=n.EngineDict.ParagraphRun.RunArray[F].ParagraphSheet.Properties;bt.hy(I,r);var _=["StartIndent","EndIndent","FirstLineIndent"]; +for(var e=0;e<3;e++)if(I[_[e]]==null)I[_[e]]=0;return I};bt.bw=function(n,F,O){if(O=="")return;var I=bt.fQ(n); +bt._I(n,I.substring(0,F)+O+I.substring(F,I.length));var x=n.EngineDict.StyleRun,r=x.RunLengthArray,_=bt.DU(r,F-1); +r[_.aD]+=O.length;var d=n.EngineDict.ParagraphRun,r=d.RunLengthArray,w=bt.DU(r,F),Z=O.split("\n");if(Z.length==1){r[w.aD]+=O.length; +return}r.splice(w.aD+1,0,r[w.aD]-(F-w.U1));d.RunArray.splice(w.aD+1,0,bt.hw(d.RunArray[w.aD]));r[w.aD]-=r[w.aD+1]; +r[w.aD]+=Z[0].length+1;for(var e=1;e"},{_0:"i40",_1:"s\u201E",_2:"s\u201C",_3:"s\u201A",_4:"s\u2018"},{_0:"i41",_1:"s\xAB",_2:"s\xBB",_3:"s<",_4:"s>"},{_0:"i42",_1:"s\u201E",_2:"s\u201C",_3:"s\u201A",_4:"s\u2018"},{_0:"i43",_1:"s\u201C",_2:"s\u201D",_3:"s\u2018",_4:"s\u2019"},{_0:"i44",_1:"s\xAB",_2:"s\xBB",_3:"s\u2039",_4:"s\u203A"},{_0:"i45",_1:"s\u201C",_2:"s\u201D",_3:"s\u2018",_4:"s\u2019"}],_15:{_0:"sWinSoft"},_16:!1}; +var gI={};gI.a0l=function(n){return gI.M3(n,gI.M6,0)};gI.ab$=function(n){return gI.p8(n,gI.M6)};gI.M3=function(n,F,O){var I; +if(typeof n=="string")return n;if(n instanceof Array){I=[];for(var e=0;e0)d.push("border-radius: "+Math.round(P)+"px")}else if(_){var C=_.Vb;if(bt.oB(C)==1){var Z=bt.Kp(C); +d.push("width: "+Math.round(Z[2])+"px");d.push("height: "+Math.round(Z[3])+"px")}CSS.Ps(d,bt.gU(C,0,0),_.m,!1,!1,w[0])}var W=[],v=r?r.dropShadowMulti.v:0; +for(var e=0;e>16&255,l:n>>8&255,O:n&255}};CSS.q7=function(n,F){return CSS.Tt(q.W.S_(n),F)}; +CSS.Tt=function(n,F){if(F==null)F=1;var O=Math.round(n.Q),I=Math.round(n.l),x=Math.round(n.O),r=O<<16|I<<8|x; +return F==1?"#"+q.c7(r):"rgba("+O+","+I+","+x+","+F+")"};CSS.pn=function(n){var F=n.Grad.v;if(F.Clrs==null)return""; +var O=F.Clrs.v.slice(0),I=F.Trns.v.slice(0),x=n.Ofst.v,r=n.Type.v.GrdT=="Rdl"?1:0,_=(r==1?"radial":"linear")+"-gradient",d=r==0?Math.round(-n.Angl.v.val+90)+"deg":"circle at center",w=n.Rvrs.v; +if(w){O.reverse();I.reverse()}for(var e=0;e")return n>F; +else if(O=="==")return n==F;else if(O=="<=")return n<=F;else if(O==">=")return n>=F;else if(O=="!=")return n!=F; +else if(O=="!==")return n!==F;else if(O=="<<")return n<>")return n>>F;else console.log(O)}; +fr.AL=function(n,F){if(F=="-")return-n;else if(F=="!")return!n;else if(F=="~")return~n;else if(F=="+")return n; +else console.log(obj)};fr.zL=function(n,F,O){var I=n.type;if(I=="Identifier")return fr.adj(n.name,F,O); +else return fr.eval(n,F,O)};fr.adj=function(n,F,O){if(n=="undefined")return undefined;else if(O.hasOwnProperty(n))return O[n]; +else if(n=="app")return{o:"Application"};else if(n=="$")return{o:"$"};else if(fr.jN.a6O.indexOf(n)!=-1)return fr.jN.Kx({o:"Application"},n,F,O); +else if(window[n]&&!fr.jK[n])return window[n];else{O[n]=null;return null}};fr.jN={};fr.jN.a1w=function(n,F,O,I){var x; +if(n=="SolidColor")x={o:n,G:[1,0,0,0]};if(n=="RGBColor")x={o:n,G:[1,0,0,0]};if(n=="Window")x={o:n,G:new eD(F[0],F[1],F[2])}; +if(n=="ExportOptionsSaveForWeb")x={o:n,G:{ty:"png",Cn:100}};if(n=="JPEGSaveOptions")x={o:n,G:{ty:"jpg",Cn:100}}; +if(n=="File")x={o:n,G:F[0]};if(n=="ActionReference")x={o:n,G:[]};if(n=="ActionDescriptor")x={o:n,G:{}}; +if(n=="ActionList")x={o:n,G:[]};if(n=="UnitValue")x={o:n,G:F.length==0?0:parseFloat(F[0])};return x}; +fr.jN.a6O="activeDocument documents fonts preferences displayDialogs foregroundColor backgroundColor".split(" "); +fr.jN.agW=["charIDToTypeID","stringIDToTypeID","executeAction","executeActionGet","doAction"];fr.jN.Kx=function(n,F,O,I){var x=O._A,r=O.kp(); +if(!1){}else if(F=="typename"){if(n.o=="Layer")return n.G.Ja()?"LayerSet":"ArtLayer";else return n.o}else if(["Document","Layer"].indexOf(n.o)!=-1&&["layers","artLayers","layerSets"].indexOf(F)!=-1){var _=r.root,d={o:"Layers",yk:F,G:[]}; +if(n.o=="Layer")_=r.root.Dv(r.t.indexOf(n.G));if(_.children==null)return null;for(var e=0;e<_.children.length; +e++){var w=_.children[e].$,Z=w.Ja();if(Z&&F=="artLayers"||!Z&&F=="layerSets")continue;d.G.push({o:"Layer",G:w})}d.G.reverse(); +return d}else if(n.o=="Documents"||n.o=="Layers"||n.o=="HistoryStates"){if(!1){}else if(F=="length")return n.G.length; +else if(Number.isInteger(F))return n.G[F];else console.log(n.o+": unknown property ",F)}else if(n.o=="Application"){if(!1){}else if(F=="activeDocument")return{o:"Document",G:O.kp()}; +else if(F=="documents"){var d={o:"Documents",G:[]};for(var e=0;e>>16&255)/255,(P>>>8&255)/255,(P>>>0&255)/255]}}else if(F=="UI")return{o:"UI"}; +else console.log(n,F)}else if(n.o=="Document"){var r=n.G;if(!1){}else if(F=="activeLayer"){var w=r.t[r.C[0]]; +return{o:"Layer",G:w}}else if(F=="resolution")return r.gC;else if(F=="width")return r.d;else if(F=="height")return r.v; +else if(F=="name")return r.name;else if(F=="saved")return!r.qr();else if(F=="selection")return{o:"Selection"}; +else if(F=="activeHistoryState")return{o:"HistoryState",FI:r.ok};else if(F=="source")return r.gD;else if(F=="historyStates"){var C=[]; +for(var e=0;e>>16&255)/255; +n.G[2]=(z>>>8&255)/255;n.G[3]=(z>>>0&255)/255}else console.log(n,F)}else if(n.o=="ExportOptionsSaveForWeb"){if(F=="format")n.G.ty=O; +else if(F=="PNG8"){}else if(F=="quality")n.G.Cn=O;else throw"e"}else if(n.o=="JPEGSaveOptions"){if(F=="quality")n.G.Cn=Math.round(100*O/12)}else console.log(n,F,O); +if(r.data!=null)I.A(r)};fr.jN.Na=function(n,F,O,I,x){var r=n.o,_=null,d=new k(V.E.S,!0),w=new k(V.E.JA,!0),Z=new k(V.E.P,!0),P=I.kp(),C=I.KV; +if(!1){}else if(r=="Application"){if(!1){}else if(F=="charIDToTypeID"){var W=O[0].trim(),v={slct:"select",Dlt:"delete",Mk:"make"}; +return v[W]?v[W]:W}else if(F=="stringIDToTypeID"){var L=O[0].trim(),v={red:"Rd",blue:"Bl",color:"Clr",RGBColor:"RGBC",type:"Type",using:"Usng"},H=v[L]; +return H==null?L:H}else if(F=="executeAction"){console.log(O);var y;if(O[1]){y=O[1].G;y.classID=O[0]}var g={setd:"set"},Q=g[O[0]]; +if(Q==null)Q=O[0];var J=dK.kK[O[0]];if(J&&dK.ZU[J])Q=dK.ZU[J];w.data={oI:Q,Mk:y}}else if(F=="executeActionGet"){return{o:"ActionDescriptor",G:{classID:"null",null:{t:"obj ",v:O[0].G}}}}else if(F=="doAction"){Z.data={e:V.U.Tp,nD:[O[0],O[1]]}}else if(F=="open"){Z.data={e:V.U.Fb,b9:{url:O[0]}}; +if(O[2]&&C.length!=0)Z.data.b9.qy=C.indexOf(P)}else if(F=="echoToOE"){Z.data={e:V.U.LI,b9:O[0]}}else console.log(F)}else if(r=="Document"){var P=n.G; +if(!1){}else if(F=="crop"){w.data=c.jz.FK(O[0])}else if(F=="trim"){var A=[];for(var e=0;e<4;e++)A.push(O[e+1]!=null?O[e+1]:!0); +w.data=c.jz.dQ(O[0]!=null?O[0]:0,A)}else if(F=="suspendHistory"){var p=acorn.parse(O[1]);fr.eval(p,I,x)}else if(F=="save"){Z.data={e:V.U.I8}}else if(F=="saveToOE"){Z.data={e:V.U.I8,aoH:O}}else if(F=="rotateCanvas"){w.data=c.V.Ad(!0,O[0])}else if(F=="resizeImage"||F=="resizeCanvas"){var U=O[0],j=O[1]; +if(typeof U!="number"){U=P.d*parseFloat(U.slice(0,U.length-1))/100;j=P.v*parseFloat(j.slice(0,j.length-1))/100}if(F=="resizeCanvas")w.data=c.jz.pg(Math.round(U),Math.round(j),O[2]); +else w.data=c.jz.W7(Math.round(U),Math.round(j),null,1)}else if(F=="paste"){Z.data={e:V.U.yM,qG:O.length!=0&&O[0]}}else if(F=="close"){Z.data={e:V.U.Oh,dV:P}}else if(F=="exportDocument"||F=="saveAs"){var b=x.__fs,s=O[0].G.replace(":","").replace("~/",""),G=F=="exportDocument"?O[2].G:O[1].G,T=fx.XI(P,G.ty,null,null,[G.Cn],I._A); +b[s]=new Uint8Array(T)}else console.log(n,F,O)}else if(r=="Layer"){var z=n.G,m=P.t.indexOf(z);if(!1){}else if(F=="copy"){fr.jN.b5(P,I,0); +Z.data={e:V.U.UW,EO:O[0],GK:m};I.A(Z);delete Z.data;fr.jN.b5(P,I,1)}else if(F=="clear"){fr.jN.b5(P,I,0); +w.data={oI:"delete"};I.A(w);delete w.data;fr.jN.b5(P,I,1)}else if(F=="duplicate"){if(O.length==0){d.data={e:K.bn,$:m}; +d.T=c.lo;I.A(d);d.data=null;_={o:"Layer",G:P.t[P.C[0]]}}else if(O[0].o=="Document"){d.data={e:K.Cf,t:P.QH(m),Vg:P,NZ:O[0].G}; +d.T=c.lo}}else if(F=="merge"||F=="remove"){d.data={e:F=="merge"?K.Vu:K.C9,$:m};d.T=c.lo;if(F!="remove")_={o:"Layer",G:P.t[P.C[0]]}}else if(F=="move"){d.data={e:K.sV,source:m,target:P.t.indexOf(O[0].G),q4:O[1]!=3?.6:.3}; +d.T=c.lo}else if(F=="rasterize"){w.data={oI:"rasterizeLayer",Mk:{classID:"rasterizeLayer",null:aV.hd("Lyr",!0)}}}else if(F=="rotate"){d.data={e:"rot",WL:[2,5],G:-O[0]*Math.PI/180,Ug:O[1],$:m}; +d.T=c.KR}else if(F=="resize"){d.data={e:"scl",WL:[2,4],G:new aE(O[0]/100,O[1]/100),Ug:O[2],$:m};d.T=c.KR}else if(F=="translate"){var $=fr.jN.Oi(O); +d.data={e:"trsl",$:m,aof:$[0],abC:$[1]};d.T=c.AK}else if(F=="link"){d.data={e:K.cb,a21:[m,P.t.indexOf(O[0].G)]}; +d.T=c.lo}else if(F=="invert"){d.T=c.Np;d.data={e:"start",Ju:"nvrt"}}else if(F.startsWith("apply")&&bS.vO[F.slice(5)]){var $=fr.jN.Oi(O),o=bS.vO[F.slice(5)]; +w.data={oI:bS.ZU[o]};var y=bS.tc(o);if(y){bS.rn["g"+o](y,$);w.data.Mk=y}}else console.log(n,F,O)}else if(r=="Documents"){if(F=="getByName"){for(var e=0; +e","","",""],O=fb.af; +for(var I in O){var x=n[I],r=O[I][2],_="Seq",d="";if(x==null||r==null)continue;if(r=="dc:title"||r=="dc:description"){_="Alt"; +d=" xml:lang=\"x-default\""}if(r=="dc:subject")_="Bag";F.push("\t<"+r+">");var w=r=="dc:subject"?x.split(";").join(",").split(","):[x]; +for(var e=0;e"+w[e].trim()+"");F.push("\t")}F.push("","","",""); +return F.join("\n")};fb.fE=function(n){var F=[];for(var e=0;e/g,">")}; +V.$E=function(n,F){n.YB(hl.get([12,41]).charAt(0)+":");F.YB(hl.get([12,42]).charAt(0)+":")};V.w=function(n,F){var O=document.createElement(n); +if(F!=null)O.setAttribute("class",F);return O};V.em=function(n){while(n.firstChild)n.removeChild(n.firstChild)}; +V.fx=function(n,F){var O=n.getAttribute("class");if(O==null)O="";O=O.split(" ");if(O.indexOf(F)==-1)O.push(F); +n.setAttribute("class",O.join(" "))};V.aE=function(n,F){var O=n.getAttribute("class");if(O==null)return; +O=O.split(" ");if(O.indexOf(F)!=-1)O.splice(O.indexOf(F),1);n.setAttribute("class",O.join(" "))};V.Zo=function(n){while(!0){if(n==document)return!0; +if(n==null)return!1;n=n.parentNode}};V.Zq=function(n){n.appendChild(V.w("br"))};V.dw=function(n){n.appendChild(V.w("hr"))}; +V.vz=document;V.dS=function(n){var F=0;for(var e=0;e1e3){O=F==0?100:F*10}else{if(n%10!=0)n*=10; +O=(n+F)%100}V.dg=Date.now();return O};V.CP=function(n,F){if(window.PointerEvent){n.addEventListener("pointerdown",F,!1); +return}n.addEventListener("mousedown",F,!1);n.addEventListener("touchstart",F,!1)};V.MH=function(n,F){if(window.PointerEvent){n.addEventListener("pointermove",F,!1); +return}n.addEventListener("mousemove",F,!1);n.addEventListener("touchmove",F,!1)};V.Ry=function(n,F){if(window.PointerEvent){n.addEventListener("pointerup",F,!1); +return}n.addEventListener("mouseup",F,!1);n.addEventListener("touchend",F,!1)};V.a9O=function(n,F){if(window.PointerEvent){n.removeEventListener("pointerdown",F,!1); +return}n.removeEventListener("mousedown",F,!1);n.removeEventListener("touchstart",F,!1)};V.le=function(n,F){if(window.PointerEvent){n.removeEventListener("pointermove",F,!1); +return}n.removeEventListener("mousemove",F,!1);n.removeEventListener("touchmove",F,!1)};V.re=function(n,F){if(window.PointerEvent){n.removeEventListener("pointerup",F,!1); +return}n.removeEventListener("mouseup",F,!1);n.removeEventListener("touchend",F,!1)};V.kQ=function(n){n.addEventListener("touchstart",V.Bg,!1); +n.addEventListener("touchmove",V.Bg,!1);n.addEventListener("touchend",V.Bg,!1);n.addEventListener("gesturestart",V.Bg,!1); +n.addEventListener("gesturechange",V.Bg,!1);n.addEventListener("gestureend",V.Bg,!1)};V.$C=function(n,F,O,I){var x=V.Z(); +n.width=Math.floor(F*x);n.height=Math.floor(O*x);n.style.width=n.width/x+"px";n.style.height=n.height/x+"px"; +if(I)I.setTransform(x,0,0,x,0,0)};V.z0=function(n,F,O){n.setAttribute("style","width:"+F/V.Z()+"px; height:"+O/V.Z()+"px")}; +V.iJ=function(n,F){if(F==null)F=n.currentTarget;var O=F.getBoundingClientRect();if(n.touches)n=n.touches.item(0); +return{x:n.clientX-O.left,y:n.clientY-O.top}};V.Z=function(n){return window.devicePixelRatio||1};V.Bg=function(n){n.preventDefault()}; +V.ou=function(n){n.stopPropagation();n.preventDefault()};V.WE=function(n,F,O){O=O?O:"";if(PIMG["__"+n]==null)O+=" gsicon"; +return"\""+(F?F:"")+"\""};V.bN=function(n,F,O,I){var x=n.dataTransfer.getData("text/uri-list"); +if(x!=null&&x.startsWith("http")){var r=new k(V.E.P,!0);r.data={e:V.U.Fb,b9:{url:x,FP:!0,qy:O,j1:I}}; +F.A(r)}if(n.dataTransfer.files.length==0)return;if(window.showOpenFilePicker){var _=[],d=n.dataTransfer.items.length,w=n.dataTransfer.files; +for(var Z of n.dataTransfer.items)Z.getAsFileSystemHandle().then(function(P){_.push(P);if(_.length==d){var r=new k(V.E.P,!0); +r.data={e:V.U.ju,data:w,qy:O,j1:I,afF:_};F.A(r)}})}else{var r=new k(V.E.P,!0);r.data={e:V.U.ju,data:n.dataTransfer.files,qy:O,j1:I}; +F.A(r)}};var k=function(n,F){if(!F)F=!1;this.type=n;this.target=null;this.currentTarget=null;this.bubbles=F; +this.T=null;this.uh=!1};V.E={S:"0",P:"1",JA:"1.5",L:"2",hS:"3",be:"4",MZ:"5"};V.U={SJ:"10",di:"11",kX:"12",Pc:"13",VC:"14",ue:"14.1",Fb:"15",eR:"16",e2:"17",E0:"18",I8:"19",SZ:"19.5",vc:"20",gN:"21",UW:"22",yM:"23",dn:"24",n$:"25",L0:"26",ph:"27",V$:"28",f0:"29",ju:"30",H$:"31",lt:"32",A7:"33",hO:"34",g7:"35",aO:"35.5",mR:"37",Qx:"38",DH:"39",QD:"40",lJ:"41",LI:"41.5",v1:"42",te:"43",po:"43.5",Oh:"44",sL:"45",nG:"46",zW:"47",E_:"48",Tp:"49",sR:"50"}; +if(V.dS(27))V.vz=window;else V.vz=V.a1s;V.vz._cwY=V.vz[V.Q9("clh]]c[",3)];var hm={};hm.kZ=function(e){var n=hm.mE[e],F=document.documentElement.style,I=20; +F.setProperty("--bg-color","#"+q.c7(n["--bg-color"]));F.setProperty("--bg-panel","#"+q.c7(n["--bg-panel"])); +F.setProperty("--bg-canvas","#"+q.c7(n["--bg-canvas"]));F.setProperty("--bg-input","#"+q.c7(n["--bg-input"])); +F.setProperty("--bg-bbtn","#"+q.c7(n["--bg-bbtn"]));F.setProperty("--bg-bbtnOver","#"+q.c7(n["--bg-bbtnOver"])); +F.setProperty("--brdr","#"+q.c7(n["--brdr"]));F.setProperty("--text-color","#"+q.c7(n["--text-color"])); +F.setProperty("--brdrLgt","rgba(255,255,255,"+n["--brdrLgt"]+")");F.setProperty("--brdrDrk","rgba( 0, 0, 0,"+n["--brdrDrk"]+")"); +F.setProperty("--alphaDark",""+n["--alphaDark"]);F.setProperty("--gs-invert",""+n["--gs-invert"]);var O=n["--sh-clr"]; +F.setProperty("--sh-clr","rgba("+(O>>16)+","+(O>>8&255)+","+(O&255)+", 0.45)");F.setProperty("--sh-dy",""+n["--sh-dy"]+"px"); +if(1=0)n=Math.max(this.Pi,n);if(this.jL==0)n=Math.round(n);var I=this.gA;this.Ee.value=(this.jL!=0?n.toFixed(this.jL):n)+(this.ajA&&I?(I.toLowerCase()==I.toUpperCase()?"":" ")+I:""); +var x=400*Math.pow((n-this.Pi)/(this.Nm-this.Pi),1/2.7);this.Ic.value=this.R7?x:n;if(F)this.Cb()};dp.prototype.u=function(){var n=parseFloat(this.Ee.value); +if(isNaN(n))n=0;return n};dp.prototype.Z6=function(){return this.gA};dp.prototype.sS=function(n){var F=0; +if(n.currentTarget==this.Ee){var O=n.target.value,I=0;while(I50&&n>10)n=Math.round(n); +return n};dp.prototype.kz=function(n){var F=0;if(u.NW(n.code,u.dE))F=1;if(u.NW(n.code,u.ZW))F=-1;if(F!=0)this.Zs(F,n.shiftKey)}; +dp.prototype.Cd=function(n){this.Zs(n.deltaY>0?-1:1,n.shiftKey)};dp.prototype.Zs=function(n,F){var O=this.u(),I=this.jL,x=n*(I==null||I==0||O>5?1:.1); +if(F)x*=10;var r=O+x;if(!this.R7&&this.Nm!=this.Pi)r=Math.min(this.Nm,r);this.F(r);this.Cb()};dp.prototype.a3w=function(n){var F=Date.now()-this.BI; +this.BI=Date.now();if(F>300)return;var O=(this.Nm+this.Pi)/2;if(this.Pi<0&&this.Nm>0)O=0;else if(this.Pi<1&&this.Nm>1&&this.Nm<10)O=1; +this.F(O);this.Cb()};dp.prototype.ah6=function(n){V.MH(document,this.ad4);V.Ry(document,this.afU);this._E=V.iJ(n,document.body).x; +this.NC=this.u()};dp.prototype.a2g=function(n){V.ou(n);var F=this.Pi==this.Nm,O=V.iJ(n,document.body).x,I=(O-this._E)*(F?1:1/120*(this.Nm-this.Pi)),x=this.NC+I; +if(F)x=Math.round(x);if(!F){if(!0){x=Math.max(this.Pi,x);if(x==this.Pi){this._E=O;this.NC=this.Pi}}if(!this.R7){x=Math.min(this.Nm,x); +if(x==this.Nm){this._E=O;this.NC=this.Nm}}x=this.i7(x)}this.Ss=!0;this.F(x);this.Cb()};dp.prototype.aj9=function(n){if(!this.Ss)this.Ee.focus(); +this.Ss=!1;V.le(document,this.ad4);V.re(document,this.afU)};dp.prototype.xC=function(){this.Ee.select(); +this.Ee.focus()};function iX(n,F){ch.call(this);this.ot=[];this.Ky=-1;this.a6_=n;this.OK=F;this.VX=0; +this.Xv=null;this.G_=new aE(0,0);if(F!=null){this.Uw=new at([{name:[6,37]},{name:[5,4]}]);this.Uw.parent=this; +this.Uw.k("select",this.K7,this)}this._=V.w("div","imageset scrollable");this._.addEventListener("contextmenu",V.Bg,!1)}iX.prototype=new ch; +iX.prototype.B=function(){if(this.Uw)this.Uw.B()};iX.prototype.K7=function(n){var e=this.Uw.uz()[0],F=new k(V.E.P,!0),O={e:V.U.g7,b9:this.OK,Cj:[this.Ky]}; +if(e==0){var I=this.Xv[1][this.Ky];O.ve="rnm";F.data={e:V.U.n$,cU:"namewindow",ZN:I,Xp:{g:V.E.P,i:O}}}else{F.data=O; +O.ve="del"}this.A(F)};iX.prototype.an5=function(){return this.VX};iX.prototype.HN=function(n){this.VX=n; +if(this.Xv)this.Xx()};iX.prototype.Ea=function(n,F,O,I){this.Xv=[n,F,O,I];this.Xx()};iX.prototype.Xx=function(){var n=this.Xv,F=n[0],O=n[1],I=n[2],x=n[3]; +this.ot=[];this._.innerHTML="";var r=this.R2.bind(this),_=this.VX;if(_==0)V.fx(this._,"imageset");else V.aE(this._,"imageset"); +for(var e=0;e0)){r=_;x=e}}if(x==-1)return; +this.adq=x;this.s5=n.altKey||F[(x>>>1)*2]!=F[(x>>>1)*2+1];V.MH(window,this.Wz);V.Ry(window,this.Xy)}; +gj.prototype.BO=function(n){var F=this.rH,O=this.adq,I=(O>>>1)*2,x=I+1,r=V.iJ(n,this.nd),_=Math.round(Math.max(0,Math.min(255,r.x-8))); +F[O]=_;if(this.s5&&F[I]>=F[x])this.s5=!1;if(!this.s5)F[I]=F[x]=_;this.Xx();this.A(new k(V.E.L,!1))}; +gj.prototype.lu=function(n){V.le(window,this.Wz);V.re(window,this.Xy)};gj.prototype.Xx=function(){var n=this.nd; +V.$C(n,255+16,16);var F=n.getContext("2d"),O=n.width,I=n.height,x=Math.round(255*V.Z()),r=Math.round(8*V.Z()); +F.translate(r,0);var _=F.createLinearGradient(0,0,x,0);_.addColorStop(0,"black");_.addColorStop(1,"#"+["ffffff","ff0000","00ff00","0000ff"][this.cm]); +F.fillStyle=_;F.fillRect(0,0,x,r);var d=this.a0r,w=hl.get(this.a84)+":";d[0].textContent=w;for(var e=0; +e<4;e++){var Z=this.rH[e];d[1+e].textContent=Z;var P=Math.round(Z*V.Z());F.beginPath();F.moveTo(P,r); +F.lineTo(P,r+r);F.lineTo(P+((e&1)==0?-1:1)*r,r+r);F.closePath();F.fillStyle="#cccccc";F.fill();F.strokeStyle="black"; +F.stroke()}};function fS(n){ch.call(this);this.Wr=0;this.alt=0;var F="ai"+V._0();this._=V.w("span","fitem angleinput"); +if(n){this.zt=V.w("label","flabel");this.xt=n;this._.appendChild(this.zt);this.zt.setAttribute("for",F)}this.NI=20; +this._Y=V.w("canvas","gsicon");this.xX=this._Y.getContext("2d");V.$C(this._Y,this.NI*2+1,this.NI*2+1,this.xX); +this._.appendChild(this._Y);V.CP(this._Y,this.Yl.bind(this));this.QE=this.Lw.bind(this);this.vk=this.KL.bind(this); +this.Ee=V.w("input","");this.Ee.setAttribute("type","text");this._.appendChild(this.Ee);this.Ee.setAttribute("id",F); +this.Ee.addEventListener("change",this.sS.bind(this),!1);this.lQ=V.w("span","");this.lQ.innerHTML="\xB0"; +this._.appendChild(this.lQ);this.F(this.Wr,this.alt)}fS.prototype=new ch;fS.prototype.B=function(){this.zt.textContent=hl.get(this.xt)+":"}; +fS.prototype.YB=function(n){this.zt.textContent=n};fS.prototype.u=function(){return{Wr:this.Wr,alt:this.alt}}; +fS.prototype.F=function(n,F,O){if(n!=null)this.Wr=n;if(F!=null)this.alt=F;this.Ee.value=this.Wr;n=Math.PI*this.Wr/180; +F=.9*this.NI*(90-this.alt)/90;var I=this.NI+.5,x=this.xX;x.clearRect(0,0,100,100);x.strokeStyle="#000000"; +x.beginPath();x.arc(I,I,.9*this.NI,0,2*Math.PI);x.moveTo(I,I);x.lineTo(I+Math.cos(n)*this.NI*.9,I-Math.sin(n)*this.NI*.9); +x.stroke();x.strokeStyle="#ff0000";x.beginPath();x.moveTo(I+Math.cos(n)*F-3,I-Math.sin(n)*F);x.lineTo(I+Math.cos(n)*F+3,I-Math.sin(n)*F); +x.moveTo(I+Math.cos(n)*F,I-Math.sin(n)*F-3);x.lineTo(I+Math.cos(n)*F,I-Math.sin(n)*F+3);x.stroke();if(O)this.sS()}; +fS.prototype.sS=function(n){var F=parseInt(this.Ee.value);F=F%360;this.F(F);this.A(new k(V.E.L,!1))}; +fS.prototype.Yl=function(n){V.MH(window,this.QE);V.Ry(window,this.vk);this.Lw(n)};fS.prototype.Lw=function(n){var F=V.iJ(n,this._Y),O=F.x-this.NI,I=F.y-this.NI,x=180*Math.atan2(-I,O)/Math.PI,r=90-90*Math.min(1,Math.sqrt(O*O+I*I)/(.9*this.NI)); +this.F(Math.round(x),Math.round(r));this.A(new k(V.E.L,!1))};fS.prototype.KL=function(n){this.A(new k(V.E.L,!1)); +V.le(window,this.QE);V.re(window,this.vk)};function iZ(n,F){ch.call(this);this.rH=0;this.Ly=F;this._=V.w("span","fitem angleinput"); +if(n){this.zt=V.w("label","flabel");this.xt=n;this._.appendChild(this.zt)}this._Y=V.w("canvas","gsicon"); +this.xX=this._Y.getContext("2d");V.$C(this._Y,F,F);this._.appendChild(this._Y);V.CP(this._Y,this.Yl.bind(this)); +this.QE=this.Lw.bind(this);this.vk=this.KL.bind(this);this.F(0)}iZ.prototype=new ch;iZ.prototype.B=function(){if(this.xt)this.zt.textContent=hl.get(this.xt)+":"}; +iZ.prototype.YB=function(n){this.zt.textContent=n};iZ.prototype.u=function(){return this.rH};iZ.prototype.F=function(n){this.rH=n; +var F=this._Y.width,O=Math.floor(n/3),I=n-3*O,x=(I+.5)*F/3,r=(O+.5)*F/3,_=this.xX,d=[.5,Math.round(F/3)+.5,Math.round(2*F/3)+.5,F-.5]; +_.clearRect(0,0,F,F);var w=this.Ly<30;_.setLineDash([]);_.strokeStyle=w?"rgba(0,0,0,0.5)":"#000000"; +_.beginPath();for(var e=0;e<4;e++){var Z=d[e];_.moveTo(Z,0);_.lineTo(Z,F);_.moveTo(0,Z);_.lineTo(F,Z)}_.stroke(); +if(n==9)return;if(!w){_.setLineDash([1,2]);var P=F*.53,C=Math.max(0,Math.min(F-P,x-P/2)),W=Math.max(0,Math.min(F-P,r-P/2)); +_.strokeRect(Math.round(C)+.5,Math.round(W)+.5,Math.round(P),Math.round(P))}_.fillStyle="#000000";_.beginPath(); +_.arc(x,r,F/8,0,Math.PI*2);_.fill()};iZ.prototype.Yl=function(n){V.MH(window,this.QE);V.Ry(window,this.vk); +this.Lw(n)};iZ.prototype.Lw=function(n){var F=V.iJ(n,this._Y),O=Math.max(0,Math.min(2,Math.floor(F.x/(this.Ly/3)))),I=Math.max(0,Math.min(2,Math.floor(F.y/(this.Ly/3)))); +this.F(I*3+O)};iZ.prototype.KL=function(n){this.A(new k(V.E.L,!1));V.le(window,this.QE);V.re(window,this.vk)}; +function cg(n,F,O,I){ch.call(this);this._=V.w("button","fitem"+(F?" spread":"")+(I?" bbtn":""));this.xt=n; +this._e=O;this.B();this._.addEventListener("click",this.R2.bind(this),!1)}cg.prototype=new ch;cg.prototype.B=function(){var n=this._,F=this.xt,O=this._e,I=hl.get(F); +if(I.startsWith(">16&255,l:n>>8&255,O:n&255};this.kY()};aR.prototype.F=function(n){this.UI=q.W.S_(n); +this.kY()};aR.prototype.kY=function(){var n=this.UI,F=n.Q,O=n.l,I=n.O,x=F<<16|O<<8|I;this._.setAttribute("style","background-color:#"+q.c7(x))}; +function dF(){ch.call(this);this._D=!1;this.o9=20;this.a1d=10;this.g2=0;this._D=!1;this.G$={Q:255,l:0,O:0}; +this.SW={Q:0,l:0,O:0};this._=V.w("canvas");this.Xx();V.kQ(this._);V.CP(this._,this.DX.bind(this))}dF.prototype=new ch; +dF.prototype.a8n=function(n){if(this._D==n)return;this._D=n;this.Xx()};dF.prototype.B=function(){};dF.prototype.aow=function(n,F){function O(I){return{Q:I>>16&255,l:I>>8&255,O:I&255}}if(n!=null)this.G$=O(n); +if(F!=null)this.SW=O(F);this.Xx()};dF.prototype.DX=function(n){var F=V.iJ(n,this._),O=F.x*V.Z(),I=F.y*V.Z(),x=this.o9,r=this.a1d,_=0; +if(Ox-r&&I>x-r){_=1}else if(O1)d.data={e:V.U.g7,b9:cf.dM,G1:_}; +else{this.g2=_;var w=_==0?this.G$:this.SW;d.data={e:V.U.n$,cU:"colorpicker",eF:w.Q<<16|w.l<<8|w.O,KC:this.bc.bind(this)}}this.A(d)}; +dF.prototype.bc=function(n){var F=new k(V.E.P,!0);F.data={e:V.U.g7,b9:cf.dM,G1:this.g2,G:n};this.A(F)}; +dF.prototype.Xx=function(){var n=this._,F=n.getContext("2d"),O=V.Z(),x="#aaaaaa",r=.65;V.$C(n,34,34); +n.setAttribute("style",n.getAttribute("style")+";cursor:pointer");var I=this.o9=n.width,_=this.a1d=Math.round(I*r); +function d(v,L){var H=v.Q,y=v.l,g=v.O;if(L)H=y=g=Math.round(q.iB(H,y,g));var Q=H<<16|y<<8|g;return"#"+q.c7(Q)}function w(v,L,_,H,y){F.fillStyle=y?y:"black"; +F.fillRect(v,L,_,_);F.fillStyle=H;F.fillRect(v+1,L+1,_-2,_-2)}w(I-_,I-_,_,d(this.SW,this._D));w(0,0,_,d(this.G$,this._D)); +var Z=I-_,P=Math.round(Z*r);w(I-P,Z-P,P,"white",x);w(I-Z,0,P,"black",x);F.save();F.fillStyle=x;F.translate(0,I); +F.rotate(-Math.PI/2);Z=I-_;var C=Math.round(Z*.28),W=Math.round(Z*.25);for(var e=0;e<2;e++){F.fillRect(C,C,Z-C,1); +F.beginPath();F.moveTo(Z-W,C+.5-W);F.lineTo(Z,C+.5);F.lineTo(Z-W,C+.5+W);F.closePath();F.fill();F.transform(0,1,1,0,0,0)}F.restore()}; +function fa(n){ca.call(this,n,!1,"brushbutton nopadding",16.6,10,cf.pY,!0);this.ir=new af([12,14,0],1,1e3," px",0,!0); +this.ir.k(V.E.L,this.ZH,this);this.qz.appendChild(this.ir._);this.Lh=new af([12,17],0,100,"%");this.Lh.k(V.E.L,this.ZH,this); +this.qz.appendChild(this.Lh._)}fa.prototype=new ca;fa.prototype.Cy=function(){var n=["pencil","trees"]; +for(var e=0;e0&&I.Gk==null)I.Gk=JSON.parse(JSON.stringify(bW.BR[O-1]));if(this.oz)this.F(this.qE,I,this.oz)}if(F==this.cK)this.ds.IU(F.u()); +this.A(new k(V.E.L,!1))};iD.prototype.r1=function(n){var F=this._Y.getBoundingClientRect(),O=new k(V.E.P,!0); +O.data={e:V.U.di,AM:this.nf,x:F.left,y:F.top+F.height+4};this.A(O);this.cK.F(this.ds.EL())};iD.prototype.F=function(n,F,O){this.oz=O; +this.qE=n;var I=[[13,1,0],[13,0],[12,37],[12,62]],x=this.a2M,r=this.acI,_=!1,P;for(var e=0;e<4;e++){var d={he:e,Gk:O[e]},w=iD.hr(d); +if(r[e]==w)continue;_=!0;var Z=iD.h6(null,d,this.GL,this.qE,22,22,!1);x[e]=""; +r[e]=w}if(_)this.Or.SY(x,I);this.Or.F(F.he);var w=iD.hr(F);if(w!=this.ala)iD.h6(this.xX,F,this.GL,this.qE,30,23,!0); +this.ala=w;var C=F.he;if(C==0){P=this.a9F}if(C==1){this.ds.F(F.Gk.Clr.v);P=this.fX}if(C==2){this.fG.update(n,F.Gk); +P=this.Uc}if(C==3){this.Wp.update(n,F.Gk);P=this.Cp}if(P!=this.Fo){if(this.Fo!=null){this.nf._.removeChild(this.Fo)}this.nf._.appendChild(P); +this.Fo=P}};iD.prototype.u=function(){var n={he:this.Or.u()};if(n.he==1){n.Gk=JSON.parse(JSON.stringify(bW.BR[0])); +n.Gk.Clr.v=this.ds.u()}if(n.he==2){n.Gk=this.fG.u()}if(n.he==3){n.Gk=this.Wp.u()}return n};iD.hr=function(n){var F=n.he,O=n.Gk,I="empty"; +if(F==1){I=q.W.S_(O.Clr.v);I=I.Q+","+I.l+","+I.O}if(F==2)I=JSON.stringify(O.Grad.v);if(F==3)I=O.Ptrn.v.Idnt.v; +return I};iD.h6=function(n,F,O,I,x,r,_){if(n==null)n=iD.xX;var d=Math.floor(x*V.Z()),w=Math.floor(r*V.Z()),Z=n.canvas,P; +Z.width=d;Z.height=w;V.z0(Z,d,w);var C=F.he;if(C==0){n.fillStyle="#ffffff";n.fillRect(0,0,d,w);n.strokeStyle="#ff0000"; +n.lineWidth=2;n.moveTo(0,0);n.lineTo(d,w);n.moveTo(0,w);n.lineTo(d,0);n.stroke()}if(C==1){var W=F.Gk.Clr.v; +W=q.W.S_(W);n.fillStyle="#"+q.c7(W.Q<<16|W.l<<8|W.O);n.fillRect(0,0,d,w)}if(C==2){c.AG.JC(F.Gk.Grad.v,d,w,0,O.nE,O.sI,Z)}if(C==3){var v=F.Gk.Ptrn.v,L; +if(I!=null)L=ha.Yi(v,I.add.Patt);if(L==null)L=ha.Yi(v,O.a6);iG.JC(L,d,w,Z)}if(_){n.beginPath();n.strokeStyle="#000000"; +n.fillStyle="#ffffff";n.lineWidth=2;var H=d*.7,y=Math.floor(w*.7),g=7*V.Z();n.moveTo(H,y);n.lineTo(H+g,y); +n.lineTo(H+g/2,y+g/2);n.closePath();n.stroke();n.fill()}if(n==iD.xX)return Z.toDataURL()};iD.xX=V.w("canvas").getContext("2d"); +function iG(n){ca.call(this,n,!1,"patternbutton",18,10,cf.xf);this.xO=null}iG.prototype=new ca;iG.prototype.wH=function(n){var F=this.JN[this.rJ.u()]; +this._o={classID:"Ptrn",Nm:{t:"TEXT",v:F.name},Idnt:{t:"TEXT",v:F.id}};this.A(new k(V.E.L));this.rP()}; +iG.tm=!1;iG.prototype.q0=function(){if(!this.g5)return;var n=this.JN;if(n==null||!iG.tm){var F=new k(V.E.P,!0); +F.data={e:V.U.Fb,b9:{url:"rsrc/basic/basic.pat"}};this.A(F);iG.tm=!0;return}var O=Math.floor(34*V.Z()),I=Math.floor(34*V.Z()),x=[],r=[]; +for(var e=0;e255||I<0||I>255)C=!1; +if(C&&r.indexOf(this.Ew)==-1)r.push(this.Ew);if(!C&&r.indexOf(this.Ew)!=-1&&r.length>2&&(!_||!w))r.splice(r.indexOf(this.Ew),1); +if(r[0].v.Hrzn.v==r[1].v.Hrzn.v)if(r[0].v.Hrzn.v==0)r[1].v.Hrzn.v=1;else r[0].v.Hrzn.v--;r.sort(function(g,Q){return g.v.Hrzn.v-Q.v.Hrzn.v})}else{O=Math.round(O); +I=Math.round(I);O=Math.max(0,Math.min(255,O));I=Math.max(0,Math.min(255,I));var W=this.vD.x,v=O,L=this.vD.y,H=I; +if(O.002){this.amM(O.data,256,256,F.Sa); +this.a9V=F.Sa}this.xX.putImageData(O,0,0);this.xX.strokeStyle="#000000";this.xX.beginPath();this.xX.arc(this.e1.x+1,this.e1.y+1,5,0,2*Math.PI); +this.xX.stroke();this.xX.strokeStyle="#ffffff";this.xX.beginPath();this.xX.arc(this.e1.x,this.e1.y,5,0,2*Math.PI); +this.xX.stroke();var O=this.a2V;this.Ij.putImageData(O,0,0);this.Ij.strokeStyle="#ffffff";this.Ij.beginPath(); +this.Ij.moveTo(0,this.M5.y);this.Ij.lineTo(20,this.M5.y);this.Ij.lineWidth=2;this.Ij.stroke()};dH.prototype.amM=function(n,F,O,I){var x=1/F,r=1/O; +for(var _=0;_0)this._.removeChild(this.lO.pop()._); +this.kB=n;for(var e=0;e>>1;x.width=x.height=I;var d=[]; +for(var e=0;e"); +else d.push("")}hg.call(this,n,d,O)}aG.prototype=new hg; +aG.k_=V.w("canvas");function bf(n,F,O,I){ch.call(this);if(!F)return;if(O==null)O=!1;this.Ky=0;this.a0i=O; +this.xt=n;this.hW=null;this.anL=I;var x="dd"+V._0();this._=V.w("span","fitem ddmenu");if(n&&!O){this.zt=V.w("label","flabel"); +this._.appendChild(this.zt);this.zt.setAttribute("for",x)}this.kV=V.w("select","bbtn");this.kV.setAttribute("id",x); +this._.appendChild(this.kV);this.kV.addEventListener("change",this.sS.bind(this),!1);this.lO=[];this.kB=null; +this.SY(F,I);this.B()}bf.prototype=new ch;bf.prototype.YB=function(n){this.xt=n;this.B()};bf.prototype.B=function(){if(this.xt!=null){var n=hl.get(this.xt); +if(this.a0i)this.kV.setAttribute("title",n);else this.zt.textContent=n+":"}if(this.kB)this.SY(this.kB,this.anL); +this.F(this.Ky)};bf.prototype.u=function(){return this.Ky};bf.prototype.SY=function(n,F){V.em(this.kV); +var O=[],I=0;if(F){O.push(F[0]);for(var e=1;e"); +this.HE=new cg("");this.fp=new cg(""); +this.IK=new cg("");this.BB=new cg(""); +this.G8=new cg("");this.ec=new cg(""); +this.H_=new cg("");var n=[this.GC,this.HE,this.fp,this.IK,this.BB,this.G8,this.ec,this.H_]; +for(var e=0;e"); +this.Th=new cg("");this.ri=new cg(""); +this.a0s=new cg("");this.a2k=new cg(""); +this.a8F=new cg("");this.a9S=new cg(""); +this.RE=[this.JV,this.Th,this.ri,this.a0s,this.a2k,this.a8F,this.a9S];for(var e=0;e "); +this.A$=new cR(O[0],-20,20,"px");this.A$.k(V.E.L,this.Sq,this);this.A$.parent=this;this.MD=new cR(O[1],-20,20,"px"); +this.MD.k(V.E.L,this.Sq,this);this.MD.parent=this;this.zD=new cR(O[2],-20,20,"px");this.zD.k(V.E.L,this.Sq,this); +this.zD.parent=this;this.V6=new cR(O[3],-20,20,"px");this.V6.k(V.E.L,this.Sq,this);this.V6.parent=this; +this.Aj=new cR(O[4],-20,20,"px");this.Aj.k(V.E.L,this.Sq,this);this.Aj.parent=this;this.ku=new hg([12,33],["Abc ...","... \u0623\u064A \u0628\u064A"]); +this.ku.k(V.E.L,this.Sq,this);this.ku.parent=this}aj.prototype=new ch;aj.prototype.B=function(){this.ui.B(); +this.R0.B();this.mu.B();this.FX.B();this.nX.B();this.u7.B();this.Rp.B();this.ku.B()};aj.prototype.F=function(n,F,O){this.tV=JSON.parse(JSON.stringify(n)); +var I=this.tV,x=I.Bw,r=I.jp;this.GC.F(x.FauxBold!=null?x.FauxBold:!1);this.HE.F(x.FauxItalic!=null?x.FauxItalic:!1); +this.fp.F(x.FontCaps==2);this.IK.F(x.FontCaps==1);this.G8.F(x.FontBaseline==1);this.BB.F(x.FontBaseline==2); +this.ec.F(x.Underline);this.H_.F(x.Strikethrough);this.ui.F(x.Font==null?null:I.D0[x.Font].Name,F,O); +var _=x.FontSize==null?20:x.FontSize;this.R0.F(_);var d=x.Tracking;this.FX.F(d==null?0:d);this.mu.F(x.Leading!=null&&x.Leading!=0?x.Leading:_); +this.wF.F(x.AutoLeading);this.u7.F((x.VerticalScale!=null?x.VerticalScale:0)*100);this.Rp.F((x.HorizontalScale!=null?x.HorizontalScale:0)*100); +this.nX.F(x.BaselineShift!=null?x.BaselineShift:0);if(x.FillColor){var w=bt.S_(x);this.dK.IU(Math.round(w.Q)<<16|Math.round(w.l)<<8|Math.round(w.O))}else this.dK.IU(0); +var Z=r._Direction!=null?r._Direction:0,P=bt.H2(r);for(var e=0;e>16&255)/255,(F>>8&255)/255,(F>>0&255)/255]}; +for(var e=0;e<4;e++)O.Values[e]=Math.round(O.Values[e]*1e3)/1e3;this.tV.Bw.FillColor=O;this.kO()};function hW(){ch.call(this); +this._=V.w("span","fontinput");this.D7=null;this.sJ=null;this._J=null;this.N8="";this.ot={};this.Hb=[]; +this.abH={};this.V1=!1;this.$M=V.w("button","fitem");this.$M.setAttribute("style","width:9em;");this.$M.textContent="Family Name \u25BC"; +this._.appendChild(this.$M);V.CP(this.$M,this.mZ.bind(this));this.Yp=new ch;this.Yp.parent=this;this.Yp._=V.w("div","floatcont"); +this.Yp._.addEventListener("keyup",this.abZ.bind(this),!1);this.Ax=new fw(6.8);this.Yp._.appendChild(this.Ax.a6y()); +this.Ax.parent=this.Yp;this.Ax.k(V.E.L,this.vh,this);var n=V.w("div","form");this.Yp._.appendChild(n); +this.B4=new cg(V.WE("tools/cshape",null,"autoscale"),!1,"Show Favorites Only");this.B4.k("click",this.a4f,this); +n.appendChild(this.B4._);this.PV=new fq([12,86],null,9);this.PV.k("input",this.LM,this);n.appendChild(this.PV._); +var F=this.abF=new cg([[23,6],[22,6,0]],!1,"Load OTF / TTF file from your computer",!0);F.k("click",this.aie,this); +F._.style.marginLeft="1.5em";n.appendChild(F._);this.l3=V.w("span","fitem imageset scrollable marged"); +this.l3.style.height="30em";this.Yp._.appendChild(this.l3);this.Vl=V.w("button","fitem");this.Vl.setAttribute("style","width:7em;"); +this.Vl.textContent="SubFamily Name \u25BC";this._.appendChild(this.Vl);V.CP(this.Vl,this.mZ.bind(this)); +this.SX=new ch;this.SX.parent=this;this.SX._=V.w("div","floatcont");this.xB=V.w("span","fitem imageset scrollable marged"); +this.SX._.appendChild(this.xB)}hW.prototype=new ch;hW.prototype.abZ=function(n){var F=0;if(u.NW(n.code,u.dE))F=-1; +if(u.NW(n.code,u.ZW))F=1;if(F!=0){var O=this.Hb,I=O.length,x=this.D7.j9()[this._J];if(x==null&&I==0)return; +var r=O.indexOf(x[0]);if(r==-1)return;r=(r+F+I)%I;this.Az(O[r],null)}};hW.prototype.aie=function(){var n=new k(V.E.P,!0); +n.data={e:V.U.eR,a03:".otf,.ttf,.ttc"};this.A(n)};hW.prototype.B=function(){this.Ax.B();this.abF.B(); +this.B4.YB(V.WE("tools/cshape",null,"autoscale"))};hW.prototype.a4f=function(n){this.B4.F(!this.B4.jQ()); +this.vh()};hW.prototype.LM=function(n){this.N8=this.PV.u().toLowerCase();this.vh()};hW.prototype.mZ=function(n){V.ou(n); +var F=n.currentTarget,O=F.getBoundingClientRect(),I=F==this.$M,x=I?this.Yp:this.SX;if(V.Zo(x._)){this.qf(x); +return}if(!I&&this.D7.j9()[this._J]==null)return;var r=new k(V.E.P,!0);r.data={e:V.U.di,AM:x,x:O.left,y:O.top+O.height}; +this.A(r);if(I){this.vh();this.PV.xC()}};hW.prototype.any=function(n){var F=n.currentTarget.firstChild.nextSibling.textContent; +if(n.target.tagName.toLowerCase()=="button"){var O=this.sJ.slice(0),I=O.indexOf(F);if(I==-1){O=O.slice(Math.max(0,O.length-29)); +O.push(F)}else O.splice(I,1);var x=new k(V.E.P,!0);x.data={e:V.U.g7,b9:cf.TN,Qj:O};this.A(x);this.V1=!0; +this.vh()}else{this.Az(F,null);this.PV.xC()}};hW.prototype.afN=function(n){this.Az(null,n.currentTarget.firstChild.textContent)}; +hW.prototype.Az=function(n,F){var O=n==null?this.SX:this.Yp,I=this.D7;if(n==null)n=I.j9()[this._J][0]; +else{var x=I.m8(n),r=I.j9()[this._J];F=da.W5(x,r?r[1]:"regular")}var _=I.u2(n,F)[2];this.F(_,I);this.A(new k(V.E.L,!1)); +this.qf(O);this.vh()};hW.prototype.qf=function(n){var F=new k(V.E.P,!0);F.data={e:V.U.kX,AM:n};this.A(F)}; +hW.prototype.u=function(){return this._J};hW.prototype.F=function(n,F,O){var I=this.D7;if(n!=null)this._J=n; +else n=this._J;this.D7=F;this.sJ=O;if(n!=null){var x=F.j9()[n],r,_;if(x==null){r="- "+n;_="-------"}else{r=x[0]; +_=x[1];var d=F.m8(r);d.sort(da.a1W);var w=d.indexOf(_),Z=this.afN.bind(this);this.xB.textContent=""; +for(var e=0;e0&&d[0].toLowerCase().indexOf(this.N8)==-1)Z=!1; +else if(!this.Ax.zI(d))Z=!1;else if(this.B4.jQ()&&!w)Z=!1;var P=this.ot[r];if(P==null){var P=this.Gw(d,r,x,!0); +this.ot[r]=P;this.l3.appendChild(P)}if(Z)this.Hb.push(r);var C=Z?"":"display:none; ",W="opacity: "+(w?"1":"0.2"); +if(n&&n[0]==r){C+="background-color:rgba(0,0,0,0.13);";O=P}if(this.abH[r]!=C+W){P.setAttribute("style",C); +P.firstChild.setAttribute("style",W);this.abH[r]=C+W}}if(O&&!this.V1)this.l3.scrollTop=O.offsetTop-210; +this.V1=!1};hW.prototype.Gw=function(n,F,O,I){var x=V.w("div","fontitem"),w="";x.addEventListener("click",O,!1); +if(I)x.appendChild(V.w("button","star"));var r=V.w("span","label");r.setAttribute("title",F);r.textContent=F; +x.appendChild(r);var _=V.Z(),d=1/_,Z=da.rC*d,P=da.LJ*d;if(1<_&&_<1.5)w="width:"+Z+"px; height:"+P+"px;"; +var C=V.w("span","thumb gsicon");if(n.aij){w+="background: url("+n.aij+");";if(1<_&&_<1.5)w+="background-size: "+Z+"px "+P+"px;"}else{var W=Math.ceil(FNTS.list.length/da.cols),v=Math.floor(n.FI/W),L=n.FI%W,H=v*da.rC,y=L*da.LJ; +if(1<_&&_<1.5){w+="background-size: "+da.cols*Z+"px "+W*P+"px;";H*=d;y*=d}w+="background-position:-"+H+"px -"+y+"px;"}C.setAttribute("style",w); +x.appendChild(C);return x};function fw(n){ch.call(this);this._=V.w("button","fitem bbtn");this._.addEventListener("click",this.abi.bind(this),!1); +this.nf=new ch;this.nf._=V.w("div","floatcont");this.nf.parent=this;this.Q3=V.w("div","flexrow");this.nf._.appendChild(this.Q3); +this.nb=[];this.la=[];var F=this.Q3,O=V.w("div",""),I=V.w("div","");F.appendChild(O);F.appendChild(I); +this.__=[];for(var e=0;e>>e&1)==1;this.la[e]=O;F[e].F(O)}};fw.prototype.a6y=function(){return this.Q3}; +fw.prototype.B=function(){this._.textContent=hl.get([25,1,0])+" \u25BC";this._S.B();this.agN.B()};fw.prototype.abi=function(n){var F=this._.getBoundingClientRect(),O=new k(V.E.P,!0); +O.data={e:V.U.di,AM:this.nf,x:F.left,y:F.top+F.height,eE:!1};this.A(O)};fw.prototype.zI=function(n){if(this.nb[n[4]]==0)return!1; +else for(var F=0;F>>F&1)==0)return!1;return!0};fw.prototype.a4y=function(n){var F=n.target.u(),O=this.QS,I=this.nb; +for(var e=0;e",!1,[12,51]); +this.CC.k("click",this.tE,this);this.a93=new gD("");if(F){this._.appendChild(this.CC._);this._.appendChild(this.a93._); +this.CC.kc()}else this._.appendChild(r._);this.dZ=new cR("DPI",0,0,null,3,!1,!0,4);if(n&&I==null){V.Zq(this._); +this._.appendChild(this.dZ._)}this.dZ.k(V.E.L,this.tE,this);this.a7=new cL([12,23,1]);this.a7.k(V.E.L,this.tE,this); +if(O){V.Zq(this._);this._.appendChild(this.a7._)}V.Zq(this._)}gE.prototype=new ch;gE.prototype.a9b=function(){this.yq=!1; +if(this.Gn.u()==0){this.Gn.F(3);this.Ck()}};gE.prototype.ak8=function(){this.yq=!0};gE.prototype.af4=function(n){this.CC.F(n)}; +gE.prototype.B=function(){this.Cl.B();this.d1.B();this.dZ.B();this.CC.B();this.a7.B()};gE.prototype.ahy=function(n){var F=this.a0.x; +this.a0.x=this.a0.y;this.a0.y=F;this.Ck();this.A(new k(V.E.L,!1))};gE.prototype.tE=function(n){if(n.target==this.Gn&&!this.yq&&this.Gn.u()==0)this.Gn.F(3); +if(n.target==this.Gn||n.target==this.a7){this.Ck();return}if(n.target==this.CC)n.target.F(!n.target.u()); +var F=this.N6,O=parseFloat(this.Cl.u());if(isNaN(O))O=1;var I=parseFloat(this.d1.u());if(isNaN(I))I=1; +var x=this.Gn.u();if(this.yq){var r=this.vX;if(x==1){O=this.N6.x*(O/100);I=this.N6.y*(I/100)}var _=[1,1,25.4/r,1/r][x]; +O/=_;I/=_;if(this.a7.u()){O+=this.N6.x;I+=this.N6.y}if(n.target==this.dZ){var d=this.dZ.u();if(!0){var w=d/r; +O*=w;I*=w}r=d}if(this.CC.u()){if(n.target==this.Cl)I=O*(F.y/F.x);else O=I*(F.x/F.y)}O=Math.max(Math.abs(O),1); +I=Math.max(Math.abs(I),1)}else{var r=this.z$;if(n.target==this.dZ)r=this.dZ.u();else{if(this.CC.u()){if(n.target==this.Cl)I=O*(F.y/F.x); +else O=I*(F.x/F.y)}var _=[1,1,25.4/r,1/r][x],Z=O/(x==1?100:F.x*_);r=r/Z}O=F.x;I=F.y}this.a0=new aE(Math.round(O),Math.round(I)); +this.vX=r;this.Ck();this.A(new k(V.E.L,!1))};gE.prototype.amG=function(e){this.Gn.F(e);this.Ck()};gE.prototype.F=function(n,F,O){if(O!=!0)this.N6=n.clone(); +this.a0=n.clone();if(F!=null){this.z$=F;this.vX=F}this.Ck()};gE.prototype.Ck=function(){var n=this.a0.x,F=this.a0.y,O=this.vX,I=(n/F).toFixed(3); +while(I.charAt(I.length-1)=="0")I=I.substring(0,I.length-1);if(I.charAt(I.length-1)==".")I=I.substring(0,I.length-1); +var x=" "+I+" : 1",r=function(P,C){while(C!=0){var W=C;C=P%C;P=W}return P},_=r(n,F);if(Math.min(n,F)/_<10)x=" "+Math.round(n/_)+" : "+Math.round(F/_); +this.a93.F(x);if(this.a7.u()){n-=this.N6.x;F-=this.N6.y}var d=this.Gn.u();if(d==1){if(this.yq){n=100*n/this.N6.x; +F=100*F/this.N6.y}else{n=F=100*this.z$/this.vX}}else{n=Math.round(n);F=Math.round(F)}var w=[1,1,25.4/O,1/O][d]; +n*=w;F*=w;var Z=d==1||d==3?2:0;this.Cl.NQ(Z);this.d1.NQ(Z);this.Cl.F(n);this.d1.F(F);this.dZ.F(O)};gE.prototype.u=function(){return this.a0.clone()}; +gE.prototype.BL=function(){return this.vX};function bj(){ch.call(this);this.Wg=0;this.iH=[0,0,1,1,100,100]; +this._=V.w("span","fitem");this.Wa=new bf(null,[[12,89,0],[12,89,1],[12,89,2]]);this._.appendChild(this.Wa._); +this.Wa.k(V.E.L,this.tE,this);this.Cl=new cR("W",0,0,null,0,!1,!0);this._.appendChild(this.Cl._);this.Cl.k(V.E.L,this.tE,this); +this.d1=new cR("H",0,0,null,0,!1,!0);this._.appendChild(this.d1._);this.d1.k(V.E.L,this.tE,this);this.F({OI:0,x:0,y:0})}bj.prototype=new ch; +bj.prototype.B=function(){V.$E(this.Cl,this.d1);this.Wa.B()};bj.prototype.tE=function(n){if(n.target==this.Wa){var F=this.u(),O=this.iH; +O[this.Wg*2]=F.x;O[this.Wg*2+1]=F.y;this.Wg=F.OI;this.F({OI:F.OI,x:O[F.OI*2],y:O[F.OI*2+1]})}if(this.Cl.u()<1)this.Cl.F(1); +if(this.d1.u()<1)this.d1.F(1);this.A(new k(V.E.L,!1))};bj.prototype.F=function(n){this.Wa.F(n.OI);this.Cl.F(n.x); +this.d1.F(n.y);if(n.OI==0){this.Cl.gy();this.d1.gy()}else{this.Cl.hL();this.d1.hL()}};bj.prototype.u=function(){return{OI:this.Wa.u(),x:this.Cl.u(),y:this.d1.u()}}; +function gD(n,F){ch.call(this);this.xt=n;this._=V.w("span","labelitem fitem"+(F?" spread":""));this.B()}gD.prototype=new ch; +gD.prototype.F=function(n){this._.textContent=n};gD.prototype.u=function(){return this._.textContent}; +gD.prototype.hL=function(){this._.removeAttribute("disabled")};gD.prototype.gy=function(){this._.setAttribute("disabled","")}; +gD.prototype.YB=function(n){this._.textContent=n};gD.prototype.B=function(){this._.textContent=hl.get(this.xt)}; +gD.prototype.XK=function(){return this.xt};function aX(n){ch.call(this);this._=V.w("span","");this.a8u=n; +this.eh=new g0("Off X",-100,100,n?"%":"px",0,!1);this.Qh=new g0("Off Y",-100,100,n?"%":"px",0,!1);this.eh.k(V.E.L,this.tE,this); +this.Qh.k(V.E.L,this.tE,this);this._.appendChild(this.eh._);this._.appendChild(this.Qh._)}aX.prototype=new ch; +aX.prototype.B=function(){this.eh.B();this.Qh.B()};aX.prototype.tE=function(n){this.A(new k(V.E.L,!1))}; +aX.prototype.adS=function(n){this.eh.F(n.x);this.Qh.F(n.y)};aX.prototype.alh=function(){return new aE(this.eh.u(),this.Qh.u())}; +aX.prototype.F=function(n,F){var O=n.Hrzn.v,I=n.Vrtc.v;if(this.a8u){O=O.val;I=I.val}this.eh.F(O);this.Qh.F(I); +if(F)this.tE()};aX.prototype.u=function(){var n=this.eh.u(),F=this.Qh.u();if(this.a8u)return{classID:"Pnt",Hrzn:{t:"UntF",v:{type:"#Prc",val:n}},Vrtc:{t:"UntF",v:{type:"#Prc",val:F}}}; +else return{classID:"Pnt",Hrzn:{v:n,t:"doub"},Vrtc:{v:F,t:"doub"}}};function cR(n,F,O,I,x,r,_,d,w){dp.call(this,n,F,O,I,x,!0,r,w); +V.fx(this._,"rangedropinput");this._.appendChild(this.zt);this.Ee.setAttribute("style","width:"+(d?d:3.3)+"em"); +this._.appendChild(this.Ee);this.aaA=V.w("span","rangecont");this.aaA.appendChild(this.Ic);this.uk=V.w("button"); +this.uk.innerHTML="\u25BC";V.CP(this.uk,this.a8A.bind(this));if(_!=!0)this._.appendChild(this.uk);this.X1=new ch; +this.X1._=this.aaA}cR.prototype=new dp;cR.prototype.a8A=function(n){if(V.Zo(this.X1._))return;n.stopPropagation(); +var F=this._.getBoundingClientRect();this.Ic.setAttribute("style","width:"+F.width+"px;");var O=new k(V.E.P,!0); +O.data={e:V.U.di,AM:this.X1,x:F.left,y:F.top+F.height};this.A(O)};function ak(){ch.call(this);this._=V.w("span","fitem strokebutton"); +this.o0=[[null,null,null,""],[null,0,null,"4 2"],[1,1,null,"0 2"]];this.Hj=JSON.parse(JSON.stringify(bW.uS.default)); +this.hF=V.w("button");this._.appendChild(this.hF);this.hF.addEventListener("click",this.r1.bind(this),!1); +var n=V.w("canvas","gsicon");this.xX=n.getContext("2d");this.hF.appendChild(n);var F=V.w("span");F.textContent=" \u25BC"; +this.hF.appendChild(F);this.nf=new ch;this.nf.parent=this;this.nf._=V.w("div","floatcont form");var O=this.nf._; +O.setAttribute("style","width: 14em;");this.ot=[new bf([12,40],[[19,5,2],[19,5,1],[19,5,0]]),new hg([19,9,0],["","",""]),new hg([19,9,1],["","",""]),new fq([19,9,2])]; +for(var e=0;e",!1,F[e]); +O.k("click",this.acj,this);this._.appendChild(O._);this.I$.push(O)}this.I$[0].kc()}iQ.prototype=new ch; +iQ.prototype.a9K=function(){return this.rS};iQ.prototype.u=function(){return this.r2[this.rS]};iQ.prototype.F=function(n){this.rS=this.r2.indexOf(n); +for(var e=0;e";var n=this.ae6,F=this.a2o;V.z0(this.e.firstChild,n,F)}; +cz.prototype.u=function(){return this.nT[this.iw]};cz.prototype.F=function(n){this.iw=this.nT.indexOf(n); +this.rP()};function gp(n,F,O){ch.call(this);if(n==null)n=!1;if(F==null)F=!1;if(O==null)O=!1;this.a7d=F; +this.qF=null;this.PH=new cz([12,22],O);this.PH.parent=this;this.PH.k(V.E.L,this.kO,this);this.zn=new bf([22,0],[[22,4,0],[22,4,1]]); +this.zn.k(V.E.L,this.kO,this);var I=n?cR:af;this.cy=new I([22,1],-100,100,"%");this.mS=new I("Horizontal Distortion:",-100,100,"%"); +this.L5=new I("Vertical Distortion:",-100,100,"%");this.cy.parent=this.mS.parent=this.L5.parent=this; +this.cy.k(V.E.L,this.kO,this);this.mS.k(V.E.L,this.kO,this);this.L5.k(V.E.L,this.kO,this)}gp.prototype=new ch; +gp.prototype.B=function(){this.PH.B();this.zn.B();this.cy.B();var n=this.a7d?1:100;this.mS.YB(hl.get([22,2]).substring(0,n)+":"); +this.L5.YB(hl.get([22,3]).substring(0,n)+":")};gp.prototype.kO=function(){var n=this.qF,F=this.PH.u(),O=n.warpStyle.v.warpStyle; +if(F=="warpCustom")q.qF.rG(q.qF.Bo(n),n);else delete n.customEnvelopeWarp;n.warpStyle.v.warpStyle=this.PH.u(); +n.warpRotate.v.Ornt=["Hrzn","Vrtc"][this.zn.u()];n.warpValue.v=this.cy.u();n.warpPerspective.v=this.mS.u(); +n.warpPerspectiveOther.v=this.L5.u();if(F=="warpNone"||F=="warpCustom"){n.warpValue.v=0;n.warpPerspective.v=0; +n.warpPerspectiveOther.v=0}else if(O=="warpNone"||O=="warpCustom")n.warpValue.v=50;this.A(new k(V.E.L,!1)); +this.F(n)};gp.prototype.u=function(n){return JSON.parse(JSON.stringify(this.qF))};gp.prototype.F=function(n){this.qF=JSON.parse(JSON.stringify(n)); +this.PH.F(n.warpStyle.v.warpStyle);this.zn.F(n.warpRotate.v.Ornt=="Hrzn"?0:1);this.cy.F(n.warpValue.v); +this.mS.F(n.warpPerspective.v);this.L5.F(n.warpPerspectiveOther.v);var F=n.warpStyle.v.warpStyle,O=F=="warpNone"||F=="warpCustom",I=[this.zn,this.cy,this.mS,this.L5]; +for(var e=0;e=1)I={zc:O,rect:F.Kh};else I=q.a0X(O,F.Kh,n);this.DI.push(I)}}; +aH.prototype.eb=function(){clearTimeout(this.a5U)};aH.prototype.lx=function(){if(this._g==null||!V.Zo(this.Q_))return; +var n=this.ahm,F=this.Q_.width,O=this.Q_.height,L,H;if(n==null||n.width!=F||n.height!=O){n=this.ahm=this.xX.createImageData(F,O); +console.log("creating image data")}var I=this._g[this.iP],x=this.DI[this.iP],r=this.a,_=r.KH,d=r.Nv,w=d.d,Z=d.v,P=_.d*r.K,C=_.v*r.K,W=Math.round((w-P)/2+r.n.x),v=Math.round((Z-C)/2+r.n.y); +if(r.K<=1){H=x.rect.clone();H.x=W;H.y=v;P=H.d;C=H.v;L=x.zc}else{var y=1/r.K,g=new gv(Math.floor((d.x-W)*y),Math.floor((d.y-v)*y),Math.ceil(d.d*y)+1,Math.ceil(d.v*y)+1),Q=new gv(0,0,g.d*r.K,g.v*r.K); +Q.x=g.x*r.K+W;Q.y=g.y*r.K+v;if(r.Ih==null||r.Ih.length!=g.X()*4){r.Ih=q.f(g.X()*4)}if(r.xj==null||r.xj.length!=Q.X()*4){r.xj=q.f(Q.X()*4)}q.IW(r.Ih,0); +q.nF(x.zc,x.rect,r.Ih,g);q.scale.qJ(r.Ih,g.d,g.v,r.xj,Q.d,Q.v,r.K);L=r.xj;H=Q}var J=new Uint8Array(n.data.buffer); +q.GE(J,w,Z,8,-W,-v);q.p.F_("norm",L,H,J,d,d,1);this.xX.setTransform(1,0,0,1,0,0);this.xX.putImageData(n,0,0); +this.xX.clearRect(W-1e3,v,1e3,C);this.xX.clearRect(W+P,v,1e3,C);this.xX.clearRect(W-1e3,v-1e3,P+2e3,1e3); +this.xX.clearRect(W-1e3,v+C,P+2e3,1e3);var A=aH.zg(r.K,"#ffffff");this.xX.putImageData(A,0,r.Nv.v-A.height)}; +aH.wa={};aH.zg=function(n,F){var O="z"+n+","+F,I=aH.wa[O];if(I)return I;var x=Math.round(50*V.Z()),r=Math.round(18*V.Z()),_=V.w("canvas"),d=_.getContext("2d"); +_.width=x;_.height=r;d.fillStyle="rgba(1,1,1,1)";d.fillRect(0,0,x,r);d.font=Math.round(11*V.Z())+"px monospace"; +d.fillStyle=F;var w=n*100;if(w<100)w=w.toFixed(2);else w=Math.round(w);w=w+"%";var Z=d.measureText(w).width; +d.fillText(w,(x-Z)/2,Math.round(r*.7));I=aH.wa[O]=d.getImageData(0,0,x,r);return I};aH.prototype.tC=function(){var n=this._g,F=n.length,O=this.iP,I=this._g[O],x=(O+1)%F; +this.lx();if(F!=1&&n[x].Kh.Qq(I.Kh)){var r=I.Lo?parseInt(I.Lo.split(",").pop()):30;if(r==0)r=16;if(x==0)this.iq++; +if(this.cW==0||this.iq1){this.a.K=1;this.a.n.mT(0,0);this.lx()}if(this.OO&&this.bi==this.Q_&&!this.B8)this.A(new k("mouseup")); +else{if(F=="zoom-in"||F=="zoom-out")this.CA(this.G_,F=="zoom-in")}};aH.prototype.$P=function(){return this.a.jR(this.G_.x,this.G_.y)}; +function fg(){ch.call(this);this.uf=null;this.o9=null;this.k2=null;this.hE=null;this.a9C="";this.bq=[]; +this.YL=0;this.F0=[];this.kE=0;this.GL=null;var n=this._=V.w("div",""),F=this.a7Z=V.w("div","form"); +F.setAttribute("style","line-height:0; margin-bottom:0.5em;");n.appendChild(F);var O=this.V_=V.w("span"); +F.appendChild(O);O.setAttribute("style","font-size:1.2em; font-weight:bold; margin-right:3em;");var I=this.a7L=new cL([25,2,0]); +I.F(!0);F.appendChild(I._);I.k(V.E.L,this.I_,this);var x=this.p1=new cL([25,2,1]);x.F(!0);F.appendChild(x._); +x.k(V.E.L,this.I_,this);var r=new gD(" ");F.appendChild(r._);var _=this.jH=new fq([25,1,1]);F.appendChild(_._); +_.k(V.E.L,this.I_,this);this.Ax=new fw(14);this.Ax.a53(3);F.appendChild(this.Ax._);this.Ax.parent=this; +this.Ax.k(V.E.L,this.acw,this);var d=this.aiO=new cg([25,1,2],null,null,!0);F.appendChild(d._);d.k("click",this.h_,this); +this.a37=this.a5u.bind(this);this.Ra=V.w("div","svggallery scrollable");n.appendChild(this.Ra);this.Ra.addEventListener("scroll",this.adG.bind(this))}fg.prototype=new ch; +fg.prototype.XW=function(n){this.a4Q=n};fg.prototype.B=function(){this.V_.textContent=hl.get([25,0]); +this.Ax.B();this.a7L.B();this.p1.B();this.jH.B();this.aiO.B()};fg.prototype.Kq=function(n,F){F-=26;this.uf=new aE(n,F); +this.a7Z.setAttribute("style","width:"+n+"px");this.Ra.setAttribute("style","width:"+n+"px; height:"+F+"px"); +if(V.Zo(this._))this.I_()};fg.prototype.F=function(n){this.o9=n;this.I_()};fg.prototype.adG=function(n){var F=this.Ra; +if(F.scrollTop+F.clientHeight+10>=F.scrollHeight){this.I_(!0)}};fg.prototype.acw=function(n){this.k2=null; +this.I_()};fg.prototype.a5u=function(n){if(Date.now()-this.kE<2e3)return;this.kE=Date.now();this.YL=this.F0.indexOf(n.currentTarget); +var F=this.T1(this.o9.x,this.o9.y);if(F[1]){var O=F[1].largeImageURL,I=new XMLHttpRequest;I.responseType="arraybuffer"; +I.open("GET",O,!0);I.onload=this.ajV.bind(this);I.send();return}this.Wx(F)};fg.prototype.ajV=function(n){var F=n.target.response,O=fx.TG(F),I=fx.rM(O),x=I.bx(F),r=this.T1(this.o9.x,this.o9.y,[F,x[0].Kh.d,x[0].Kh.v]); +this.Wx(r)};fg.prototype.Wx=function(n){var F=n[0],O=fx.TG(F),I=fx.rM(O),x=new fj("template.psd");I.bx(F,x); +var r=new k("tempready",!0);r.data={KH:x};this.A(r)};fg.prototype.h_=function(n){var F=n.target;this.bq=[]; +this.I_()};fg.prototype.aoG=function(n){var F=JSON.parse(n.target.response);this.hE=F.hits;this.I_()}; +fg.prototype.I_=function(n){if(this.o9==null||this.uf==null||this.a4Q==null)return;if(this.uf.x<=0)return; +var F=this.o9.x,O=this.o9.y;if(Math.min(F,O)<50)return;if(n!=!0){this.F0=[];V.em(this.Ra);this.Ra.scrollTop=0}if(this.F0.length>300)return; +var I=Math.min(1,300/Math.max(F,O)),x=this.uf.clone();x.x-=20;var r=Math.max(1,Math.floor(x.x/(F*I))),_=Math.max(1,Math.ceil(x.y/(O*I))); +I=x.x/r/F;var d=r*_;if(this.k2==null){var w=this.a4Q.sH.j9();this.k2=[];for(var Z in w){var P=w[Z],C=P[3]; +if(!this.Ax.zI(P))continue;if(P[5]==null||P[5].slice(0,2)=="gf")continue;this.k2.push(P)}if(this.k2.length==0)this.k2.push(w.DejaVuSans)}var W=this.p1.u(),v=this.jH.u().trim(); +this.jH.wz(W);if(W&&(this.hE==null||v!=this.a9C)){var L=new XMLHttpRequest,H="https://pixabay.com/api/?image_type=photo"+(v==""?"":"&q="+encodeURIComponent(v))+"&per_page=200&page=1&key=10554583-a5eacb61c2e61105fdfb6eb88"; +if(v=="")H+="&safesearch=true";if(v=="")H="plugins/gallery.json";L.open("GET",H,!0);L.onload=this.aoG.bind(this); +L.onerror=function(p){console.log(p.target.response)};L.send();this.a9C=v;return}I*=(F*I-5)/(F*I);var y=this.F0.length; +for(var e=0;e